diff --git a/README.md b/README.md index 67209e3ca1f..4b8af0f36e4 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Welcome to [Spellbook](https://youtu.be/o7p0BNt7NHs). Cast a magical incantation - Don't know where to start? The docs below will guide you, but as a summary: - Want to make an incremental improvement to one of our spells? (add a new project, fix a bug you found), simply open a PR with your changes. - Follow the guide for [Submitting a PR](), [Setting up your dev environment]() and [Using dbt to write spells]() if you find yourself lost. - - Not sure how to start? Follow the walkthrough [here](https://dune.com/docs/data-tables/spellbook/contributing/). + - Not sure how to start? Follow the walkthrough [here](https://dune.com/docs/spellbook/). - Make sure to open a draft PR if you will work on your spell for longer than a few days, to avoid duplicated work - Do you want to get started building spells and you don't know what to build? Check [Issues]() to see what the community needs. - Check the Discussions section to see what problems the community is trying to solve (i.e. non-incremental changes) or propose your own! @@ -45,7 +45,7 @@ Spellbook is built for and by the community, you are welcome to close any gaps t - **Propose** changes to spellbook - [Discussions](https://github.com/duneanalytics/spellbook/discussions) are where we bring up, challenge and develop ideas to continue building spellbook. If you want to make a major change to a spell (e.g. major overhaul to a sector, launching a new sector, designing a new organic volume filter, etc.). ### Submitting a PR -Want to get right to work? Follow the guide [here](https://dune.com/docs/data-tables/spellbook/contributing/#7-steps-to-adding-a-spell) to get started. +Want to get right to work? Follow the guide [here](https://dune.com/docs/spellbook/?h=7+steps+adding+a+spell) to get started. ### Testing your spell You don't need a complex local setup to test spells against Dune's engine. Once you send a PR, our CI pipeline will run and test it, and, if the job finishes successfully, you'll be able to query the data your PR created directly from dune.com. @@ -94,7 +94,7 @@ pipenv install If the install fails, one likely reason is our script looks for a static python version and the likelihood of an error for a wrong python version is pretty high. If that error occurs, check your python version with: ```console -py --version +python --version ``` Now use any text editor program to change the python version in the pipfile within the spellbook directory to your python version. You need to have at least python 3.9. diff --git a/dbt_project.yml b/dbt_project.yml index a6759fdd691..dd1f081f119 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -808,6 +808,8 @@ models: +schema: chainlink_arbitrum avalanche_c: +schema: chainlink_avalanche_c + base: + +schema: chainlink_base bnb: +schema: chainlink_bnb ethereum: diff --git a/macros/models/_project/balancer/balancer_protocol_fee_macro.sql b/macros/models/_project/balancer/balancer_protocol_fee_macro.sql new file mode 100644 index 00000000000..92e9718cd8e --- /dev/null +++ b/macros/models/_project/balancer/balancer_protocol_fee_macro.sql @@ -0,0 +1,168 @@ +{% macro + balancer_protocol_fee_macro( + blockchain, version + ) +%} + +WITH pool_labels AS ( + SELECT * FROM ( + SELECT + address, + name, + ROW_NUMBER() OVER (PARTITION BY address ORDER BY MAX(updated_at) DESC) AS num + FROM {{ ref('labels_balancer_v2_pools') }} + WHERE blockchain = '{{blockchain}}' + GROUP BY 1, 2) + WHERE num = 1 + ), + + prices AS ( + SELECT + date_trunc('day', minute) AS day, + contract_address AS token, + decimals, + AVG(price) AS price + FROM {{ source('prices', 'usd') }} + WHERE blockchain = '{{blockchain}}' + {% if is_incremental() %} + AND {{ incremental_predicate('minute') }} + {% endif %} + GROUP BY 1, 2, 3 + + ), + + dex_prices_1 AS ( + SELECT + date_trunc('day', hour) AS DAY, + contract_address AS token, + approx_percentile(median_price, 0.5) AS price, + sum(sample_size) AS sample_size + FROM {{ ref('dex_prices') }} + {% if is_incremental() %} + WHERE {{ incremental_predicate('hour') }} + {% endif %} + GROUP BY 1, 2 + HAVING sum(sample_size) > 3 + ), + + dex_prices AS ( + SELECT + *, + LEAD(DAY, 1, NOW()) OVER ( + PARTITION BY token + ORDER BY + DAY + ) AS day_of_next_change + FROM dex_prices_1 + ), + + bpt_prices AS( + SELECT + date_trunc('day', hour) AS day, + contract_address AS token, + approx_percentile(median_price, 0.5) AS price + FROM {{ ref('balancer_bpt_prices') }} + WHERE blockchain = '{{blockchain}}' + {% if is_incremental() %} + AND {{ incremental_predicate('hour') }} + {% endif %} + GROUP BY 1, 2 + ), + + daily_protocol_fee_collected AS ( + SELECT + date_trunc('day', evt_block_time) AS day, + poolId AS pool_id, + token AS token_address, + SUM(protocol_fees) AS protocol_fee_amount_raw + FROM {{ source('balancer_v2_' + blockchain, 'Vault_evt_PoolBalanceChanged') }} b + CROSS JOIN unnest("protocolFeeAmounts", "tokens") AS t(protocol_fees, token) + {% if is_incremental() %} + WHERE {{ incremental_predicate('b.evt_block_time') }} + {% endif %} + GROUP BY 1, 2, 3 + + UNION ALL + + SELECT + date_trunc('day', t.evt_block_time) AS day, + poolId AS pool_id, + b.poolAddress AS token_address, + sum(value) AS protocol_fee_amount_raw + FROM {{ source('balancer_v2_' + blockchain, 'Vault_evt_PoolRegistered') }} b + INNER JOIN {{ source('erc20_' + blockchain, 'evt_transfer') }} t + ON t.contract_address = b.poolAddress + AND t."from" = 0x0000000000000000000000000000000000000000 + AND t.to = 0xce88686553686DA562CE7Cea497CE749DA109f9F --ProtocolFeesCollector address, which is the same across all chains + {% if is_incremental() %} + WHERE {{ incremental_predicate('t.evt_block_time') }} + AND {{ incremental_predicate('b.evt_block_time') }} + {% endif %} + GROUP BY 1, 2, 3 + ), + + decorated_protocol_fee AS ( + SELECT + d.day, + d.pool_id, + d.token_address, + t.symbol AS token_symbol, + SUM(d.protocol_fee_amount_raw) AS token_amount_raw, + SUM(d.protocol_fee_amount_raw / power(10, COALESCE(t.decimals,p1.decimals))) AS token_amount, + CASE + WHEN BYTEARRAY_SUBSTRING(d.pool_id, 1, 20) = d.token_address -- fees paid in BPTs + THEN 0 + ELSE + SUM(COALESCE(p1.price, p2.price, p3.price) * protocol_fee_amount_raw / POWER(10, COALESCE(t.decimals,p1.decimals))) + END AS protocol_fee_collected_usd + FROM daily_protocol_fee_collected d + LEFT JOIN prices p1 + ON p1.token = d.token_address + AND p1.day = d.day + LEFT JOIN dex_prices p2 + ON p2.token = d.token_address + AND p2.day = d.day + LEFT JOIN bpt_prices p3 + ON p3.token = CAST(d.token_address AS VARCHAR) + AND p3.day = d.day + LEFT JOIN {{ ref('tokens_erc20') }} t + ON t.contract_address = d.token_address + AND t.blockchain = '{{blockchain}}' + GROUP BY 1, 2, 3, 4 + ), + + revenue_share as( + SELECT + day, + CASE + WHEN day < DATE '2022-07-03' THEN 0.25 -- veBAL release + WHEN day >= DATE '2022-07-03' AND day < DATE '2023-01-23' THEN 0.25 -- BIP 19 + WHEN day >= DATE '2023-01-23' AND day < DATE '2023-07-24' THEN 0.35 -- BIP 161 + WHEN day >= DATE '2023-07-24' THEN 0.175 -- BIP 371 + END AS treasury_share + FROM UNNEST(SEQUENCE(DATE '2022-03-01', CURRENT_DATE, INTERVAL '1' DAY)) AS date(day) + ) + + + SELECT + f.day, + f.pool_id, + BYTEARRAY_SUBSTRING(f.pool_id,1,20) as pool_address, + l.name AS pool_symbol, + '{{version}}' as version, + '{{blockchain}}' as blockchain, + f.token_address, + f.token_symbol, + SUM(f.token_amount_raw) as token_amount_raw, + SUM(f.token_amount) as token_amount, + SUM(f.protocol_fee_collected_usd) as protocol_fee_collected_usd, + r.treasury_share, + SUM(f.protocol_fee_collected_usd) * r.treasury_share as treasury_revenue_usd + FROM decorated_protocol_fee f + INNER JOIN revenue_share r + ON r.day = f.day + LEFT JOIN pool_labels l + ON BYTEARRAY_SUBSTRING(f.pool_id,1,20) = l.address + GROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 12 + +{% endmacro %} diff --git a/macros/models/_project/oneinch/AR/oneinch_ar_handle_generic.sql b/macros/models/_project/oneinch/AR/oneinch_ar_handle_generic.sql index 3f1fdd9ae81..287fc394a54 100644 --- a/macros/models/_project/oneinch/AR/oneinch_ar_handle_generic.sql +++ b/macros/models/_project/oneinch/AR/oneinch_ar_handle_generic.sql @@ -32,6 +32,7 @@ select , {{ method_data.get("dst_amount_min", "null") }} as dst_amount_min , call_gas_used , call_output + , call_error , null as ordinary , null as pools , remains diff --git a/macros/models/_project/oneinch/AR/oneinch_ar_handle_unoswap.sql b/macros/models/_project/oneinch/AR/oneinch_ar_handle_unoswap.sql index dd4146b8ffb..94f9d5ef2d9 100644 --- a/macros/models/_project/oneinch/AR/oneinch_ar_handle_unoswap.sql +++ b/macros/models/_project/oneinch/AR/oneinch_ar_handle_unoswap.sql @@ -40,6 +40,7 @@ select , dst_amount_min , call_gas_used , call_output + , call_error , ordinary , pools , remains @@ -63,6 +64,7 @@ from ( , {{ method_data.get("dst_amount_min", "null") }} as dst_amount_min , call_gas_used , call_output + , call_error , if(cardinality(call_pools) > 0, true, false) as ordinary -- if call_pools is not empty , if(cardinality(call_pools) > 0 , try(substr(cast(call_pools[1] as varbinary), 13)) -- get first pool from call_pools diff --git a/macros/models/_project/oneinch/AR/oneinch_ar_macro.sql b/macros/models/_project/oneinch/AR/oneinch_ar_macro.sql index 2e7578696bf..04e5bff199a 100644 --- a/macros/models/_project/oneinch/AR/oneinch_ar_macro.sql +++ b/macros/models/_project/oneinch/AR/oneinch_ar_macro.sql @@ -188,7 +188,7 @@ }, "AggregationRouterV5": { "version": "5", - "blockchains": ["ethereum", "bnb", "polygon", "arbitrum", "optimism", "avalanche_c", "gnosis", "fantom", "base"], + "blockchains": ["ethereum", "bnb", "polygon", "arbitrum", "optimism", "avalanche_c", "gnosis", "fantom", "base", "zksync"], "start": "2022-11-04", "methods": { "swap": samples["swap_2"], @@ -237,6 +237,7 @@ pools_list as ( , length(input) as call_input_length , substr(input, length(input) - mod(length(input) - 4, 32) + 1) as remains , output as call_output + , error as call_error from {{ source(blockchain, 'traces') }} where {% if is_incremental() %} @@ -288,30 +289,38 @@ select , tx_from , tx_to , tx_success + , tx_nonce + , tx_gas_price as gas_price + , tx_priority_fee_per_gas as priority_fee_per_gas , contract_name + , 'AR' as protocol , protocol_version , method + , call_selector + , call_trace_address , call_from , call_to - , call_trace_address - , call_selector - , src_token_address - , dst_token_address + , call_success + , call_gas_used + , call_output + , call_error , src_receiver , dst_receiver - , src_amount - , dst_amount - , dst_amount_min + , src_token_address + , dst_token_address + , src_amount -- will be removed soon + , dst_amount -- will be removed soon + , dst_amount_min -- will be removed soon + , src_amount as src_token_amount + , dst_amount as dst_token_amount + , dst_amount_min as dst_token_amount_min , ordinary , pools , router_type - , call_success - , call_gas_used , concat(cast(length(remains) as bigint), if(length(remains) > 0 , transform(sequence(1, length(remains), 4), x -> bytearray_to_bigint(reverse(substr(reverse(remains), x, 4)))) , array[bigint '0'] )) as remains - , call_output , date_trunc('minute', block_time) as minute , date(date_trunc('month', block_time)) as block_month from ( @@ -319,7 +328,7 @@ from ( add_tx_columns( model_cte = 'calls' , blockchain = blockchain - , columns = ['from', 'to', 'success'] + , columns = ['from', 'to', 'success', 'nonce', 'gas_price', 'priority_fee_per_gas'] ) }} ) diff --git a/macros/models/_project/oneinch/oneinch_lop_macro.sql b/macros/models/_project/oneinch/oneinch_lop_macro.sql index b775524949e..c774e4f3943 100644 --- a/macros/models/_project/oneinch/oneinch_lop_macro.sql +++ b/macros/models/_project/oneinch/oneinch_lop_macro.sql @@ -29,8 +29,12 @@ 'start': '2021-11-26', 'methods': { 'fillOrder': {}, - 'fillOrderTo': {}, - 'fillOrderToWithPermit': {}, + 'fillOrderTo': { + 'receiver': "from_hex(order_map['receiver'])" + }, + 'fillOrderToWithPermit': { + 'receiver': "from_hex(order_map['receiver'])" + }, 'fillOrderRFQ': {}, 'fillOrderRFQTo': {}, 'fillOrderRFQToWithPermit': {} @@ -58,10 +62,12 @@ 'order': '"order_"', 'making_amount': 'output_actualMakingAmount', 'taking_amount': 'output_actualTakingAmount', - 'order_hash': 'output_orderHash' + 'order_hash': 'output_orderHash', + 'receiver': "from_hex(order_map['receiver'])" }, 'fillOrderToWithPermit': { - 'order_hash': 'output_2' + 'order_hash': 'output_2', + 'receiver': "from_hex(order_map['receiver'])" }, 'fillOrderRFQ': { 'order_hash': 'output_2' @@ -92,7 +98,9 @@ orders as ( {% for contract, contract_data in cfg.items() if blockchain in contract_data['blockchains'] %} select * from ({% for method, method_data in contract_data.methods.items() %} select - call_tx_hash as tx_hash + call_block_number as block_number + , call_block_time as block_time + , call_tx_hash as tx_hash , '{{ contract }}' as contract_name , '{{ contract_data['version'] }}' as protocol_version , '{{ method }}' as method @@ -102,11 +110,10 @@ orders as ( , from_hex(order_map['makerAsset']) as maker_asset , from_hex(order_map['takerAsset']) as taker_asset , {{ method_data.get("maker", "from_hex(order_map['maker'])") }} as maker + , {{ method_data.get("receiver", "null") }} as receiver , {{ method_data.get("making_amount", "output_0") }} as making_amount , {{ method_data.get("taking_amount", "output_1") }} as taking_amount , {{ method_data.get("order_hash", "null") }} as order_hash - , call_block_number as block_number - , call_block_time as block_time from ( select *, cast(json_parse({{ method_data.get("order", '"order"') }}) as map(varchar, varchar)) as order_map from {{ source('oneinch_' + blockchain, contract + '_call_' + method) }} @@ -123,17 +130,19 @@ orders as ( , "from" as call_from , substr(input, 1, 4) as call_selector , gas_used as call_gas_used + , substr(input, length(input) - mod(length(input) - 4, 32) + 1) as remains , output as call_output + , error as call_error , block_number from {{ source(blockchain, 'traces') }} - where + where {% if is_incremental() %} {{ incremental_predicate('block_time') }} - {% else %} - block_time >= timestamp '{{ contract_data['start'] }}' + {% else %} + block_time >= timestamp '{{ contract_data['start'] }}' {% endif %} and call_type = 'call' - ) using(tx_hash, call_trace_address, block_number) + ) using(block_number, tx_hash, call_trace_address) {% if not loop.last %} union all {% endif %} {% endfor %} ) @@ -141,27 +150,38 @@ orders as ( select '{{ blockchain }}' as blockchain + , block_number , block_time , tx_hash , tx_from , tx_to , tx_success + , tx_nonce + , tx_gas_price as gas_price + , tx_priority_fee_per_gas as priority_fee_per_gas , contract_name + , 'LOP' as protocol , protocol_version , method + , call_selector + , call_trace_address , call_from , call_to - , call_trace_address - , call_selector + , call_success + , call_gas_used + , call_output + , call_error , maker + , receiver , maker_asset , making_amount , taker_asset , taking_amount , order_hash - , call_success - , call_gas_used - , call_output + , concat(cast(length(remains) as bigint), if(length(remains) > 0 + , transform(sequence(1, length(remains), 4), x -> bytearray_to_bigint(reverse(substr(reverse(remains), x, 4)))) + , array[bigint '0'] + )) as remains , date_trunc('minute', block_time) as minute , date(date_trunc('month', block_time)) as block_month from ( @@ -169,7 +189,7 @@ from ( add_tx_columns( model_cte = 'orders' , blockchain = blockchain - , columns = ['from', 'to', 'success'] + , columns = ['from', 'to', 'success', 'nonce', 'gas_price', 'priority_fee_per_gas'] ) }} ) diff --git a/macros/models/_sector/contracts/contracts_base_iterated_creators.sql b/macros/models/_sector/contracts/contracts_base_iterated_creators.sql index 2edb8c40a16..7ea10b09d5e 100644 --- a/macros/models/_sector/contracts/contracts_base_iterated_creators.sql +++ b/macros/models/_sector/contracts/contracts_base_iterated_creators.sql @@ -155,6 +155,7 @@ WITH deterministic_deployers AS ( 1=1 AND (NOT {{ incremental_predicate('s.created_time') }} ) --don't pick up incrementals AND s.contract_address IN (SELECT contract_address FROM inc_contracts) --is this a contract we need to iterate through + AND s.contract_address NOT IN (SELECT contract_address FROM new_contracts) --exclude contract we reinitialize {% endif %} @@ -250,10 +251,16 @@ WITH deterministic_deployers AS ( ) {%- endfor %} - -SELECT {{ column_list | join(', ') }} FROM base_level WHERE is_new_contract = 0 -UNION ALL -SELECT {{ column_list | join(', ') }} FROM level{{max_levels - 1}} + SELECT {{ column_list | join(', ') }} + FROM ( + SELECT *, ROW_NUMBER() OVER (PARTITION BY contract_address, blockchain ORDER BY created_block_number DESC) AS init_rank + FROM ( + SELECT {{ column_list | join(', ') }} FROM base_level WHERE is_new_contract = 0 + UNION ALL + SELECT {{ column_list | join(', ') }} FROM level{{max_levels - 1}} + ) uni + ) filtered + WHERE init_rank = 1 ) diff --git a/macros/models/_sector/dex/balancer_compatible_trades.sql b/macros/models/_sector/dex/balancer_compatible_trades.sql new file mode 100644 index 00000000000..cc1473e6799 --- /dev/null +++ b/macros/models/_sector/dex/balancer_compatible_trades.sql @@ -0,0 +1,165 @@ +{% macro balancer_compatible_v1_trades( + blockchain = '', + project = '', + version = '', + project_decoded_as = 'balancer_v1', + BPool_evt_LOG_SWAP = 'BPool_evt_LOG_SWAP', + BPool_call_setSwapFee = 'BPool_call_setSwapFee' + ) +%} + +WITH + +swap_fees AS ( + SELECT * FROM ( + SELECT + swaps.contract_address, + swaps.evt_tx_hash, + swaps.evt_block_time, + swaps.evt_index, + swaps.evt_block_number, + fees.swapFee, + ROW_NUMBER() OVER (PARTITION BY swaps.contract_address, evt_tx_hash, evt_index ORDER BY call_block_number DESC) AS rn + FROM {{ source(project_decoded_as ~ '_' ~ blockchain, BPool_evt_LOG_SWAP) }} swaps + LEFT JOIN {{ source(project_decoded_as ~ '_' ~ blockchain, BPool_call_setSwapFee) }} fees + ON fees.contract_address = swaps.contract_address + AND fees.call_block_number < swaps.evt_block_number + {% if is_incremental() %} + WHERE {{ incremental_predicate('swaps.evt_block_time') }} + {% endif %} + ) t + WHERE t.rn = 1 +), + +dexs AS ( + SELECT + CAST(NULL AS VARBINARY) AS taker, + CAST(NULL AS VARBINARY) AS maker, + tokenOut AS token_bought_address, + tokenAmountOut AS token_bought_amount_raw, + tokenIn AS token_sold_address, + tokenAmountIn AS token_sold_amount_raw, + swaps.contract_address AS project_contract_address, + (swapFee / 1e18) AS swap_fee_percentage, + swaps.evt_block_number AS block_number, + swaps.evt_block_time AS block_time, + swaps.evt_tx_hash AS tx_hash, + swaps.evt_index + FROM {{ source(project_decoded_as ~ '_' ~ blockchain, BPool_evt_LOG_SWAP) }} swaps + LEFT JOIN swap_fees fees + ON fees.evt_tx_hash = swaps.evt_tx_hash + AND fees.evt_block_number = swaps.evt_block_number + AND fees.contract_address = swaps.contract_address + AND fees.evt_index = swaps.evt_index + {% if is_incremental() %} + WHERE {{ incremental_predicate('swaps.evt_block_time') }} + {% endif %} +) + +SELECT + '{{ blockchain }}' AS blockchain, + '{{ project }}' AS project, + '{{ version }}' AS version, + CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, + CAST(date_trunc('day', dexs.block_time) AS date) AS block_date, + dexs.block_time, + dexs.block_number, + dexs.token_bought_amount_raw, + dexs.token_sold_amount_raw, + dexs.token_bought_address, + dexs.token_sold_address, + dexs.taker, + dexs.maker, + dexs.project_contract_address, + dexs.tx_hash, + dexs.evt_index, + CAST(NULL AS varbinary) AS pool_id, + CAST(dexs.swap_fee_percentage AS double) AS swap_fee +FROM dexs + +{% endmacro %} + +{# ######################################################################### #} + +{% macro balancer_compatible_v2_trades( + blockchain = '', + project = '', + version = '', + project_decoded_as = 'balancer_v2', + Vault_evt_Swap = 'Vault_evt_Swap', + pools_fees = 'pools_fees' + ) +%} + +WITH + +swap_fees AS ( + SELECT * FROM ( + SELECT + swaps.poolId, + swaps.evt_tx_hash, + swaps.evt_index, + swaps.evt_block_number, + bytearray_substring(swaps.poolId, 1, 20) AS contract_address, + fees.swap_fee_percentage, + ROW_NUMBER() OVER (PARTITION BY poolId, evt_tx_hash, evt_index ORDER BY block_number DESC, index DESC) AS rn + FROM {{ source(project_decoded_as ~ '_' ~ blockchain, Vault_evt_Swap) }} swaps + LEFT JOIN {{ ref(project_decoded_as ~ '_' ~ blockchain ~ '_' ~ pools_fees) }} fees + ON fees.contract_address = bytearray_substring(swaps.poolId, 1, 20) + AND ARRAY[fees.block_number] || ARRAY[fees.index] < ARRAY[swaps.evt_block_number] || ARRAY[swaps.evt_index] + {% if is_incremental() %} + WHERE {{ incremental_predicate('swaps.evt_block_time') }} + {% endif %} + ) t + WHERE t.rn = 1 +), + +dexs AS ( + SELECT + swap.evt_block_number AS block_number, + swap.evt_block_time AS block_time, + CAST(NULL AS VARBINARY) AS taker, + CAST(NULL AS VARBINARY) AS maker, + swap.amountOut AS token_bought_amount_raw, + swap.amountIn AS token_sold_amount_raw, + swap.tokenOut AS token_bought_address, + swap.tokenIn AS token_sold_address, + swap_fees.contract_address AS project_contract_address, + swap.poolId AS pool_id, + swap_fees.swap_fee_percentage / POWER(10, 18) AS swap_fee, + swap.evt_tx_hash AS tx_hash, + swap.evt_index + FROM swap_fees + INNER JOIN {{ source(project_decoded_as ~ '_' ~ blockchain, Vault_evt_Swap) }} swap + ON swap.evt_block_number = swap_fees.evt_block_number + AND swap.evt_tx_hash = swap_fees.evt_tx_hash + AND swap.evt_index = swap_fees.evt_index + WHERE swap.tokenIn <> swap_fees.contract_address + AND swap.tokenOut <> swap_fees.contract_address + {% if is_incremental() %} + AND {{ incremental_predicate('swap.evt_block_time') }} + {% endif %} +) + +SELECT + '{{ blockchain }}' AS blockchain, + '{{ project }}' AS project, + '{{ version }}' AS version, + CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, + CAST(date_trunc('day', dexs.block_time) AS date) AS block_date, + dexs.block_time, + dexs.block_number, + dexs.token_bought_amount_raw, + dexs.token_sold_amount_raw, + dexs.token_bought_address, + dexs.token_sold_address, + dexs.taker, + dexs.maker, + dexs.project_contract_address, + dexs.tx_hash, + dexs.evt_index, + dexs.pool_id, + dexs.swap_fee +FROM dexs + +{% endmacro %} diff --git a/macros/models/_sector/dex/dex_atomic_arbitrages.sql b/macros/models/_sector/dex/dex_atomic_arbitrages.sql new file mode 100644 index 00000000000..54e0eae56f5 --- /dev/null +++ b/macros/models/_sector/dex/dex_atomic_arbitrages.sql @@ -0,0 +1,129 @@ +{% macro dex_atomic_arbitrages(blockchain, transactions) %} + +-- Step 1: Check that the transaction contains at least 2 trades +WITH multi_trade_txs AS ( + SELECT block_time, tx_hash + FROM {{ ref('dex_trades') }} + WHERE blockchain = '{{blockchain}}' + {% if is_incremental() %} + AND {{ incremental_predicate('block_time') }} + {% endif %} + GROUP BY 1, 2 + HAVING COUNT(*) > 1 + ) + +-- Step 2: Fetch more columns from the trades table +, filled_multi_trade_txs AS ( + SELECT block_time + , tx_hash + , dt.token_sold_address + , dt.token_bought_address + , dt.token_sold_amount_raw + , dt.token_bought_amount_raw + FROM {{ ref('dex_trades') }} dt + INNER JOIN multi_trade_txs pa USING (block_time, tx_hash) + WHERE dt.blockchain = '{{blockchain}}' + {% if is_incremental() %} + AND {{ incremental_predicate('block_time') }} + {% endif %} + ) + +-- Step 3: Unnest all traded tokens and filter out negative sum balances +, only_positive_balance_tokens AS ( + SELECT block_time + , tx_hash + , token_address + FROM filled_multi_trade_txs + CROSS JOIN UNNEST(ARRAY[(token_bought_address, token_bought_amount_raw), (token_sold_address, -token_sold_amount_raw)]) AS t(token_address, token_amount_raw) + GROUP BY 1, 2, 3 + HAVING SUM(token_amount_raw) >= 0 + ) + +-- Step 4: Group all valid tokens per transaction +, whitelisted_tokens AS ( + SELECT block_time + , tx_hash + , array_agg(token_address) AS token_addresses + FROM only_positive_balance_tokens + GROUP BY 1, 2 + ) + +-- Step 5: Filter out trades containing negative sum tokens from txs +, positive_sum_trades AS ( + SELECT dt.block_time + , dt.tx_hash + , dt.evt_index + , dt.blockchain + , dt.project + , dt.version + , dt.block_date + , dt.block_month + , dt.token_sold_symbol + , dt.token_bought_symbol + , dt.token_sold_address + , dt.token_bought_address + , dt.token_pair + , dt.token_sold_amount + , dt.token_bought_amount + , dt.token_sold_amount_raw + , dt.token_bought_amount_raw + , dt.amount_usd + , dt.taker + , dt.maker + , dt.project_contract_address + , dt.tx_from + , dt.tx_to + FROM {{ ref('dex_trades') }} dt + INNER JOIN whitelisted_tokens wt ON dt.block_time=wt.block_time + AND dt.tx_hash=wt.tx_hash + AND CONTAINS(wt.token_addresses, dt.token_sold_address) + AND CONTAINS(wt.token_addresses, dt.token_bought_address) + WHERE dt.blockchain = '{{blockchain}}' + {% if is_incremental() %} + AND {{ incremental_predicate('dt.block_time') }} + {% endif %} + ) + +-- Step 6: Only keep trades that form a loop +SELECT pst.block_time +, txs.block_number +, pst.tx_hash +, pst.evt_index +, pst.blockchain +, pst.project +, pst.version +, pst.block_month +, pst.token_sold_symbol +, pst.token_bought_symbol +, pst.token_sold_address +, pst.token_bought_address +, pst.token_pair +, pst.token_sold_amount +, pst.token_bought_amount +, pst.token_sold_amount_raw +, pst.token_bought_amount_raw +, pst.amount_usd +, pst.taker +, pst.maker +, pst.project_contract_address +, pst.tx_from +, pst.tx_to +, txs.index AS tx_index +FROM positive_sum_trades +MATCH_RECOGNIZE ( + PARTITION BY block_time, tx_hash + ORDER BY evt_index + ALL ROWS PER MATCH + PATTERN (A B+ D+) + DEFINE + A AS TRUE + , B AS token_sold_address = PREV(token_bought_address) + , D AS FIRST(token_sold_address) = LAST(token_bought_address) + ) pst +INNER JOIN {{transactions}} txs ON pst.block_time=txs.block_time + AND pst.tx_hash=txs.hash + {% if is_incremental() %} + AND {{ incremental_predicate('txs.block_time') }} + {% endif %} + +{% endmacro %} diff --git a/macros/models/_sector/dex/dex_sandwiched.sql b/macros/models/_sector/dex/dex_sandwiched.sql new file mode 100644 index 00000000000..dc044b0877b --- /dev/null +++ b/macros/models/_sector/dex/dex_sandwiched.sql @@ -0,0 +1,66 @@ +{% macro dex_sandwiched(blockchain, transactions, sandwiches) %} + +WITH sandwich_bounds AS ( + SELECT front.block_time + , front.evt_index AS min_evt_index + , back.evt_index AS max_evt_index + , front.project_contract_address + , front.token_bought_address + , front.token_sold_address + FROM {{sandwiches}} front + INNER JOIN {{sandwiches}} back ON front.block_time=back.block_time + AND front.tx_from=back.tx_from + AND front.tx_hash!=back.tx_hash + AND front.project_contract_address=back.project_contract_address + AND front.token_sold_address=back.token_bought_address + AND front.token_bought_address=back.token_sold_address + AND front.evt_index+1 < back.evt_index + {% if is_incremental() %} + AND {{ incremental_predicate('back.block_time') }} + {% endif %} + {% if is_incremental() %} + WHERE {{ incremental_predicate('front.block_time') }} + {% endif %} + ) + +SELECT DISTINCT dt.blockchain +, dt.project +, dt.version +, dt.block_time +, txs.block_number +, dt.block_month +, dt.token_sold_address +, dt.token_bought_address +, dt.token_sold_symbol +, dt.token_bought_symbol +, dt.maker +, dt.taker +, dt.tx_hash +, dt.tx_from +, dt.tx_to +, dt.project_contract_address +, dt.token_pair +, dt.token_sold_amount_raw +, dt.token_bought_amount_raw +, dt.token_sold_amount +, dt.token_bought_amount +, dt.amount_usd +, dt.evt_index +, txs.index AS tx_index +FROM {{ ref('dex_trades') }} dt +INNER JOIN sandwich_bounds sb ON sb.block_time=dt.block_time + AND sb.project_contract_address=dt.project_contract_address + AND sb.token_bought_address=dt.token_bought_address + AND sb.token_sold_address=dt.token_sold_address + AND dt.evt_index BETWEEN sb.min_evt_index AND sb.max_evt_index +INNER JOIN {{transactions}} txs ON txs.block_time=dt.block_time + AND txs.hash=dt.tx_hash + {% if is_incremental() %} + AND {{ incremental_predicate('txs.block_time') }} + {% endif %} +WHERE dt.blockchain='{{blockchain}}' +{% if is_incremental() %} +AND {{ incremental_predicate('dt.block_time') }} +{% endif %} + +{% endmacro %} \ No newline at end of file diff --git a/macros/models/_sector/dex/dex_sandwiches.sql b/macros/models/_sector/dex/dex_sandwiches.sql index 6ebf90d8d1b..bdd4b8bc9ac 100644 --- a/macros/models/_sector/dex/dex_sandwiches.sql +++ b/macros/models/_sector/dex/dex_sandwiches.sql @@ -18,7 +18,7 @@ WITH indexed_sandwich_trades AS ( AND front.token_bought_address=back.token_sold_address AND front.evt_index + 1 < back.evt_index {% if is_incremental() %} - AND back.block_time >= date_trunc('day', now() - interval '7' day) + AND {{ incremental_predicate('back.block_time') }} {% endif %} INNER JOIN {{ ref('dex_trades') }} victim ON victim.blockchain='{{blockchain}}' AND front.block_time=victim.block_time @@ -28,12 +28,12 @@ WITH indexed_sandwich_trades AS ( AND front.token_sold_address=victim.token_sold_address AND victim.evt_index BETWEEN front.evt_index AND back.evt_index {% if is_incremental() %} - AND victim.block_time >= date_trunc('day', now() - interval '7' day) + AND {{ incremental_predicate('victim.block_time') }} {% endif %} CROSS JOIN UNNEST(ARRAY[(front.tx_hash, front.evt_index), (back.tx_hash, back.evt_index)]) AS t(tx_hash_all, evt_index_all) WHERE front.blockchain='{{blockchain}}' {% if is_incremental() %} - AND front.block_time >= date_trunc('day', now() - interval '7' day) + AND {{ incremental_predicate('front.block_time') }} {% endif %} ) @@ -71,11 +71,11 @@ INNER JOIN indexed_sandwich_trades s ON dt.block_time=s.block_time INNER JOIN {{transactions}} tx ON tx.block_time=s.block_time AND tx.hash=s.tx_hash {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' day) + AND {{ incremental_predicate('tx.block_time') }} {% endif %} WHERE dt.blockchain='{{blockchain}}' {% if is_incremental() %} -AND dt.block_time >= date_trunc('day', now() - interval '7' day) +AND {{ incremental_predicate('dt.block_time') }} {% endif %} {% endmacro %} \ No newline at end of file diff --git a/macros/models/_sector/dex/trader_joe_compatible_trades.sql b/macros/models/_sector/dex/trader_joe_compatible_trades.sql new file mode 100644 index 00000000000..cdb880aac66 --- /dev/null +++ b/macros/models/_sector/dex/trader_joe_compatible_trades.sql @@ -0,0 +1,113 @@ +{% macro trader_joe_compatible_v2_trades( + blockchain = null + , project = null + , version = null + , Pair_evt_Swap = null + , Factory_evt_PoolCreated = null + , pair_column_name = 'LBPair' + ) +%} +WITH dexs AS +( + SELECT + t.evt_block_number AS block_number + , t.evt_block_time AS block_time + , t.recipient AS taker + , t.contract_address AS maker + , amountOut AS token_bought_amount_raw + , amountIn AS token_sold_amount_raw + , CASE WHEN swapForY = true THEN f.tokenY ELSE f.tokenX END AS token_bought_address -- when swapForY is true it means that tokenY is the token being bought else it's tokenX + , CASE WHEN swapForY = true THEN f.tokenX ELSE f.tokenY END AS token_sold_address + , t.contract_address AS project_contract_address + , t.evt_tx_hash AS tx_hash + , t.evt_index AS evt_index + FROM + {{ Pair_evt_Swap }} t + INNER JOIN + {{ Factory_evt_PoolCreated }} f + ON f.{{ pair_column_name }} = t.contract_address + {% if is_incremental() %} + WHERE + {{ incremental_predicate('t.evt_block_time') }} + {% endif %} +) + +SELECT + '{{ blockchain }}' AS blockchain + , '{{ project }}' AS project + , '{{ version }}' AS version + , CAST(date_trunc('month', dexs.block_time) AS date) AS block_month + , CAST(date_trunc('day', dexs.block_time) AS date) AS block_date + , dexs.block_time + , dexs.block_number + , dexs.token_bought_amount_raw + , dexs.token_sold_amount_raw + , dexs.token_bought_address + , dexs.token_sold_address + , dexs.taker + , dexs.maker + , dexs.project_contract_address + , dexs.tx_hash + , dexs.evt_index +FROM + dexs +{% endmacro %} + +{% macro trader_joe_compatible_v2_1_trades( + blockchain = null + , project = null + , version = null + , Pair_evt_Swap = null + , Factory_evt_PoolCreated = null + , pair_column_name = 'LBPair' + ) +%} +WITH dexs AS +( + SELECT + t.evt_block_number AS block_number + , t.evt_block_time AS block_time + , t.to AS taker + , t.contract_address AS maker + , CASE WHEN amount0 < INT256 '0' THEN abs(amount0) ELSE abs(amount1) END AS token_bought_amount_raw + , CASE WHEN amount0 < INT256 '0' THEN abs(amount1) ELSE abs(amount0) END AS token_sold_amount_raw + , CASE WHEN amount0 < INT256 '0' THEN f.tokenX ELSE f.tokenY END AS token_bought_address + , CASE WHEN amount0 < INT256 '0' THEN f.tokenY ELSE f.tokenX END AS token_sold_address + , t.contract_address AS project_contract_address + , t.evt_tx_hash AS tx_hash + , t.evt_index AS evt_index + FROM ( + SELECT a.* + ,CAST(bytearray_to_int256(bytearray_substring(amountsIn,17,32)) AS INT256) - CAST(bytearray_to_int256(bytearray_substring(amountsOut,17,32)) AS INT256) AS amount0 + ,CAST(bytearray_to_int256(bytearray_substring(amountsIn,1,16)) AS INT256) - CAST(bytearray_to_int256(bytearray_substring(amountsOut,1,16)) AS INT256) AS amount1 + FROM {{ Pair_evt_Swap }} a + ) t + INNER JOIN + {{ Factory_evt_PoolCreated }} f + ON f.{{ pair_column_name }} = t.contract_address + {% if is_incremental() %} + WHERE + {{ incremental_predicate('t.evt_block_time') }} + {% endif %} +) + +SELECT + '{{ blockchain }}' AS blockchain + , '{{ project }}' AS project + , '{{ version }}' AS version + , CAST(date_trunc('month', dexs.block_time) AS date) AS block_month + , CAST(date_trunc('day', dexs.block_time) AS date) AS block_date + , dexs.block_time + , dexs.block_number + , dexs.token_bought_amount_raw + , dexs.token_sold_amount_raw + , dexs.token_bought_address + , dexs.token_sold_address + , dexs.taker + , dexs.maker + , dexs.project_contract_address + , dexs.tx_hash + , dexs.evt_index +FROM + dexs +{% endmacro %} \ No newline at end of file diff --git a/macros/models/_sector/dex/uniswap_compatible_trades.sql b/macros/models/_sector/dex/uniswap_compatible_trades.sql index 6fb8a6fad12..e885fbd143d 100644 --- a/macros/models/_sector/dex/uniswap_compatible_trades.sql +++ b/macros/models/_sector/dex/uniswap_compatible_trades.sql @@ -59,6 +59,7 @@ FROM , version = null , Pair_evt_Swap = null , Factory_evt_PoolCreated = null + , optional_columns = ['f.fee'] ) %} WITH dexs AS @@ -73,7 +74,11 @@ WITH dexs AS , CASE WHEN amount0 < INT256 '0' THEN f.token0 ELSE f.token1 END AS token_bought_address , CASE WHEN amount0 < INT256 '0' THEN f.token1 ELSE f.token0 END AS token_sold_address , t.contract_address as project_contract_address - , f.fee + {% if optional_columns %} + {% for optional_column in optional_columns %} + , {{ optional_column }} + {% endfor %} + {% endif %} , t.evt_tx_hash AS tx_hash , t.evt_index FROM diff --git a/macros/models/_sector/inscription/inscription_all.sql b/macros/models/_sector/inscription/inscription_all.sql new file mode 100644 index 00000000000..f06edff9dbf --- /dev/null +++ b/macros/models/_sector/inscription/inscription_all.sql @@ -0,0 +1,20 @@ +{% macro inscription_all(blockchain, transactions, first_inscription_block) %} + +SELECT '{{blockchain}}' AS blockchain +, block_time +, date(date_trunc('month', block_time)) AS block_month +, block_number +, hash AS tx_hash +, index AS tx_index +, "from" AS tx_from +, to AS tx_to +, substring(from_utf8(data), position('{' IN from_utf8(data))) AS full_inscription +FROM {{transactions}} +WHERE ("LEFT"(from_utf8(data), 8)='data:,{"') = TRUE +AND success +AND block_number >= {{first_inscription_block}} +{% if is_incremental() %} +AND {{ incremental_predicate('block_time') }} +{% endif %} + +{% endmacro %} diff --git a/macros/models/_sector/inscription/inscription_deploys.sql b/macros/models/_sector/inscription/inscription_deploys.sql new file mode 100644 index 00000000000..7b996b32422 --- /dev/null +++ b/macros/models/_sector/inscription/inscription_deploys.sql @@ -0,0 +1,20 @@ +{% macro inscription_deploys(all_inscriptions) %} + +SELECT blockchain +, block_time +, block_month +, block_number +, tx_hash +, tx_from +, tx_to +, tx_index +, json_extract_scalar(full_inscription, '$.p') AS inscription_standard +, json_extract_scalar(full_inscription, '$.op') AS operation +, json_extract_scalar(full_inscription, '$.tick') AS inscription_symbol +, try_cast(json_extract_scalar(full_inscription, '$.max') AS UINT256) AS max_supply +, try_cast(json_extract_scalar(full_inscription, '$.lim') AS UINT256) AS mint_limit +, full_inscription +FROM {{all_inscriptions}} +WHERE json_extract_scalar(full_inscription, '$.op') = 'deploy' + +{% endmacro %} \ No newline at end of file diff --git a/macros/models/_sector/inscription/inscription_mints.sql b/macros/models/_sector/inscription/inscription_mints.sql new file mode 100644 index 00000000000..9c09fc0637f --- /dev/null +++ b/macros/models/_sector/inscription/inscription_mints.sql @@ -0,0 +1,19 @@ +{% macro inscription_mints(all_inscriptions) %} + +SELECT blockchain +, block_time +, block_month +, block_number +, tx_hash +, tx_from +, tx_to +, tx_index +, json_extract_scalar(full_inscription, '$.p') AS inscription_standard +, json_extract_scalar(full_inscription, '$.op') AS operation +, json_extract_scalar(full_inscription, '$.tick') AS inscription_symbol +, try_cast(json_extract_scalar(full_inscription, '$.amt') AS UINT256) AS amount +, full_inscription AS full_inscription +FROM {{all_inscriptions}} +WHERE json_extract_scalar(full_inscription, '$.op') = 'mint' + +{% endmacro %} \ No newline at end of file diff --git a/macros/models/_sector/nft/nft_mints.sql b/macros/models/_sector/nft/nft_mints.sql new file mode 100644 index 00000000000..ae39ee21a38 --- /dev/null +++ b/macros/models/_sector/nft/nft_mints.sql @@ -0,0 +1,188 @@ +{% macro nft_mints(blockchain, base_contracts, base_traces, erc20_transfer, base_transactions, eth_currency_contract ) %} + +WITH namespaces AS ( + SELECT + address + , min_by(namespace, created_at) AS namespace + FROM {{ base_contracts }} + GROUP BY address + ) + +, nfts_per_tx AS ( + SELECT + tx_hash + , sum(amount) AS nfts_minted_in_tx + FROM {{ ref('nft_transfers') }} + WHERE + blockchain = '{{blockchain}}' + {% if is_incremental() %} + AND {{incremental_predicate('block_time')}} + {% endif %} + GROUP BY tx_hash + HAVING sum(amount) > 0 + ) + +SELECT + blockchain + , project + , version + , block_time + , block_date + , block_month + , block_number + , token_id + , collection + , token_standard + , trade_type + , number_of_items + , trade_category + , evt_type + , seller + , buyer + , amount_raw + , amount_original + , amount_usd + , currency_symbol + , currency_contract + , nft_contract_address + , project_contract_address + , aggregator_name + , aggregator_address + , tx_hash + , tx_from + , tx_to + , platform_fee_amount_raw + , platform_fee_amount + , platform_fee_amount_usd + , platform_fee_percentage + , royalty_fee_receive_address + , royalty_fee_currency_symbol + , royalty_fee_amount_raw + , royalty_fee_amount + , royalty_fee_amount_usd + , royalty_fee_percentage + , evt_index +FROM +( +SELECT + *, + ROW_NUMBER() OVER (PARTITION BY tx_hash, evt_index, token_id, number_of_items ORDER BY amount_usd DESC NULLS LAST) as rank_index +FROM + ( + SELECT distinct '{{blockchain}}' AS blockchain + , COALESCE(ec.namespace, 'Unknown') AS project + , '' AS version + , nft_mints.block_time AS block_time + , CAST(date_trunc('day', nft_mints.block_time) as date) AS block_date + , CAST(date_trunc('month', nft_mints.block_time) as date) AS block_month + , nft_mints.block_number AS block_number + , nft_mints.token_id AS token_id + , tok.name AS collection + , nft_mints.token_standard + , CASE WHEN nft_mints.amount= UINT256 '1' THEN 'Single Item Mint' + ELSE 'Bundle Mint' + END AS trade_type + , nft_mints.amount AS number_of_items + , 'Mint' AS trade_category + , 'Mint' AS evt_type + , nft_mints."from" AS seller + , nft_mints.to AS buyer + , CAST(COALESCE(SUM(CAST(et.value as DOUBLE)), SUM(CAST(erc20s.value as DOUBLE)), 0)*(nft_mints.amount/nft_count.nfts_minted_in_tx) AS UINT256) AS amount_raw + , COALESCE(SUM(CAST(et.value as DOUBLE))/POWER(10, 18), SUM(CAST(erc20s.value as DOUBLE))/POWER(10, pu_erc20s.decimals))*(nft_mints.amount/nft_count.nfts_minted_in_tx) AS amount_original + , COALESCE(pu_eth.price*SUM(CAST(et.value as DOUBLE))/POWER(10, 18), pu_erc20s.price*SUM(CAST(erc20s.value as DOUBLE))/POWER(10, pu_erc20s.decimals))*(nft_mints.amount/nft_count.nfts_minted_in_tx) AS amount_usd + , CASE WHEN et.success THEN 'ETH' ELSE pu_erc20s.symbol END AS currency_symbol + , CASE WHEN et.success THEN {{eth_currency_contract}} ELSE erc20s.contract_address END AS currency_contract + , nft_mints.contract_address AS nft_contract_address + , etxs.to AS project_contract_address + , agg.name AS aggregator_name + , agg.contract_address AS aggregator_address + , nft_mints.tx_hash AS tx_hash + , etxs."from" AS tx_from + , etxs.to AS tx_to + , UINT256 '0' AS platform_fee_amount_raw + , DOUBLE '0' AS platform_fee_amount + , DOUBLE '0' AS platform_fee_amount_usd + , DOUBLE '0' AS platform_fee_percentage + , CAST(NULL as VARBINARY) AS royalty_fee_receive_address + , '0' AS royalty_fee_currency_symbol + , UINT256 '0' AS royalty_fee_amount_raw + , DOUBLE '0' AS royalty_fee_amount + , DOUBLE '0' AS royalty_fee_amount_usd + , DOUBLE '0' AS royalty_fee_percentage + , nft_mints.evt_index + FROM {{ ref('nft_transfers') }} nft_mints + LEFT JOIN nfts_per_tx nft_count ON nft_count.tx_hash=nft_mints.tx_hash + LEFT JOIN {{ base_traces }} et ON et.block_time=nft_mints.block_time + AND et.tx_hash=nft_mints.tx_hash + AND et."from"=nft_mints.to + AND (et.call_type NOT IN ('delegatecall', 'callcode', 'staticcall') OR et.call_type IS NULL) + AND et.success + AND CAST(et.value as DOUBLE) > 0 + {% if is_incremental() %} + AND {{incremental_predicate('et.block_time')}} + {% endif %} + LEFT JOIN {{ source('prices','usd') }} pu_eth + ON pu_eth.blockchain IS NULL + AND pu_eth.minute=date_trunc('minute', et.block_time) + AND pu_eth.symbol = 'ETH' + {% if is_incremental() %} + AND {{incremental_predicate('pu_eth.minute')}} + {% endif %} + LEFT JOIN {{ erc20_transfer }} erc20s ON erc20s.evt_block_time=nft_mints.block_time + AND erc20s."from"=nft_mints.to + AND erc20s.evt_tx_hash = nft_mints.tx_hash + AND (et.value IS NULL OR CAST(et.value as double) = 0) + {% if is_incremental() %} + AND {{incremental_predicate('erc20s.evt_block_time')}} + {% endif %} + LEFT JOIN {{ source('prices','usd') }} pu_erc20s ON pu_erc20s.blockchain='{{blockchain}}' + AND pu_erc20s.minute=date_trunc('minute', erc20s.evt_block_time) + AND erc20s.contract_address=pu_erc20s.contract_address + {% if is_incremental() %} + AND {{incremental_predicate('pu_erc20s.minute')}} + {% endif %} + LEFT JOIN {{ base_transactions }} etxs ON etxs.block_time=nft_mints.block_time + AND etxs.hash=nft_mints.tx_hash + {% if is_incremental() %} + AND {{incremental_predicate('etxs.block_time')}} + {% endif %} + LEFT JOIN {{ ref('nft_aggregators') }} agg + ON etxs.to=agg.contract_address + AND agg.blockchain = '{{blockchain}}' + LEFT JOIN {{ ref('tokens_nft') }} tok + ON tok.contract_address=nft_mints.contract_address + and tok.blockchain = '{{blockchain}}' + LEFT JOIN namespaces ec ON etxs.to=ec.address + {%- if blockchain == 'optimism' %} + LEFT JOIN {{ ref('tokens_optimism_nft_bridged_mapping') }} as bm + ON bm.contract_address=nft_mints.contract_address + {%- endif -%} + {% if is_incremental() %} + LEFT JOIN {{this}} anti_txs + ON anti_txs.block_time=nft_mints.block_time + AND anti_txs.tx_hash=nft_mints.tx_hash + WHERE anti_txs.tx_hash IS NULL + {% else %} + WHERE 1=1 + {% endif %} + AND nft_mints."from"= 0x0000000000000000000000000000000000000000 + AND nft_mints.blockchain = '{{blockchain}}' + {%- if blockchain == 'ethereum' %} + AND nft_mints.contract_address NOT IN (SELECT address FROM {{ ref('addresses_ethereum_defi') }}) + {%- endif -%} + {%- if blockchain == 'optimism' %} + -- to exclude bridged L1 NFT collections to L2 + AND bm.contract_address is null + {%- endif -%} + {% if is_incremental() %} + AND {{incremental_predicate('nft_mints.block_time')}} + {% endif %} + GROUP BY nft_mints.block_time, nft_mints.block_number, nft_mints.token_id, nft_mints.token_standard + , nft_mints.amount, nft_mints."from", nft_mints.to, nft_mints.contract_address, etxs.to, nft_mints.evt_index + , nft_mints.tx_hash, etxs."from", ec.namespace, tok.name, pu_erc20s.decimals, pu_eth.price, pu_erc20s.price + , agg.name, agg.contract_address, nft_count.nfts_minted_in_tx, pu_erc20s.symbol, erc20s.contract_address, et.success + ) tmp +) tmp_2 +WHERE rank_index = 1 + +{% endmacro %} diff --git a/macros/models/_sector/nft/platforms/zora_mints.sql b/macros/models/_sector/nft/platforms/zora_mints.sql new file mode 100644 index 00000000000..ae18fe70fe4 --- /dev/null +++ b/macros/models/_sector/nft/platforms/zora_mints.sql @@ -0,0 +1,68 @@ +{% macro + zora_mints(blockchain, wrapped_native_token_address, erc721_mints, erc1155_mints, transactions) +%} + +SELECT '{{blockchain}}' AS blockchain +, mints.evt_block_time AS block_time +, mints.evt_block_number AS block_number +, 'erc721' AS token_standard +, mints.firstPurchasedTokenId + t.sequence_element AS token_id +, 1 AS quantity +, mints.pricePerToken/1e18/mints.quantity AS total_price +, pu.price*(mints.pricePerToken/1e18/mints.quantity) AS total_price_usd +, mints.to AS recipient +, mints.evt_tx_hash AS tx_hash +, mints.evt_index +, mints.contract_address +, txs."from" AS tx_from +, txs.to AS tx_to +FROM {{erc721_mints}} mints +INNER JOIN {{transactions}} txs ON txs.block_number=mints.evt_block_number + AND txs.hash=mints.evt_tx_hash + {% if is_incremental() %} + AND {{incremental_predicate('txs.block_time')}} + {% endif %} +INNER JOIN {{ ref('prices_usd_forward_fill') }} pu ON pu.blockchain='{{blockchain}}' + AND pu.contract_address= {{wrapped_native_token_address}} + AND pu.minute=date_trunc('minute', mints.evt_block_time) + {% if is_incremental() %} + AND {{incremental_predicate('pu.minute')}} + {% endif %} +CROSS JOIN UNNEST(sequence(1, CAST(quantity AS BIGINT))) AS t(sequence_element) +{% if is_incremental() %} +WHERE {{incremental_predicate('mints.evt_block_time')}} +{% endif %} + +UNION ALL + +SELECT '{{blockchain}}' AS blockchain +, mints.evt_block_time AS block_time +, mints.evt_block_number AS block_number +, 'erc1155' AS token_standard +, mints.tokenId AS token_id +, mints.quantity +, mints.value/1e18 AS total_price +, pu.price*(mints.value/1e18) AS total_price_usd +, mints.sender AS recipient +, mints.evt_tx_hash AS tx_hash +, mints.evt_index +, mints.contract_address +, txs."from" AS tx_from +, txs.to AS tx_to +FROM {{erc1155_mints}} mints +INNER JOIN {{transactions}} txs ON txs.block_number=mints.evt_block_number + AND txs.hash=mints.evt_tx_hash + {% if is_incremental() %} + AND {{incremental_predicate('txs.block_time')}} + {% endif %} +INNER JOIN {{ ref('prices_usd_forward_fill') }} pu ON pu.blockchain='{{blockchain}}' + AND pu.contract_address= {{wrapped_native_token_address}} + AND pu.minute=date_trunc('minute', mints.evt_block_time) + {% if is_incremental() %} + AND {{incremental_predicate('pu.minute')}} + {% endif %} +{% if is_incremental() %} +WHERE {{incremental_predicate('mints.evt_block_time')}} +{% endif %} + +{% endmacro %} \ No newline at end of file diff --git a/macros/models/_sector/referral/platforms/mintfun_referral_rewards.sql b/macros/models/_sector/referral/platforms/mintfun_referral_rewards.sql new file mode 100644 index 00000000000..f7518d9cf56 --- /dev/null +++ b/macros/models/_sector/referral/platforms/mintfun_referral_rewards.sql @@ -0,0 +1,35 @@ +{% macro mintfun_referral_rewards( + blockchain + ,MintPayout_evt_MintDeposit + ) +%} + +select + '{{blockchain}}' as blockchain + ,'mint_fun' as project + ,'v1' as version + ,evt_block_number as block_number + ,evt_block_time as block_time + ,cast(date_trunc('day',evt_block_time) as date) as block_date + ,cast(date_trunc('month',evt_block_time) as date) as block_month + ,evt_tx_hash as tx_hash + ,'NFT' as category + ,referrer as referrer_address + ,minter as referee_address + ,{{ var("ETH_ERC20_ADDRESS") }} as currency_contract + ,"referralPayout" as reward_amount_raw + ,"mintContract" as project_contract_address + ,evt_index as sub_tx_id + ,tx."from" as tx_from + ,tx.to as tx_to +from {{MintPayout_evt_MintDeposit}} e +inner join {{source(blockchain, 'transactions')}} tx + on evt_block_number = tx.block_number + and evt_tx_hash = tx.hash + {% if is_incremental() %} + and {{incremental_predicate('tx.block_time')}} + {% endif %} +{% if is_incremental() %} +where {{incremental_predicate('evt_block_time')}} +{% endif %} +{% endmacro %} diff --git a/macros/models/_sector/referral/platforms/rabbithole_referral_rewards.sql b/macros/models/_sector/referral/platforms/rabbithole_referral_rewards.sql index 04769f3e5b6..e605f7d46d2 100644 --- a/macros/models/_sector/referral/platforms/rabbithole_referral_rewards.sql +++ b/macros/models/_sector/referral/platforms/rabbithole_referral_rewards.sql @@ -1,6 +1,7 @@ {% macro rabbithole_referral_rewards( blockchain ,QuestFactory_evt_MintFeePaid + ,native_currency_contract = var('ETH_ERC20_ADDRESS') ) %} @@ -17,7 +18,7 @@ select ,'Quest' as category ,referrerAddress as referrer_address ,tx."from" as referee_address -- will be overwritten as tx_from - ,{{var('ETH_ERC20_ADDRESS')}} as currency_contract + ,{{native_currency_contract}} as currency_contract ,referrerAmountWei as reward_amount_raw ,contract_address as project_contract_address -- the drop contract ,evt_index as sub_tx_id diff --git a/macros/models/_sector/tokens/transfers_enrich.sql b/macros/models/_sector/tokens/transfers_enrich.sql index dae48d5d3b2..a285bec5fbc 100644 --- a/macros/models/_sector/tokens/transfers_enrich.sql +++ b/macros/models/_sector/tokens/transfers_enrich.sql @@ -8,7 +8,7 @@ END {%- endmacro-%} {%- macro transfers_enrich(blockchain, transfers_base, native_symbol) %} -SELECT '{{blockchain}}' as blockchain +SELECT t.blockchain , t.block_time , t.block_number , t.tx_hash diff --git a/macros/public/evm_get_calldata_gas_from_data.sql b/macros/public/evm_get_calldata_gas_from_data.sql new file mode 100644 index 00000000000..6c2bc8c208a --- /dev/null +++ b/macros/public/evm_get_calldata_gas_from_data.sql @@ -0,0 +1,10 @@ +{% macro evm_get_calldata_gas_from_data(data_field) %} + 16 * ( bytearray_length({{data_field}}) - (length(from_utf8({{data_field}})) - length(replace(from_utf8({{data_field}}), chr(0), ''))) ) --nonzero bytes + + 4 * ( (length(from_utf8({{data_field}})) - length(replace(from_utf8({{data_field}}), chr(0), ''))) ) +{% endmacro %} + +--run macro + -- create or replace function evm_get_calldata_gas_from_data(data_field VARBINARY) + -- returns INTEGER + -- return + -- SELECT \ No newline at end of file diff --git a/macros/public/get_chain_explorer.sql b/macros/public/get_chain_explorer.sql index 684938d298a..cdf3a286993 100644 --- a/macros/public/get_chain_explorer.sql +++ b/macros/public/get_chain_explorer.sql @@ -5,7 +5,7 @@ SELECT case when 'ethereum' = chain_ then 'https://etherscan.io' - when 'optimism' = chain_ then 'https://optimistic.etherscan.io' + when 'optimism' = chain_ then 'https://explorer.optimism.io' when 'polygon' = chain_ then 'https://polygonscan.com' when 'arbitrum' = chain_ then 'https://arbiscan.io' when 'avalanche_c' = chain_ then 'https://snowtrace.io' diff --git a/macros/public/get_chain_explorer_address.sql b/macros/public/get_chain_explorer_address.sql index 437710bd979..cdb86970c47 100644 --- a/macros/public/get_chain_explorer_address.sql +++ b/macros/public/get_chain_explorer_address.sql @@ -5,7 +5,7 @@ SELECT case when 'ethereum' = chain_ then 'https://etherscan.io/address/' || CAST(column_ AS VARCHAR) - when 'optimism' = chain_ then 'https://optimistic.etherscan.io/address/' || CAST(column_ AS VARCHAR) + when 'optimism' = chain_ then 'https://explorer.optimism.io/address/' || CAST(column_ AS VARCHAR) when 'polygon' = chain_ then 'https://polygonscan.com/address/' || CAST(column_ AS VARCHAR) when 'arbitrum' = chain_ then 'https://arbiscan.io/address/' || CAST(column_ AS VARCHAR) when 'avalanche_c' = chain_ then 'https://snowtrace.io/address/' || CAST(column_ AS VARCHAR) diff --git a/macros/public/get_chain_explorer_tx_hash.sql b/macros/public/get_chain_explorer_tx_hash.sql index 3bc66fe538b..e1104a7dd4d 100644 --- a/macros/public/get_chain_explorer_tx_hash.sql +++ b/macros/public/get_chain_explorer_tx_hash.sql @@ -5,7 +5,7 @@ SELECT case when 'ethereum' = chain_ then 'https://etherscan.io/tx/' || CAST(hash_ AS VARCHAR) - when 'optimism' = chain_ then 'https://optimistic.etherscan.io/tx/' || CAST(hash_ AS VARCHAR) + when 'optimism' = chain_ then 'https://explorer.optimism.io/tx/' || CAST(hash_ AS VARCHAR) when 'polygon' = chain_ then 'https://polygonscan.com/tx/' || CAST(hash_ AS VARCHAR) when 'arbitrum' = chain_ then 'https://arbiscan.io/tx/' || CAST(hash_ AS VARCHAR) when 'avalanche_c' = chain_ then 'https://snowtrace.io/tx/' || CAST(hash_ AS VARCHAR) diff --git a/macros/public/public_macros_schema.yml b/macros/public/public_macros_schema.yml index 3421e184a03..af6251654c7 100644 --- a/macros/public/public_macros_schema.yml +++ b/macros/public/public_macros_schema.yml @@ -25,3 +25,9 @@ macros: description: "Valid base58 string" - name: get_balancer_link description: "Returns a link to access a specific pool on the Balancer app, based on its blockchain and pool ID" + - name: evm_get_calldata_gas_from_data + description: "Returns the amount of gas used by transaction data (given a data field) by EVM specification" + arguments: + - name: data_field + type: varbinary + description: "Field containing calldata" diff --git a/macros/test-helpers/check_seed_macro.sql b/macros/test-helpers/check_seed_macro.sql index abaf5fcf288..28fb50b19ca 100644 --- a/macros/test-helpers/check_seed_macro.sql +++ b/macros/test-helpers/check_seed_macro.sql @@ -44,8 +44,12 @@ {% endfor -%} WHERE 1=1 {%- if filter is not none %} - {%- for col, val in filter.items() %} - {% if val is not none %} AND seed.{{col}} = '{{val}}' {% endif %} + {%- for col, val_or_vals in filter.items() %} + {% if val_or_vals is iterable and val_or_vals is not string %} + AND seed.{{ col }} IN ({% for val in val_or_vals %}'{{ val }}'{% if not loop.last %}, {% endif %}{% endfor %}) + {% else %} + AND seed.{{ col }} = '{{ val_or_vals }}' + {% endif %} {% endfor -%} {% endif -%} ), diff --git a/models/_sector/contracts/_schema.yml b/models/_sector/contracts/_schema.yml index 11209203595..092eabcee80 100644 --- a/models/_sector/contracts/_schema.yml +++ b/models/_sector/contracts/_schema.yml @@ -3,7 +3,7 @@ version: 2 models: - name: contracts_project_name_mappings meta: - blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli + blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli, zora sector: contracts contributors: chuxin, msilb7 config: @@ -21,7 +21,7 @@ models: - name: contracts_contract_mapping meta: - blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli + blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli, zora sector: contracts contributors: chuxin, msilb7 config: @@ -134,7 +134,7 @@ models: - name: contracts_predeploys meta: - blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli + blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli, zora sector: contracts contributors: chuxin, msilb7 config: @@ -156,7 +156,7 @@ models: - name: contracts_contract_creator_address_list meta: - blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli + blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli, zora sector: contracts contributors: chuxin, msilb7 config: @@ -173,7 +173,7 @@ models: - name: contracts_contract_overrides meta: - blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli + blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli, zora sector: contracts contributors: chuxin, msilb7 config: @@ -187,7 +187,7 @@ models: - name: contracts_self_destruct_contracts meta: - blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli + blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli, zora sector: contracts contributors: chuxin, msilb7 config: @@ -211,7 +211,7 @@ models: - name: contracts_deterministic_contract_creators meta: - blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli + blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli, zora sector: contracts contributors: chuxin, msilb7 config: @@ -224,7 +224,7 @@ models: - name: contracts_disperse_contracts meta: - blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli + blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli, zora sector: contracts contributors: msilb7 config: @@ -241,7 +241,7 @@ models: - name: contracts_system_predeploys meta: - blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli + blockchain: ethereum, optimism, arbitrum, avalanche_c, polygon, bnb, gnosis, fantom, base, goerli, zora sector: contracts contributors: msilb7 config: @@ -255,5 +255,6 @@ models: - blockchain columns: - *blockchain + - *contract_project - *contract_address - *contract_name \ No newline at end of file diff --git a/models/_sector/contracts/arbitrum/_schema.yml b/models/_sector/contracts/arbitrum/_schema.yml new file mode 100644 index 00000000000..2452962259a --- /dev/null +++ b/models/_sector/contracts/arbitrum/_schema.yml @@ -0,0 +1,232 @@ +version: 2 + +models: + + - name: contracts_arbitrum_contract_mapping + meta: + blockchain: arbitrum + sector: contracts + contributors: chuxin, msilb7 + config: + tags: ['evm', 'arbitrum', 'contracts', 'addresses'] + description: "Mapping of contracts to its creators and names on Ethereum." + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - contract_address + + + columns: + - &created_month + name: created_month + description: "Monthly partition, when the contract was created" + - &blockchain + name: blockchain + description: "Name of chain in Dune database" + - &trace_creator_address + name: trace_creator_address + description: "Address creating the contract in the transaction trace" + - &contract_address + name: contract_address + description: "Address of the contract" + - &contract_project + name: contract_project + description: "Project name of the contract" + - &token_symbol + name: token_symbol + description: "Token symbol of the contract, if any" + - &contract_name + name: contract_name + description: "Contract name" + - &creator_address + name: creator_address + description: "Highest-level contract creator address (i.e. which address deployed the factory which deployed contracts), or the tx_from when the contract creator address is non-deterministic." + - &deployer_address + name: deployer_address + description: "Attribution to the mapped deployer address at the creation trace, handles for ~most deterministic deployers and smart wallet creations." + - &created_time + name: created_time + description: "contract creation time" + - &is_self_destruct + name: is_self_destruct + description: "Flag if it is a self destruct contract" + - &created_tx_hash + name: created_tx_hash + description: "Contract creation transaction hash" + - &created_block_number + name: created_block_number + description: "Contract creation block number" + - &created_tx_from + name: created_tx_from + description: "Contract creation transaction from address" + - &created_tx_to + name: created_tx_to + description: "Contract creation transaction to address" + - &created_tx_method_id + name: created_tx_method_id + description: "Method ID of the transaction. This is useful for determining how a contract was deployed (i.e Safe transaction vs traditional deployment)" + - &created_tx_index + name: created_tx_index + description: "Index of the contract creation transaction within its block" + - &top_level_time + name: top_level_time + description: "Top-Level contract creation transaction block time" + - &top_level_tx_hash + name: top_level_tx_hash + description: "Top-Level contract creation transaction hash" + - &top_level_block_number + name: top_level_block_number + description: "Top-Level contract creation transaction block number" + - &top_level_tx_from + name: top_level_tx_from + description: "Top-Level contract creation transaction from address" + - &top_level_tx_to + name: top_level_tx_to + description: "Top-Level contract creation transaction to address" + - &top_level_tx_method_id + name: top_level_tx_method_id + description: "Method ID of the top-level transaction. This is useful for determining how the top-level contract was deployed (i.e Safe transaction vs traditional deployment)" + + - &code_bytelength + name: code_bytelength + description: "Length of the deployed code, measured in bytes. This is used for spam filtering" + - &token_standard + name: token_standard + description: "What token standard the contract is. For non-tokens, this field will be null." + + - &code + name: code + description: "Runtime bytecode of the contract" + + - &code_deploy_rank_by_chain + name: code_deploy_rank_by_chain + description: "Was this the 1st, 2rd, 3rd, etc time the same exact bytecode was deployed by chain? (1 = 1st). This can be used for spam filtering." + - &is_eoa_deployed + name: is_eoa_deployed + description: "Was the contract deployed by an EOA (test if the trace creator = the transaction sender)" + - &is_smart_wallet_deployed + name: is_smart_wallet_deployed + description: "Was the contract deployed by a smart wallet (i.e. Gnosis Safe, ERC4337 wallet)" + - &is_deterministic_deployer_deployed + name: is_deterministic_deployer_deployed + description: "Was the contract deployed by a deterministic deployer factory (i.e. create2)" + + - name: contracts_arbitrum_find_self_destruct_contracts + meta: + blockchain: arbitrum + sector: contracts + contributors: chuxin, msilb7 + config: + tags: ['evm', 'contracts', 'addresses'] + description: "A list of contracts that are self-destruct, with the time that they were most recently self-destructed." + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - contract_address + + columns: + - *blockchain + - *created_time + - *created_block_number + - *created_tx_hash + - *contract_address + - &destructed_time + name: destructed_time + description: "Block Time when contract was destructed" + - &destructed_block_number + name: destructed_block_number + description: "Block Number when contract was destructed" + - &destructed_tx_hash + name: destructed_tx_hash + description: "Tx Hash where contract was destructed" + + - name: contracts_arbitrum_base_starting_level + meta: + blockchain: arbitrum + sector: contracts + contributors: chuxin, msilb7 + config: + tags: ['evm', 'arbitrum', 'contracts', 'addresses'] + description: "Base Level for mapping of contracts to its creators and names on Ethereum." + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - contract_address + + + columns: + - *blockchain + - *trace_creator_address + - *contract_address + + - *created_time + - *created_month + - *created_block_number + - *created_tx_hash + - *created_tx_from + - *created_tx_to + - *created_tx_method_id + - *created_tx_index + - *top_level_time + - *top_level_block_number + - *top_level_tx_hash + - *top_level_tx_from + - *top_level_tx_to + - *top_level_tx_method_id + - *code_bytelength + - *code + - &reinitialize_rank + name: reinitialize_rank + description: "Rank of the same contract being deployed in descending order - used to only ensure we get the most recent contract instance (allowlist & self-destructs can cause duplicates)." + + - name: contracts_arbitrum_base_iterated_creators + meta: + blockchain: arbitrum + sector: contracts + contributors: chuxin, msilb7 + config: + tags: ['evm', 'arbitrum', 'contracts', 'addresses'] + description: "Iterated creators for mapping of contracts to its creators and names on Ethereum." + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - contract_address + + + columns: + - *blockchain + - *trace_creator_address + - *creator_address + - *deployer_address + - *contract_address + - *created_time + - *created_month + - *top_level_time + - *created_tx_hash + - *created_block_number + - *top_level_tx_hash + - *top_level_block_number + - *top_level_tx_from + - *top_level_tx_to + - *top_level_tx_method_id + - *created_tx_from + - *created_tx_to + - *created_tx_method_id + - *created_tx_index + - *code_bytelength + - *code_deploy_rank_by_chain + - *code + - *is_self_destruct + - &creator_address_lineage + name: creator_address_lineage + description: "array of the lineage of creator addresses until the top-level creator" + - &tx_method_id_lineage + name: tx_method_id_lineage + description: "array of the lineage of tx method ids until the top-level creator" + - &token_standard_erc20 + name: token_standard_erc20 + description: "Token Standard ERC20 Only" \ No newline at end of file diff --git a/models/_sector/contracts/arbitrum/contracts_arbitrum_base_iterated_creators.sql b/models/_sector/contracts/arbitrum/contracts_arbitrum_base_iterated_creators.sql new file mode 100644 index 00000000000..65f67c87a96 --- /dev/null +++ b/models/_sector/contracts/arbitrum/contracts_arbitrum_base_iterated_creators.sql @@ -0,0 +1,15 @@ + {{ + config( + schema = 'contracts_arbitrum', + alias = 'base_iterated_creators', + materialized ='incremental', + file_format ='delta', + incremental_strategy='merge', + unique_key = ['blockchain', 'contract_address'], + partition_by = ['created_month'] + ) +}} + +{{contracts_base_iterated_creators( + chain='arbitrum' +)}} \ No newline at end of file diff --git a/models/_sector/contracts/arbitrum/contracts_arbitrum_base_starting_level.sql b/models/_sector/contracts/arbitrum/contracts_arbitrum_base_starting_level.sql new file mode 100644 index 00000000000..eec2061d0d6 --- /dev/null +++ b/models/_sector/contracts/arbitrum/contracts_arbitrum_base_starting_level.sql @@ -0,0 +1,16 @@ + {{ + config( + schema = 'contracts_arbitrum', + alias = 'base_starting_level', + materialized ='incremental', + file_format ='delta', + incremental_strategy='merge', + unique_key = ['blockchain', 'contract_address'], + partition_by = ['created_month'] + ) +}} +-- depends_on: {{ ref('contracts_deterministic_contract_creators') }} + +{{contracts_base_starting_level( + chain='arbitrum' +)}} \ No newline at end of file diff --git a/models/_sector/contracts/arbitrum/contracts_arbitrum_contract_mapping.sql b/models/_sector/contracts/arbitrum/contracts_arbitrum_contract_mapping.sql new file mode 100644 index 00000000000..e0b3a6e3fd8 --- /dev/null +++ b/models/_sector/contracts/arbitrum/contracts_arbitrum_contract_mapping.sql @@ -0,0 +1,10 @@ + {{ + config( + schema = 'contracts_arbitrum', + alias = 'contract_mapping' + ) +}} + +{{contracts_contract_mapping( + chain='arbitrum' +)}} \ No newline at end of file diff --git a/models/_sector/contracts/arbitrum/contracts_arbitrum_find_self_destruct_contracts.sql b/models/_sector/contracts/arbitrum/contracts_arbitrum_find_self_destruct_contracts.sql new file mode 100644 index 00000000000..f6fb96e9bdc --- /dev/null +++ b/models/_sector/contracts/arbitrum/contracts_arbitrum_find_self_destruct_contracts.sql @@ -0,0 +1,14 @@ + {{ + config( + schema = 'contracts_arbitrum', + alias = 'find_self_destruct_contracts', + materialized ='incremental', + file_format ='delta', + unique_key = ['blockchain', 'contract_address'], + incremental_strategy='merge' + ) +}} + +{{find_self_destruct_contracts( + chain='arbitrum' +)}} \ No newline at end of file diff --git a/models/_sector/contracts/base/_schema.yml b/models/_sector/contracts/base/_schema.yml index 95b95054e38..08e21ff7fbc 100644 --- a/models/_sector/contracts/base/_schema.yml +++ b/models/_sector/contracts/base/_schema.yml @@ -15,7 +15,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - &created_month @@ -125,7 +125,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - *blockchain - *created_time @@ -155,7 +155,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - *blockchain @@ -195,7 +195,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - *blockchain diff --git a/models/_sector/contracts/contracts_contract_creator_address_list.sql b/models/_sector/contracts/contracts_contract_creator_address_list.sql index 077105bed47..b914858e737 100644 --- a/models/_sector/contracts/contracts_contract_creator_address_list.sql +++ b/models/_sector/contracts/contracts_contract_creator_address_list.sql @@ -4,7 +4,7 @@ schema = 'contracts', alias = 'contract_creator_address_list', unique_key='creator_address', - post_hook='{{ expose_spells(\'["ethereum", "optimism", "arbitrum", "avalanche_c", "polygon", "bnb", "gnosis", "fantom", "base", "goerli"]\', + post_hook='{{ expose_spells(\'["ethereum", "base", "optimism", "zora"]\', "sector", "contracts", \'["msilb7", "chuxin"]\') }}' @@ -731,6 +731,9 @@ WITH curated_list AS ( ,(0xffa0cb9f057d077d85655be8823961c4fd4cb56a, 'Alienswap') ,(0x79e529874c1fdC0417732B4deBCD9963eF2C7031, 'Anotherblock') ,(0x365212Ecc6715A561C1ec128FCc3AEd9DBF3c404, 'Archly') + ,(0xe9e586a61fd95bb8d20e17cd9d1e22222de8f983, 'Archly') + ,(0x82d3c9246890e672ba4dfbf2038c791727bcb34a, 'Archly') + ,(0xEcF083eD063f8cdeE580A43f60A3726ef59C66aa, 'InstaDapp') --Avocado ,(0x9652721d02b9db43f4311102820158aBb4ecc95B, 'Base') --Base: Deployer 1 ,(0xfD5844867387Cecc3A0393b3e0BE32479Ea9e61a, 'SwapBased') @@ -751,7 +754,57 @@ WITH curated_list AS ( ,(0xccFa0530B9d52f970d1A2dAEa670ce58E4176389, 'BALD') ,(0xb5BB53E93D11876b6a49A45885b602eF0Ab286E6, 'MonkeyLeague') ,(0xC3F9774aF21a030Ab785CB45510BA9EdC9d0c8CD, 'Moonwell') + ,(0x5F0A0e3B30d304fBa56e2EEe3A442b0Bb5C40275, 'Moonwell') ,(0x1626709C8456d5BdD4667D878CD8618ce53f5eb2, 'Newthrone') + ,(0x4F0D938A81343A5Fb10d6BB20BF5996E2e557586, 'RAI Finance') + ,(0xeee47e88a8176c0774673e0e78ed0afffd5f7fff, 'Tokepad') + ,(0x3c6D5c150EE29B698c6C821B53886C41d239669c, 'Uniswap') + ,(0x5ee2b0fd8d964cb50e787db4ff176d7bbb0fd180, 'Layer Zero') + ,(0x144fe9807c92c64acc4bb8e3b8917723efc0d557, 'Clearpool') + ,(0x3bEAAb5E79e2588D575cfBa48a74d59A9E94C4Fa, 'Clearpool') + ,(0x3601ccd1f6843cd1073f2f769f70905656168ef0, 'Aloe II') + ,(0xbbc2cd847bdf10468861dab854cd2b2e315e28c8, 'Aloe II') + ,(0x2287fa6efdec6d8c3e0f4612ce551decf89a357a, 'Backed') + ,(0x398df9f7d65c177c00749ffc83cb34ba5e07bf8b, 'Beethoven X') + ,(0x9e3d8dcd4c4c67eaa752457a51efbf98cb5439c6, 'Chainlink') + ,(0x4f350ba97d9e4bd9713763126a907960949c8101, 'Clipper') + ,(0x33b88b0e675a5e2c886bd66a493a0f69c6db8f2b, 'Collab.Land') + ,(0x5a041ec279a81f5421667f665767b30dd8e3e36d, 'Connext') + ,(0x3d6a34d8ece4640adff2f38a5bd801e51b07e49c, 'DappGate') + ,(0x4be6369ceab4719108e9fbfc9b304201f1fe58aa, 'Delegate.xyz') + ,(0xd1ac051dc0e1366502ef3fe4d754fbec6986a177, 'Gelato') + ,(0x562c4e878b5cd1f64007358695e8187cb4517c64, 'Gelato') + ,(0x346389e519536a049588b8adcde807b69a175939, 'Gelato') + ,(0xf7b73f96951e7ef3f9da69b4ec6431319ade7e9f, 'Guild.xyz') + ,(0x0989cd2871b36d638140354731301a32d2409c3a, 'Highlight.xyz') + ,(0xcafe2ef59688187ee312c8aca10ceb798338f7e3, 'Holonym') + ,(0x5ee2b0fd8d964cb50e787db4ff176d7bbb0fd180, 'Layer Zero') + ,(0x2a61d3ba5030ef471c74f612962c7367eca3a62d, 'Lido') + ,(0x11f11121df7256c40339393b0fb045321022ce44, 'Lifi') + ,(0x92b381515bd4851faf3d33a161f7967fd87b1227, 'Manifold') + ,(0x687be8d213d49bc353d60298c51d8823632d8158, 'Mirror') + ,(0xc3e9591edb56dcc951d50cd5002108e9d8968410, 'OpenOcean') + ,(0x8f1e16be9b6f88acf2cd58da84a335463350b9fb, 'Paragraph') + ,(0x22f3bdd1135e62ba7ee980ed53ded634e412869c, 'Paraswap') + ,(0x247d4a505cdcb3c715465d4bb988aacfe6d6affc, 'Pods') + ,(0xe0e7b7c5ae92fe94d2ae677d81214d6ad7a11c27, 'Pooltogether') + ,(0x83681c14770b44361e21faf91d8325423365ea5c, 'Revert Finance') + ,(0x3226c9eac0379f04ba2b1e1e1fcd52ac26309aea, 'Ricochet Exchange') + ,(0x979b44cfc7a9b54bed8a3c4fd674b09c194219fd, 'Saddle Finance') + ,(0xb73acb429ba868984c0236bdf940d4fe1e643f27, 'Synapse') + ,(0xa5e6efda500fd0bced87b2cd8af1c81c0cc9d556, 'Synapse') + ,(0x3b30a7d3e65c5a0fff727bad7eb6fa269b4a9222, 'Teahouse') + ,(0x310a7ca95b4c2156621591dfbd77557d729bed0e, 'Thales') + ,(0x2e5d207a4c0f7e7c52f6622dcc6eb44bc0fe1a13, 'Unidex') + ,(0xd2cfd172a1d55971f31bc293fcd23863be3325ab, 'Unidex') + ,(0xd32ff78579352ca78f416120a9f68b65c410871b, 'Uniswap') + ,(0xd42c7914cf8dc24a1075e29c283c581bd1b0d3d3, 'Velodrome') + ,(0x51cc12e6a4fccbcd6eb6f1c5905263edc5578c5f, 'Velodrome') + ,(0x76d266dfd3754f090488ae12f6bd115cd7e77ebd, 'Vesper') + ,(0x96d55bd9c8c4706fed243c1e15825ff7854920fa, 'Worldcoin') + ,(0xf69fec6d858c77e969509843852178bd24cad2b6, 'Zora') + ,(0x05950b4e68f103d5abef20364de219a247e59c23, 'Contango') + ,(0xFe1A6056EE03235f30f7a48407A5673BBf25eD48, 'Aave') ,(0x2fbB0c60a41cB7Ea5323071624dCEAD3d213D0Fa, 'Aave') @@ -828,6 +881,74 @@ WITH curated_list AS ( ,(0x36928500Bc1dCd7af6a2B4008875CC336b927D57, 'Tether') --Bitfinex Deployer ,(0xa82cbE54d2dAe403f7B3385aA2afA03E7AF0591A, 'XEN Crypto') ,(0x95Ba4cF87D6723ad9C0Db21737D862bE80e93911, 'Circle') + ,(0xc4a6080fdd7525e2a4ed9e211b4e99f40a890640, 'Candide') + ,(0x09fd4f6088f2025427ab1e89257a44747081ed59, 'Etherspot') + ,(0x8d8a9cf53b7d95c148cb159384d249f8fb68db3f, 'ZeroDev') + ,(0x9775137314fe595c943712b0b336327dfa80ae8a, 'ZeroDev') + + ,(0x855e321ad155D45B64475EEe946D8fA492A7f3F3, 'StableBase') + ,(0x3885226c26c467B342220132ec9d0b311b2DD43c, 'Base') + ,(0x5c146cd18fa53914580573c9b9604588529406ca, 'Equalizer Exchange') + ,(0x5aab1dae1ef9d93b7095d9de9c0ebb150d0c37f0, 'Overtime Markets') + ,(0xec219699d2faeb3f416c116de60cdb4aaf2f8d7c, 'Maverick') + ,(0x5b540d168e2468270a3b5c66dd1a6e4ece6be593, 'Aave') + ,(0xdfa1a2df1ff153ab2afc327661e8414f2d04b3e3, 'Pancakeswap') + ,(0xdd3705a1c50fc84b6d31394aa8f4d568b98a8ad5, 'Alienbase') + ,(0x6647da1da67bcab3af15c0eb9f7983b3c574b08e, 'Vela Exchange') + ,(0x33eb4dea4931e5d607531fb08bd393944aa01faa, 'Seamless Protocol') + ,(0xe7affdb964178261df49b86bfdba78e9d768db6d, 'Loot2') + ,(0x30109f25428cbe2aa7fd33646a097bfbecf17365, 'USDV') + ,(0x02f086dbc384d69b3041bc738f0a8af5e49da181, 'Parallel') + ,(0x3073fcad986fbe9f94cc6caa44f76c12e34516d4, 'Moonwell') + ,(0xa7a5e47d3959bf134e3ecdeb1f62e054f0d58a18, 'Reserve Protocol') + ,(0x38f2ad967328f246763d052cea13ebde47d54518, 'Elk Finance') + ,(0x2a069e21395dc7f89f780f8cf5383a0ff598b672, 'Hats Protocol') + ,(0x1885b7c7a3ae1f35ba71c0392c13153a95c4914f, 'Hats Finance') + ,(0x0ae6af9c58d2830c2721ebd06f89a73bff19fb26, 'Jarvis Network') + ,(0xA825fc60eB4B1269F1dF0f6E574b953d2b5f7EFc, 'Keep3r Network') + ,(0x0ff213846d42528a4ca24f8079f85b8044acfa7b, 'DMail') + ,(0x63B81972320b5B8d1C1fC90E29F145380b5B9bD4, 'OpenSea') + ,(0x8281B589Ea0c0B126aF00df3FAe781140920500a, 'PancakeSwap') + ,(0xfE351F5Ed699fd5eA80b906F89DfdAd2f885A46C, 'Basedmarkets') + ,(0x7a906107E2E0c9Db9a991Eaa8Ac8D50764460E85, 'TagDotTech') + ,(0x55638a37D2C29a1c602Dc0e3f81751a54dc504f0, 'Deus Finance') + ,(0x16fAEd102610Ef4374540C000FF0316f0E058419, 'Eco') + ,(0xC773006d1e940157b4b3aFabE3CCc165C6253049, 'Edgeware') + ,(0x603d50BAd151Da8becf405E51a8c4Abc8bA1c95E, 'Raft') + ,(0x88d9bc8a0c50fCF7cDd160b906D64c312bef79d6, 'Synthswap') + ,(0x2202A7Fe406DDaB2F85af596D4F4818a903CB85e, 'Pyth') + ,(0x89955a99552F11487FFdc054a6875DF9446B2902, 'Morphex') + ,(0xb1dd2fdb023cb54b7cc2a0f5d9e8d47a9f7723ce, 'Morphex') + ,(0xbbbbb8c4364ec2ce52c59d2ed3e56f307e529a94, 'Tetu') + ,(0x3b91ca4d89b5156d456cbd0d6305f7f36b1517a4, 'Morphex') + ,(0x1491f4b6dbaf2ed0a4cf94285608b132b27df5df, 'PixeBots') + ,(0xe733472413376c855272418a6a30f86b218ab869, 'Nether Fi') + ,(0xfe0e16e59015133bf8afde827a0f7a7b3183d6e8, 'BaseSwap') + ,(0x857e7ee37252621345d3225db8f74f9ac0a57953, 'DackieSwap') + ,(0x807f8739105042997d614bf2e654c648989ac137, 'Anotherblock') + ,(0xc31249ba48763df46388ba5c4e7565d62ed4801c, 'Jarvis Network') + ,(0x35a94b6319f0ba9ec930e02cb64ec6bb170bd3f1, 'Rocket Pool') + ,(0xeee7fb850d28f5cabd5f1edf540646b5bea17ce5, 'Liquity') + ,(0x6aaff8af0ae8017725312c388ba3745dfe91185b, 'Circle') + + ,(0x4fed5491693007f0cd49f4614ffc38ab6a04b619, 'Beefy Finance') + ,(0x06263e1a856b36e073ba7a50d240123411501611, 'Giveth') + ,(0x7f3b192ab3220940d66236792f3ebdb0e4e74138, 'Biconomy') + ,(0xaaa6640f36ae35d61ce5e6f2a3c8975d07d1ab90, 'Equalizer Finance') --different from exchange + ,(0x7396f133baa2543ea7917ba3254e61fea3028288, 'Fuse') + ,(0xa2ec022d89b0a80012c2446b0e8e5ff12f88dfc1, 'Wagmi') + ,(0x246e20bf778b3e16cb71eca535f40f8c4e6c4185, 'Aave') + ,(0x0d7effefdb084dfeb1621348c8c70cc4e871eba4, 'Tellor') + ,(0xc42705a210f082ff29e6beac80f56c41f0a54091, 'Aave') + ,(0x31b8939c6e55a4ddaf0d6479320a0dfd9766ee9d, 'T Protocol') + ,(0xd31f9113fdb5bd97d7ddf969f15956808db4a6fb, 'TrueUSD') + ,(0x3a326de86fbc731fc3e0823da5a46a23be65c836, 'dHEDGE') + ,(0xfdf6fa86058d1eacb441adb5acfc143672e59a58, 'MetalSwap') + ,(0x27e80db1f5a975f4c43c5ec163114e796cdb603d, 'Rocket Pool') + ,(0xfcc8c70a7ea0f588135b7b8892995ada7c0117b2, 'Galleon') + + ,(0xcB3Bb767104e0b3235520fafB182e005D7efD045, 'Wombat Exchange') + ) as temp_table (creator_address, contract_project) ) diff --git a/models/_sector/contracts/contracts_contract_mapping.sql b/models/_sector/contracts/contracts_contract_mapping.sql index d784349fa40..c0c19e6af9e 100644 --- a/models/_sector/contracts/contracts_contract_mapping.sql +++ b/models/_sector/contracts/contracts_contract_mapping.sql @@ -2,7 +2,7 @@ config( schema = 'contracts', alias = 'contract_mapping', - post_hook='{{ expose_spells(\'["ethereum", "base", "optimism"]\', + post_hook='{{ expose_spells(\'["ethereum", "base", "optimism", "zora"]\', "sector", "contracts", \'["msilb7", "chuxin"]\') }}' @@ -14,18 +14,11 @@ ref('contracts_ethereum_contract_mapping') , ref('contracts_base_contract_mapping') , ref('contracts_optimism_contract_mapping') + , ref('contracts_zora_contract_mapping') + , ref('contracts_arbitrum_contract_mapping') ] %} --- ('contracts_arbitrum_contract_mapping') --- ,('contracts_avalanche_c_contract_mapping') --- --- ,('contracts_bnb_contract_mapping') --- ,('contracts_celo_contract_mapping') --- ,('contracts_fantom_contract_mapping') --- ,('contracts_gnosis_contract_mapping') --- ,('contracts_goerli_contract_mapping') --- --- ,('contracts_polygon_contract_mapping') +-- todo: add chains for all EVMs in Dune SELECT * FROM ( diff --git a/models/_sector/contracts/contracts_contract_overrides.sql b/models/_sector/contracts/contracts_contract_overrides.sql index 5851aeac2ce..76cccda5985 100644 --- a/models/_sector/contracts/contracts_contract_overrides.sql +++ b/models/_sector/contracts/contracts_contract_overrides.sql @@ -4,7 +4,7 @@ schema = 'contracts', alias = 'contract_overrides', unique_key='contract_address', - post_hook='{{ expose_spells(\'["ethereum", "optimism", "arbitrum", "avalanche_c", "polygon", "bnb", "gnosis", "fantom", "base", "goerli"]\', + post_hook='{{ expose_spells(\'["ethereum", "base", "optimism", "zora"]\', "sector", "contracts", \'["msilb7", "chuxin"]\') }}' @@ -41,6 +41,7 @@ from ,(0xca11bde05977b3631167028862be2a173976ca11, 'Multicall3', 'Multicall3') ,(0xfc2d34a2a545dbe210ad0d8cc0e0e943aacff621, 'first.lol', 'first.lol') --Zora ,(0x914d7Fec6aaC8cd542e72Bca78B30650d45643d7, 'Gnosis Safe', 'Safe Singleton Factory') + ,(0x00005EA00Ac477B1030CE78506496e8C2dE24bf5, 'OpenSea', 'SeaDrop 1.0') --Non-Contract Labels ,(0x80C67432656d59144cEFf962E8fAF8926599bCF8, 'Orbiter Finance', 'Bridge') ,(0xf332761c673b59B21fF6dfa8adA44d78c12dEF09, 'OKX', 'OKX DEX') diff --git a/models/_sector/contracts/contracts_deterministic_contract_creators.sql b/models/_sector/contracts/contracts_deterministic_contract_creators.sql index 162ed1b00c3..8cdf3faad75 100644 --- a/models/_sector/contracts/contracts_deterministic_contract_creators.sql +++ b/models/_sector/contracts/contracts_deterministic_contract_creators.sql @@ -4,7 +4,7 @@ schema = 'contracts', alias = 'deterministic_contract_creators', unique_key='creator_address', - post_hook='{{ expose_spells(\'["ethereum", "optimism", "arbitrum", "avalanche_c", "polygon", "bnb", "gnosis", "fantom", "base", "goerli"]\', + post_hook='{{ expose_spells(\'["ethereum", "base", "optimism", "zora"]\', "sector", "contracts", \'["msilb7"]\') }}' diff --git a/models/_sector/contracts/contracts_predeploys.sql b/models/_sector/contracts/contracts_predeploys.sql index d649ca48104..4767ab877c4 100644 --- a/models/_sector/contracts/contracts_predeploys.sql +++ b/models/_sector/contracts/contracts_predeploys.sql @@ -3,7 +3,7 @@ schema = 'contracts', alias = 'predeploys', - post_hook='{{ expose_spells(\'["ethereum", "optimism", "arbitrum", "avalanche_c", "polygon", "bnb", "gnosis", "fantom", "base", "goerli"]\', + post_hook='{{ expose_spells(\'["ethereum", "base", "optimism", "zora"]\', "sector", "contracts", \'["msilb7", "chuxin"]\') }}' @@ -21,30 +21,23 @@ ,"source" ] %} -{% set op_chains = all_op_chains() %} --macro: all_op_chains.sql - with get_contracts AS ( SELECT *, ROW_NUMBER() OVER (PARTITION BY blockchain, contract_address ORDER BY pref_rnk ASC) AS c_rank FROM ( - {% for chain in op_chains %} --op chain predeploys select - '{{chain}}' as blockchain + blockchain ,cast(NULL as varbinary) as trace_creator_address ,cast(NULL as varbinary) as creator_address ,contract_address - ,'ovm' as contract_project + ,contract_project ,contract_name ,from_iso8601_timestamp( '2021-07-06' ) as created_time ,false as is_self_destruct ,'system predeploys' as source ,cast(NULL as varbinary) as created_tx_hash , 1 as pref_rnk - from {{ ref('contracts_optimism_system_predeploys') }} as c + from {{ ref('contracts_system_predeploys') }} as c group by 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 - {% if not loop.last %} - UNION ALL - {% endif %} - {% endfor %} union all -- ovm 1.0 contracts diff --git a/models/_sector/contracts/contracts_project_name_mappings.sql b/models/_sector/contracts/contracts_project_name_mappings.sql index e92c8ec7fac..b52a7da1a89 100644 --- a/models/_sector/contracts/contracts_project_name_mappings.sql +++ b/models/_sector/contracts/contracts_project_name_mappings.sql @@ -4,7 +4,7 @@ schema = 'contracts', alias = 'project_name_mappings', unique_key='dune_name', - post_hook='{{ expose_spells(\'["ethereum", "optimism", "arbitrum", "avalanche_c", "polygon", "bnb", "gnosis", "fantom", "base", "goerli"]\', + post_hook='{{ expose_spells(\'["ethereum", "base", "optimism", "zora"]\', "sector", "contracts", \'["msilb7", "chuxin"]\') }}' @@ -120,5 +120,7 @@ from ( ,('union_protocol', 'Union Finance') ,('rubic_crosschain', 'Rubic') ,('gyroscope', 'Gyroscope') + ,('synthetix_futuresmarket', 'Synthetix') + ,('synapsefees', 'Synapse') ) as temp_table (dune_name, mapped_name) \ No newline at end of file diff --git a/models/_sector/contracts/contracts_self_destruct_contracts.sql b/models/_sector/contracts/contracts_self_destruct_contracts.sql index 11627530f4b..7ecba526694 100644 --- a/models/_sector/contracts/contracts_self_destruct_contracts.sql +++ b/models/_sector/contracts/contracts_self_destruct_contracts.sql @@ -8,7 +8,7 @@ incremental_strategy='merge', unique_key = ['blockchain', 'contract_address'], partition_by=['blockchain'], - post_hook='{{ expose_spells(\'["ethereum", "optimism", "arbitrum", "avalanche_c", "polygon", "bnb", "gnosis", "fantom", "base", "goerli"]\', + post_hook='{{ expose_spells(\'["ethereum", "optimism", "base", "zora"]\', "sector", "contracts", \'["msilb7", "chuxin"]\') }}' @@ -19,6 +19,7 @@ ref('contracts_ethereum_find_self_destruct_contracts') , ref('contracts_base_find_self_destruct_contracts') , ref('contracts_optimism_find_self_destruct_contracts') + , ref('contracts_zora_find_self_destruct_contracts') ] %} -- ('contracts_arbitrum_find_self_destruct_contracts') diff --git a/models/_sector/contracts/contracts_system_predeploys.sql b/models/_sector/contracts/contracts_system_predeploys.sql index bb620e3d9a9..e9463d63f9e 100644 --- a/models/_sector/contracts/contracts_system_predeploys.sql +++ b/models/_sector/contracts/contracts_system_predeploys.sql @@ -3,35 +3,55 @@ tags = ['static'], schema = 'contracts', alias = 'system_predeploys', - post_hook='{{ expose_spells(\'["ethereum", "optimism", "arbitrum", "avalanche_c", "polygon", "bnb", "gnosis", "fantom", "base", "goerli"]\', + post_hook='{{ expose_spells(\'["ethereum", "base", "optimism", "zora"]\', "sector", "contracts", \'["msilb7", "chuxin"]\') }}' ) }} +{% set op_chains = all_op_chains() %} --macro: all_op_chains.sql + -- https://github.com/ethereum-optimism/optimism/blob/c93958755b4f6ab7f95cc0b2459f39ca95c06684/specs/predeploys.md?plain=1#L48 -SELECT contract_name, contract_address, 'optimism' AS blockchain -FROM (values - ('LegacyMessagePasser', 0x4200000000000000000000000000000000000000) - ,('DeployerWhitelist', 0x4200000000000000000000000000000000000002) - ,('LegacyERC20ETH', 0xDeadDeAddeAddEAddeadDEaDDEAdDeaDDeAD0000) - ,('WETH9', 0x4200000000000000000000000000000000000006) - ,('L2CrossDomainMessenger', 0x4200000000000000000000000000000000000007) - ,('L2StandardBridge', 0x4200000000000000000000000000000000000010) - ,('SequencerFeeVault', 0x4200000000000000000000000000000000000011) - ,('OptimismMintableERC20Factory', 0x4200000000000000000000000000000000000012) - ,('L1BlockNumber', 0x4200000000000000000000000000000000000013) - ,('GasPriceOracle', 0x420000000000000000000000000000000000000F) - ,('GovernanceToken', 0x4200000000000000000000000000000000000042) - ,('L1Block', 0x4200000000000000000000000000000000000015) - ,('L2ToL1MessagePasser', 0x4200000000000000000000000000000000000016) - ,('L2ERC721Bridge', 0x4200000000000000000000000000000000000014) - ,('OptimismMintableERC721Factory', 0x4200000000000000000000000000000000000017) - ,('ProxyAdmin', 0x4200000000000000000000000000000000000018) - ,('BaseFeeVault', 0x4200000000000000000000000000000000000019) - ,('L1FeeVault', 0x420000000000000000000000000000000000001a) +WITH op_stack_predeploys AS ( + SELECT contract_project, contract_name, contract_address + FROM (values + ('OVM', 'LegacyMessagePasser', 0x4200000000000000000000000000000000000000) + ,('OVM', 'DeployerWhitelist', 0x4200000000000000000000000000000000000002) + ,('OVM', 'LegacyERC20ETH', 0xDeadDeAddeAddEAddeadDEaDDEAdDeaDDeAD0000) + ,('OVM', 'WETH9', 0x4200000000000000000000000000000000000006) + ,('OVM', 'L2CrossDomainMessenger', 0x4200000000000000000000000000000000000007) + ,('OVM', 'L2StandardBridge', 0x4200000000000000000000000000000000000010) + ,('OVM', 'SequencerFeeVault', 0x4200000000000000000000000000000000000011) + ,('OVM', 'OptimismMintableERC20Factory', 0x4200000000000000000000000000000000000012) + ,('OVM', 'L1BlockNumber', 0x4200000000000000000000000000000000000013) + ,('OVM', 'GasPriceOracle', 0x420000000000000000000000000000000000000F) + ,('OVM', 'GovernanceToken', 0x4200000000000000000000000000000000000042) + ,('OVM', 'L1Block', 0x4200000000000000000000000000000000000015) + ,('OVM', 'L2ToL1MessagePasser', 0x4200000000000000000000000000000000000016) + ,('OVM', 'L2ERC721Bridge', 0x4200000000000000000000000000000000000014) + ,('OVM', 'OptimismMintableERC721Factory', 0x4200000000000000000000000000000000000017) + ,('OVM', 'ProxyAdmin', 0x4200000000000000000000000000000000000018) + ,('OVM', 'BaseFeeVault', 0x4200000000000000000000000000000000000019) + ,('OVM', 'L1FeeVault', 0x420000000000000000000000000000000000001a) + --- + ,('EAS', 'EAS', 0x4200000000000000000000000000000000000021) + ,('EAS', 'SchemaRegistry', 0x4200000000000000000000000000000000000020) + + ) a (contract_project, contract_name, contract_address) + +) + +{% for chain in op_chains %} --op chain predeploys -) a (contract_name, contract_address) + select + '{{chain}}' as blockchain + , contract_project + , contract_name + , contract_address + FROM op_stack_predeploys + {% if not loop.last %} + UNION ALL + {% endif %} --- UNION ALL other chains \ No newline at end of file +{% endfor %} \ No newline at end of file diff --git a/models/_sector/contracts/ethereum/_schema.yml b/models/_sector/contracts/ethereum/_schema.yml index ef83cfe2ef8..46e4424020f 100644 --- a/models/_sector/contracts/ethereum/_schema.yml +++ b/models/_sector/contracts/ethereum/_schema.yml @@ -15,7 +15,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - &created_month @@ -125,7 +125,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - *blockchain - *created_time @@ -155,7 +155,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - *blockchain @@ -195,7 +195,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - *blockchain diff --git a/models/_sector/contracts/optimism/_schema.yml b/models/_sector/contracts/optimism/_schema.yml index 9498e32f680..a63662348b6 100644 --- a/models/_sector/contracts/optimism/_schema.yml +++ b/models/_sector/contracts/optimism/_schema.yml @@ -14,7 +14,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - &created_month @@ -124,7 +124,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - *blockchain - *created_time @@ -154,7 +154,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - *blockchain @@ -194,7 +194,7 @@ models: combination_of_columns: - blockchain - contract_address - - created_tx_hash + columns: - *blockchain @@ -278,23 +278,4 @@ models: - contract_address columns: - *contract_address - - *contract_name - - - name: contracts_optimism_system_predeploys - meta: - blockchain: optimism - sector: contracts - contributors: msilb7 - config: - tags: ['optimism','op','contracts','predeploy','system'] - description: > - A table containing mappings for predeploy system contracts - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - contract_address - columns: - - name: project_name - description: "Project name associated with the predeploy." - - *contract_address - *contract_name \ No newline at end of file diff --git a/models/_sector/contracts/optimism/contracts_optimism_system_predeploys.sql b/models/_sector/contracts/optimism/contracts_optimism_system_predeploys.sql deleted file mode 100644 index 74e6b3a3856..00000000000 --- a/models/_sector/contracts/optimism/contracts_optimism_system_predeploys.sql +++ /dev/null @@ -1,46 +0,0 @@ - {{ - config( - tags = ['static'], - schema = 'contracts_optimism', - alias = 'system_predeploys', - post_hook='{{ expose_spells(\'["optimism"]\', - "sector", - "contracts", - \'["msilb7", "chuxin"]\') }}' - ) -}} - --- https://github.com/ethereum-optimism/optimism/blob/c93958755b4f6ab7f95cc0b2459f39ca95c06684/specs/predeploys.md?plain=1#L48 --- OP Predeploys -SELECT 'OVM' as project_name, contract_name, contract_address -FROM (values - ('LegacyMessagePasser', 0x4200000000000000000000000000000000000000) - ,('DeployerWhitelist', 0x4200000000000000000000000000000000000002) - ,('LegacyERC20ETH', 0xDeadDeAddeAddEAddeadDEaDDEAdDeaDDeAD0000) - ,('WETH9', 0x4200000000000000000000000000000000000006) - ,('L2CrossDomainMessenger', 0x4200000000000000000000000000000000000007) - ,('L2StandardBridge', 0x4200000000000000000000000000000000000010) - ,('SequencerFeeVault', 0x4200000000000000000000000000000000000011) - ,('OptimismMintableERC20Factory', 0x4200000000000000000000000000000000000012) - ,('L1BlockNumber', 0x4200000000000000000000000000000000000013) - ,('GasPriceOracle', 0x420000000000000000000000000000000000000F) - ,('GovernanceToken', 0x4200000000000000000000000000000000000042) - ,('L1Block', 0x4200000000000000000000000000000000000015) - ,('L2ToL1MessagePasser', 0x4200000000000000000000000000000000000016) - ,('L2ERC721Bridge', 0x4200000000000000000000000000000000000014) - ,('OptimismMintableERC721Factory', 0x4200000000000000000000000000000000000017) - ,('ProxyAdmin', 0x4200000000000000000000000000000000000018) - ,('BaseFeeVault', 0x4200000000000000000000000000000000000019) - ,('L1FeeVault', 0x420000000000000000000000000000000000001a) - -) a (contract_name, contract_address) - -UNION ALL --- EAS Predeploys -SELECT 'EAS' as project_name, contract_name, contract_address -FROM (values - -- Other Predeploys - ('EAS', 0x4200000000000000000000000000000000000021) - ,('SchemaRegistry', 0x4200000000000000000000000000000000000020) - -) a (contract_name, contract_address) \ No newline at end of file diff --git a/models/_sector/contracts/readme.md b/models/_sector/contracts/readme.md index f1efd018cb2..88c97f1e203 100644 --- a/models/_sector/contracts/readme.md +++ b/models/_sector/contracts/readme.md @@ -1,20 +1,16 @@ # Runbook to add a new chain -This is a long process. Ideally we figure out a solution where we don't need to do one per chain, and instead can unify all chains (please help). - -1. Add a new file for the chain in `contracts/chains/contract_creator_project_mapping/` -2. Create dummy legacy model -3. Add this new chain alias to `contracts/chains/contract_creator_project_mapping/contracts_contract_creator_project_mapping_schema.sql` -4. Add the ref to the model to `contracts/contracts_contract_mapping.sql` - -5. Add a new file for the chain in `contracts/chains/find_self_destruct_contracts/` -6. Create dummy legacy model -7. Add this new chain alias to `contracts/chains/find_self_destruct_contracts/contracts_find_self_destruct_contracts_schema.sql` -8. Add the ref to the model to `contracts/contracts_optimism_self_destruct_contracts.sql` +1. Add new files for the chain (can copy from ethereum) in `contracts//contract_creator_project_mapping/` +2. Add this new chain alias to `contracts//_schema.sql` +3. Add refs to the models to `contracts/contracts_contract_mapping.sql` & `contracts/contracts_self_destruct_contracts.sql` +4. Add any new deployer address <> project mappings to `contracts_contract_creator_address_list` {% docs contract_mapping %} # Contract Mapping + +Table models are defined in [`macros/models/_sector/contracts`](https://github.com/duneanalytics/spellbook/tree/main/macros/models/_sector/contracts) + This repository contains all the source code for `contracts.contract_mapping` that you can use to join contract addresses on each chain to pull our mapped project names in the `contract_project` field. Mappings are derived from either mapping the contract deployer address to a project name `contracts.contract_creator_address_list`, reading from Dune's decoded contracts or manually overriding when the creator is not deterministic (i.e. the deployer creates contracts for multiple projects). We also use `contracts.project_name_mappings` to consolidate variations in project names. You can find the dependency graph generated by dbt [here](https://spellbook-docs.dune.com/#!/model/model.spellbook.contracts_contract_mapping). @@ -33,7 +29,7 @@ join contracts.contract_mapping as cm AND cm.blockchain = 'optimism' and not is_self_destruct where - t.block_time > now() - interval '24 hours' + t.block_time > now() - interval '24' hour and t.success group by 1 order by 2 desc @@ -45,4 +41,4 @@ order by 2 desc 3. Submit the pull request (PR) and feel free to tag [@MSilb7](https://github.com/MSilb7) or [@chuxinh](https://github.com/chuxinh) if there's any questions 4. Once the PR is merged, check on Dune if your work is correctly reflected 🔴✨ -{% enddocs %} \ No newline at end of file +{% enddocs %} diff --git a/models/_sector/contracts/zora/_schema.yml b/models/_sector/contracts/zora/_schema.yml new file mode 100644 index 00000000000..c6363eb8b61 --- /dev/null +++ b/models/_sector/contracts/zora/_schema.yml @@ -0,0 +1,229 @@ +version: 2 + +models: + + - name: contracts_zora_contract_mapping + meta: + blockchain: zora + sector: contracts + contributors: chuxin, msilb7 + config: + tags: ['evm', 'zora', 'contracts', 'addresses'] + description: "Mapping of contracts to its creators and names on zora." + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - contract_address + + columns: + - &created_month + name: created_month + description: "Monthly partition, when the contract was created" + - &blockchain + name: blockchain + description: "Name of chain in Dune database" + - &trace_creator_address + name: trace_creator_address + description: "Address creating the contract in the transaction trace" + - &contract_address + name: contract_address + description: "Address of the contract" + - &contract_project + name: contract_project + description: "Project name of the contract" + - &token_symbol + name: token_symbol + description: "Token symbol of the contract, if any" + - &contract_name + name: contract_name + description: "Contract name" + - &creator_address + name: creator_address + description: "Highest-level contract creator address (i.e. which address deployed the factory which deployed contracts), or the tx_from when the contract creator address is non-deterministic." + - &deployer_address + name: deployer_address + description: "Attribution to the mapped deployer address at the creation trace, handles for ~most deterministic deployers and smart wallet creations." + - &created_time + name: created_time + description: "contract creation time" + - &is_self_destruct + name: is_self_destruct + description: "Flag if it is a self destruct contract" + - &created_tx_hash + name: created_tx_hash + description: "Contract creation transaction hash" + - &created_block_number + name: created_block_number + description: "Contract creation block number" + - &created_tx_from + name: created_tx_from + description: "Contract creation transaction from address" + - &created_tx_to + name: created_tx_to + description: "Contract creation transaction to address" + - &created_tx_method_id + name: created_tx_method_id + description: "Method ID of the transaction. This is useful for determining how a contract was deployed (i.e Safe transaction vs traditional deployment)" + - &created_tx_index + name: created_tx_index + description: "Index of the contract creation transaction within its block" + - &top_level_time + name: top_level_time + description: "Top-Level contract creation transaction block time" + - &top_level_tx_hash + name: top_level_tx_hash + description: "Top-Level contract creation transaction hash" + - &top_level_block_number + name: top_level_block_number + description: "Top-Level contract creation transaction block number" + - &top_level_tx_from + name: top_level_tx_from + description: "Top-Level contract creation transaction from address" + - &top_level_tx_to + name: top_level_tx_to + description: "Top-Level contract creation transaction to address" + - &top_level_tx_method_id + name: top_level_tx_method_id + description: "Method ID of the top-level transaction. This is useful for determining how the top-level contract was deployed (i.e Safe transaction vs traditional deployment)" + + - &code_bytelength + name: code_bytelength + description: "Length of the deployed code, measured in bytes. This is used for spam filtering" + - &token_standard + name: token_standard + description: "What token standard the contract is. For non-tokens, this field will be null." + + - &code + name: code + description: "Runtime bytecode of the contract" + + - &code_deploy_rank_by_chain + name: code_deploy_rank_by_chain + description: "Was this the 1st, 2rd, 3rd, etc time the same exact bytecode was deployed by chain? (1 = 1st). This can be used for spam filtering." + - &is_eoa_deployed + name: is_eoa_deployed + description: "Was the contract deployed by an EOA (test if the trace creator = the transaction sender)" + - &is_smart_wallet_deployed + name: is_smart_wallet_deployed + description: "Was the contract deployed by a smart wallet (i.e. Gnosis Safe, ERC4337 wallet)" + - &is_deterministic_deployer_deployed + name: is_deterministic_deployer_deployed + description: "Was the contract deployed by a deterministic deployer factory (i.e. create2)" + + - name: contracts_zora_find_self_destruct_contracts + meta: + blockchain: zora + sector: contracts + contributors: chuxin, msilb7 + config: + tags: ['evm', 'contracts', 'addresses'] + description: "A list of contracts that are self-destruct, with the time that they were most recently self-destructed." + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - contract_address + + columns: + - *blockchain + - *created_time + - *created_block_number + - *created_tx_hash + - *contract_address + - &destructed_time + name: destructed_time + description: "Block Time when contract was destructed" + - &destructed_block_number + name: destructed_block_number + description: "Block Number when contract was destructed" + - &destructed_tx_hash + name: destructed_tx_hash + description: "Tx Hash where contract was destructed" + + - name: contracts_zora_base_starting_level + meta: + blockchain: zora + sector: contracts + contributors: chuxin, msilb7 + config: + tags: ['evm', 'zora', 'contracts', 'addresses'] + description: "Base Level for mapping of contracts to its creators and names on zora." + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - contract_address + + columns: + - *blockchain + - *trace_creator_address + - *contract_address + + - *created_time + - *created_month + - *created_block_number + - *created_tx_hash + - *created_tx_from + - *created_tx_to + - *created_tx_method_id + - *created_tx_index + - *top_level_time + - *top_level_block_number + - *top_level_tx_hash + - *top_level_tx_from + - *top_level_tx_to + - *top_level_tx_method_id + - *code_bytelength + - *code + - &reinitialize_rank + name: reinitialize_rank + description: "Rank of the same contract being deployed in descending order - used to only ensure we get the most recent contract instance (allowlist & self-destructs can cause duplicates)." + + - name: contracts_zora_base_iterated_creators + meta: + blockchain: zora + sector: contracts + contributors: chuxin, msilb7 + config: + tags: ['evm', 'zora', 'contracts', 'addresses'] + description: "Iterated creators for mapping of contracts to its creators and names on zora." + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - contract_address + + columns: + - *blockchain + - *trace_creator_address + - *creator_address + - *deployer_address + - *contract_address + - *created_time + - *created_month + - *top_level_time + - *created_tx_hash + - *created_block_number + - *top_level_tx_hash + - *top_level_block_number + - *top_level_tx_from + - *top_level_tx_to + - *top_level_tx_method_id + - *created_tx_from + - *created_tx_to + - *created_tx_method_id + - *created_tx_index + - *code_bytelength + - *code_deploy_rank_by_chain + - *code + - *is_self_destruct + - &creator_address_lineage + name: creator_address_lineage + description: "array of the lineage of creator addresses until the top-level creator" + - &tx_method_id_lineage + name: tx_method_id_lineage + description: "array of the lineage of tx method ids until the top-level creator" + - &token_standard_erc20 + name: token_standard_erc20 + description: "Token Standard ERC20 Only" \ No newline at end of file diff --git a/models/_sector/contracts/zora/contracts_zora_base_iterated_creators.sql b/models/_sector/contracts/zora/contracts_zora_base_iterated_creators.sql new file mode 100644 index 00000000000..a018a0aec8b --- /dev/null +++ b/models/_sector/contracts/zora/contracts_zora_base_iterated_creators.sql @@ -0,0 +1,15 @@ + {{ + config( + schema = 'contracts_zora', + alias = 'base_iterated_creators', + materialized ='incremental', + file_format ='delta', + incremental_strategy='merge', + unique_key = ['blockchain', 'contract_address'], + partition_by = ['created_month'] + ) +}} + +{{contracts_base_iterated_creators( + chain='zora' +)}} \ No newline at end of file diff --git a/models/_sector/contracts/zora/contracts_zora_base_starting_level.sql b/models/_sector/contracts/zora/contracts_zora_base_starting_level.sql new file mode 100644 index 00000000000..669124e80ad --- /dev/null +++ b/models/_sector/contracts/zora/contracts_zora_base_starting_level.sql @@ -0,0 +1,16 @@ + {{ + config( + schema = 'contracts_zora', + alias = 'base_starting_level', + materialized ='incremental', + file_format ='delta', + incremental_strategy='merge', + unique_key = ['blockchain', 'contract_address'], + partition_by = ['created_month'] + ) +}} +-- depends_on: {{ ref('contracts_deterministic_contract_creators') }} + +{{contracts_base_starting_level( + chain='zora' +)}} \ No newline at end of file diff --git a/models/_sector/contracts/zora/contracts_zora_contract_mapping.sql b/models/_sector/contracts/zora/contracts_zora_contract_mapping.sql new file mode 100644 index 00000000000..71ea245c6a4 --- /dev/null +++ b/models/_sector/contracts/zora/contracts_zora_contract_mapping.sql @@ -0,0 +1,10 @@ + {{ + config( + schema = 'contracts_zora', + alias = 'contract_mapping' + ) +}} + +{{contracts_contract_mapping( + chain='zora' +)}} \ No newline at end of file diff --git a/models/_sector/contracts/zora/contracts_zora_find_self_destruct_contracts.sql b/models/_sector/contracts/zora/contracts_zora_find_self_destruct_contracts.sql new file mode 100644 index 00000000000..f2505a65fdf --- /dev/null +++ b/models/_sector/contracts/zora/contracts_zora_find_self_destruct_contracts.sql @@ -0,0 +1,14 @@ + {{ + config( + schema = 'contracts_zora', + alias = 'find_self_destruct_contracts', + materialized ='incremental', + file_format ='delta', + unique_key = ['blockchain', 'contract_address'], + incremental_strategy='merge' + ) +}} + +{{find_self_destruct_contracts( + chain='zora' +)}} \ No newline at end of file diff --git a/models/_sector/dex/trades/arbitrum/_schema.yml b/models/_sector/dex/trades/arbitrum/_schema.yml index dcdca93e83c..2e9ece28b30 100644 --- a/models/_sector/dex/trades/arbitrum/_schema.yml +++ b/models/_sector/dex/trades/arbitrum/_schema.yml @@ -17,19 +17,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_arbitrum_base_trades_seed') filter: version: 3 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v1_arbitrum_base_trades meta: @@ -45,19 +37,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_arbitrum_base_trades_seed') filter: version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v2_arbitrum_base_trades meta: @@ -73,19 +57,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_arbitrum_base_trades_seed') filter: version: 2 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: airswap_arbitrum_base_trades meta: @@ -101,14 +77,160 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('airswap_arbitrum_base_trades_seed') - match_columns: + + + - name: camelot_v2_arbitrum_base_trades + meta: + blockchain: arbitrum + sector: dex + project: camelot + contributors: ytoast, tomfutago + config: + tags: [ 'arbitrum', 'dex', 'trades', 'camelot', 'uniswap', 'v2' ] + description: "Camelot Arbitrum v2 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('camelot_arbitrum_base_trades_seed') + filter: + version: 2 + + + - name: camelot_v3_arbitrum_base_trades + meta: + blockchain: arbitrum + sector: dex + project: camelot + contributors: whale_hunter, tomfutago + config: + tags: [ 'arbitrum', 'dex', 'trades', 'camelot', 'uniswap', 'v3' ] + description: "Camelot Arbitrum v2 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('camelot_arbitrum_base_trades_seed') + filter: + version: 3 + + + - name: arbswap_arbitrum_base_trades + meta: + blockchain: arbitrum + sector: dex + project: arbswap + contributors: chrispearcx, hosuke, tomfutago + config: + tags: [ 'arbitrum', 'dex', 'trades', 'arbswap' ] + description: "Arbswap arbitrum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('arbswap_arbitrum_base_trades_seed') + + + - name: trader_joe_v2_arbitrum_base_trades + meta: + blockchain: arbitrum + sector: dex + project: trader_joe + contributors: hsrvc, pecio222, hosuke + config: + tags: [ 'arbitrum', 'dex', 'trades', 'trader_joe', 'v2' ] + description: "Trader Joe arbitrum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('trader_joe_arbitrum_base_trades_seed') + filter: + version: 2 + + + - name: trader_joe_v2_1_arbitrum_base_trades + meta: + blockchain: arbitrum + sector: dex + project: trader_joe + contributors: chef_seaweed + config: + tags: [ 'arbitrum', 'dex', 'trades', 'trader_joe', 'v2.1' ] + description: "Trader Joe arbitrum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('trader_joe_arbitrum_base_trades_seed') + filter: + version: 2.1 + + - name: pancakeswap_v2_arbitrum_base_trades + meta: + blockchain: arbitrum + sector: dex + project: pancakeswap + contributors: chef_seaweed, tomfutago + config: + tags: [ 'arbitrum', 'dex', 'trades', 'pancakeswap', 'uniswap', 'v2' ] + description: "Pancakeswap Arbitrum v2 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('pancakeswap_arbitrum_base_trades_seed') + filter: + version: 2 + + - name: balancer_v2_arbitrum_base_trades + meta: + blockchain: arbitrum + sector: dex + project: balancer + contributors: bizzyvinci, thetroyharris, tomfutago + config: + tags: [ 'arbitrum', 'dex', 'trades', 'balancer' ] + description: "Balancer v2 arbitrum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('balancer_arbitrum_base_trades_seed') + filter: + version: 2 + + - name: pancakeswap_v3_arbitrum_base_trades + meta: + blockchain: arbitrum + sector: dex + project: pancakeswap + contributors: chef_seaweed, tomfutago + config: + tags: [ 'arbitrum', 'dex', 'trades', 'pancakeswap', 'uniswap', 'v3' ] + description: "Pancakeswap Arbitrum v3 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: - tx_hash - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - check_dex_base_trades_seed: + seed_file: ref('pancakeswap_arbitrum_base_trades_seed') + filter: + version: 3 diff --git a/models/_sector/dex/trades/arbitrum/_sources.yml b/models/_sector/dex/trades/arbitrum/_sources.yml index b180e8e8310..43f6ea3ebbe 100644 --- a/models/_sector/dex/trades/arbitrum/_sources.yml +++ b/models/_sector/dex/trades/arbitrum/_sources.yml @@ -2,6 +2,14 @@ version: 2 sources: - name: uniswap_v3_arbitrum + - name: camelot_arbitrum + tables: + - name: CamelotPair_evt_Swap + - name: CamelotFactory_evt_PairCreated + - name: camelot_v3_arbitrum + tables: + - name: AlgebraPool_evt_Swap + - name: AlgebraFactory_evt_Pool - name: airswap_arbitrum tables: - name: swap_evt_Swap @@ -14,3 +22,22 @@ sources: tables: - name: Pool_evt_Swap - name: Factory_evt_PoolCreated + - name: arbswap_arbitrum + tables: + - name: SwapPair_evt_Swap + - name: SwapFactory_evt_PairCreated + - name: ArbswapStableSwapTwoPool_evt_TokenExchange + - name: ArbswapStableSwapFactory_evt_NewStableSwapPair + - name: trader_joe_v2_1_arbitrum + - name: trader_joe_arbitrum + - name: pancakeswap_v2_arbitrum + tables: + - name: PancakePair_evt_Swap + - name: PancakeFactory_evt_PairCreated + - name: pancakeswap_v3_arbitrum + tables: + - name: PancakeV3Pool_evt_Swap + - name: PancakeV3Factory_evt_PoolCreated + - name: balancer_v2_arbitrum + tables: + - name: Vault_evt_Swap diff --git a/models/_sector/dex/trades/arbitrum/dex_arbitrum_base_trades.sql b/models/_sector/dex/trades/arbitrum/dex_arbitrum_base_trades.sql index b368ea237bf..a112877a149 100644 --- a/models/_sector/dex/trades/arbitrum/dex_arbitrum_base_trades.sql +++ b/models/_sector/dex/trades/arbitrum/dex_arbitrum_base_trades.sql @@ -7,9 +7,17 @@ {% set base_models = [ ref('uniswap_v3_arbitrum_base_trades') + , ref('camelot_v2_arbitrum_base_trades') + , ref('camelot_v3_arbitrum_base_trades') , ref('airswap_arbitrum_base_trades') , ref('sushiswap_v1_arbitrum_base_trades') , ref('sushiswap_v2_arbitrum_base_trades') + , ref('arbswap_arbitrum_base_trades') + , ref('trader_joe_v2_arbitrum_base_trades') + , ref('trader_joe_v2_1_arbitrum_base_trades') + , ref('pancakeswap_v2_arbitrum_base_trades') + , ref('pancakeswap_v3_arbitrum_base_trades') + , ref('balancer_v2_arbitrum_base_trades') ] %} WITH base_union AS ( diff --git a/models/_sector/dex/trades/arbitrum/platforms/arbswap_arbitrum_base_trades.sql b/models/_sector/dex/trades/arbitrum/platforms/arbswap_arbitrum_base_trades.sql new file mode 100644 index 00000000000..86b4c95a7ec --- /dev/null +++ b/models/_sector/dex/trades/arbitrum/platforms/arbswap_arbitrum_base_trades.sql @@ -0,0 +1,87 @@ +{{ + config( + schema = 'arbswap_arbitrum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +WITH + +dexs_macro AS ( + -- Arbswap AMM + {{ + uniswap_compatible_v2_trades( + blockchain = 'arbitrum', + project = 'arbswap', + version = '1', + Pair_evt_Swap = source('arbswap_arbitrum', 'SwapPair_evt_Swap'), + Factory_evt_PairCreated = source('arbswap_arbitrum', 'SwapFactory_evt_PairCreated') + ) + }} +), + +dexs AS ( + -- Arbswap Stableswap + SELECT + t.evt_block_number AS block_number, + t.evt_block_time AS block_time, + t.buyer AS taker, + CAST(NULL AS VARBINARY) AS maker, + tokens_bought AS token_bought_amount_raw, + tokens_sold AS token_sold_amount_raw, + CASE WHEN bought_id = UINT256 '0' THEN f.tokenA ELSE f.tokenB END AS token_bought_address, + CASE WHEN sold_id = UINT256 '0' THEN f.tokenA ELSE f.tokenB END AS token_sold_address, + t.contract_address AS project_contract_address, + t.evt_tx_hash AS tx_hash, + t.evt_index + FROM + {{ source('arbswap_arbitrum', 'ArbswapStableSwapTwoPool_evt_TokenExchange') }} t + INNER JOIN {{ source('arbswap_arbitrum', 'ArbswapStableSwapFactory_evt_NewStableSwapPair') }} f + ON f.swapContract = t.contract_address + {% if is_incremental() %} + WHERE {{incremental_predicate('t.evt_block_time')}} + {% endif %} +) + +SELECT + dexs_macro.blockchain, + dexs_macro.project, + dexs_macro.version, + dexs_macro.block_month, + dexs_macro.block_date, + dexs_macro.block_time, + dexs_macro.block_number, + dexs_macro.token_bought_amount_raw, + dexs_macro.token_sold_amount_raw, + dexs_macro.token_bought_address, + dexs_macro.token_sold_address, + dexs_macro.taker, + dexs_macro.maker, + dexs_macro.project_contract_address, + dexs_macro.tx_hash, + dexs_macro.evt_index +FROM dexs_macro +UNION ALL +SELECT + 'arbitrum' AS blockchain, + 'arbswap' AS project, + '1' AS version, + CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, + CAST(date_trunc('day', dexs.block_time) AS date) AS block_date, + dexs.block_time, + dexs.block_number, + dexs.token_bought_amount_raw, + dexs.token_sold_amount_raw, + dexs.token_bought_address, + dexs.token_sold_address, + dexs.taker, + dexs.maker, + dexs.project_contract_address, + dexs.tx_hash, + dexs.evt_index +FROM dexs diff --git a/models/_sector/dex/trades/arbitrum/platforms/balancer_v2_arbitrum_base_trades.sql b/models/_sector/dex/trades/arbitrum/platforms/balancer_v2_arbitrum_base_trades.sql new file mode 100644 index 00000000000..2ddbd676d12 --- /dev/null +++ b/models/_sector/dex/trades/arbitrum/platforms/balancer_v2_arbitrum_base_trades.sql @@ -0,0 +1,19 @@ +{{ + config( + schema = 'balancer_v2_arbitrum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + balancer_compatible_v2_trades( + blockchain = 'arbitrum', + project = 'balancer', + version = '2' + ) +}} diff --git a/models/_sector/dex/trades/arbitrum/platforms/camelot_v2_arbitrum_base_trades.sql b/models/_sector/dex/trades/arbitrum/platforms/camelot_v2_arbitrum_base_trades.sql new file mode 100644 index 00000000000..8ef7251cab4 --- /dev/null +++ b/models/_sector/dex/trades/arbitrum/platforms/camelot_v2_arbitrum_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'camelot_v2_arbitrum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'arbitrum', + project = 'camelot', + version = '2', + Pair_evt_Swap = source('camelot_arbitrum', 'CamelotPair_evt_Swap'), + Factory_evt_PairCreated = source('camelot_arbitrum', 'CamelotFactory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/arbitrum/platforms/camelot_v3_arbitrum_base_trades.sql b/models/_sector/dex/trades/arbitrum/platforms/camelot_v3_arbitrum_base_trades.sql new file mode 100644 index 00000000000..4625e40cac4 --- /dev/null +++ b/models/_sector/dex/trades/arbitrum/platforms/camelot_v3_arbitrum_base_trades.sql @@ -0,0 +1,22 @@ +{{ + config( + schema = 'camelot_v3_arbitrum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v3_trades( + blockchain = 'arbitrum', + project = 'camelot', + version = '3', + Pair_evt_Swap = source('camelot_v3_arbitrum', 'AlgebraPool_evt_Swap'), + Factory_evt_PoolCreated = source('camelot_v3_arbitrum', 'AlgebraFactory_evt_Pool'), + optional_columns = [] + ) +}} diff --git a/models/_sector/dex/trades/arbitrum/platforms/pancakeswap_v2_arbitrum_base_trades.sql b/models/_sector/dex/trades/arbitrum/platforms/pancakeswap_v2_arbitrum_base_trades.sql new file mode 100644 index 00000000000..82106149d50 --- /dev/null +++ b/models/_sector/dex/trades/arbitrum/platforms/pancakeswap_v2_arbitrum_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'pancakeswap_v2_arbitrum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'arbitrum', + project = 'pancakeswap', + version = '2', + Pair_evt_Swap = source('pancakeswap_v2_arbitrum', 'PancakePair_evt_Swap'), + Factory_evt_PairCreated = source('pancakeswap_v2_arbitrum', 'PancakeFactory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/arbitrum/platforms/pancakeswap_v3_arbitrum_base_trades.sql b/models/_sector/dex/trades/arbitrum/platforms/pancakeswap_v3_arbitrum_base_trades.sql new file mode 100644 index 00000000000..d3b6077abf2 --- /dev/null +++ b/models/_sector/dex/trades/arbitrum/platforms/pancakeswap_v3_arbitrum_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'pancakeswap_v3_arbitrum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v3_trades( + blockchain = 'arbitrum', + project = 'pancakeswap', + version = '3', + Pair_evt_Swap = source('pancakeswap_v3_arbitrum', 'PancakeV3Pool_evt_Swap'), + Factory_evt_PoolCreated = source('pancakeswap_v3_arbitrum', 'PancakeV3Factory_evt_PoolCreated') + ) +}} diff --git a/models/_sector/dex/trades/arbitrum/platforms/trader_joe_v2_1_arbitrum_base_trades.sql b/models/_sector/dex/trades/arbitrum/platforms/trader_joe_v2_1_arbitrum_base_trades.sql new file mode 100644 index 00000000000..ea8ed75a13c --- /dev/null +++ b/models/_sector/dex/trades/arbitrum/platforms/trader_joe_v2_1_arbitrum_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'trader_joe_v2_1_arbitrum' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + trader_joe_compatible_v2_1_trades( + blockchain = 'arbitrum' + , project = 'trader_joe' + , version = '2.1' + , Pair_evt_Swap = source('trader_joe_v2_1_arbitrum', 'LBPair_evt_Swap') + , Factory_evt_PoolCreated = source('trader_joe_v2_1_arbitrum', 'LBFactory_evt_LBPairCreated') + ) +}} \ No newline at end of file diff --git a/models/_sector/dex/trades/arbitrum/platforms/trader_joe_v2_arbitrum_base_trades.sql b/models/_sector/dex/trades/arbitrum/platforms/trader_joe_v2_arbitrum_base_trades.sql new file mode 100644 index 00000000000..60b0ab8d5ce --- /dev/null +++ b/models/_sector/dex/trades/arbitrum/platforms/trader_joe_v2_arbitrum_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'trader_joe_v2_arbitrum' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + trader_joe_compatible_v2_trades( + blockchain = 'arbitrum' + , project = 'trader_joe' + , version = '2' + , Pair_evt_Swap = source('trader_joe_arbitrum', 'LBPair_evt_Swap') + , Factory_evt_PoolCreated = source('trader_joe_arbitrum', 'LBFactory_evt_LBPairCreated') + ) +}} diff --git a/models/_sector/dex/trades/avalanche_c/_schema.yml b/models/_sector/dex/trades/avalanche_c/_schema.yml index ffd716fd3a3..798fc8bcd3c 100644 --- a/models/_sector/dex/trades/avalanche_c/_schema.yml +++ b/models/_sector/dex/trades/avalanche_c/_schema.yml @@ -17,17 +17,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_avalanche_c_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: airswap_avalanche_c_base_trades meta: @@ -43,17 +35,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('airswap_avalanche_c_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v1_avalanche_c_base_trades meta: @@ -69,19 +53,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_avalanche_c_base_trades_seed') filter: version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v2_avalanche_c_base_trades meta: @@ -97,16 +73,105 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_avalanche_c_base_trades_seed') filter: version: 2 - match_columns: + + + - name: trader_joe_v1_avalanche_c_base_trades + meta: + blockchain: avalanche_c + sector: dex + project: trader_joe + contributors: jeff-dude, mtitus6, hosuke + config: + tags: [ 'avalanche_c', 'dex', 'trades', 'trader_joe', 'v1' ] + description: "Trader Joe avalanche_c base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: - tx_hash - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - check_dex_base_trades_seed: + seed_file: ref('trader_joe_avalanche_c_base_trades_seed') + filter: + version: 1 + + + - name: trader_joe_v2_avalanche_c_base_trades + meta: + blockchain: avalanche_c + sector: dex + project: trader_joe + contributors: Henrystats, hosuke + config: + tags: [ 'avalanche_c', 'dex', 'trades', 'trader_joe', 'v2' ] + description: "Trader Joe avalanche_c base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('trader_joe_avalanche_c_base_trades_seed') + filter: + version: 2 + + + - name: trader_joe_v2_1_avalanche_c_base_trades + meta: + blockchain: avalanche_c + sector: dex + project: trader_joe + contributors: chef_seaweed + config: + tags: [ 'avalanche_c', 'dex', 'trades', 'trader_joe', 'v2.1' ] + description: "Trader Joe avalanche_c base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('trader_joe_avalanche_c_base_trades_seed') + filter: + version: 2.1 + + - name: balancer_v2_avalanche_c_base_trades + meta: + blockchain: avalanche_c + sector: dex + project: balancer + contributors: bizzyvinci, thetroyharris, tomfutago + config: + tags: [ 'avalanche_c', 'dex', 'trades', 'balancer' ] + description: "Balancer v2 avalanche_c base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('balancer_avalanche_c_base_trades_seed') + filter: + version: 2 + + - name: fraxswap_avalanche_c_base_trades + meta: + blockchain: avalanche_c + sector: dex + project: fraxswap + contributors: zhongyiio, tomfutago + config: + tags: ['avalanche_c', 'dex', 'trades', 'fraxswap', 'uniswap', 'v2'] + description: "Fraxswap avalanche_c base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('fraxswap_avalanche_c_base_trades_seed') + filter: + version: 1 diff --git a/models/_sector/dex/trades/avalanche_c/_sources.yml b/models/_sector/dex/trades/avalanche_c/_sources.yml index d7dd6f593c6..e9f0c565a25 100644 --- a/models/_sector/dex/trades/avalanche_c/_sources.yml +++ b/models/_sector/dex/trades/avalanche_c/_sources.yml @@ -14,3 +14,12 @@ sources: tables: - name: Pool_evt_Swap - name: Factory_evt_PoolCreated + - name: fraxswap_avalanche_c + tables: + - name: FraxswapPair_evt_Swap + - name: FraxswapFactory_evt_PairCreated + - name: trader_joe_v2_1_avalanche_c + - name: trader_joe_avalanche_c + - name: balancer_v2_avalanche_c + tables: + - name: Vault_evt_Swap diff --git a/models/_sector/dex/trades/avalanche_c/dex_avalanche_c_base_trades.sql b/models/_sector/dex/trades/avalanche_c/dex_avalanche_c_base_trades.sql index 5e03f8be3bb..5571407cb4e 100644 --- a/models/_sector/dex/trades/avalanche_c/dex_avalanche_c_base_trades.sql +++ b/models/_sector/dex/trades/avalanche_c/dex_avalanche_c_base_trades.sql @@ -10,6 +10,11 @@ , ref('airswap_avalanche_c_base_trades') , ref('sushiswap_v1_avalanche_c_base_trades') , ref('sushiswap_v2_avalanche_c_base_trades') + , ref('fraxswap_avalanche_c_base_trades') + , ref('trader_joe_v1_avalanche_c_base_trades') + , ref('trader_joe_v2_avalanche_c_base_trades') + , ref('trader_joe_v2_1_avalanche_c_base_trades') + , ref('balancer_v2_avalanche_c_base_trades') ] %} WITH base_union AS ( diff --git a/models/_sector/dex/trades/avalanche_c/platforms/balancer_v2_avalanche_c_base_trades.sql b/models/_sector/dex/trades/avalanche_c/platforms/balancer_v2_avalanche_c_base_trades.sql new file mode 100644 index 00000000000..6b47f181c83 --- /dev/null +++ b/models/_sector/dex/trades/avalanche_c/platforms/balancer_v2_avalanche_c_base_trades.sql @@ -0,0 +1,19 @@ +{{ + config( + schema = 'balancer_v2_avalanche_c', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + balancer_compatible_v2_trades( + blockchain = 'avalanche_c', + project = 'balancer', + version = '2' + ) +}} diff --git a/models/_sector/dex/trades/avalanche_c/platforms/fraxswap_avalanche_c_base_trades.sql b/models/_sector/dex/trades/avalanche_c/platforms/fraxswap_avalanche_c_base_trades.sql new file mode 100644 index 00000000000..6f40e684f3d --- /dev/null +++ b/models/_sector/dex/trades/avalanche_c/platforms/fraxswap_avalanche_c_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'fraxswap_avalanche_c', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'avalanche_c', + project = 'fraxswap', + version = '1', + Pair_evt_Swap = source('fraxswap_avalanche_c', 'FraxswapPair_evt_Swap'), + Factory_evt_PairCreated = source('fraxswap_avalanche_c', 'FraxswapFactory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/avalanche_c/platforms/trader_joe_v1_avalanche_c_base_trades.sql b/models/_sector/dex/trades/avalanche_c/platforms/trader_joe_v1_avalanche_c_base_trades.sql new file mode 100644 index 00000000000..3f9fb9f24f7 --- /dev/null +++ b/models/_sector/dex/trades/avalanche_c/platforms/trader_joe_v1_avalanche_c_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'trader_joe_v1_avalanche_c' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'avalanche_c' + , project = 'trader_joe' + , version = '1' + , Pair_evt_Swap = source('trader_joe_avalanche_c', 'JoePair_evt_Swap') + , Factory_evt_PairCreated = source('trader_joe_avalanche_c', 'JoeFactory_evt_PairCreated') + ) +}} \ No newline at end of file diff --git a/models/_sector/dex/trades/avalanche_c/platforms/trader_joe_v2_1_avalanche_c_base_trades.sql b/models/_sector/dex/trades/avalanche_c/platforms/trader_joe_v2_1_avalanche_c_base_trades.sql new file mode 100644 index 00000000000..1a305d59a64 --- /dev/null +++ b/models/_sector/dex/trades/avalanche_c/platforms/trader_joe_v2_1_avalanche_c_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'trader_joe_v2_1_avalanche_c' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + trader_joe_compatible_v2_1_trades( + blockchain = 'avalanche_c' + , project = 'trader_joe' + , version = '2.1' + , Pair_evt_Swap = source('trader_joe_v2_1_avalanche_c', 'LBPair_evt_Swap') + , Factory_evt_PoolCreated = source('trader_joe_v2_1_avalanche_c', 'LBFactory_evt_LBPairCreated') + ) +}} \ No newline at end of file diff --git a/models/_sector/dex/trades/avalanche_c/platforms/trader_joe_v2_avalanche_c_base_trades.sql b/models/_sector/dex/trades/avalanche_c/platforms/trader_joe_v2_avalanche_c_base_trades.sql new file mode 100644 index 00000000000..57ac8647b4c --- /dev/null +++ b/models/_sector/dex/trades/avalanche_c/platforms/trader_joe_v2_avalanche_c_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'trader_joe_v2_avalanche_c' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + trader_joe_compatible_v2_trades( + blockchain = 'avalanche_c' + , project = 'trader_joe' + , version = '2' + , Pair_evt_Swap = source('trader_joe_avalanche_c', 'LBPair_evt_Swap') + , Factory_evt_PoolCreated = source('trader_joe_avalanche_c', 'LBFactory_evt_LBPairCreated') + ) +}} diff --git a/models/_sector/dex/trades/base/_schema.yml b/models/_sector/dex/trades/base/_schema.yml index 77fc3aaa402..6d2b015a83f 100644 --- a/models/_sector/dex/trades/base/_schema.yml +++ b/models/_sector/dex/trades/base/_schema.yml @@ -17,17 +17,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_base_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: aerodrome_base_base_trades meta: @@ -43,17 +35,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('aerodrome_base_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v1_base_base_trades meta: @@ -69,19 +53,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_base_base_trades_seed') filter: version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v2_base_base_trades meta: @@ -97,16 +73,64 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_base_base_trades_seed') filter: version: 2 - match_columns: + + - name: pancakeswap_v2_base_base_trades + meta: + blockchain: base + sector: dex + project: pancakeswap + contributors: chef_seaweed, tomfutago + config: + tags: [ 'base', 'dex', 'trades', 'pancakeswap', 'uniswap', 'v2' ] + description: "Pancakeswap Base v2 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: - tx_hash - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - check_dex_base_trades_seed: + seed_file: ref('pancakeswap_base_base_trades_seed') + filter: + version: 2 + + - name: balancer_v2_base_base_trades + meta: + blockchain: base + sector: dex + project: balancer + contributors: bizzyvinci, thetroyharris, tomfutago + config: + tags: [ 'base', 'dex', 'trades', 'balancer' ] + description: "Balancer v2 base base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('balancer_base_base_trades_seed') + filter: + version: 2 + + - name: pancakeswap_v3_base_base_trades + meta: + blockchain: base + sector: dex + project: pancakeswap + contributors: chef_seaweed, tomfutago + config: + tags: [ 'base', 'dex', 'trades', 'pancakeswap', 'uniswap', 'v3' ] + description: "Pancakeswap Base v3 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('pancakeswap_base_base_trades_seed') + filter: + version: 3 diff --git a/models/_sector/dex/trades/base/_sources.yml b/models/_sector/dex/trades/base/_sources.yml index 3d03549a696..b49aebe4ea0 100644 --- a/models/_sector/dex/trades/base/_sources.yml +++ b/models/_sector/dex/trades/base/_sources.yml @@ -13,4 +13,15 @@ sources: - name: aerodrome_base tables: - name: Pool_evt_Swap - - name: PoolFactory_evt_PoolCreated \ No newline at end of file + - name: PoolFactory_evt_PoolCreated + - name: pancakeswap_v2_base + tables: + - name: PancakePair_evt_Swap + - name: PancakeFactory_evt_PairCreated + - name: pancakeswap_v3_base + tables: + - name: PancakeV3Pool_evt_Swap + - name: PancakeV3Factory_evt_PoolCreated + - name: balancer_v2_base + tables: + - name: Vault_evt_Swap diff --git a/models/_sector/dex/trades/base/dex_base_base_trades.sql b/models/_sector/dex/trades/base/dex_base_base_trades.sql index 1396740acbb..2ea15dfee5d 100644 --- a/models/_sector/dex/trades/base/dex_base_base_trades.sql +++ b/models/_sector/dex/trades/base/dex_base_base_trades.sql @@ -10,6 +10,9 @@ , ref('sushiswap_v1_base_base_trades') , ref('sushiswap_v2_base_base_trades') , ref('aerodrome_base_base_trades') + , ref('pancakeswap_v2_base_base_trades') + , ref('pancakeswap_v3_base_base_trades') + , ref('balancer_v2_base_base_trades') ] %} WITH base_union AS ( diff --git a/models/_sector/dex/trades/base/platforms/balancer_v2_base_base_trades.sql b/models/_sector/dex/trades/base/platforms/balancer_v2_base_base_trades.sql new file mode 100644 index 00000000000..36543ecb8c7 --- /dev/null +++ b/models/_sector/dex/trades/base/platforms/balancer_v2_base_base_trades.sql @@ -0,0 +1,19 @@ +{{ + config( + schema = 'balancer_v2_base', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + balancer_compatible_v2_trades( + blockchain = 'base', + project = 'balancer', + version = '2' + ) +}} diff --git a/models/_sector/dex/trades/base/platforms/pancakeswap_v2_base_base_trades.sql b/models/_sector/dex/trades/base/platforms/pancakeswap_v2_base_base_trades.sql new file mode 100644 index 00000000000..4bcada38bdc --- /dev/null +++ b/models/_sector/dex/trades/base/platforms/pancakeswap_v2_base_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'pancakeswap_v2_base', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'base', + project = 'pancakeswap', + version = '2', + Pair_evt_Swap = source('pancakeswap_v2_base', 'PancakePair_evt_Swap'), + Factory_evt_PairCreated = source('pancakeswap_v2_base', 'PancakeFactory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/base/platforms/pancakeswap_v3_base_base_trades.sql b/models/_sector/dex/trades/base/platforms/pancakeswap_v3_base_base_trades.sql new file mode 100644 index 00000000000..b2f28f75c1b --- /dev/null +++ b/models/_sector/dex/trades/base/platforms/pancakeswap_v3_base_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'pancakeswap_v3_base', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v3_trades( + blockchain = 'base', + project = 'pancakeswap', + version = '3', + Pair_evt_Swap = source('pancakeswap_v3_base', 'PancakeV3Pool_evt_Swap'), + Factory_evt_PoolCreated = source('pancakeswap_v3_base', 'PancakeV3Factory_evt_PoolCreated') + ) +}} diff --git a/models/_sector/dex/trades/bnb/_schema.yml b/models/_sector/dex/trades/bnb/_schema.yml index 88ef6955372..f6c5459fde7 100644 --- a/models/_sector/dex/trades/bnb/_schema.yml +++ b/models/_sector/dex/trades/bnb/_schema.yml @@ -17,19 +17,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_bnb_base_trades_seed') filter: version: 3 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: airswap_bnb_base_trades meta: @@ -45,17 +37,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('airswap_bnb_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v1_bnb_base_trades meta: @@ -71,20 +55,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_bnb_base_trades_seed') filter: version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw - + - name: sushiswap_v2_bnb_base_trades meta: blockchain: bnb @@ -99,16 +74,181 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_bnb_base_trades_seed') filter: version: 2 - match_columns: + + + - name: trader_joe_v2_bnb_base_trades + meta: + blockchain: bnb + sector: dex + project: trader_joe + contributors: hsrvc, hosuke + config: + tags: [ 'bnb', 'dex', 'trades', 'trader_joe', 'v2' ] + description: "Trader Joe bnb base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('trader_joe_bnb_base_trades_seed') + filter: + version: 2 + + + - name: trader_joe_v2_1_bnb_base_trades + meta: + blockchain: bnb + sector: dex + project: trader_joe + contributors: chef_seaweed + config: + tags: [ 'bnb', 'dex', 'trades', 'trader_joe', 'v2.1' ] + description: "Trader Joe bnb base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('trader_joe_bnb_base_trades_seed') + filter: + version: 2.1 + + - name: apeswap_bnb_base_trades + meta: + blockchain: bnb + sector: dex + project: apeswap + contributors: hosuke + config: + tags: [ 'bnb', 'dex', 'trades', 'apeswap' ] + description: apeswap base trades + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('apeswap_bnb_base_trades_seed') + filter: + version: 2 + + - name: pancakeswap_v2_bnb_base_trades + meta: + blockchain: bnb + sector: dex + project: pancakeswap + contributors: hosuke, chef_seaweed, tomfutago + config: + tags: [ 'bnb', 'dex', 'trades', 'pancakeswap', 'uniswap', 'v2' ] + description: "Pancakeswap BNB v2 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('pancakeswap_bnb_base_trades_seed') + filter: + version: + - 2 + - mmpool + - stableswap + + - name: pancakeswap_v3_bnb_base_trades + meta: + blockchain: bnb + sector: dex + project: pancakeswap + contributors: chef_seaweed, tomfutago + config: + tags: [ 'bnb', 'dex', 'trades', 'pancakeswap', 'uniswap', 'v3' ] + description: "Pancakeswap BNB v3 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('pancakeswap_bnb_base_trades_seed') + filter: + version: 3 + + - name: fraxswap_bnb_base_trades + meta: + blockchain: bnb + sector: dex + project: fraxswap + contributors: kndlexi, tomfutago + config: + tags: ['bnb', 'dex', 'trades', 'fraxswap', 'uniswap', 'v2'] + description: "Fraxswap bnb base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('fraxswap_bnb_base_trades_seed') + + - name: biswap_v2_bnb_base_trades + meta: + blockchain: bnb + sector: dex + project: biswap + contributors: codingsh, tomfutago + config: + tags: [ 'bnb', 'dex', 'trades', 'biswap', 'uniswap', 'v2' ] + description: "biswap bnb base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('biswap_bnb_base_trades_seed') + filter: + version: 2 + + - name: biswap_v3_bnb_base_trades + meta: + blockchain: bnb + sector: dex + project: biswap + contributors: chef_seaweed, tomfutago + config: + tags: [ 'bnb', 'dex', 'trades', 'biswap', 'v3' ] + description: "biswap bnb base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: - tx_hash - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - check_dex_base_trades_seed: + seed_file: ref('biswap_bnb_base_trades_seed') + filter: + version: 3 + + - name: babyswap_bnb_base_trades + meta: + blockchain: bnb + sector: dex + project: babyswap + contributors: codingsh, tomfutago + config: + tags: [ 'bnb', 'dex', 'trades', 'babyswap', 'uniswap', 'v2' ] + description: "babyswap bnb base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('babyswap_bnb_base_trades_seed') + filter: + version: 1 diff --git a/models/_sector/dex/trades/bnb/_sources.yml b/models/_sector/dex/trades/bnb/_sources.yml index 69e37bdd982..7996c381070 100644 --- a/models/_sector/dex/trades/bnb/_sources.yml +++ b/models/_sector/dex/trades/bnb/_sources.yml @@ -15,3 +15,33 @@ sources: tables: - name: Pool_evt_Swap - name: Factory_evt_PoolCreated + - name: fraxswap_bnb + tables: + - name: FraxswapPair_evt_Swap + - name: FraxswapFactory_evt_PairCreated + - name: trader_joe_v2_1_bnb + - name: trader_joe_v2_bnb + - name: pancakeswap_v2_bnb + tables: + - name: PancakePair_evt_Swap + - name: PancakeFactory_evt_PairCreated + - name: PancakeSwapMMPool_evt_Swap + - name: PancakeStableSwap_evt_TokenExchange + - name: PancakeStableSwapTwoPool_evt_TokenExchange + - name: PancakeStableSwapFactory_evt_NewStableSwapPair + - name: pancakeswap_v3_bnb + tables: + - name: PancakeV3Pool_evt_Swap + - name: PancakeV3Factory_evt_PoolCreated + - name: biswap_bnb + tables: + - name: BiswapPair_evt_Swap + - name: BiswapFactory_evt_PairCreated + - name: biswap_v3_bnb + tables: + - name: BiswapPoolV3_evt_Swap + - name: BiswapFactoryV3_evt_NewPool + - name: babyswap_bnb + tables: + - name: BabyPair_evt_Swap + - name: BabyFactory_evt_PairCreated diff --git a/models/_sector/dex/trades/bnb/dex_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/dex_bnb_base_trades.sql index 14793e257d5..0eb15dadf9c 100644 --- a/models/_sector/dex/trades/bnb/dex_bnb_base_trades.sql +++ b/models/_sector/dex/trades/bnb/dex_bnb_base_trades.sql @@ -9,9 +9,18 @@ -- (blockchain, project, project_version, model) {% set base_models = [ ref('uniswap_v3_bnb_base_trades') + , ref('apeswap_bnb_base_trades') , ref('airswap_bnb_base_trades') , ref('sushiswap_v1_bnb_base_trades') , ref('sushiswap_v2_bnb_base_trades') + , ref('fraxswap_bnb_base_trades') + , ref('trader_joe_v2_bnb_base_trades') + , ref('trader_joe_v2_1_bnb_base_trades') + , ref('pancakeswap_v2_bnb_base_trades') + , ref('pancakeswap_v3_bnb_base_trades') + , ref('biswap_v2_bnb_base_trades') + , ref('biswap_v3_bnb_base_trades') + , ref('babyswap_bnb_base_trades') ] %} WITH base_union AS ( diff --git a/models/_sector/dex/trades/bnb/platforms/apeswap_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/platforms/apeswap_bnb_base_trades.sql new file mode 100644 index 00000000000..cbd609cc6c4 --- /dev/null +++ b/models/_sector/dex/trades/bnb/platforms/apeswap_bnb_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'apeswap_bnb' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'bnb', + project = 'apeswap', + version = '1', + Pair_evt_Swap = source('apeswap_bnb', 'ApePair_evt_Swap'), + Factory_evt_PairCreated = source('apeswap_bnb', 'ApeFactory_evt_PairCreated') + ) +}} \ No newline at end of file diff --git a/models/_sector/dex/trades/bnb/platforms/babyswap_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/platforms/babyswap_bnb_base_trades.sql new file mode 100644 index 00000000000..48fb8763a93 --- /dev/null +++ b/models/_sector/dex/trades/bnb/platforms/babyswap_bnb_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'babyswap_bnb', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'bnb', + project = 'babyswap', + version = '1', + Pair_evt_Swap = source('babyswap_bnb', 'BabyPair_evt_Swap'), + Factory_evt_PairCreated = source('babyswap_bnb', 'BabyFactory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/bnb/platforms/biswap_v2_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/platforms/biswap_v2_bnb_base_trades.sql new file mode 100644 index 00000000000..d2629c70f79 --- /dev/null +++ b/models/_sector/dex/trades/bnb/platforms/biswap_v2_bnb_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'biswap_v2_bnb', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'bnb', + project = 'biswap', + version = '2', + Pair_evt_Swap = source('biswap_bnb', 'BiswapPair_evt_Swap'), + Factory_evt_PairCreated = source('biswap_bnb', 'BiswapFactory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/bnb/platforms/biswap_v3_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/platforms/biswap_v3_bnb_base_trades.sql new file mode 100644 index 00000000000..88ac859acd9 --- /dev/null +++ b/models/_sector/dex/trades/bnb/platforms/biswap_v3_bnb_base_trades.sql @@ -0,0 +1,56 @@ +{{ + config( + schema = 'biswap_v3_bnb', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +WITH dexs AS ( + SELECT + t.evt_block_number AS block_number, + t.evt_block_time AS block_time, + CAST(NULL AS VARBINARY) AS taker, + CAST(NULL AS VARBINARY) AS maker, + CASE WHEN sellXEarnY = true THEN abs(amountY) ELSE abs(amountX) END AS token_bought_amount_raw, + CASE WHEN sellXEarnY = true THEN abs(amountX) ELSE abs(amountY) END AS token_sold_amount_raw, + CASE WHEN sellXEarnY = true THEN tokenY ELSE tokenX END AS token_bought_address, + CASE WHEN sellXEarnY = true THEN tokenX ELSE tokenY END AS token_sold_address, + t.contract_address AS project_contract_address, + t.evt_tx_hash AS tx_hash, + t.evt_index + FROM ( + SELECT + a.*, + CAST(json_extract_scalar(returnValues, '$.amountX') AS uint256) AS amountX, + CAST(json_extract_scalar(returnValues, '$.amountY') AS uint256) AS amountY + FROM {{ source('biswap_v3_bnb', 'BiswapPoolV3_evt_Swap') }} a + ) t + INNER JOIN {{ source('biswap_v3_bnb', 'BiswapFactoryV3_evt_NewPool') }} f ON f.pool = t.contract_address + {% if is_incremental() %} + WHERE {{incremental_predicate('t.evt_block_time')}} + {% endif %} +) + +SELECT + 'bnb' AS blockchain, + 'biswap' AS project, + '3' AS version, + CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, + CAST(date_trunc('day', dexs.block_time) AS date) AS block_date, + dexs.block_time, + dexs.block_number, + dexs.token_bought_amount_raw, + dexs.token_sold_amount_raw, + dexs.token_bought_address, + dexs.token_sold_address, + dexs.taker, + dexs.maker, + dexs.project_contract_address, + dexs.tx_hash, + dexs.evt_index +FROM dexs diff --git a/models/_sector/dex/trades/bnb/platforms/fraxswap_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/platforms/fraxswap_bnb_base_trades.sql new file mode 100644 index 00000000000..b8459fdffcc --- /dev/null +++ b/models/_sector/dex/trades/bnb/platforms/fraxswap_bnb_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'fraxswap_bnb', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'bnb', + project = 'fraxswap', + version = '1', + Pair_evt_Swap = source('fraxswap_bnb', 'FraxswapPair_evt_Swap'), + Factory_evt_PairCreated = source('fraxswap_bnb', 'FraxswapFactory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/bnb/platforms/pancakeswap_v2_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/platforms/pancakeswap_v2_bnb_base_trades.sql new file mode 100644 index 00000000000..d42c930bc18 --- /dev/null +++ b/models/_sector/dex/trades/bnb/platforms/pancakeswap_v2_bnb_base_trades.sql @@ -0,0 +1,124 @@ +{{ + config( + schema = 'pancakeswap_bnb', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +WITH + +dexs_macro AS ( + -- PancakeSwap v2 + {{ + uniswap_compatible_v2_trades( + blockchain = 'bnb', + project = 'pancakeswap', + version = '2', + Pair_evt_Swap = source('pancakeswap_v2_bnb', 'PancakePair_evt_Swap'), + Factory_evt_PairCreated = source('pancakeswap_v2_bnb', 'PancakeFactory_evt_PairCreated') + ) + }} +), + +dexs AS ( + -- PancakeSwap v2 MMPool + SELECT + 'mmpool' AS version, + t.evt_block_number AS block_number, + t.evt_block_time AS block_time, + t.user AS taker, + t.mm AS maker, + quoteTokenAmount AS token_bought_amount_raw, + baseTokenAmount AS token_sold_amount_raw, + CASE WHEN quotetoken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee + THEN 0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c ELSE quotetoken END AS token_bought_address, + CASE WHEN basetoken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee + THEN 0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c ELSE basetoken END AS token_sold_address, + t.contract_address AS project_contract_address, + t.evt_tx_hash AS tx_hash, + t.evt_index + FROM {{ source('pancakeswap_v2_bnb', 'PancakeSwapMMPool_evt_Swap') }} t + {% if is_incremental() %} + WHERE {{ incremental_predicate('t.evt_block_time') }} + {% endif %} + + UNION ALL + + -- PancakeSwap v2 stableswap + SELECT + 'stableswap' AS version, + t.evt_block_number AS block_number, + t.evt_block_time AS block_time, + t.buyer AS taker, + CAST(NULL AS VARBINARY) AS maker, + tokens_bought AS token_bought_amount_raw, + tokens_sold AS token_sold_amount_raw, + CASE WHEN bought_id = UINT256 '0' THEN f.tokenA ELSE f.tokenB END AS token_bought_address, + CASE WHEN bought_id = UINT256 '0' THEN f.tokenB ELSE f.tokenA END AS token_sold_address, + t.contract_address AS project_contract_address, + t.evt_tx_hash AS tx_hash, + t.evt_index + FROM + ( + SELECT * FROM {{ source('pancakeswap_v2_bnb', 'PancakeStableSwap_evt_TokenExchange') }} + UNION ALL + SELECT * FROM {{ source('pancakeswap_v2_bnb', 'PancakeStableSwapTwoPool_evt_TokenExchange') }} + ) t + INNER JOIN ( + SELECT a.* + FROM {{ source('pancakeswap_v2_bnb', 'PancakeStableSwapFactory_evt_NewStableSwapPair') }} a + INNER JOIN ( + SELECT swapContract, MAX(evt_block_time) AS latest_time + FROM {{ source('pancakeswap_v2_bnb', 'PancakeStableSwapFactory_evt_NewStableSwapPair') }} + GROUP BY swapContract + ) b + ON a.swapContract = b.swapContract AND a.evt_block_time = b.latest_time + ) f + ON t.contract_address = f.swapContract + {% if is_incremental() %} + WHERE {{ incremental_predicate('t.evt_block_time') }} + {% endif %} +) + +SELECT + dexs_macro.blockchain, + dexs_macro.project, + dexs_macro.version, + dexs_macro.block_month, + dexs_macro.block_date, + dexs_macro.block_time, + dexs_macro.block_number, + dexs_macro.token_bought_amount_raw, + dexs_macro.token_sold_amount_raw, + dexs_macro.token_bought_address, + dexs_macro.token_sold_address, + dexs_macro.taker, + dexs_macro.maker, + dexs_macro.project_contract_address, + dexs_macro.tx_hash, + dexs_macro.evt_index +FROM dexs_macro +UNION ALL +SELECT + 'bnb' AS blockchain, + 'pancakeswap' AS project, + dexs.version, + CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, + CAST(date_trunc('day', dexs.block_time) AS date) AS block_date, + dexs.block_time, + dexs.block_number, + dexs.token_bought_amount_raw, + dexs.token_sold_amount_raw, + dexs.token_bought_address, + dexs.token_sold_address, + dexs.taker, + dexs.maker, + dexs.project_contract_address, + dexs.tx_hash, + dexs.evt_index +FROM dexs diff --git a/models/_sector/dex/trades/bnb/platforms/pancakeswap_v3_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/platforms/pancakeswap_v3_bnb_base_trades.sql new file mode 100644 index 00000000000..836837de91f --- /dev/null +++ b/models/_sector/dex/trades/bnb/platforms/pancakeswap_v3_bnb_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'pancakeswap_v3_bnb', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v3_trades( + blockchain = 'bnb', + project = 'pancakeswap', + version = '3', + Pair_evt_Swap = source('pancakeswap_v3_bnb', 'PancakeV3Pool_evt_Swap'), + Factory_evt_PoolCreated = source('pancakeswap_v3_bnb', 'PancakeV3Factory_evt_PoolCreated') + ) +}} diff --git a/models/_sector/dex/trades/bnb/platforms/trader_joe_v2_1_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/platforms/trader_joe_v2_1_bnb_base_trades.sql new file mode 100644 index 00000000000..18454682d87 --- /dev/null +++ b/models/_sector/dex/trades/bnb/platforms/trader_joe_v2_1_bnb_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'trader_joe_v2_1_bnb' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + trader_joe_compatible_v2_1_trades( + blockchain = 'bnb' + , project = 'trader_joe' + , version = '2.1' + , Pair_evt_Swap = source('trader_joe_v2_1_bnb', 'LBPair_evt_Swap') + , Factory_evt_PoolCreated = source('trader_joe_v2_1_bnb', 'LBFactory_evt_LBPairCreated') + ) +}} \ No newline at end of file diff --git a/models/_sector/dex/trades/bnb/platforms/trader_joe_v2_bnb_base_trades.sql b/models/_sector/dex/trades/bnb/platforms/trader_joe_v2_bnb_base_trades.sql new file mode 100644 index 00000000000..075f3bf8cfc --- /dev/null +++ b/models/_sector/dex/trades/bnb/platforms/trader_joe_v2_bnb_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'trader_joe_v2_bnb' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + trader_joe_compatible_v2_trades( + blockchain = 'bnb' + , project = 'trader_joe' + , version = '2' + , Pair_evt_Swap = source('trader_joe_v2_bnb', 'LBPair_evt_Swap') + , Factory_evt_PoolCreated = source('trader_joe_v2_bnb', 'LBFactory_evt_LBPairCreated') + ) +}} diff --git a/models/_sector/dex/trades/celo/_schema.yml b/models/_sector/dex/trades/celo/_schema.yml index 7855da9dd52..c8e603b1eb2 100644 --- a/models/_sector/dex/trades/celo/_schema.yml +++ b/models/_sector/dex/trades/celo/_schema.yml @@ -1,6 +1,8 @@ version: 2 models: + - name: dex_celo_base_trades + - name: uniswap_v3_celo_base_trades meta: blockchain: celo @@ -15,17 +17,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_celo_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: mento_v1_celo_base_trades meta: @@ -41,20 +35,10 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('mento_celo_base_trades_seed') filter: - blockchain: celo - project: mento version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw - name: mento_v2_celo_base_trades meta: @@ -70,20 +54,10 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('mento_celo_base_trades_seed') filter: - blockchain: celo - project: mento version: 2 - match_columns: - - tx_hash - - evt_index - check_columns: - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw - name: curvefi_celo_base_trades meta: @@ -99,17 +73,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('curvefi_celo_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_celo_base_trades meta: @@ -125,17 +91,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_celo_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: ubeswap_celo_base_trades meta: @@ -151,17 +109,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('ubeswap_celo_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: carbonhood_celo_base_trades meta: @@ -177,15 +127,6 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('carbonhood_celo_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw - - name: dex_celo_base_trades diff --git a/models/_sector/dex/trades/dex_base_trades.sql b/models/_sector/dex/trades/dex_base_trades.sql index 808708584e0..28cd8de3fef 100644 --- a/models/_sector/dex/trades/dex_base_trades.sql +++ b/models/_sector/dex/trades/dex_base_trades.sql @@ -21,7 +21,6 @@ , ref('dex_polygon_base_trades') ] %} - with base_union as ( SELECT * FROM @@ -64,4 +63,4 @@ with base_union as ( select * from - base_union \ No newline at end of file + base_union diff --git a/models/_sector/dex/trades/dex_trades_beta.sql b/models/_sector/dex/trades/dex_trades_beta.sql index b6210ff3da9..76ce2a2b0dd 100644 --- a/models/_sector/dex/trades/dex_trades_beta.sql +++ b/models/_sector/dex/trades/dex_trades_beta.sql @@ -17,4 +17,4 @@ , tokens_erc20_model = ref('tokens_erc20') , prices_model = source('prices', 'usd') ) -}} \ No newline at end of file +}} diff --git a/models/_sector/dex/trades/ethereum/_schema.yml b/models/_sector/dex/trades/ethereum/_schema.yml index 92c5bbeb1bb..5c2fd0796e1 100644 --- a/models/_sector/dex/trades/ethereum/_schema.yml +++ b/models/_sector/dex/trades/ethereum/_schema.yml @@ -17,19 +17,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_ethereum_base_trades_seed') filter: version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: uniswap_v2_ethereum_base_trades meta: @@ -45,19 +37,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_ethereum_base_trades_seed') filter: version: 2 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: uniswap_v3_ethereum_base_trades meta: @@ -73,19 +57,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_ethereum_base_trades_seed') filter: version: 3 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: defiswap_ethereum_base_trades meta: @@ -101,17 +77,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('defiswap_ethereum_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: airswap_ethereum_base_trades meta: @@ -127,17 +95,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('airswap_ethereum_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v1_ethereum_base_trades meta: @@ -153,19 +113,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_ethereum_base_trades_seed') filter: version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v2_ethereum_base_trades meta: @@ -181,16 +133,176 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_ethereum_base_trades_seed') filter: version: 2 - match_columns: + + + - name: carbon_defi_ethereum_base_trades + meta: + blockchain: ethereum + sector: dex + project: carbon_defi + contributors: tiagofilipenunes, tomfutago + config: + tags: [ 'ethereum', 'dex', 'trades', 'carbon_defi' ] + description: "Carbon_defi ethereum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('carbon_defi_ethereum_base_trades_seed') + + + - name: apeswap_ethereum_base_trades + meta: + blockchain: ethereum + sector: dex + project: apeswap + contributors: hosuke + config: + tags: [ 'ethereum', 'dex', 'trades', 'apeswap' ] + description: apeswap base trades + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('apeswap_ethereum_base_trades_seed') + + - name: pancakeswap_v2_ethereum_base_trades + meta: + blockchain: ethereum + sector: dex + project: pancakeswap + contributors: chef_seaweed, tomfutago + config: + tags: [ 'ethereum', 'dex', 'trades', 'pancakeswap', 'uniswap', 'v2' ] + description: "Pancakeswap Ethereum v2 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('pancakeswap_ethereum_base_trades_seed') + filter: + version: + - 2 + - mmpool + + - name: shibaswap_v1_ethereum_base_trades + meta: + blockchain: ethereum + sector: dex + project: shibaswap + contributors: 0xRob, tomfutago + config: + tags: [ 'ethereum', 'dex', 'trades', 'shibaswap', 'uniswap', 'v2' ] + description: "sushiswap ethereum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('shibaswap_ethereum_base_trades_seed') + filter: + version: 1 + + - name: pancakeswap_v3_ethereum_base_trades + meta: + blockchain: ethereum + sector: dex + project: pancakeswap + contributors: chef_seaweed, tomfutago + config: + tags: [ 'ethereum', 'dex', 'trades', 'pancakeswap', 'uniswap', 'v3' ] + description: "Pancakeswap Ethereum v3 base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('pancakeswap_ethereum_base_trades_seed') + filter: + version: 3 + + - name: balancer_v1_ethereum_base_trades + meta: + blockchain: ethereum + sector: dex + project: balancer + contributors: bizzyvinci, thetroyharris, tomfutago + config: + tags: [ 'ethereum', 'dex', 'trades', 'balancer' ] + description: "Balancer v1 ethereum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('balancer_ethereum_base_trades_seed') + filter: + version: 1 + + - name: balancer_v2_ethereum_base_trades + meta: + blockchain: ethereum + sector: dex + project: balancer + contributors: bizzyvinci, thetroyharris, tomfutago + config: + tags: [ 'ethereum', 'dex', 'trades', 'balancer' ] + description: "Balancer v2 ethereum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('balancer_ethereum_base_trades_seed') + filter: + version: 2 + + - name: fraxswap_ethereum_base_trades + meta: + blockchain: ethereum + sector: dex + project: fraxswap + contributors: kndlexi, tomfutago + config: + tags: ['ethereum', 'dex', 'trades', 'fraxswap', 'uniswap', 'v2'] + description: "Fraxswap ethereum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('fraxswap_ethereum_base_trades_seed') + filter: + version: 1 + + - name: bancor_ethereum_base_trades + meta: + blockchain: ethereum + sector: dex + project: bancor + contributors: tian7, tomfutago + config: + tags: [ 'ethereum', 'dex', 'trades', 'bancor' ] + description: "Bancor ethereum base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: - tx_hash - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw \ No newline at end of file + - check_dex_base_trades_seed: + seed_file: ref('bancor_ethereum_base_trades_seed') diff --git a/models/_sector/dex/trades/ethereum/_sources.yml b/models/_sector/dex/trades/ethereum/_sources.yml index 0f9ce3e6286..4e2917ce867 100644 --- a/models/_sector/dex/trades/ethereum/_sources.yml +++ b/models/_sector/dex/trades/ethereum/_sources.yml @@ -5,6 +5,9 @@ sources: - name: uniswap_ethereum - name: uniswap_v2_ethereum - name: uniswap_v3_ethereum + - name: carbon_defi_ethereum + tables: + - name: CarbonController_evt_TokensTraded - name: airswap_ethereum tables: - name: Light_evt_Swap @@ -20,3 +23,37 @@ sources: tables: - name: UniswapV3Pool_evt_Swap - name: UniswapV3Factory_evt_PoolCreated + - name: pancakeswap_v2_ethereum + tables: + - name: PancakePair_evt_Swap + - name: PancakeFactory_evt_PairCreated + - name: PancakeSwapMMPool_evt_Swap + - name: pancakeswap_v3_ethereum + tables: + - name: PancakeV3Pool_evt_Swap + - name: PancakeV3Factory_evt_PoolCreated + - name: shibaswap_ethereum + tables: + - name: UniswapV2Pair_evt_Swap + - name: UniswapV2Factory_evt_PairCreated + - name: balancer_v1_ethereum + tables: + - name: BPool_evt_LOG_SWAP + - name: BPool_call_setSwapFee + - name: balancer_v2_ethereum + tables: + - name: Vault_evt_Swap + - name: fraxswap_ethereum + tables: + - name: FraxswapPair_evt_Swap + - name: FraxswapFactory_evt_PairCreated + - name: bancornetwork_ethereum + tables: + - name: BancorNetwork_v6_evt_Conversion + - name: BancorNetwork_v7_evt_Conversion + - name: BancorNetwork_v8_evt_Conversion + - name: BancorNetwork_v9_evt_Conversion + - name: BancorNetwork_v10_evt_Conversion + - name: bancor3_ethereum + tables: + - name: BancorNetwork_evt_TokensTraded diff --git a/models/_sector/dex/trades/ethereum/dex_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/dex_ethereum_base_trades.sql index 799f0c15af4..c1c4a9129e1 100644 --- a/models/_sector/dex/trades/ethereum/dex_ethereum_base_trades.sql +++ b/models/_sector/dex/trades/ethereum/dex_ethereum_base_trades.sql @@ -10,9 +10,18 @@ , ref('uniswap_v1_ethereum_base_trades') , ref('uniswap_v2_ethereum_base_trades') , ref('uniswap_v3_ethereum_base_trades') + , ref('apeswap_ethereum_base_trades') + , ref('carbon_defi_ethereum_base_trades') , ref('airswap_ethereum_base_trades') , ref('sushiswap_v1_ethereum_base_trades') , ref('sushiswap_v2_ethereum_base_trades') + , ref('pancakeswap_v2_ethereum_base_trades') + , ref('pancakeswap_v3_ethereum_base_trades') + , ref('shibaswap_v1_ethereum_base_trades') + , ref('balancer_v1_ethereum_base_trades') + , ref('balancer_v2_ethereum_base_trades') + , ref('fraxswap_ethereum_base_trades') + , ref('bancor_ethereum_base_trades') ] %} WITH base_union AS ( diff --git a/models/_sector/dex/trades/ethereum/platforms/apeswap_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/platforms/apeswap_ethereum_base_trades.sql new file mode 100644 index 00000000000..1a60edd1b7a --- /dev/null +++ b/models/_sector/dex/trades/ethereum/platforms/apeswap_ethereum_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'apeswap_ethereum' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'ethereum', + project = 'apeswap', + version = '1', + Pair_evt_Swap = source('apeswap_ethereum', 'ApePair_evt_Swap'), + Factory_evt_PairCreated = source('apeswap_ethereum', 'ApeFactory_evt_PairCreated') + ) +}} \ No newline at end of file diff --git a/models/_sector/dex/trades/ethereum/platforms/balancer_v1_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/platforms/balancer_v1_ethereum_base_trades.sql new file mode 100644 index 00000000000..845d9a91dda --- /dev/null +++ b/models/_sector/dex/trades/ethereum/platforms/balancer_v1_ethereum_base_trades.sql @@ -0,0 +1,19 @@ +{{ + config( + schema = 'balancer_v1_ethereum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + balancer_compatible_v1_trades( + blockchain = 'ethereum', + project = 'balancer', + version = '1' + ) +}} diff --git a/models/_sector/dex/trades/ethereum/platforms/balancer_v2_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/platforms/balancer_v2_ethereum_base_trades.sql new file mode 100644 index 00000000000..da29d9dea1d --- /dev/null +++ b/models/_sector/dex/trades/ethereum/platforms/balancer_v2_ethereum_base_trades.sql @@ -0,0 +1,19 @@ +{{ + config( + schema = 'balancer_v2_ethereum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + balancer_compatible_v2_trades( + blockchain = 'ethereum', + project = 'balancer', + version = '2' + ) +}} diff --git a/models/_sector/dex/trades/ethereum/platforms/bancor_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/platforms/bancor_ethereum_base_trades.sql new file mode 100644 index 00000000000..0d887105d71 --- /dev/null +++ b/models/_sector/dex/trades/ethereum/platforms/bancor_ethereum_base_trades.sql @@ -0,0 +1,106 @@ +{{ + config( + schema = 'bancor_ethereum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{% set weth_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' %} + +WITH conversions AS ( + {% for n in range(6,11) %} + SELECT + t.evt_block_number, + t.evt_block_time, + t._trader, + t._toAmount, + t._fromAmount, + t._toToken, + t._fromToken, + t.contract_address, + t.evt_tx_hash, + t.evt_index + FROM {{ source('bancornetwork_ethereum', 'BancorNetwork_v' ~ n ~ '_evt_Conversion' )}} t + {% if is_incremental() %} + WHERE {{ incremental_predicate('evt_block_time') }} + {% endif %} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +), + +dexs AS ( + SELECT + '1' AS version, + t.evt_block_number AS block_number, + t.evt_block_time AS block_time, + t._trader AS taker, + CAST(NULL AS VARBINARY) AS maker, + t._toAmount AS token_bought_amount_raw, + t._fromAmount AS token_sold_amount_raw, + CAST(NULL as double) AS amount_usd, + CASE + WHEN t._toToken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee THEN {{ weth_address }} + ELSE t._toToken + END AS token_bought_address, + CASE + WHEN t._fromToken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee THEN {{ weth_address }} + ELSE t._fromToken + END AS token_sold_address, + t.contract_address AS project_contract_address, + t.evt_tx_hash AS tx_hash, + t.evt_index + FROM conversions t + + UNION ALL + + SELECT + '3' AS version, + t.evt_block_number AS block_number, + t.evt_block_time AS block_time, + t.trader AS taker, + CAST(NULL AS VARBINARY) AS maker, + t.targetAmount AS token_bought_amount_raw, + t.sourceAmount AS token_sold_amount_raw, + CAST(NULL as double) AS amount_usd, + CASE + WHEN t.targetToken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee THEN {{ weth_address }} + ELSE t.targetToken + END AS token_bought_address, + CASE + WHEN t.sourceToken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee THEN {{ weth_address }} + ELSE t.sourceToken + END AS token_sold_address, + t.contract_address AS project_contract_address, + t.evt_tx_hash AS tx_hash, + t.evt_index + FROM {{ source('bancor3_ethereum', 'BancorNetwork_evt_TokensTraded') }} t + {% if is_incremental() %} + WHERE {{ incremental_predicate('t.evt_block_time') }} + {% endif %} +) + +SELECT + 'ethereum' AS blockchain, + 'bancor' AS project, + dexs.version, + CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, + CAST(date_trunc('day', dexs.block_time) AS date) AS block_date, + dexs.block_time, + dexs.block_number, + dexs.token_bought_amount_raw, + dexs.token_sold_amount_raw, + dexs.token_bought_address, + dexs.token_sold_address, + dexs.taker, + dexs.maker, + dexs.project_contract_address, + dexs.tx_hash, + dexs.evt_index +FROM dexs diff --git a/models/_sector/dex/trades/ethereum/platforms/carbon_defi_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/platforms/carbon_defi_ethereum_base_trades.sql new file mode 100644 index 00000000000..63011f2c2fd --- /dev/null +++ b/models/_sector/dex/trades/ethereum/platforms/carbon_defi_ethereum_base_trades.sql @@ -0,0 +1,57 @@ +{{ + config( + schema = 'carbon_defi_ethereum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{% set weth_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' %} + +WITH dexs AS ( + SELECT + t.evt_block_number AS block_number, + t.evt_block_time AS block_time, + t.trader AS taker, + CAST(NULL as VARBINARY) as maker, + t.targetAmount AS token_bought_amount_raw, + t.sourceAmount AS token_sold_amount_raw, + CASE + WHEN t.targetToken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee THEN {{weth_address}} + ELSE t.targetToken + END AS token_bought_address, --Using WETH for easier joining with USD price table + CASE + WHEN t.sourceToken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee THEN {{weth_address}} + ELSE t.sourceToken + END AS token_sold_address, --Using WETH for easier joining with USD price table + t.contract_address AS project_contract_address, + t.evt_tx_hash AS tx_hash, + t.evt_index + FROM {{ source('carbon_defi_ethereum', 'CarbonController_evt_TokensTraded') }} t + {% if is_incremental() %} + WHERE {{incremental_predicate('t.evt_block_time')}} + {% endif %} +) + +SELECT + 'ethereum' AS blockchain, + 'carbon_defi' AS project, + '1' AS version, + CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, + CAST(date_trunc('day', dexs.block_time) AS date) AS block_date, + dexs.block_time, + dexs.block_number, + dexs.token_bought_amount_raw, + dexs.token_sold_amount_raw, + dexs.token_bought_address, + dexs.token_sold_address, + dexs.taker, + dexs.maker, + dexs.project_contract_address, + dexs.tx_hash, + dexs.evt_index +FROM dexs diff --git a/models/_sector/dex/trades/ethereum/platforms/fraxswap_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/platforms/fraxswap_ethereum_base_trades.sql new file mode 100644 index 00000000000..5d55c770b89 --- /dev/null +++ b/models/_sector/dex/trades/ethereum/platforms/fraxswap_ethereum_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'fraxswap_ethereum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'ethereum', + project = 'fraxswap', + version = '1', + Pair_evt_Swap = source('fraxswap_ethereum', 'FraxswapPair_evt_Swap'), + Factory_evt_PairCreated = source('fraxswap_ethereum', 'FraxswapFactory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/ethereum/platforms/pancakeswap_v2_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/platforms/pancakeswap_v2_ethereum_base_trades.sql new file mode 100644 index 00000000000..dbd16edafe3 --- /dev/null +++ b/models/_sector/dex/trades/ethereum/platforms/pancakeswap_v2_ethereum_base_trades.sql @@ -0,0 +1,87 @@ +{{ + config( + schema = 'pancakeswap_ethereum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +WITH + +dexs_macro AS ( + -- PancakeSwap v2 + {{ + uniswap_compatible_v2_trades( + blockchain = 'ethereum', + project = 'pancakeswap', + version = '2', + Pair_evt_Swap = source('pancakeswap_v2_ethereum', 'PancakePair_evt_Swap'), + Factory_evt_PairCreated = source('pancakeswap_v2_ethereum', 'PancakeFactory_evt_PairCreated') + ) + }} +), + +dexs AS ( + -- PancakeSwap v2 MMPool + SELECT + 'mmpool' AS version, + t.evt_block_number AS block_number, + t.evt_block_time AS block_time, + t.user AS taker, + t.mm AS maker, + quoteTokenAmount AS token_bought_amount_raw, + baseTokenAmount AS token_sold_amount_raw, + CASE WHEN quotetoken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee + THEN 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 ELSE quotetoken END AS token_bought_address, + CASE WHEN basetoken = 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee + THEN 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 ELSE basetoken END AS token_sold_address, + t.contract_address AS project_contract_address, + t.evt_tx_hash AS tx_hash, + t.evt_index + FROM {{ source('pancakeswap_v2_ethereum', 'PancakeSwapMMPool_evt_Swap') }} t + {% if is_incremental() %} + WHERE {{ incremental_predicate('t.evt_block_time') }} + {% endif %} +) + +SELECT + dexs_macro.blockchain, + dexs_macro.project, + dexs_macro.version, + dexs_macro.block_month, + dexs_macro.block_date, + dexs_macro.block_time, + dexs_macro.block_number, + dexs_macro.token_bought_amount_raw, + dexs_macro.token_sold_amount_raw, + dexs_macro.token_bought_address, + dexs_macro.token_sold_address, + dexs_macro.taker, + dexs_macro.maker, + dexs_macro.project_contract_address, + dexs_macro.tx_hash, + dexs_macro.evt_index +FROM dexs_macro +UNION ALL +SELECT + 'ethereum' AS blockchain, + 'pancakeswap' AS project, + dexs.version, + CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, + CAST(date_trunc('day', dexs.block_time) AS date) AS block_date, + dexs.block_time, + dexs.block_number, + dexs.token_bought_amount_raw, + dexs.token_sold_amount_raw, + dexs.token_bought_address, + dexs.token_sold_address, + dexs.taker, + dexs.maker, + dexs.project_contract_address, + dexs.tx_hash, + dexs.evt_index +FROM dexs diff --git a/models/_sector/dex/trades/ethereum/platforms/pancakeswap_v3_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/platforms/pancakeswap_v3_ethereum_base_trades.sql new file mode 100644 index 00000000000..4af1ab5c005 --- /dev/null +++ b/models/_sector/dex/trades/ethereum/platforms/pancakeswap_v3_ethereum_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'pancakeswap_v3_ethereum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v3_trades( + blockchain = 'ethereum', + project = 'pancakeswap', + version = '3', + Pair_evt_Swap = source('pancakeswap_v3_ethereum', 'PancakeV3Pool_evt_Swap'), + Factory_evt_PoolCreated = source('pancakeswap_v3_ethereum', 'PancakeV3Factory_evt_PoolCreated') + ) +}} diff --git a/models/_sector/dex/trades/ethereum/platforms/shibaswap_v1_ethereum_base_trades.sql b/models/_sector/dex/trades/ethereum/platforms/shibaswap_v1_ethereum_base_trades.sql new file mode 100644 index 00000000000..d2dc92b8db8 --- /dev/null +++ b/models/_sector/dex/trades/ethereum/platforms/shibaswap_v1_ethereum_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'shibaswap_v1_ethereum', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'ethereum', + project = 'shibaswap', + version = '1', + Pair_evt_Swap = source('shibaswap_ethereum', 'UniswapV2Pair_evt_Swap'), + Factory_evt_PairCreated = source('shibaswap_ethereum', 'UniswapV2Factory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/fantom/_schema.yml b/models/_sector/dex/trades/fantom/_schema.yml index df329ae2d2b..597c5e87cdd 100644 --- a/models/_sector/dex/trades/fantom/_schema.yml +++ b/models/_sector/dex/trades/fantom/_schema.yml @@ -1,6 +1,8 @@ version: 2 models: + - name: dex_fantom_base_trades + - name: sushiswap_v1_fantom_base_trades meta: blockchain: fantom @@ -15,19 +17,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_fantom_base_trades_seed') filter: version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v2_fantom_base_trades meta: @@ -43,18 +37,46 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_fantom_base_trades_seed') filter: version: 2 - match_columns: + + + - name: spiritswap_fantom_base_trades + meta: + blockchain: fantom + sector: dex + project: spiritswap + contributors: Henrystats, tomfutago + config: + tags: ['fantom', 'dex', 'trades', 'spiritswap', 'uniswap', 'v2'] + description: "Spiritswap fantom base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: - tx_hash - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - check_dex_base_trades_seed: + seed_file: ref('spiritswap_fantom_base_trades_seed') + filter: + version: 1 - - name: dex_fantom_base_trades + - name: spookyswap_fantom_base_trades + meta: + blockchain: fantom + sector: dex + project: spookyswap + contributors: Henrystats, tomfutago + config: + tags: ['fantom', 'dex', 'trades', 'spookyswap', 'uniswap', 'v2'] + description: "Spookyswap fantom base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('spookyswap_fantom_base_trades_seed') + filter: + version: 1 diff --git a/models/_sector/dex/trades/fantom/_sources.yml b/models/_sector/dex/trades/fantom/_sources.yml index fa944908b6d..1643399f317 100644 --- a/models/_sector/dex/trades/fantom/_sources.yml +++ b/models/_sector/dex/trades/fantom/_sources.yml @@ -9,3 +9,11 @@ sources: tables: - name: Pool_evt_Swap - name: Factory_evt_PoolCreated + - name: spiritswap_fantom + tables: + - name: Pair_evt_Swap + - name: Factory_evt_PairCreated + - name: spookyswap_fantom + tables: + - name: Pair_evt_Swap + - name: UniswapV2Factory_evt_PairCreated diff --git a/models/_sector/dex/trades/fantom/dex_fantom_base_trades.sql b/models/_sector/dex/trades/fantom/dex_fantom_base_trades.sql index 262cf53a636..d32a67487dd 100644 --- a/models/_sector/dex/trades/fantom/dex_fantom_base_trades.sql +++ b/models/_sector/dex/trades/fantom/dex_fantom_base_trades.sql @@ -6,8 +6,10 @@ }} {% set base_models = [ - ref('sushiswap_v1_fantom_base_trades'), - ref('sushiswap_v2_fantom_base_trades') + ref('sushiswap_v1_fantom_base_trades') + , ref('sushiswap_v2_fantom_base_trades') + , ref('spiritswap_fantom_base_trades') + , ref('spookyswap_fantom_base_trades') ] %} WITH base_union AS ( diff --git a/models/_sector/dex/trades/fantom/platforms/spiritswap_fantom_base_trades.sql b/models/_sector/dex/trades/fantom/platforms/spiritswap_fantom_base_trades.sql new file mode 100644 index 00000000000..ddfc7b166bb --- /dev/null +++ b/models/_sector/dex/trades/fantom/platforms/spiritswap_fantom_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'spiritswap_fantom', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'fantom', + project = 'spiritswap', + version = '1', + Pair_evt_Swap = source('spiritswap_fantom', 'Pair_evt_Swap'), + Factory_evt_PairCreated = source('spiritswap_fantom', 'Factory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/fantom/platforms/spookyswap_fantom_base_trades.sql b/models/_sector/dex/trades/fantom/platforms/spookyswap_fantom_base_trades.sql new file mode 100644 index 00000000000..1f2f2d6fdc2 --- /dev/null +++ b/models/_sector/dex/trades/fantom/platforms/spookyswap_fantom_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'spookyswap_fantom', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'fantom', + project = 'spookyswap', + version = '1', + Pair_evt_Swap = source('spookyswap_fantom', 'Pair_evt_Swap'), + Factory_evt_PairCreated = source('spookyswap_fantom', 'UniswapV2Factory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/gnosis/_schema.yml b/models/_sector/dex/trades/gnosis/_schema.yml index 06e9bb19999..4ba974e42e9 100644 --- a/models/_sector/dex/trades/gnosis/_schema.yml +++ b/models/_sector/dex/trades/gnosis/_schema.yml @@ -1,6 +1,8 @@ version: 2 models: + - name: dex_gnosis_base_trades + - name: sushiswap_v1_gnosis_base_trades meta: blockchain: gnosis @@ -15,19 +17,10 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_gnosis_base_trades_seed') filter: version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw - name: sushiswap_v2_gnosis_base_trades meta: @@ -43,18 +36,45 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_gnosis_base_trades_seed') filter: version: 2 - match_columns: + + - name: balancer_v2_gnosis_base_trades + meta: + blockchain: gnosis + sector: dex + project: balancer + contributors: bizzyvinci, thetroyharris, tomfutago + config: + tags: [ 'gnosis', 'dex', 'trades', 'balancer' ] + description: "Balancer v2 gnosis base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: - tx_hash - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - check_dex_base_trades_seed: + seed_file: ref('balancer_gnosis_base_trades_seed') + filter: + version: 2 - - name: dex_gnosis_base_trades + - name: honeyswap_v2_gnosis_base_trades + meta: + blockchain: gnosis + sector: dex + project: honeyswap + contributors: 0xr3x, jeff-dude, masquot, soispoke, tomfutago + config: + tags: ['gnosis', 'dex', 'trades', 'honeyswap', 'v2'] + description: "Honeyswap gnosis base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('honeyswap_gnosis_base_trades_seed') + filter: + version: 2 diff --git a/models/_sector/dex/trades/gnosis/_sources.yml b/models/_sector/dex/trades/gnosis/_sources.yml index f80f30e116f..6755ea39db5 100644 --- a/models/_sector/dex/trades/gnosis/_sources.yml +++ b/models/_sector/dex/trades/gnosis/_sources.yml @@ -9,3 +9,10 @@ sources: tables: - name: Pool_evt_Swap - name: Factory_evt_PoolCreated + - name: balancer_v2_gnosis + tables: + - name: Vault_evt_Swap + - name: honeyswap_v2_gnosis + tables: + - name: UniswapV2Pair_evt_Swap + - name: UniswapV2Factory_evt_PairCreated diff --git a/models/_sector/dex/trades/gnosis/dex_gnosis_base_trades.sql b/models/_sector/dex/trades/gnosis/dex_gnosis_base_trades.sql index 4449fd19dab..1803ccbcca8 100644 --- a/models/_sector/dex/trades/gnosis/dex_gnosis_base_trades.sql +++ b/models/_sector/dex/trades/gnosis/dex_gnosis_base_trades.sql @@ -6,8 +6,10 @@ }} {% set base_models = [ - ref('sushiswap_v1_gnosis_base_trades'), - ref('sushiswap_v2_gnosis_base_trades') + ref('sushiswap_v1_gnosis_base_trades') + , ref('sushiswap_v2_gnosis_base_trades') + , ref('balancer_v2_gnosis_base_trades') + , ref('honeyswap_v2_gnosis_base_trades') ] %} WITH base_union AS ( diff --git a/models/_sector/dex/trades/gnosis/platforms/balancer_v2_gnosis_base_trades.sql b/models/_sector/dex/trades/gnosis/platforms/balancer_v2_gnosis_base_trades.sql new file mode 100644 index 00000000000..0df91d1fb00 --- /dev/null +++ b/models/_sector/dex/trades/gnosis/platforms/balancer_v2_gnosis_base_trades.sql @@ -0,0 +1,19 @@ +{{ + config( + schema = 'balancer_v2_gnosis', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + balancer_compatible_v2_trades( + blockchain = 'gnosis', + project = 'balancer', + version = '2' + ) +}} diff --git a/models/_sector/dex/trades/gnosis/platforms/honeyswap_v2_gnosis_base_trades.sql b/models/_sector/dex/trades/gnosis/platforms/honeyswap_v2_gnosis_base_trades.sql new file mode 100644 index 00000000000..a617e561e9f --- /dev/null +++ b/models/_sector/dex/trades/gnosis/platforms/honeyswap_v2_gnosis_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'honeyswap_v2_gnosis', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'gnosis', + project = 'honeyswap', + version = '2', + Pair_evt_Swap = source('honeyswap_v2_gnosis', 'UniswapV2Pair_evt_Swap'), + Factory_evt_PairCreated = source('honeyswap_v2_gnosis', 'UniswapV2Factory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/optimism/_schema.yml b/models/_sector/dex/trades/optimism/_schema.yml index 4c71931f8bf..e8533e22792 100644 --- a/models/_sector/dex/trades/optimism/_schema.yml +++ b/models/_sector/dex/trades/optimism/_schema.yml @@ -17,17 +17,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_optimism_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: woofi_optimism_base_trades @@ -45,17 +37,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('woofi_optimism_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v1_optimism_base_trades meta: @@ -71,20 +55,12 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_optimism_base_trades_seed') filter: version: trident-cpp version: trident-sp - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v2_optimism_base_trades meta: @@ -100,19 +76,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_optimism_base_trades_seed') filter: version: 2 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: mummy_finance_optimism_base_trades meta: @@ -129,18 +97,67 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('mummy_finance_optimism_base_trades_seed') - match_columns: + + - name: zipswap_optimism_base_trades + meta: + blockchain: optimism + sector: dex + project: zipswap + contributors: msilb7, tomfutago + config: + tags: [ 'optimism', 'dex', 'trades', 'zipswap', 'uniswap', 'v2' ] + description: "Zipswap optimism trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('zipswap_optimism_base_trades_seed') + filter: + version: 1 + + - name: balancer_v2_optimism_base_trades + meta: + blockchain: optimism + sector: dex + project: balancer + contributors: bizzyvinci, thetroyharris, tomfutago + config: + tags: [ 'optimism', 'dex', 'trades', 'balancer' ] + description: "Balancer v2 optimism base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('balancer_optimism_base_trades_seed') + filter: + version: 2 + + + - name: mummy_finance_optimism_base_trades + meta: + blockchain: optimism + sector: dex + project: mummy_finance + contributors: ARDev097 + config: + tags: [ 'optimism', 'dex', 'trades', 'mummy_finance' ] + description: > + mummy_finance base trades on optimism. + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: - tx_hash - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw - + - check_dex_base_trades_seed: + seed_file: ref('mummy_finance_optimism_base_trades_seed') + + - name: hashflow_optimism_base_trades meta: blockchain: optimism @@ -156,14 +173,5 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: - seed_file: ref('hashflow_optimism_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw \ No newline at end of file + - check_dex_base_trades_seed: + seed_file: ref('hashflow_optimism_base_trades_seed') \ No newline at end of file diff --git a/models/_sector/dex/trades/optimism/_sources.yml b/models/_sector/dex/trades/optimism/_sources.yml index 5ec8f90ce73..1730b6b58f4 100644 --- a/models/_sector/dex/trades/optimism/_sources.yml +++ b/models/_sector/dex/trades/optimism/_sources.yml @@ -8,3 +8,10 @@ sources: - name: StablePool_evt_Swap - name: UniswapV3Pool_evt_Swap - name: UniswapV3Factory_evt_PoolCreated + - name: zipswap_optimism + tables: + - name: UniswapV2Pair_evt_Swap + - name: UniswapV2Factory_evt_PairCreated + - name: balancer_v2_optimism + tables: + - name: Vault_evt_Swap diff --git a/models/_sector/dex/trades/optimism/dex_optimism_base_trades.sql b/models/_sector/dex/trades/optimism/dex_optimism_base_trades.sql index e62073cdb7b..cb49344d69c 100644 --- a/models/_sector/dex/trades/optimism/dex_optimism_base_trades.sql +++ b/models/_sector/dex/trades/optimism/dex_optimism_base_trades.sql @@ -12,6 +12,8 @@ , ref('sushiswap_v1_optimism_base_trades') , ref('sushiswap_v2_optimism_base_trades') , ref('hashflow_optimism_base_trades') + , ref('zipswap_optimism_base_trades') + , ref('balancer_v2_optimism_base_trades') ] %} WITH base_union AS ( diff --git a/models/_sector/dex/trades/optimism/platforms/balancer_v2_optimism_base_trades.sql b/models/_sector/dex/trades/optimism/platforms/balancer_v2_optimism_base_trades.sql new file mode 100644 index 00000000000..e2a881978fa --- /dev/null +++ b/models/_sector/dex/trades/optimism/platforms/balancer_v2_optimism_base_trades.sql @@ -0,0 +1,19 @@ +{{ + config( + schema = 'balancer_v2_optimism', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + balancer_compatible_v2_trades( + blockchain = 'optimism', + project = 'balancer', + version = '2' + ) +}} diff --git a/models/_sector/dex/trades/optimism/platforms/zipswap_optimism_base_trades.sql b/models/_sector/dex/trades/optimism/platforms/zipswap_optimism_base_trades.sql new file mode 100644 index 00000000000..34bec6f7bac --- /dev/null +++ b/models/_sector/dex/trades/optimism/platforms/zipswap_optimism_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'zipswap_optimism', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'optimism', + project = 'zipswap', + version = '1', + Pair_evt_Swap = source('zipswap_optimism', 'UniswapV2Pair_evt_Swap'), + Factory_evt_PairCreated = source('zipswap_optimism', 'UniswapV2Factory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/polygon/_schema.yml b/models/_sector/dex/trades/polygon/_schema.yml index 8d11ff522ed..24d688523c0 100644 --- a/models/_sector/dex/trades/polygon/_schema.yml +++ b/models/_sector/dex/trades/polygon/_schema.yml @@ -17,17 +17,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('uniswap_polygon_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: airswap_polygon_base_trades meta: @@ -43,17 +35,9 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('airswap_polygon_base_trades_seed') - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v1_polygon_base_trades meta: @@ -69,19 +53,11 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_polygon_base_trades_seed') filter: version: 1 - match_columns: - - tx_hash - - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - name: sushiswap_v2_polygon_base_trades meta: @@ -97,16 +73,123 @@ models: combination_of_columns: - tx_hash - evt_index - - check_seed: + - check_dex_base_trades_seed: seed_file: ref('sushiswap_polygon_base_trades_seed') filter: version: 2 - match_columns: + + + - name: quickswap_v2_polygon_base_trades + meta: + blockchain: polygon + sector: dex + project: quickswap + contributors: nyssarex + config: + tags: [ 'polygon', 'dex', 'trades', 'quickswap', 'v2' ] + description: "quickswap polygon v2 trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('quickswap_polygon_base_trades_seed') + filter: + version: 2 + + + - name: quickswap_v3_polygon_base_trades + meta: + blockchain: polygon + sector: dex + project: quickswap + contributors: nyssarex + config: + tags: [ 'polygon', 'dex', 'trades', 'quickswap', 'v3' ] + description: "quickswap polygon v3 trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: - tx_hash - evt_index - check_columns: - - block_number - - token_bought_address - - token_sold_address - - token_bought_amount_raw - - token_sold_amount_raw + - check_dex_base_trades_seed: + seed_file: ref('quickswap_polygon_base_trades_seed') + filter: + version: 3 + + - name: apeswap_polygon_base_trades + meta: + blockchain: polygon + sector: dex + project: apeswap + contributors: hosuke + config: + tags: [ 'polygon', 'dex', 'trades', 'apeswap' ] + description: apeswap base trades + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('apeswap_polygon_base_trades_seed') + filter: + version: 2 + + - name: balancer_v2_polygon_base_trades + meta: + blockchain: polygon + sector: dex + project: balancer + contributors: bizzyvinci, thetroyharris, tomfutago + config: + tags: [ 'polygon', 'dex', 'trades', 'balancer' ] + description: "Balancer v2 polygon base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('balancer_polygon_base_trades_seed') + filter: + version: 2 + + - name: honeyswap_v2_polygon_base_trades + meta: + blockchain: polygon + sector: dex + project: honeyswap + contributors: 0xr3x, jeff-dude, masquot, soispoke, tomfutago + config: + tags: ['polygon', 'dex', 'trades', 'honeyswap', 'v2'] + description: "Honeyswap polygon base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('honeyswap_polygon_base_trades_seed') + filter: + version: 2 + + - name: fraxswap_polygon_base_trades + meta: + blockchain: polygon + sector: dex + project: fraxswap + contributors: kndlexi, tomfutago + config: + tags: ['polygon', 'dex', 'trades', 'fraxswap', 'uniswap', 'v2'] + description: "Fraxswap polygon base trades" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - check_dex_base_trades_seed: + seed_file: ref('fraxswap_polygon_base_trades_seed') + filter: + version: 1 diff --git a/models/_sector/dex/trades/polygon/_sources.yml b/models/_sector/dex/trades/polygon/_sources.yml index ca8737eb37b..591c54fb8c9 100644 --- a/models/_sector/dex/trades/polygon/_sources.yml +++ b/models/_sector/dex/trades/polygon/_sources.yml @@ -6,6 +6,10 @@ sources: tables: - name: Swap_v3_evt_Swap - name: SwapERC20_v4_evt_SwapERC20 + - name: quickswap_polygon + tables: + - name: UniswapV2Pair_evt_Swap + - name: UniswapV2Factory_evt_PairCreated - name: sushi_polygon tables: - name: UniswapV2Pair_evt_Swap @@ -14,3 +18,18 @@ sources: tables: - name: UniswapV3Pool_evt_Swap - name: UniswapV3Factory_evt_PoolCreated + - name: honeyswap_polygon + tables: + - name: Pair_evt_Swap + - name: Factory_evt_PairCreated + - name: quickswap_v3_polygon + tables: + - name: AlgebraPool_evt_Swap + - name: AlgebraFactory_evt_Pool + - name: balancer_v2_polygon + tables: + - name: Vault_evt_Swap + - name: fraxswap_polygon + tables: + - name: FraxswapPair_evt_Swap + - name: FraxswapFactory_evt_PairCreated diff --git a/models/_sector/dex/trades/polygon/dex_polygon_base_trades.sql b/models/_sector/dex/trades/polygon/dex_polygon_base_trades.sql index 6e2e465f6a5..0622d27f013 100644 --- a/models/_sector/dex/trades/polygon/dex_polygon_base_trades.sql +++ b/models/_sector/dex/trades/polygon/dex_polygon_base_trades.sql @@ -7,9 +7,15 @@ {% set base_models = [ ref('uniswap_v3_polygon_base_trades') + , ref('apeswap_polygon_base_trades') , ref('airswap_polygon_base_trades') , ref('sushiswap_v1_polygon_base_trades') , ref('sushiswap_v2_polygon_base_trades') + , ref('honeyswap_v2_polygon_base_trades') + , ref('quickswap_v2_polygon_base_trades') + , ref('quickswap_v3_polygon_base_trades') + , ref('balancer_v2_polygon_base_trades') + , ref('fraxswap_polygon_base_trades') ] %} WITH base_union AS ( diff --git a/models/_sector/dex/trades/polygon/platforms/apeswap_polygon_base_trades.sql b/models/_sector/dex/trades/polygon/platforms/apeswap_polygon_base_trades.sql new file mode 100644 index 00000000000..112e3f347b0 --- /dev/null +++ b/models/_sector/dex/trades/polygon/platforms/apeswap_polygon_base_trades.sql @@ -0,0 +1,20 @@ +{{ config( + schema = 'apeswap_polygon' + , alias = 'base_trades' + , materialized = 'incremental' + , file_format = 'delta' + , incremental_strategy = 'merge' + , unique_key = ['tx_hash', 'evt_index'] + , incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'polygon', + project = 'apeswap', + version = '1', + Pair_evt_Swap = source('apeswap_polygon', 'ApePair_evt_Swap'), + Factory_evt_PairCreated = source('apeswap_polygon', 'ApeFactory_evt_PairCreated') + ) +}} \ No newline at end of file diff --git a/models/_sector/dex/trades/polygon/platforms/balancer_v2_polygon_base_trades.sql b/models/_sector/dex/trades/polygon/platforms/balancer_v2_polygon_base_trades.sql new file mode 100644 index 00000000000..70bbdf61fba --- /dev/null +++ b/models/_sector/dex/trades/polygon/platforms/balancer_v2_polygon_base_trades.sql @@ -0,0 +1,19 @@ +{{ + config( + schema = 'balancer_v2_polygon', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + balancer_compatible_v2_trades( + blockchain = 'polygon', + project = 'balancer', + version = '2' + ) +}} diff --git a/models/_sector/dex/trades/polygon/platforms/fraxswap_polygon_base_trades.sql b/models/_sector/dex/trades/polygon/platforms/fraxswap_polygon_base_trades.sql new file mode 100644 index 00000000000..8dc391a4857 --- /dev/null +++ b/models/_sector/dex/trades/polygon/platforms/fraxswap_polygon_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'fraxswap_polygon', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'polygon', + project = 'fraxswap', + version = '1', + Pair_evt_Swap = source('fraxswap_polygon', 'FraxswapPair_evt_Swap'), + Factory_evt_PairCreated = source('fraxswap_polygon', 'FraxswapFactory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/polygon/platforms/honeyswap_v2_polygon_base_trades.sql b/models/_sector/dex/trades/polygon/platforms/honeyswap_v2_polygon_base_trades.sql new file mode 100644 index 00000000000..8bc95515e9a --- /dev/null +++ b/models/_sector/dex/trades/polygon/platforms/honeyswap_v2_polygon_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'honeyswap_v2_polygon', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'polygon', + project = 'honeyswap', + version = '2', + Pair_evt_Swap = source('honeyswap_polygon', 'Pair_evt_Swap'), + Factory_evt_PairCreated = source('honeyswap_polygon', 'Factory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/polygon/platforms/quickswap_v2_polygon_base_trades.sql b/models/_sector/dex/trades/polygon/platforms/quickswap_v2_polygon_base_trades.sql new file mode 100644 index 00000000000..d279e998837 --- /dev/null +++ b/models/_sector/dex/trades/polygon/platforms/quickswap_v2_polygon_base_trades.sql @@ -0,0 +1,21 @@ +{{ + config( + schema = 'quickswap_v2_polygon', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{ + uniswap_compatible_v2_trades( + blockchain = 'polygon', + project = 'quickswap', + version = '2', + Pair_evt_Swap = source('quickswap_polygon', 'UniswapV2Pair_evt_Swap'), + Factory_evt_PairCreated = source('quickswap_polygon', 'UniswapV2Factory_evt_PairCreated') + ) +}} diff --git a/models/_sector/dex/trades/polygon/platforms/quickswap_v3_polygon_base_trades.sql b/models/_sector/dex/trades/polygon/platforms/quickswap_v3_polygon_base_trades.sql new file mode 100644 index 00000000000..fb0a70ba4de --- /dev/null +++ b/models/_sector/dex/trades/polygon/platforms/quickswap_v3_polygon_base_trades.sql @@ -0,0 +1,23 @@ +{{ + config( + schema = 'quickswap_v3_polygon', + alias = 'base_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + + +{{ + uniswap_compatible_v3_trades( + blockchain = 'polygon' + , project = 'quickswap' + , version = '3' + , Pair_evt_Swap = source('quickswap_v3_polygon', 'AlgebraPool_evt_Swap') + , Factory_evt_PoolCreated = source('quickswap_v3_polygon', 'AlgebraFactory_evt_Pool') + , optional_columns = null + ) +}} diff --git a/models/_sector/inscription/_schema.yml b/models/_sector/inscription/_schema.yml new file mode 100644 index 00000000000..f17f93247a9 --- /dev/null +++ b/models/_sector/inscription/_schema.yml @@ -0,0 +1,123 @@ +version: 2 + +models: + - name: inscription_mints + meta: + blockchain: ethereum, bnb, avalanche_c, gnosis, optimism, fantom, arbitrum, celo, zkync, zora + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints'] + description: > + Inscription mints across chains + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - &blockchain + name: blockchain + description: "Blockchain" + - &block_time + name: block_time + description: "UTC event block time of each DEX trade" + - &block_month + name: block_month + description: "UTC event block month of each DEX trade" + - &block_number + name: block_number + description: "the block number of the block that the offer was created in" + - &tx_hash + name: tx_hash + description: "Unique transaction hash value tied to each transaction on the DEX" + - &tx_index + name: tx_index + description: "Index of the transaction in block" + - &tx_from + name: tx_from + description: "Address which initiated the trade" + - &tx_to + name: tx_to + description: "Address which received the trade" + - &inscription_standard + name: inscription_standard + description: "Inscription standard" + - &inscription_symbol + name: inscription_symbol + description: "Symbol of inscription" + - &operation + name: operation + description: "Operation" + - &amount + name: amount + description: "Amount of inscriptions" + - &full_inscription + name: full_inscription + description: "Full inscription information as found in the transaction's call data" + - &vin + name: vin + description: "Input of transaction" + - &vout + name: vout + description: "Output of transaction" + + - name: inscription_deploys + meta: + blockchain: ethereum, bnb, avalanche_c, gnosis, optimism, fantom, arbitrum, celo, zkync, zora + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys'] + description: > + Inscription deploys across chains + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - &mint_limit + name: mint_limit + description: "Limit" + - &max_supply + name: max_supply + description: "Maximum supply" + - *full_inscription + + - name: inscription_all + meta: + blockchain: ethereum, bnb, avalanche_c, gnosis, optimism, fantom, arbitrum, celo, zkync, zora + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all'] + description: > + All inscriptions across chains + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription \ No newline at end of file diff --git a/models/_sector/inscription/all/_schema.yml b/models/_sector/inscription/all/_schema.yml new file mode 100644 index 00000000000..9f26a33f741 --- /dev/null +++ b/models/_sector/inscription/all/_schema.yml @@ -0,0 +1,321 @@ +version: 2 + +models: + - name: inscription_ethereum_all + meta: + blockchain: ethereum + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'ethereum'] + description: > + All inscriptions on Ethereum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - &blockchain + name: blockchain + description: "Blockchain" + - &block_time + name: block_time + description: "UTC event block time of each DEX trade" + - &block_month + name: block_month + description: "UTC event block month of each DEX trade" + - &block_number + name: block_number + description: "the block number of the block that the offer was created in" + - &tx_hash + name: tx_hash + description: "Unique transaction hash value tied to each transaction on the DEX" + - &tx_index + name: tx_index + description: "Index of the transaction in block" + - &tx_from + name: tx_from + description: "Address which initiated the trade" + - &tx_to + name: tx_to + description: "Address which received the trade" + - &full_inscription + name: full_inscription + description: "Full inscription information as found in the transaction's call data" + + - name: inscription_arbitrum_all + meta: + blockchain: arbitrum + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'arbitrum'] + description: > + All inscriptions on Arbitrum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_avalanche_c_all + meta: + blockchain: avalanche_c + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'avalanche_c'] + description: > + All inscriptions on Avalanche + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_bnb_all + meta: + blockchain: bnb + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'bnb'] + description: > + All inscriptions on BNB + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_fantom_all + meta: + blockchain: fantom + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'fantom'] + description: > + All inscriptions on Fantom + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_gnosis_all + meta: + blockchain: gnosis + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'gnosis'] + description: > + All inscriptions on Gnosis + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_optimism_all + meta: + blockchain: optimism + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'optimism'] + description: > + All inscriptions on Optimism + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_polygon_all + meta: + blockchain: polygon + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'polygon'] + description: > + All inscriptions on Polygon + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_base_all + meta: + blockchain: base + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'base'] + description: > + All inscriptions on Base + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_celo_all + meta: + blockchain: celo + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'celo'] + description: > + All inscriptions on Celo + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_zksync_all + meta: + blockchain: zksync + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'zksync'] + description: > + All inscriptions on zkSync + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + + - name: inscription_zora_all + meta: + blockchain: zora + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'all', 'zora'] + description: > + All inscriptions on Zora Network + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *full_inscription + \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_arbitrum_all.sql b/models/_sector/inscription/all/inscription_arbitrum_all.sql new file mode 100644 index 00000000000..046da51d4ea --- /dev/null +++ b/models/_sector/inscription/all/inscription_arbitrum_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'arbitrum' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 102376455 +)}} +-- First inscription block is 102376455, 2023-06-18 09:35: https://dune.com/queries/3253988 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_avalanche_c_all.sql b/models/_sector/inscription/all/inscription_avalanche_c_all.sql new file mode 100644 index 00000000000..2a4459c7ccc --- /dev/null +++ b/models/_sector/inscription/all/inscription_avalanche_c_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'avalanche_c' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 31918263 +)}} +-- First inscription block is 31918263, 2023-06-28 16:17: https://dune.com/queries/3254018 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_base_all.sql b/models/_sector/inscription/all/inscription_base_all.sql new file mode 100644 index 00000000000..55d2fa16c47 --- /dev/null +++ b/models/_sector/inscription/all/inscription_base_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'base' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 2041131 +)}} +-- First inscription block is 2041131, 2023-08-01 06:33: https://dune.com/queries/3254019 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_bnb_all.sql b/models/_sector/inscription/all/inscription_bnb_all.sql new file mode 100644 index 00000000000..f11d742dda8 --- /dev/null +++ b/models/_sector/inscription/all/inscription_bnb_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'bnb' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 29257005 +)}} +-- First inscription block is 29257005, 2023-06-20 04:37: https://dune.com/queries/3254013 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_celo_all.sql b/models/_sector/inscription/all/inscription_celo_all.sql new file mode 100644 index 00000000000..432ab804c5e --- /dev/null +++ b/models/_sector/inscription/all/inscription_celo_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'celo' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 20374169 +)}} +-- First inscription block is 20374169, 2023-07-16 20:25: https://dune.com/queries/3254010 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_ethereum_all.sql b/models/_sector/inscription/all/inscription_ethereum_all.sql new file mode 100644 index 00000000000..8edea4e78b3 --- /dev/null +++ b/models/_sector/inscription/all/inscription_ethereum_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'ethereum' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'] + ) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 17498959 +)}} +-- First inscription block is 17498959, 2023-06-17 10:33: https://dune.com/queries/3254006 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_fantom_all.sql b/models/_sector/inscription/all/inscription_fantom_all.sql new file mode 100644 index 00000000000..ac2dc1ec145 --- /dev/null +++ b/models/_sector/inscription/all/inscription_fantom_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'fantom' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 64995274 +)}} +-- First inscription block is 64995274, 2023-07-01 22:55: https://dune.com/queries/3254002 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_gnosis_all.sql b/models/_sector/inscription/all/inscription_gnosis_all.sql new file mode 100644 index 00000000000..b729c8532d4 --- /dev/null +++ b/models/_sector/inscription/all/inscription_gnosis_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'gnosis' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 28732751 +)}} +-- First inscription block is 28732751, 2023-07-01 16:09: https://dune.com/queries/3253998 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_optimism_all.sql b/models/_sector/inscription/all/inscription_optimism_all.sql new file mode 100644 index 00000000000..743344d991a --- /dev/null +++ b/models/_sector/inscription/all/inscription_optimism_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'optimism' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 105741421 +)}} +-- First inscription block is 105741421, 2023-06-18 09:46: https://dune.com/queries/3253991 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_polygon_all.sql b/models/_sector/inscription/all/inscription_polygon_all.sql new file mode 100644 index 00000000000..25fb59dc64d --- /dev/null +++ b/models/_sector/inscription/all/inscription_polygon_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'polygon' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 44047666 +)}} +-- First inscription block is 44047666, 2023-06-18 10:05: https://dune.com/queries/3253953 diff --git a/models/_sector/inscription/all/inscription_zksync_all.sql b/models/_sector/inscription/all/inscription_zksync_all.sql new file mode 100644 index 00000000000..9810257f299 --- /dev/null +++ b/models/_sector/inscription/all/inscription_zksync_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'zksync' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 6359996 +)}} +-- First inscription block is 6359996, 2023-06-18 09:38: https://dune.com/queries/3253996 \ No newline at end of file diff --git a/models/_sector/inscription/all/inscription_zora_all.sql b/models/_sector/inscription/all/inscription_zora_all.sql new file mode 100644 index 00000000000..02d3b6742d4 --- /dev/null +++ b/models/_sector/inscription/all/inscription_zora_all.sql @@ -0,0 +1,19 @@ +{% set blockchain = 'zora' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_all( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , first_inscription_block = 2137565 +)}} +-- First inscription block is 2137565, 2023-08-02 09:36: https://dune.com/queries/3254037 \ No newline at end of file diff --git a/models/_sector/inscription/deploys/_schema.yml b/models/_sector/inscription/deploys/_schema.yml new file mode 100644 index 00000000000..c92e6703cd0 --- /dev/null +++ b/models/_sector/inscription/deploys/_schema.yml @@ -0,0 +1,402 @@ +version: 2 + +models: + - name: inscription_ethereum_deploys + meta: + blockchain: ethereum + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'ethereum'] + description: > + Inscription deploys on Ethereum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - &blockchain + name: blockchain + description: "Blockchain" + - &block_time + name: block_time + description: "UTC event block time of each DEX trade" + - &block_month + name: block_month + description: "UTC event block month of each DEX trade" + - &block_number + name: block_number + description: "the block number of the block that the offer was created in" + - &tx_hash + name: tx_hash + description: "Unique transaction hash value tied to each transaction on the DEX" + - &tx_index + name: tx_index + description: "Index of the transaction in block" + - &tx_from + name: tx_from + description: "Address which initiated the trade" + - &tx_to + name: tx_to + description: "Address which received the trade" + - &inscription_standard + name: inscription_standard + description: "Inscription standard" + - &inscription_symbol + name: inscription_symbol + description: "Symbol of inscription" + - &operation + name: operation + description: "Operation" + - &mint_limit + name: mint_limit + description: "Limit" + - &max_supply + name: max_supply + description: "Maximum supply" + - &full_inscription + name: full_inscription + description: "Full inscription information as found in the transaction's call data" + + - name: inscription_arbitrum_deploys + meta: + blockchain: arbitrum + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'arbitrum'] + description: > + Inscription deploys on Arbitrum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_avalanche_c_deploys + meta: + blockchain: avalanche_c + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'avalanche_c'] + description: > + Inscription deploys on Avalanche + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_bnb_deploys + meta: + blockchain: bnb + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'bnb'] + description: > + Inscription deploys on BNB + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_fantom_deploys + meta: + blockchain: fantom + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'fantom'] + description: > + Inscription deploys on Fantom + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_gnosis_deploys + meta: + blockchain: gnosis + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'gnosis'] + description: > + Inscription deploys on Gnosis + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_optimism_deploys + meta: + blockchain: optimism + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'optimism'] + description: > + Inscription deploys on Optimism + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_polygon_deploys + meta: + blockchain: polygon + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'polygon'] + description: > + Inscription deploys on Polygon + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_base_deploys + meta: + blockchain: base + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'base'] + description: > + Inscription deploys on Base + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_celo_deploys + meta: + blockchain: celo + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'celo'] + description: > + Inscription deploys on Celo + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_zksync_deploys + meta: + blockchain: zksync + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'zksync'] + description: > + Inscription deploys on zkSync + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + + - name: inscription_zora_deploys + meta: + blockchain: zora + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'deploys', 'zora'] + description: > + Inscription deploys on Zora Network + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *mint_limit + - *max_supply + - *full_inscription + \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_arbitrum_deploys.sql b/models/_sector/inscription/deploys/inscription_arbitrum_deploys.sql new file mode 100644 index 00000000000..664f975fcee --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_arbitrum_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'arbitrum' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_avalanche_c_deploys.sql b/models/_sector/inscription/deploys/inscription_avalanche_c_deploys.sql new file mode 100644 index 00000000000..7437ed01881 --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_avalanche_c_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'avalanche_c' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_base_deploys.sql b/models/_sector/inscription/deploys/inscription_base_deploys.sql new file mode 100644 index 00000000000..8c6e99216fb --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_base_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'base' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_bnb_deploys.sql b/models/_sector/inscription/deploys/inscription_bnb_deploys.sql new file mode 100644 index 00000000000..637be2a4469 --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_bnb_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'bnb' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_celo_deploys.sql b/models/_sector/inscription/deploys/inscription_celo_deploys.sql new file mode 100644 index 00000000000..d92d0219838 --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_celo_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'celo' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_ethereum_deploys.sql b/models/_sector/inscription/deploys/inscription_ethereum_deploys.sql new file mode 100644 index 00000000000..5b6375b3877 --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_ethereum_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'ethereum' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain', 'tx_hash'] + ) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_fantom_deploys.sql b/models/_sector/inscription/deploys/inscription_fantom_deploys.sql new file mode 100644 index 00000000000..57770256303 --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_fantom_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'fantom' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_gnosis_deploys.sql b/models/_sector/inscription/deploys/inscription_gnosis_deploys.sql new file mode 100644 index 00000000000..77aa196ff68 --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_gnosis_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'gnosis' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_optimism_deploys.sql b/models/_sector/inscription/deploys/inscription_optimism_deploys.sql new file mode 100644 index 00000000000..88e0226c51e --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_optimism_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'optimism' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_polygon_deploys.sql b/models/_sector/inscription/deploys/inscription_polygon_deploys.sql new file mode 100644 index 00000000000..aded9e6a519 --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_polygon_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'polygon' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_zksync_deploys.sql b/models/_sector/inscription/deploys/inscription_zksync_deploys.sql new file mode 100644 index 00000000000..ed9d219b58c --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_zksync_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'zksync' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/deploys/inscription_zora_deploys.sql b/models/_sector/inscription/deploys/inscription_zora_deploys.sql new file mode 100644 index 00000000000..2fdb57ed404 --- /dev/null +++ b/models/_sector/inscription/deploys/inscription_zora_deploys.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'zora' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'deploys', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_deploys( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/inscription_all.sql b/models/_sector/inscription/inscription_all.sql new file mode 100644 index 00000000000..e85958d458e --- /dev/null +++ b/models/_sector/inscription/inscription_all.sql @@ -0,0 +1,51 @@ +{{ config( + + schema='inscription', + alias = 'all', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'], + post_hook='{{ expose_spells(\'["ethereum", "bnb", "avalanche_c", "gnosis", "optimism", "arbitrum", "fantom", "polygon", "base", "celo", "zora", "zksync"]\', + "sector", + "inscription", + \'["hildobby"]\') }}' + ) +}} + +{% set all_models = [ + (ref('inscription_arbitrum_all')) + , (ref('inscription_avalanche_c_all')) + , (ref('inscription_bnb_all')) + , (ref('inscription_ethereum_all')) + , (ref('inscription_fantom_all')) + , (ref('inscription_gnosis_all')) + , (ref('inscription_optimism_all')) + , (ref('inscription_polygon_all')) + , (ref('inscription_base_all')) + , (ref('inscription_celo_all')) + , (ref('inscription_zora_all')) + , (ref('inscription_zksync_all')) +] %} + +SELECT * +FROM ( + {% for all_model in all_models %} + SELECT blockchain + , block_time + , block_month + , block_number + , tx_hash + , tx_index + , tx_from + , tx_to + , full_inscription + FROM {{ all_model }} + {% if is_incremental() %} + WHERE {{ incremental_predicate('block_time') }} + {% endif %} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} + ) \ No newline at end of file diff --git a/models/_sector/inscription/inscription_deploys.sql b/models/_sector/inscription/inscription_deploys.sql new file mode 100644 index 00000000000..c8c4898c730 --- /dev/null +++ b/models/_sector/inscription/inscription_deploys.sql @@ -0,0 +1,57 @@ +{{ config( + + schema='inscription', + alias = 'deploys', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'], + post_hook='{{ expose_spells(\'["ethereum", "bnb", "avalanche_c", "gnosis", "optimism", "arbitrum", "fantom", "polygon", "base", "celo", "zora", "zksync"]\', + "sector", + "inscription", + \'["hildobby"]\') }}' + ) +}} + +{% set deploys_models = [ + (ref('inscription_arbitrum_deploys')) + , (ref('inscription_avalanche_c_deploys')) + , (ref('inscription_bnb_deploys')) + , (ref('inscription_ethereum_deploys')) + , (ref('inscription_fantom_deploys')) + , (ref('inscription_gnosis_deploys')) + , (ref('inscription_optimism_deploys')) + , (ref('inscription_polygon_deploys')) + , (ref('inscription_base_deploys')) + , (ref('inscription_celo_deploys')) + , (ref('inscription_zora_deploys')) + , (ref('inscription_zksync_deploys')) +] %} + +SELECT * +FROM ( + {% for deploys_model in deploys_models %} + SELECT blockchain + , block_time + , block_month + , block_number + , tx_hash + , tx_from + , tx_to + , tx_index + , inscription_standard + , operation + , inscription_symbol + , max_supply + , mint_limit + , full_inscription + + FROM {{ deploys_model }} + {% if is_incremental() %} + WHERE {{ incremental_predicate('block_time') }} + {% endif %} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} + ) \ No newline at end of file diff --git a/models/_sector/inscription/inscription_mints.sql b/models/_sector/inscription/inscription_mints.sql new file mode 100644 index 00000000000..a8efc70f659 --- /dev/null +++ b/models/_sector/inscription/inscription_mints.sql @@ -0,0 +1,55 @@ +{{ config( + + schema='inscription', + alias = 'mints', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash'], + post_hook='{{ expose_spells(\'["ethereum", "bnb", "avalanche_c", "gnosis", "optimism", "arbitrum", "fantom", "polygon", "base", "celo", "zora", "zksync"]\', + "sector", + "inscription", + \'["hildobby"]\') }}' + ) +}} + +{% set mints_models = [ + (ref('inscription_arbitrum_mints')) + , (ref('inscription_avalanche_c_mints')) + , (ref('inscription_bnb_mints')) + , (ref('inscription_ethereum_mints')) + , (ref('inscription_fantom_mints')) + , (ref('inscription_gnosis_mints')) + , (ref('inscription_optimism_mints')) + , (ref('inscription_polygon_mints')) + , (ref('inscription_base_mints')) + , (ref('inscription_celo_mints')) + , (ref('inscription_zora_mints')) + , (ref('inscription_zksync_mints')) +] %} + +SELECT * +FROM ( + {% for mints_model in mints_models %} + SELECT blockchain + , block_time + , block_month + , block_number + , tx_hash + , tx_from + , tx_to + , tx_index + , inscription_standard + , operation + , inscription_symbol + , amount + , full_inscription + FROM {{ mints_model }} + {% if is_incremental() %} + WHERE {{ incremental_predicate('block_time') }} + {% endif %} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} + ) \ No newline at end of file diff --git a/models/_sector/inscription/mints/_schema.yml b/models/_sector/inscription/mints/_schema.yml new file mode 100644 index 00000000000..0732759de47 --- /dev/null +++ b/models/_sector/inscription/mints/_schema.yml @@ -0,0 +1,416 @@ +version: 2 + +models: + - name: inscription_ethereum_mints + meta: + blockchain: ethereum + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'ethereum'] + description: > + Inscription mints on Ethereum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - &blockchain + name: blockchain + description: "Blockchain" + - &block_time + name: block_time + description: "UTC event block time of each DEX trade" + - &block_month + name: block_month + description: "UTC event block month of each DEX trade" + - &block_number + name: block_number + description: "the block number of the block that the offer was created in" + - &tx_hash + name: tx_hash + description: "Unique transaction hash value tied to each transaction on the DEX" + - &tx_index + name: tx_index + description: "Index of the transaction in block" + - &tx_from + name: tx_from + description: "Address which initiated the trade" + - &tx_to + name: tx_to + description: "Address which received the trade" + - &inscription_standard + name: inscription_standard + description: "Inscription standard" + - &inscription_symbol + name: inscription_symbol + description: "Symbol of inscription" + - &operation + name: operation + description: "Operation" + - &amount + name: amount + description: "Amount of inscriptions" + - &full_inscription + name: full_inscription + description: "Full inscription information as found in the transaction's call data" + - &vin + name: vin + description: "Input of transaction" + - &vout + name: vout + description: "Output of transaction" + + - name: inscription_arbitrum_mints + meta: + blockchain: arbitrum + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'arbitrum'] + description: > + Inscription mints on Arbitrum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_avalanche_c_mints + meta: + blockchain: avalanche_c + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'avalanche_c'] + description: > + Inscription mints on Avalanche + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_bnb_mints + meta: + blockchain: bnb + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'bnb'] + description: > + Inscription mints on BNB + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_fantom_mints + meta: + blockchain: fantom + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'fantom'] + description: > + Inscription mints on Fantom + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_gnosis_mints + meta: + blockchain: gnosis + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'gnosis'] + description: > + Inscription mints on Gnosis + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_optimism_mints + meta: + blockchain: optimism + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'optimism'] + description: > + Inscription mints on Optimism + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_polygon_mints + meta: + blockchain: polygon + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'polygon'] + description: > + Inscription mints on Polygon + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_base_mints + meta: + blockchain: base + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'base'] + description: > + Inscription mints on Base + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_celo_mints + meta: + blockchain: celo + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'celo'] + description: > + Inscription mints on Celo + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_zksync_mints + meta: + blockchain: zksync + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'zksync'] + description: > + Inscription mints on zkSync + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + + - name: inscription_zora_mints + meta: + blockchain: zora + sector: inscription + contributors: hildobby + config: + tags: ['inscriptions', 'mints', 'zora'] + description: > + Inscription mints on Zora Network + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + columns: + - *blockchain + - *block_time + - *block_month + - *block_number + - *tx_hash + - *tx_index + - *tx_from + - *tx_to + - *tx_index + - *inscription_standard + - *operation + - *inscription_symbol + - *amount + - *full_inscription + - *vin + - *vout + \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_arbitrum_mints.sql b/models/_sector/inscription/mints/inscription_arbitrum_mints.sql new file mode 100644 index 00000000000..844139feee2 --- /dev/null +++ b/models/_sector/inscription/mints/inscription_arbitrum_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'arbitrum' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_avalanche_c_mints.sql b/models/_sector/inscription/mints/inscription_avalanche_c_mints.sql new file mode 100644 index 00000000000..21ea5e33921 --- /dev/null +++ b/models/_sector/inscription/mints/inscription_avalanche_c_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'avalanche_c' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_base_mints.sql b/models/_sector/inscription/mints/inscription_base_mints.sql new file mode 100644 index 00000000000..02b832d133d --- /dev/null +++ b/models/_sector/inscription/mints/inscription_base_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'base' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_bnb_mints.sql b/models/_sector/inscription/mints/inscription_bnb_mints.sql new file mode 100644 index 00000000000..da1623c4359 --- /dev/null +++ b/models/_sector/inscription/mints/inscription_bnb_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'bnb' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_celo_mints.sql b/models/_sector/inscription/mints/inscription_celo_mints.sql new file mode 100644 index 00000000000..9914b1d4c19 --- /dev/null +++ b/models/_sector/inscription/mints/inscription_celo_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'celo' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_ethereum_mints.sql b/models/_sector/inscription/mints/inscription_ethereum_mints.sql new file mode 100644 index 00000000000..8395d0565b1 --- /dev/null +++ b/models/_sector/inscription/mints/inscription_ethereum_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'ethereum' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain', 'tx_hash'] + ) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_fantom_mints.sql b/models/_sector/inscription/mints/inscription_fantom_mints.sql new file mode 100644 index 00000000000..611b787f584 --- /dev/null +++ b/models/_sector/inscription/mints/inscription_fantom_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'fantom' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_gnosis_mints.sql b/models/_sector/inscription/mints/inscription_gnosis_mints.sql new file mode 100644 index 00000000000..5d3923a0c3c --- /dev/null +++ b/models/_sector/inscription/mints/inscription_gnosis_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'gnosis' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_optimism_mints.sql b/models/_sector/inscription/mints/inscription_optimism_mints.sql new file mode 100644 index 00000000000..8b2e4ec13a7 --- /dev/null +++ b/models/_sector/inscription/mints/inscription_optimism_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'optimism' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_polygon_mints.sql b/models/_sector/inscription/mints/inscription_polygon_mints.sql new file mode 100644 index 00000000000..f4717c0672c --- /dev/null +++ b/models/_sector/inscription/mints/inscription_polygon_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'polygon' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain', 'tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_zksync_mints.sql b/models/_sector/inscription/mints/inscription_zksync_mints.sql new file mode 100644 index 00000000000..2fc76001370 --- /dev/null +++ b/models/_sector/inscription/mints/inscription_zksync_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'zksync' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/inscription/mints/inscription_zora_mints.sql b/models/_sector/inscription/mints/inscription_zora_mints.sql new file mode 100644 index 00000000000..76fab596a91 --- /dev/null +++ b/models/_sector/inscription/mints/inscription_zora_mints.sql @@ -0,0 +1,13 @@ +{% set blockchain = 'zora' %} + +{{ config( + + schema = 'inscription_' + blockchain, + alias = 'mints', + unique_key = ['blockchain','tx_hash'] +) +}} + +{{inscription_mints( + all_inscriptions = ref('inscription_' + blockchain + '_all') +)}} \ No newline at end of file diff --git a/models/_sector/nft/mints/native/_schema.yml b/models/_sector/nft/mints/native/_schema.yml index 5e2980e1513..d11260b20ab 100644 --- a/models/_sector/nft/mints/native/_schema.yml +++ b/models/_sector/nft/mints/native/_schema.yml @@ -52,7 +52,53 @@ models: sector: nft contributors: chuxin config: - tags: [ 'nft','ethereum' ] + tags: [ 'nft','optimism' ] + description: > + NFT native (i.e., non-platform) mints + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - token_id + - number_of_items + columns: + - *tx_hash + - *evt_index + - *token_id + - *number_of_items + - *amount_usd + + - name: nft_base_native_mints + meta: + blockchain: base + sector: nft + contributors: chuxin + config: + tags: [ 'nft','base' ] + description: > + NFT native (i.e., non-platform) mints + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - evt_index + - token_id + - number_of_items + columns: + - *tx_hash + - *evt_index + - *token_id + - *number_of_items + - *amount_usd + + - name: nft_zora_native_mints + meta: + blockchain: zora + sector: nft + contributors: chuxin + config: + tags: [ 'nft','zora' ] description: > NFT native (i.e., non-platform) mints tests: diff --git a/models/_sector/nft/mints/native/nft_base_native_mints.sql b/models/_sector/nft/mints/native/nft_base_native_mints.sql new file mode 100644 index 00000000000..02fcc59416a --- /dev/null +++ b/models/_sector/nft/mints/native/nft_base_native_mints.sql @@ -0,0 +1,20 @@ +{{ config( + + schema = 'nft_base', + alias = 'native_mints', + partition_by = ['block_month'], + file_format = 'delta', + materialized = 'incremental', + incremental_strategy = 'merge', + unique_key = ['tx_hash','evt_index','token_id','number_of_items'] + ) +}} + +{{nft_mints( + blockchain='base' + , base_contracts = source('base','contracts') + , base_traces = source('base','traces') + , erc20_transfer = source('erc20_base','evt_transfer') + , base_transactions = source('base','transactions') + , eth_currency_contract = '0x4200000000000000000000000000000000000006' +)}} diff --git a/models/_sector/nft/mints/native/nft_ethereum_native_mints.sql b/models/_sector/nft/mints/native/nft_ethereum_native_mints.sql index a0b7f25e2e3..ec9f9fb8d5d 100644 --- a/models/_sector/nft/mints/native/nft_ethereum_native_mints.sql +++ b/models/_sector/nft/mints/native/nft_ethereum_native_mints.sql @@ -10,172 +10,11 @@ ) }} -WITH namespaces AS ( - SELECT address - , min_by(namespace, created_at) AS namespace - FROM {{ source('ethereum','contracts') }} - GROUP BY address - ) - -, nfts_per_tx_tmp AS ( - SELECT tx_hash - , sum(amount) AS nfts_minted_in_tx - FROM {{ ref('nft_ethereum_transfers') }} - {% if is_incremental() %} - WHERE block_time >= date_trunc('day', now() - interval '7' Day) - {% endif %} - GROUP BY tx_hash - ) - -, nfts_per_tx as ( - SELECT - tx_hash - , case when nfts_minted_in_tx = UINT256 '0' THEN UINT256 '1' ELSE nfts_minted_in_tx END as nfts_minted_in_tx - FROM - nfts_per_tx_tmp -) -SELECT -blockchain -, project -, version -, block_time -, block_date -, block_month -, block_number -, token_id -, collection -, token_standard -, trade_type -, number_of_items -, trade_category -, evt_type -, seller -, buyer -, amount_raw -, amount_original -, amount_usd -, currency_symbol -, currency_contract -, nft_contract_address -, project_contract_address -, aggregator_name -, aggregator_address -, tx_hash -, tx_from -, tx_to -, platform_fee_amount_raw -, platform_fee_amount -, platform_fee_amount_usd -, platform_fee_percentage -, royalty_fee_receive_address -, royalty_fee_currency_symbol -, royalty_fee_amount_raw -, royalty_fee_amount -, royalty_fee_amount_usd -, royalty_fee_percentage -, evt_index -FROM -( -SELECT - *, - ROW_NUMBER() OVER (PARTITION BY tx_hash, evt_index, token_id, number_of_items ORDER BY amount_usd DESC NULLS LAST) as rank_index -FROM -( -SELECT distinct 'ethereum' AS blockchain -, COALESCE(ec.namespace, 'Unknown') AS project -, '' AS version -, nft_mints.block_time AS block_time -, CAST(date_trunc('day', nft_mints.block_time) as date) AS block_date -, CAST(date_trunc('month', nft_mints.block_time) as date) AS block_month -, nft_mints.block_number AS block_number -, nft_mints.token_id AS token_id -, tok.name AS collection -, nft_mints.token_standard -, CASE WHEN nft_mints.amount= UINT256 '1' THEN 'Single Item Mint' - ELSE 'Bundle Mint' - END AS trade_type -, nft_mints.amount AS number_of_items -, 'Mint' AS trade_category -, 'Mint' AS evt_type -, nft_mints."from" AS seller -, nft_mints.to AS buyer -, CAST(COALESCE(SUM(CAST(et.value as DOUBLE)), SUM(CAST(erc20s.value as DOUBLE)), 0)*(nft_mints.amount/nft_count.nfts_minted_in_tx) AS UINT256) AS amount_raw -, COALESCE(SUM(CAST(et.value as DOUBLE))/POWER(10, 18), SUM(CAST(erc20s.value as DOUBLE))/POWER(10, pu_erc20s.decimals))*(nft_mints.amount/nft_count.nfts_minted_in_tx) AS amount_original -, COALESCE(pu_eth.price*SUM(CAST(et.value as DOUBLE))/POWER(10, 18), pu_erc20s.price*SUM(CAST(erc20s.value as DOUBLE))/POWER(10, pu_erc20s.decimals))*(nft_mints.amount/nft_count.nfts_minted_in_tx) AS amount_usd -, CASE WHEN et.success THEN 'ETH' ELSE pu_erc20s.symbol END AS currency_symbol -, CASE WHEN et.success THEN 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 ELSE erc20s.contract_address END AS currency_contract -, nft_mints.contract_address AS nft_contract_address -, etxs.to AS project_contract_address -, agg.name AS aggregator_name -, agg.contract_address AS aggregator_address -, nft_mints.tx_hash AS tx_hash -, etxs."from" AS tx_from -, etxs.to AS tx_to -, UINT256 '0' AS platform_fee_amount_raw -, DOUBLE '0' AS platform_fee_amount -, DOUBLE '0' AS platform_fee_amount_usd -, DOUBLE '0' AS platform_fee_percentage -, CAST(NULL as VARBINARY) AS royalty_fee_receive_address -, '0' AS royalty_fee_currency_symbol -, UINT256 '0' AS royalty_fee_amount_raw -, DOUBLE '0' AS royalty_fee_amount -, DOUBLE '0' AS royalty_fee_amount_usd -, DOUBLE '0' AS royalty_fee_percentage -, nft_mints.evt_index -FROM {{ ref('nft_ethereum_transfers') }} nft_mints -LEFT JOIN nfts_per_tx nft_count ON nft_count.tx_hash=nft_mints.tx_hash -LEFT JOIN {{ source('ethereum','traces') }} et ON et.block_time=nft_mints.block_time - AND et.tx_hash=nft_mints.tx_hash - AND et."from"=nft_mints.to - AND (et.call_type NOT IN ('delegatecall', 'callcode', 'staticcall') OR et.call_type IS NULL) - AND et.success - AND CAST(et.value as DOUBLE) > 0 - {% if is_incremental() %} - AND et.block_time >= date_trunc('day', now() - interval '7' Day) - {% endif %} -LEFT JOIN {{ source('prices','usd') }} pu_eth ON pu_eth.blockchain='ethereum' - AND pu_eth.minute=date_trunc('minute', et.block_time) - AND pu_eth.contract_address= 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 - {% if is_incremental() %} - AND pu_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% endif %} -LEFT JOIN {{ source('erc20_ethereum','evt_transfer') }} erc20s ON erc20s.evt_block_time=nft_mints.block_time - AND erc20s."from"=nft_mints.to - AND erc20s.evt_tx_hash = nft_mints.tx_hash - AND (et.value IS NULL OR CAST(et.value as double) = 0) - {% if is_incremental() %} - AND erc20s.evt_block_time >= date_trunc('day', now() - interval '7' Day) - {% endif %} -LEFT JOIN {{ source('prices','usd') }} pu_erc20s ON pu_erc20s.blockchain='ethereum' - AND pu_erc20s.minute=date_trunc('minute', erc20s.evt_block_time) - AND erc20s.contract_address=pu_erc20s.contract_address - {% if is_incremental() %} - AND pu_erc20s.minute >= date_trunc('day', now() - interval '7' Day) - {% endif %} -LEFT JOIN {{ source('ethereum','transactions') }} etxs ON etxs.block_time=nft_mints.block_time - AND etxs.hash=nft_mints.tx_hash - {% if is_incremental() %} - AND etxs.block_time >= date_trunc('day', now() - interval '7' Day) - {% endif %} -LEFT JOIN {{ ref('nft_ethereum_aggregators') }} agg ON etxs.to=agg.contract_address -LEFT JOIN {{ ref('tokens_ethereum_nft') }} tok ON tok.contract_address=nft_mints.contract_address -LEFT JOIN namespaces ec ON etxs.to=ec.address -{% if is_incremental() %} -LEFT JOIN {{this}} anti_txs ON anti_txs.block_time=nft_mints.block_time - AND anti_txs.tx_hash=nft_mints.tx_hash -WHERE anti_txs.tx_hash IS NULL -{% else %} -WHERE 1=1 -{% endif %} -AND nft_mints."from"= 0x0000000000000000000000000000000000000000 -AND nft_mints.contract_address NOT IN (SELECT address FROM {{ ref('addresses_ethereum_defi') }}) -{% if is_incremental() %} -AND nft_mints.block_time >= date_trunc('day', now() - interval '7' Day) -{% endif %} -GROUP BY nft_mints.block_time, nft_mints.block_number, nft_mints.token_id, nft_mints.token_standard -, nft_mints.amount, nft_mints."from", nft_mints.to, nft_mints.contract_address, etxs.to, nft_mints.evt_index -, nft_mints.tx_hash, etxs."from", ec.namespace, tok.name, pu_erc20s.decimals, pu_eth.price, pu_erc20s.price -, agg.name, agg.contract_address, nft_count.nfts_minted_in_tx, pu_erc20s.symbol, erc20s.contract_address, et.success -) tmp -) tmp_2 -WHERE rank_index = 1 +{{nft_mints( + blockchain='ethereum' + , base_contracts = source('ethereum','contracts') + , base_traces = source('ethereum','traces') + , erc20_transfer = source('erc20_ethereum','evt_transfer') + , base_transactions = source('ethereum','transactions') + , eth_currency_contract = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' +)}} diff --git a/models/_sector/nft/mints/native/nft_optimism_native_mints.sql b/models/_sector/nft/mints/native/nft_optimism_native_mints.sql index 48c73b2ebda..0e47e381adb 100644 --- a/models/_sector/nft/mints/native/nft_optimism_native_mints.sql +++ b/models/_sector/nft/mints/native/nft_optimism_native_mints.sql @@ -4,182 +4,17 @@ alias = 'native_mints', partition_by = ['block_month'], file_format = 'delta', + materialized = 'incremental', incremental_strategy = 'merge', unique_key = ['tx_hash','evt_index','token_id','number_of_items'] ) }} -{% set eth_address = '0xdeaddeaddeaddeaddeaddeaddeaddeaddead0000' %} -with namespaces as ( - select - contract_address as address - ,coalesce(contract_project, contract_name, token_symbol) as namespace - from {{ ref('contracts_optimism_contract_mapping') }} -) -, nfts_per_tx_tmp as ( - select - tx_hash - ,sum(amount) as nfts_minted_in_tx - from {{ ref('nft_optimism_transfers') }} - {% if is_incremental() %} - where block_time >= date_trunc('day', now() - interval '7' Day) - {% endif %} - group by 1 -) - -, nfts_per_tx as ( - select - tx_hash - , case when nfts_minted_in_tx = UINT256 '0' THEN UINT256 '1' ELSE nfts_minted_in_tx END as nfts_minted_in_tx - FROM - nfts_per_tx_tmp -) - -SELECT -blockchain -, project -, version -, block_time -, block_date -, block_month -, block_number -, token_id -, collection -, token_standard -, trade_type -, number_of_items -, trade_category -, evt_type -, seller -, buyer -, amount_raw -, amount_original -, amount_usd -, currency_symbol -, currency_contract -, nft_contract_address -, project_contract_address -, aggregator_name -, aggregator_address -, tx_hash -, tx_from -, tx_to -, platform_fee_amount_raw -, platform_fee_amount -, platform_fee_amount_usd -, platform_fee_percentage -, royalty_fee_receive_address -, royalty_fee_currency_symbol -, royalty_fee_amount_raw -, royalty_fee_amount -, royalty_fee_amount_usd -, royalty_fee_percentage -, evt_index -FROM -( -SELECT - *, - ROW_NUMBER() OVER (PARTITION BY tx_hash, evt_index, token_id, number_of_items ORDER BY amount_usd DESC NULLS LAST) as rank_index -FROM -( -select - 'optimism' as blockchain - , coalesce(lower(ec.namespace), 'Unknown') as project - , '' as version - , nft_mints.block_time as block_time - , CAST(date_trunc('day', nft_mints.block_time) as date) AS block_date - , CAST(date_trunc('month', nft_mints.block_time) as date) AS block_month - , nft_mints.block_number as block_number - , nft_mints.token_id as token_id - , tok.name as collection - , nft_mints.token_standard - , case - when nft_mints.amount= UINT256 '1' then 'Single Item Mint' - else 'Bundle Mint' - end as trade_type - , nft_mints.amount as number_of_items - , 'Mint' as trade_category - , 'Mint' as evt_type - , nft_mints."from" as seller - , nft_mints.to as buyer - , case when tr.tx_hash is not null then 'ETH' else pu_erc20s.symbol end as currency_symbol - , case when tr.tx_hash is not null then {{eth_address}} else erc20s.contract_address end as currency_contract - , nft_mints.contract_address as nft_contract_address - , etxs.to as project_contract_address - , agg.name as aggregator_name - , agg.contract_address as aggregator_address - , nft_mints.tx_hash as tx_hash - , etxs."from" as tx_from - , etxs.to as tx_to - , UINT256 '0' as platform_fee_amount_raw - , double '0' as platform_fee_amount - , double '0' as platform_fee_amount_usd - , double '0' as platform_fee_percentage - , CAST(NULL as VARBINARY) as royalty_fee_receive_address - , '0' as royalty_fee_currency_symbol - , UINT256 '0' as royalty_fee_amount_raw - , double '0' as royalty_fee_amount - , double '0' as royalty_fee_amount_usd - , double '0' as royalty_fee_percentage - , nft_mints.evt_index - , cast(coalesce(sum(tr.value), sum(cast(erc20s.value as double)), 0)*(nft_mints.amount/nft_count.nfts_minted_in_tx) as UINT256) as amount_raw - , coalesce(sum(tr.value_decimal), sum(cast(erc20s.value as double))/power(10, pu_erc20s.decimals))*(nft_mints.amount/nft_count.nfts_minted_in_tx) as amount_original - , coalesce(pu_eth.price*sum(tr.value_decimal), pu_erc20s.price*sum(cast(erc20s.value as double))/power(10, pu_erc20s.decimals))*(nft_mints.amount/nft_count.nfts_minted_in_tx) as amount_usd -from {{ ref('nft_optimism_transfers') }} as nft_mints -left join {{ source('optimism','transactions') }} as etxs - on etxs.block_time=nft_mints.block_time - and etxs.hash=nft_mints.tx_hash - {% if is_incremental() %} - and etxs.block_time >= date_trunc('day', now() - interval '7' Day) - {% endif %} -left join {{ ref('tokens_optimism_nft') }} as tok - on tok.contract_address=nft_mints.contract_address -left join {{ ref('tokens_optimism_nft_bridged_mapping') }} as bm - on bm.contract_address=nft_mints.contract_address -left join {{ ref('transfers_optimism_eth') }} as tr - on nft_mints.tx_hash = tr.tx_hash - and nft_mints.block_number = tr.tx_block_number - and tr."from" = nft_mints.to - and tr.value_decimal > 0 -left join {{ source('prices','usd') }} as pu_eth - on pu_eth.blockchain='optimism' - and pu_eth.minute=date_trunc('minute', tr.tx_block_time) - and pu_eth.contract_address= {{eth_address}} - {% if is_incremental() %} - and pu_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% endif %} -left join {{ source('erc20_ethereum','evt_transfer') }} as erc20s - on erc20s.evt_block_time=nft_mints.block_time - and erc20s."from"=nft_mints.to - AND erc20s.evt_tx_hash = nft_mints.tx_hash - AND (tr.value_decimal IS NULL OR CAST(tr.value_decimal as double) = 0) - {% if is_incremental() %} - and erc20s.evt_block_time >= date_trunc('day', now() - interval '7' Day) - {% endif %} -left join {{ source('prices','usd') }} as pu_erc20s - on pu_erc20s.blockchain = 'optimism' - and pu_erc20s.minute = date_trunc('minute', erc20s.evt_block_time) - and erc20s.contract_address = pu_erc20s.contract_address - {% if is_incremental() %} - and pu_erc20s.minute >= date_trunc('day', now() - interval '7' Day) - {% endif %} -left join namespaces as ec - on etxs.to=ec.address -left join {{ ref('nft_optimism_aggregators') }} as agg - on etxs.to=agg.contract_address -left join nfts_per_tx as nft_count - on nft_count.tx_hash=nft_mints.tx_hash -where - nft_mints."from" = 0x0000000000000000000000000000000000000000 - {% if is_incremental() %} - and nft_mints.block_time >= date_trunc('day', now() - interval '7' Day) - {% endif %} - -- to exclude bridged L1 NFT collections to L2 - and bm.contract_address is null - group by nft_mints.block_time, nft_mints.block_number, nft_mints.token_id, nft_mints.token_standard - , nft_mints.amount, nft_mints."from", nft_mints.to, nft_mints.contract_address, etxs.to, nft_mints.evt_index - , nft_mints.tx_hash, etxs."from", ec.namespace, tok.name, pu_erc20s.decimals, pu_eth.price, pu_erc20s.price - , agg.name, agg.contract_address, nft_count.nfts_minted_in_tx, pu_erc20s.symbol, erc20s.contract_address, tr.tx_hash -) tmp -) tmp_2 -WHERE rank_index = 1 +{{nft_mints( + blockchain='optimism' + , base_contracts = source('optimism','contracts') + , base_traces = source('optimism','traces') + , erc20_transfer = source('erc20_optimism','evt_transfer') + , base_transactions = source('optimism','transactions') + , eth_currency_contract = '0xdeaddeaddeaddeaddeaddeaddeaddeaddead0000' +)}} diff --git a/models/_sector/nft/mints/native/nft_zora_native_mints.sql b/models/_sector/nft/mints/native/nft_zora_native_mints.sql new file mode 100644 index 00000000000..a34801f8eee --- /dev/null +++ b/models/_sector/nft/mints/native/nft_zora_native_mints.sql @@ -0,0 +1,20 @@ +{{ config( + + schema = 'nft_zora', + alias = 'native_mints', + partition_by = ['block_month'], + file_format = 'delta', + materialized = 'incremental', + incremental_strategy = 'merge', + unique_key = ['tx_hash','evt_index','token_id','number_of_items'] + ) +}} + +{{nft_mints( + blockchain='zora' + , base_contracts = source('zora','contracts') + , base_traces = source('zora','traces') + , erc20_transfer = source('erc20_zora','evt_transfer') + , base_transactions = source('zora','transactions') + , eth_currency_contract = '0x4200000000000000000000000000000000000006' +)}} diff --git a/models/_sector/nft/mints/nft_mints.sql b/models/_sector/nft/mints/nft_mints.sql index ca4576852d3..eb2d5baba21 100644 --- a/models/_sector/nft/mints/nft_mints.sql +++ b/models/_sector/nft/mints/nft_mints.sql @@ -17,6 +17,8 @@ {% set native_mints = [ ref('nft_ethereum_native_mints') ,ref('nft_optimism_native_mints') +,ref('nft_base_native_mints') +,ref('nft_zora_native_mints') ] %} diff --git a/models/_sector/nft/mints/platforms/_schema.yml b/models/_sector/nft/mints/platforms/_schema.yml new file mode 100644 index 00000000000..9a1cef569e4 --- /dev/null +++ b/models/_sector/nft/mints/platforms/_schema.yml @@ -0,0 +1,221 @@ +version: 2 + +models: + - name: zora_ethereum_mints + meta: + blockchain: ethereum + project: zora + contributors: hildobby + config: + tags: ['zora', 'ethereum', 'mints'] + description: > + Zora Mints on Ethereum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - token_id + - evt_index + columns: + - name: blockchain + description: "Blockchain" + - name: block_time + description: "Block time" + - name: block_number + description: "Block number" + - name: token_standard + description: "Token standard" + - name: token_id + description: "Token ID" + - name: quantity + description: "Amount minted" + - name: total_price + description: "Total price paid" + - name: total_price_usd + description: "Total price paid in USD" + - name: recipient + description: "Recipient" + - name: tx_hash + description: "Transaction hash" + - name: evt_index + description: "Event index" + - name: contract_address + description: "Contract address" + - name: tx_from + description: "Address that originated the transaction" + - name: tx_to + description: "Destination address of transaction" + + - name: zora_optimism_mints + meta: + blockchain: optimism + project: zora + contributors: hildobby + config: + tags: ['zora', 'optimism', 'mints'] + description: > + Zora Mints on Optimism + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - token_id + - evt_index + columns: + - name: blockchain + description: "Blockchain" + - name: block_time + description: "Block time" + - name: block_number + description: "Block number" + - name: token_standard + description: "Token standard" + - name: token_id + description: "Token ID" + - name: quantity + description: "Amount minted" + - name: total_price + description: "Total price paid" + - name: total_price_usd + description: "Total price paid in USD" + - name: recipient + description: "Recipient" + - name: tx_hash + description: "Transaction hash" + - name: evt_index + description: "Event index" + - name: contract_address + description: "Contract address" + - name: tx_from + description: "Address that originated the transaction" + - name: tx_to + description: "Destination address of transaction" + + - name: zora_base_mints + meta: + blockchain: optimism + project: base + contributors: hildobby + config: + tags: ['base', 'optimism', 'mints'] + description: > + Zora Mints on Base + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - token_id + - evt_index + columns: + - name: blockchain + description: "Blockchain" + - name: block_time + description: "Block time" + - name: block_number + description: "Block number" + - name: token_standard + description: "Token standard" + - name: token_id + description: "Token ID" + - name: quantity + description: "Amount minted" + - name: total_price + description: "Total price paid" + - name: total_price_usd + description: "Total price paid in USD" + - name: recipient + description: "Recipient" + - name: tx_hash + description: "Transaction hash" + - name: evt_index + description: "Event index" + - name: contract_address + description: "Contract address" + - name: tx_from + description: "Address that originated the transaction" + - name: tx_to + description: "Destination address of transaction" + + - name: zora_zora_mints + meta: + blockchain: optimism + project: zora + contributors: hildobby + config: + tags: ['zora', 'mints'] + description: > + Zora Mints on Zora + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - token_id + - evt_index + columns: + - name: blockchain + description: "Blockchain" + - name: block_time + description: "Block time" + - name: block_number + description: "Block number" + - name: token_standard + description: "Token standard" + - name: token_id + description: "Token ID" + - name: quantity + description: "Amount minted" + - name: total_price + description: "Total price paid" + - name: total_price_usd + description: "Total price paid in USD" + - name: recipient + description: "Recipient" + - name: tx_hash + description: "Transaction hash" + - name: evt_index + description: "Event index" + - name: contract_address + description: "Contract address" + - name: tx_from + description: "Address that originated the transaction" + - name: tx_to + description: "Destination address of transaction" + + - name: zora_mints + meta: + blockchain: ethereum, optimism, base, goerli + project: zora + contributors: hildobby + config: + tags: ['zora', 'mints'] + description: > + Zora Mints across chains + columns: + - name: blockchain + description: "Blockchain" + - name: block_time + description: "Block time" + - name: block_number + description: "Block number" + - name: token_standard + description: "Token standard" + - name: token_id + description: "Token ID" + - name: quantity + description: "Amount minted" + - name: total_price + description: "Total price paid" + - name: total_price_usd + description: "Total price paid in USD" + - name: recipient + description: "Recipient" + - name: tx_hash + description: "Transaction hash" + - name: evt_index + description: "Event index" + - name: contract_address + description: "Contract address" + - name: tx_from + description: "Address that originated the transaction" + - name: tx_to + description: "Destination address of transaction" \ No newline at end of file diff --git a/models/_sector/nft/mints/platforms/_sources.yml b/models/_sector/nft/mints/platforms/_sources.yml new file mode 100644 index 00000000000..647402c33cd --- /dev/null +++ b/models/_sector/nft/mints/platforms/_sources.yml @@ -0,0 +1,52 @@ +version: 2 + +sources: + - name: zora_goerli + description: "Goerli decoded tables related to Zora" + freshness: # default freshness + warn_after: { count: 12, period: hour } + error_after: { count: 24, period: hour } + loaded_at_field: evt_block_time + tables: + - name: ERC721Drop_evt_Sale + - name: ZoraCreator1155Impl_evt_Purchased + + - name: zora_base + description: "Base decoded tables related to Zora" + freshness: # default freshness + warn_after: { count: 12, period: hour } + error_after: { count: 24, period: hour } + loaded_at_field: evt_block_time + tables: + - name: ERC721Drop_evt_Sale + - name: ZoraCreator1155_evt_Purchased + + - name: zora_ethereum + description: "Ethereum decoded tables related to Zora" + freshness: # default freshness + warn_after: { count: 12, period: hour } + error_after: { count: 24, period: hour } + loaded_at_field: evt_block_time + tables: + - name: ERC721Drop_evt_Sale + - name: Zora1155_evt_Purchased + + - name: zora_optimism + description: "Optimism decoded tables related to Zora" + freshness: # default freshness + warn_after: { count: 12, period: hour } + error_after: { count: 24, period: hour } + loaded_at_field: evt_block_time + tables: + - name: ERC721Drop_evt_Sale + - name: ZoraCreator1155Impl_evt_Purchased + + - name: zora_zora + description: "Zora network decoded tables related to Zora" + freshness: # default freshness + warn_after: { count: 12, period: hour } + error_after: { count: 24, period: hour } + loaded_at_field: evt_block_time + tables: + - name: ZoraNFTCreatorV1_evt_CreatedDrop + - name: ZoraCreator1155_evt_SetupNewContract \ No newline at end of file diff --git a/models/_sector/nft/mints/platforms/zora_base_mints.sql b/models/_sector/nft/mints/platforms/zora_base_mints.sql new file mode 100644 index 00000000000..cd1e0d2300a --- /dev/null +++ b/models/_sector/nft/mints/platforms/zora_base_mints.sql @@ -0,0 +1,17 @@ +{{ config( + schema = 'zora_base', + alias = 'mints', + materialized='incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'token_id', 'evt_index'] +) +}} + +{{zora_mints( + blockchain = 'base' + , wrapped_native_token_address = '0x4200000000000000000000000000000000000006' + , erc721_mints = source('zora_base', 'ERC721Drop_evt_Sale') + , erc1155_mints = source('zora_base', 'ZoraCreator1155_evt_Purchased') + , transactions = source('base', 'transactions') +)}} \ No newline at end of file diff --git a/models/_sector/nft/mints/platforms/zora_ethereum_mints.sql b/models/_sector/nft/mints/platforms/zora_ethereum_mints.sql new file mode 100644 index 00000000000..14cbbe908cd --- /dev/null +++ b/models/_sector/nft/mints/platforms/zora_ethereum_mints.sql @@ -0,0 +1,17 @@ +{{ config( + schema = 'zora_ethereum', + alias = 'mints', + materialized='incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'token_id', 'evt_index'] +) +}} + +{{zora_mints( + blockchain = 'ethereum' + , wrapped_native_token_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' + , erc721_mints = source('zora_ethereum', 'ERC721Drop_evt_Sale') + , erc1155_mints = source('zora_ethereum', 'Zora1155_evt_Purchased') + , transactions = source('ethereum', 'transactions') +)}} \ No newline at end of file diff --git a/models/_sector/nft/mints/platforms/zora_goerli_mints.sql b/models/_sector/nft/mints/platforms/zora_goerli_mints.sql new file mode 100644 index 00000000000..d8f5cc6d254 --- /dev/null +++ b/models/_sector/nft/mints/platforms/zora_goerli_mints.sql @@ -0,0 +1,17 @@ +{{ config( + schema = 'zora_goerli', + alias = 'mints', + materialized='incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'token_id', 'evt_index'] +) +}} + +{{zora_mints( + blockchain = 'goerli' + , wrapped_native_token_address = '0xb4fbf271143f4fbf7b91a5ded31805e42b2208d6' + , erc721_mints = source('zora_goerli', 'ERC721Drop_evt_Sale') + , erc1155_mints = source('zora_goerli', 'ZoraCreator1155Impl_evt_Purchased') + , transactions = source('goerli', 'transactions') +)}} \ No newline at end of file diff --git a/models/_sector/nft/mints/platforms/zora_mints.sql b/models/_sector/nft/mints/platforms/zora_mints.sql new file mode 100644 index 00000000000..6caa0d5a98f --- /dev/null +++ b/models/_sector/nft/mints/platforms/zora_mints.sql @@ -0,0 +1,46 @@ +{{ config( + schema = 'zora', + alias = 'mints', + materialized='incremental', + file_format = 'delta', + incremental_strategy = 'merge', + post_hook='{{ expose_spells(\'["ethereum","optimism","base","zora","goerli"]\', + "project", + "zora", + \'["hildobby", "jeff-dude"]\') }}') +}} + +{% set zora_mints_models = [ + ref('zora_ethereum_mints') +,ref('zora_optimism_mints') +,ref('zora_base_mints') +,ref('zora_zora_mints') +,ref('zora_goerli_mints') +] %} + +SELECT * +FROM ( + {% for zora_mints_model in zora_mints_models %} + SELECT blockchain + , block_time + , block_number + , token_standard + , token_id + , quantity + , total_price + , total_price_usd + , recipient + , tx_hash + , evt_index + , contract_address + , tx_from + , tx_to + FROM {{ zora_mints_model }} + {% if is_incremental() %} + WHERE {{incremental_predicate('block_time')}} + {% endif %} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/_sector/nft/mints/platforms/zora_optimism_mints.sql b/models/_sector/nft/mints/platforms/zora_optimism_mints.sql new file mode 100644 index 00000000000..9fc95abab99 --- /dev/null +++ b/models/_sector/nft/mints/platforms/zora_optimism_mints.sql @@ -0,0 +1,17 @@ +{{ config( + schema = 'zora_optimism', + alias = 'mints', + materialized='incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'token_id', 'evt_index'] +) +}} + +{{zora_mints( + blockchain = 'optimism' + , wrapped_native_token_address = '0x4200000000000000000000000000000000000006' + , erc721_mints = source('zora_optimism', 'ERC721Drop_evt_Sale') + , erc1155_mints = source('zora_optimism', 'ZoraCreator1155Impl_evt_Purchased') + , transactions = source('optimism', 'transactions') +)}} \ No newline at end of file diff --git a/models/_sector/nft/mints/platforms/zora_zora_mints.sql b/models/_sector/nft/mints/platforms/zora_zora_mints.sql new file mode 100644 index 00000000000..aa841748c18 --- /dev/null +++ b/models/_sector/nft/mints/platforms/zora_zora_mints.sql @@ -0,0 +1,94 @@ +{{ config( + schema = 'zora_zora', + alias = 'mints', + materialized='incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'token_id', 'evt_index'] +) +}} + +WITH erc721_created_collections AS ( + SELECT evt_block_time AS block_time + , evt_block_number AS block_number + , editionContractAddress AS contract_address + , creator + , evt_index + FROM {{ source('zora_zora', 'ZoraNFTCreatorV1_evt_CreatedDrop') }} + ) + +, erc1155_created_collections AS ( + SELECT evt_block_time AS block_time + , evt_block_number AS block_number + , newContract AS contract_address + , creator + , evt_index + FROM {{ source('zora_zora', 'ZoraCreator1155_evt_SetupNewContract') }} + ) + +SELECT 'zora' AS blockchain +, nftt.block_time +, nftt.block_number +, nftt.token_standard +, nftt.token_id +, 1 AS quantity +, txs.value/1e18/nftt.amount AS total_price +, pu.price*(txs.value/1e18/nftt.amount) AS total_price_usd +, nftt.to AS recipient +, nftt.tx_hash +, nftt.evt_index +, nftt.contract_address +, txs."from" AS tx_from +, txs.to AS tx_to +FROM {{ ref('nft_zora_transfers') }} nftt +INNER JOIN erc721_created_collections cc ON cc.contract_address=nftt.contract_address AND nftt.block_number>=cc.block_number +INNER JOIN {{ source('zora', 'transactions')}} txs ON txs.block_number=nftt.block_number + AND txs.hash=nftt.tx_hash + {% if is_incremental() %} + AND {{incremental_predicate('txs.block_time')}} + {% endif %} +INNER JOIN {{ ref('prices_usd_forward_fill') }} pu ON pu.blockchain='zora' + AND pu.contract_address=0x4200000000000000000000000000000000000006 + AND pu.minute=date_trunc('minute', nftt.block_time) + {% if is_incremental() %} + AND {{incremental_predicate('pu.minute')}} + {% endif %} +CROSS JOIN UNNEST(sequence(1, CAST(amount AS BIGINT))) AS t (sequence_element) +WHERE nftt."from"=0x0000000000000000000000000000000000000000 +{% if is_incremental() %} +AND {{incremental_predicate('nftt.block_time')}} +{% endif %} + +UNION ALL + +SELECT 'zora' AS blockchain +, nftt.block_time +, nftt.block_number +, nftt.token_standard +, nftt.token_id +, nftt.amount AS quantity +, txs.value/1e18 AS total_price +, pu.price*(txs.value/1e18) AS total_price +, nftt.to AS recipient +, nftt.tx_hash +, nftt.evt_index +, nftt.contract_address +, txs."from" AS tx_from +, txs.to AS tx_to +FROM {{ ref('nft_zora_transfers') }} nftt +INNER JOIN erc1155_created_collections cc ON cc.contract_address=nftt.contract_address AND nftt.block_number>=cc.block_number +INNER JOIN {{ source('zora', 'transactions')}} txs ON txs.block_number=nftt.block_number + AND txs.hash=nftt.tx_hash + {% if is_incremental() %} + AND {{incremental_predicate('txs.block_time')}} + {% endif %} +INNER JOIN {{ ref('prices_usd_forward_fill') }} pu ON pu.blockchain='zora' + AND pu.contract_address=0x4200000000000000000000000000000000000006 + AND pu.minute=date_trunc('minute', nftt.block_time) + {% if is_incremental() %} + AND {{incremental_predicate('pu.minute')}} + {% endif %} +WHERE nftt."from"=0x0000000000000000000000000000000000000000 +{% if is_incremental() %} +AND {{incremental_predicate('nftt.block_time')}} +{% endif %} \ No newline at end of file diff --git a/models/_sector/referral/rewards/_schema.yml b/models/_sector/referral/rewards/_schema.yml index bc498d07dff..84a8585c6f7 100644 --- a/models/_sector/referral/rewards/_schema.yml +++ b/models/_sector/referral/rewards/_schema.yml @@ -4,13 +4,13 @@ models: - name: referral_rewards meta: - blockchain: ethereum, solana, bnb, optimism, arbitrum, polygon - sector: nft - contributors: soispoke, hildobby, ilemi, 0xRob, cat, umer_h_adil + blockchain: ethereum, optimism, arbitrum, base, zora + sector: referral + contributors: 0xRob, datadanne config: - tags: ['nft', 'opensea', 'looksrare', 'x2y2', 'magiceden', 'sudoswap', 'foundation', 'element', 'zora', 'ethereum', 'bnb', 'solana', 'events', 'polygon', 'optimism', 'arbitrum', 'rarible', 'aavegotchi', 'oneplanet', 'fractal'] + tags: ['referral','rewards', 'ethereum', 'optimism', 'arbitrum', 'base', 'zora'] description: > - NFT mints + Referral rewards tests: - dbt_utils.unique_combination_of_columns: combination_of_columns: diff --git a/models/_sector/referral/rewards/platforms/_schema.yml b/models/_sector/referral/rewards/platforms/_schema.yml index bb426999445..e7f2e947962 100644 --- a/models/_sector/referral/rewards/platforms/_schema.yml +++ b/models/_sector/referral/rewards/platforms/_schema.yml @@ -263,3 +263,79 @@ models: - *sub_tx_id - *tx_from - *tx_to + + - name: mintfun_ethereum_rewards + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - project + - tx_hash + - sub_tx_id + columns: + - *project + - *tx_hash + - *category + - *referrer_address + - *referee_address + - *currency_contract + - *reward_amount_raw + - *sub_tx_id + - *tx_from + - *tx_to + + - name: mintfun_optimism_rewards + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - project + - tx_hash + - sub_tx_id + columns: + - *project + - *tx_hash + - *category + - *referrer_address + - *referee_address + - *currency_contract + - *reward_amount_raw + - *sub_tx_id + - *tx_from + - *tx_to + + - name: mintfun_base_rewards + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - project + - tx_hash + - sub_tx_id + columns: + - *project + - *tx_hash + - *category + - *referrer_address + - *referee_address + - *currency_contract + - *reward_amount_raw + - *sub_tx_id + - *tx_from + - *tx_to + + - name: mintfun_zora_rewards + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - project + - tx_hash + - sub_tx_id + columns: + - *project + - *tx_hash + - *category + - *referrer_address + - *referee_address + - *currency_contract + - *reward_amount_raw + - *sub_tx_id + - *tx_from + - *tx_to diff --git a/models/_sector/referral/rewards/platforms/_sources.yml b/models/_sector/referral/rewards/platforms/_sources.yml index daa60d80425..ad202256560 100644 --- a/models/_sector/referral/rewards/platforms/_sources.yml +++ b/models/_sector/referral/rewards/platforms/_sources.yml @@ -40,3 +40,15 @@ sources: - name: slugs_optimism tables: - name: Slugs_evt_NewSlug + - name: mint_fun_ethereum + tables: + - name: MintPayout_evt_MintDeposit + - name: mint_fun_optimism + tables: + - name: MintPayout_evt_MintDeposit + - name: mint_fun_base + tables: + - name: MintPayout_evt_MintDeposit + - name: mint_fun_zora + tables: + - name: MintPayout_evt_MintDeposit diff --git a/models/_sector/referral/rewards/platforms/mintfun_base_rewards.sql b/models/_sector/referral/rewards/platforms/mintfun_base_rewards.sql new file mode 100644 index 00000000000..ad2a1d583f7 --- /dev/null +++ b/models/_sector/referral/rewards/platforms/mintfun_base_rewards.sql @@ -0,0 +1,16 @@ +{{ config( + schema = 'mint_fun_base', + alias = 'rewards', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['project','tx_hash','sub_tx_id'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + ) +}} + +{{mintfun_referral_rewards( + blockchain = "base" + ,MintPayout_evt_MintDeposit = source('mint_fun_base','MintPayout_evt_MintDeposit') + ) + }} diff --git a/models/_sector/referral/rewards/platforms/mintfun_ethereum_rewards.sql b/models/_sector/referral/rewards/platforms/mintfun_ethereum_rewards.sql new file mode 100644 index 00000000000..b1daffaa6df --- /dev/null +++ b/models/_sector/referral/rewards/platforms/mintfun_ethereum_rewards.sql @@ -0,0 +1,16 @@ +{{ config( + schema = 'mint_fun_ethereum', + alias = 'rewards', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['project','tx_hash','sub_tx_id'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + ) +}} + +{{mintfun_referral_rewards( + blockchain = "ethereum" + ,MintPayout_evt_MintDeposit = source('mint_fun_ethereum','MintPayout_evt_MintDeposit') + ) + }} diff --git a/models/_sector/referral/rewards/platforms/mintfun_optimism_rewards.sql b/models/_sector/referral/rewards/platforms/mintfun_optimism_rewards.sql new file mode 100644 index 00000000000..b7c2df0dc49 --- /dev/null +++ b/models/_sector/referral/rewards/platforms/mintfun_optimism_rewards.sql @@ -0,0 +1,16 @@ +{{ config( + schema = 'mint_fun_optimism', + alias = 'rewards', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['project','tx_hash','sub_tx_id'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + ) +}} + +{{mintfun_referral_rewards( + blockchain = "optimism" + ,MintPayout_evt_MintDeposit = source('mint_fun_optimism','MintPayout_evt_MintDeposit') + ) + }} diff --git a/models/_sector/referral/rewards/platforms/mintfun_zora_rewards.sql b/models/_sector/referral/rewards/platforms/mintfun_zora_rewards.sql new file mode 100644 index 00000000000..ff039dc52f2 --- /dev/null +++ b/models/_sector/referral/rewards/platforms/mintfun_zora_rewards.sql @@ -0,0 +1,16 @@ +{{ config( + schema = 'mint_fun_zora', + alias = 'rewards', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['project','tx_hash','sub_tx_id'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + ) +}} + +{{mintfun_referral_rewards( + blockchain = "zora" + ,MintPayout_evt_MintDeposit = source('mint_fun_zora','MintPayout_evt_MintDeposit') + ) + }} diff --git a/models/_sector/referral/rewards/platforms/rabbithole_arbitrum_rewards.sql b/models/_sector/referral/rewards/platforms/rabbithole_arbitrum_rewards.sql index f2527f16186..79b581caaa7 100644 --- a/models/_sector/referral/rewards/platforms/rabbithole_arbitrum_rewards.sql +++ b/models/_sector/referral/rewards/platforms/rabbithole_arbitrum_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'rabbithole_arbitrum', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', diff --git a/models/_sector/referral/rewards/platforms/rabbithole_base_rewards.sql b/models/_sector/referral/rewards/platforms/rabbithole_base_rewards.sql index 914fcf60ca8..2e77bf56436 100644 --- a/models/_sector/referral/rewards/platforms/rabbithole_base_rewards.sql +++ b/models/_sector/referral/rewards/platforms/rabbithole_base_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'rabbithole_base', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', diff --git a/models/_sector/referral/rewards/platforms/rabbithole_optimism_rewards.sql b/models/_sector/referral/rewards/platforms/rabbithole_optimism_rewards.sql index 7a3355e6b4c..7cf1d3c34f1 100644 --- a/models/_sector/referral/rewards/platforms/rabbithole_optimism_rewards.sql +++ b/models/_sector/referral/rewards/platforms/rabbithole_optimism_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'rabbithole_optimism', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', diff --git a/models/_sector/referral/rewards/platforms/rabbithole_polygon_rewards.sql b/models/_sector/referral/rewards/platforms/rabbithole_polygon_rewards.sql index f338c4b9264..83c450623ba 100644 --- a/models/_sector/referral/rewards/platforms/rabbithole_polygon_rewards.sql +++ b/models/_sector/referral/rewards/platforms/rabbithole_polygon_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'rabbithole_polygon', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', @@ -13,5 +12,6 @@ {{rabbithole_referral_rewards( blockchain = "polygon" ,QuestFactory_evt_MintFeePaid = source('rabbithole_polygon','QuestFactory_evt_MintFeePaid') + ,native_currency_contract = '0x0000000000000000000000000000000000001010' ) }} diff --git a/models/_sector/referral/rewards/platforms/slugs_optimism_rewards.sql b/models/_sector/referral/rewards/platforms/slugs_optimism_rewards.sql index aba4403e88c..4a2333a9a21 100644 --- a/models/_sector/referral/rewards/platforms/slugs_optimism_rewards.sql +++ b/models/_sector/referral/rewards/platforms/slugs_optimism_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'slugs_optimism', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', diff --git a/models/_sector/referral/rewards/platforms/soundxyz_ethereum_rewards.sql b/models/_sector/referral/rewards/platforms/soundxyz_ethereum_rewards.sql index 3d2e4f0cafb..7cd25a6b69e 100644 --- a/models/_sector/referral/rewards/platforms/soundxyz_ethereum_rewards.sql +++ b/models/_sector/referral/rewards/platforms/soundxyz_ethereum_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'soundxyz_ethereum', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', diff --git a/models/_sector/referral/rewards/platforms/soundxyz_optimism_rewards.sql b/models/_sector/referral/rewards/platforms/soundxyz_optimism_rewards.sql index 112b1217039..323a0281768 100644 --- a/models/_sector/referral/rewards/platforms/soundxyz_optimism_rewards.sql +++ b/models/_sector/referral/rewards/platforms/soundxyz_optimism_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'soundxyz_optimism', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', diff --git a/models/_sector/referral/rewards/platforms/zora_base_rewards.sql b/models/_sector/referral/rewards/platforms/zora_base_rewards.sql index 9ddbba934d5..d5a0f296c0c 100644 --- a/models/_sector/referral/rewards/platforms/zora_base_rewards.sql +++ b/models/_sector/referral/rewards/platforms/zora_base_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'zora_base', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', diff --git a/models/_sector/referral/rewards/platforms/zora_ethereum_rewards.sql b/models/_sector/referral/rewards/platforms/zora_ethereum_rewards.sql index 7fd6ab57353..4961d1b2016 100644 --- a/models/_sector/referral/rewards/platforms/zora_ethereum_rewards.sql +++ b/models/_sector/referral/rewards/platforms/zora_ethereum_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'zora_ethereum', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', diff --git a/models/_sector/referral/rewards/platforms/zora_optimism_rewards.sql b/models/_sector/referral/rewards/platforms/zora_optimism_rewards.sql index 22dbd114124..6d84f17117b 100644 --- a/models/_sector/referral/rewards/platforms/zora_optimism_rewards.sql +++ b/models/_sector/referral/rewards/platforms/zora_optimism_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'zora_optimism', alias = 'rewards', - materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', diff --git a/models/_sector/referral/rewards/referral_rewards.sql b/models/_sector/referral/rewards/referral_rewards.sql index a067924df17..e17f9e1ac8a 100644 --- a/models/_sector/referral/rewards/referral_rewards.sql +++ b/models/_sector/referral/rewards/referral_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'referral', alias = 'rewards', - partition_by = ['blockchain','project','block_month'], materialized = 'incremental', file_format = 'delta', @@ -13,7 +12,7 @@ "referral", \'["0xRob"]\') }}') }} - +-- CI counter (change to include in CI run) = 1 {{ enrich_referral_rewards ( model = ref('referral_staging_rewards') diff --git a/models/_sector/referral/rewards/referral_staging_rewards.sql b/models/_sector/referral/rewards/referral_staging_rewards.sql index 10685bfd3ca..b0427cf9acb 100644 --- a/models/_sector/referral/rewards/referral_staging_rewards.sql +++ b/models/_sector/referral/rewards/referral_staging_rewards.sql @@ -1,7 +1,6 @@ {{ config( schema = 'referral', alias = 'staging_rewards', - materialized = 'view' ) }} @@ -18,7 +17,11 @@ ref('rabbithole_polygon_rewards'), ref('soundxyz_ethereum_rewards'), ref('soundxyz_optimism_rewards'), - ref('slugs_optimism_rewards') + ref('slugs_optimism_rewards'), + ref('mintfun_ethereum_rewards'), + ref('mintfun_optimism_rewards'), + ref('mintfun_base_rewards'), + ref('mintfun_zora_rewards') ] %} SELECT * diff --git a/models/_sector/tokens/arbitrum/_schema.yml b/models/_sector/tokens/arbitrum/_schema.yml new file mode 100644 index 00000000000..4b95b5f0fee --- /dev/null +++ b/models/_sector/tokens/arbitrum/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_arbitrum_base_transfers + meta: + blockchain: arbitrum + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'arbitrum'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_arbitrum_transfers + meta: + blockchain: arbitrum + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'arbitrum'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/arbitrum/tokens_arbitrum_base_transfers.sql b/models/_sector/tokens/arbitrum/tokens_arbitrum_base_transfers.sql new file mode 100644 index 00000000000..42b7cc24c4e --- /dev/null +++ b/models/_sector/tokens/arbitrum/tokens_arbitrum_base_transfers.sql @@ -0,0 +1,20 @@ +{{config( + schema = 'tokens_arbitrum', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='arbitrum', + traces = source('arbitrum','traces'), + transactions = source('arbitrum','transactions'), + erc20_transfers = source('erc20_arbitrum','evt_transfer'), + native_contract_address = null, +) +}} diff --git a/models/_sector/tokens/arbitrum/tokens_arbitrum_transfers.sql b/models/_sector/tokens/arbitrum/tokens_arbitrum_transfers.sql new file mode 100644 index 00000000000..2c155366f9e --- /dev/null +++ b/models/_sector/tokens/arbitrum/tokens_arbitrum_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_arbitrum', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='arbitrum', + transfers_base = ref('tokens_arbitrum_base_transfers'), + native_symbol = 'ETH' +)}} diff --git a/models/_sector/tokens/avalanche_c/_schema.yml b/models/_sector/tokens/avalanche_c/_schema.yml new file mode 100644 index 00000000000..135ee11fd9c --- /dev/null +++ b/models/_sector/tokens/avalanche_c/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_avalanche_c_base_transfers + meta: + blockchain: avalanche_c + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'avalanche_c'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_avalanche_c_transfers + meta: + blockchain: avalanche_c + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'avalanche_c'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/avalanche_c/tokens_avalanche_c_base_transfers.sql b/models/_sector/tokens/avalanche_c/tokens_avalanche_c_base_transfers.sql new file mode 100644 index 00000000000..3c941894bfb --- /dev/null +++ b/models/_sector/tokens/avalanche_c/tokens_avalanche_c_base_transfers.sql @@ -0,0 +1,20 @@ +{{config( + schema = 'tokens_avalanche_c', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='avalanche_c', + traces = source('avalanche_c','traces'), + transactions = source('avalanche_c','transactions'), + erc20_transfers = source('erc20_avalanche_c','evt_transfer'), + native_contract_address = null +) +}} diff --git a/models/_sector/tokens/avalanche_c/tokens_avalanche_c_transfers.sql b/models/_sector/tokens/avalanche_c/tokens_avalanche_c_transfers.sql new file mode 100644 index 00000000000..2cab830dd8e --- /dev/null +++ b/models/_sector/tokens/avalanche_c/tokens_avalanche_c_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_avalanche_c', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='avalanche_c', + transfers_base = ref('tokens_avalanche_c_base_transfers'), + native_symbol = 'AVAX' +)}} diff --git a/models/_sector/tokens/base/_schema.yml b/models/_sector/tokens/base/_schema.yml new file mode 100644 index 00000000000..8b9820c8922 --- /dev/null +++ b/models/_sector/tokens/base/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_base_base_transfers + meta: + blockchain: base + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'base'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_base_transfers + meta: + blockchain: base + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'base'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/base/tokens_base_base_transfers.sql b/models/_sector/tokens/base/tokens_base_base_transfers.sql new file mode 100644 index 00000000000..4797389e49e --- /dev/null +++ b/models/_sector/tokens/base/tokens_base_base_transfers.sql @@ -0,0 +1,20 @@ +{{config( + schema = 'tokens_base', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='base', + traces = source('base','traces'), + transactions = source('base','transactions'), + erc20_transfers = source('erc20_base','evt_transfer'), + native_contract_address = null +) +}} diff --git a/models/_sector/tokens/base/tokens_base_transfers.sql b/models/_sector/tokens/base/tokens_base_transfers.sql new file mode 100644 index 00000000000..cb70e78d4de --- /dev/null +++ b/models/_sector/tokens/base/tokens_base_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_base', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='base', + transfers_base = ref('tokens_base_base_transfers'), + native_symbol = 'ETH' +)}} diff --git a/models/_sector/tokens/bnb/_schema.yml b/models/_sector/tokens/bnb/_schema.yml new file mode 100644 index 00000000000..99047df0230 --- /dev/null +++ b/models/_sector/tokens/bnb/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_bnb_base_transfers + meta: + blockchain: bnb + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'bnb'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_bnb_transfers + meta: + blockchain: bnb + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'bnb'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/bnb/tokens_bnb_base_transfers.sql b/models/_sector/tokens/bnb/tokens_bnb_base_transfers.sql new file mode 100644 index 00000000000..e6c05f9d3e5 --- /dev/null +++ b/models/_sector/tokens/bnb/tokens_bnb_base_transfers.sql @@ -0,0 +1,32 @@ +{{config( + schema = 'tokens_bnb', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='bnb', + traces = source('bnb','traces'), + transactions = source('bnb','transactions'), + erc20_transfers = source('erc20_bnb','evt_transfer'), + native_contract_address = null +) +}} + +UNION ALL + +SELECT * FROM +( +{{transfers_base_wrapped_token( + blockchain='bnb', + transactions = source('bnb','transactions'), + wrapped_token_deposit = source('bnb_bnb', 'WBNB_evt_Deposit'), + wrapped_token_withdrawal = source('bnb_bnb', 'WBNB_evt_Withdrawal') +)}} +) diff --git a/models/_sector/tokens/bnb/tokens_bnb_transfers.sql b/models/_sector/tokens/bnb/tokens_bnb_transfers.sql new file mode 100644 index 00000000000..9a8b70a5a01 --- /dev/null +++ b/models/_sector/tokens/bnb/tokens_bnb_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_bnb', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='bnb', + transfers_base = ref('tokens_bnb_base_transfers'), + native_symbol = 'BNB' +)}} diff --git a/models/_sector/tokens/celo/_schema.yml b/models/_sector/tokens/celo/_schema.yml new file mode 100644 index 00000000000..f0994638e68 --- /dev/null +++ b/models/_sector/tokens/celo/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_celo_base_transfers + meta: + blockchain: celo + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'celo'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_celo_transfers + meta: + blockchain: celo + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'celo'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/celo/tokens_celo_base_transfers.sql b/models/_sector/tokens/celo/tokens_celo_base_transfers.sql new file mode 100644 index 00000000000..02d49d6646e --- /dev/null +++ b/models/_sector/tokens/celo/tokens_celo_base_transfers.sql @@ -0,0 +1,20 @@ +{{config( + schema = 'tokens_celo', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='celo', + traces = source('celo','traces'), + transactions = source('celo','transactions'), + erc20_transfers = source('erc20_celo','evt_transfer'), + native_contract_address = null +) +}} diff --git a/models/_sector/tokens/celo/tokens_celo_transfers.sql b/models/_sector/tokens/celo/tokens_celo_transfers.sql new file mode 100644 index 00000000000..f08dd2c451f --- /dev/null +++ b/models/_sector/tokens/celo/tokens_celo_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_celo', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='celo', + transfers_base = ref('tokens_celo_base_transfers'), + native_symbol = 'CELO' +)}} diff --git a/models/_sector/tokens/ethereum/_schema.yml b/models/_sector/tokens/ethereum/_schema.yml index abe8f90786d..d703270e4f1 100644 --- a/models/_sector/tokens/ethereum/_schema.yml +++ b/models/_sector/tokens/ethereum/_schema.yml @@ -5,7 +5,7 @@ models: meta: blockchain: ethereum sector: tokens - contributors: aalan3 + contributors: aalan3, jeff-dude config: tags: ['tokens','transfers', 'ethereum'] description: > @@ -51,7 +51,7 @@ models: meta: blockchain: ethereum sector: tokens - contributors: aalan3 + contributors: aalan3, jeff-dude config: tags: ['tokens','transfers', 'ethereum'] description: > diff --git a/models/_sector/tokens/ethereum/tokens_ethereum_base_transfers.sql b/models/_sector/tokens/ethereum/tokens_ethereum_base_transfers.sql index 07d281371f9..61462d73a65 100644 --- a/models/_sector/tokens/ethereum/tokens_ethereum_base_transfers.sql +++ b/models/_sector/tokens/ethereum/tokens_ethereum_base_transfers.sql @@ -10,7 +10,6 @@ ) }} --- TODO: use variable for native_contract_address {{transfers_base( blockchain='ethereum', traces = source('ethereum','traces'), @@ -20,6 +19,7 @@ )}} UNION ALL + SELECT * FROM ( {{transfers_base_wrapped_token( diff --git a/models/_sector/tokens/ethereum/tokens_ethereum_transfers.sql b/models/_sector/tokens/ethereum/tokens_ethereum_transfers.sql index a5ec925e732..a830c79de9e 100644 --- a/models/_sector/tokens/ethereum/tokens_ethereum_transfers.sql +++ b/models/_sector/tokens/ethereum/tokens_ethereum_transfers.sql @@ -1,11 +1,10 @@ -{{ config( - schema = 'tokens_ethereum', - alias = 'transfers', - materialized = 'view', - ) +{{config( + schema = 'tokens_ethereum', + alias = 'transfers', + materialized = 'view', +) }} - {{transfers_enrich( blockchain='ethereum', transfers_base = ref('tokens_ethereum_base_transfers'), diff --git a/models/_sector/tokens/fantom/_schema.yml b/models/_sector/tokens/fantom/_schema.yml new file mode 100644 index 00000000000..7a991b4eac7 --- /dev/null +++ b/models/_sector/tokens/fantom/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_fantom_base_transfers + meta: + blockchain: fantom + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'fantom'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_fantom_transfers + meta: + blockchain: fantom + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'fantom'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/fantom/tokens_fantom_base_transfers.sql b/models/_sector/tokens/fantom/tokens_fantom_base_transfers.sql new file mode 100644 index 00000000000..9cf5775f9a0 --- /dev/null +++ b/models/_sector/tokens/fantom/tokens_fantom_base_transfers.sql @@ -0,0 +1,20 @@ +{{config( + schema = 'tokens_fantom', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='fantom', + traces = source('fantom','traces'), + transactions = source('fantom','transactions'), + erc20_transfers = source('erc20_fantom','evt_transfer'), + native_contract_address = null +) +}} diff --git a/models/_sector/tokens/fantom/tokens_fantom_transfers.sql b/models/_sector/tokens/fantom/tokens_fantom_transfers.sql new file mode 100644 index 00000000000..589eea26aaf --- /dev/null +++ b/models/_sector/tokens/fantom/tokens_fantom_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_fantom', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='fantom', + transfers_base = ref('tokens_fantom_base_transfers'), + native_symbol = 'FTM' +)}} diff --git a/models/_sector/tokens/gnosis/_schema.yml b/models/_sector/tokens/gnosis/_schema.yml new file mode 100644 index 00000000000..7131e03cd03 --- /dev/null +++ b/models/_sector/tokens/gnosis/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_gnosis_base_transfers + meta: + blockchain: gnosis + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'gnosis'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_gnosis_transfers + meta: + blockchain: gnosis + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'gnosis'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/gnosis/tokens_gnosis_base_transfers.sql b/models/_sector/tokens/gnosis/tokens_gnosis_base_transfers.sql new file mode 100644 index 00000000000..a3bcbf6c61b --- /dev/null +++ b/models/_sector/tokens/gnosis/tokens_gnosis_base_transfers.sql @@ -0,0 +1,20 @@ +{{config( + schema = 'tokens_gnosis', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='gnosis', + traces = source('gnosis','traces'), + transactions = source('gnosis','transactions'), + erc20_transfers = source('erc20_gnosis','evt_transfer'), + native_contract_address = null +) +}} diff --git a/models/_sector/tokens/gnosis/tokens_gnosis_transfers.sql b/models/_sector/tokens/gnosis/tokens_gnosis_transfers.sql new file mode 100644 index 00000000000..c295310c14a --- /dev/null +++ b/models/_sector/tokens/gnosis/tokens_gnosis_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_gnosis', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='gnosis', + transfers_base = ref('tokens_gnosis_base_transfers'), + native_symbol = 'xDAI' +)}} diff --git a/models/_sector/tokens/optimism/_schema.yml b/models/_sector/tokens/optimism/_schema.yml new file mode 100644 index 00000000000..dbf891432ed --- /dev/null +++ b/models/_sector/tokens/optimism/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_optimism_base_transfers + meta: + blockchain: optimism + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'optimism'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_optimism_transfers + meta: + blockchain: optimism + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'optimism'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/optimism/tokens_optimism_base_transfers.sql b/models/_sector/tokens/optimism/tokens_optimism_base_transfers.sql new file mode 100644 index 00000000000..1f85421ac05 --- /dev/null +++ b/models/_sector/tokens/optimism/tokens_optimism_base_transfers.sql @@ -0,0 +1,20 @@ +{{config( + schema = 'tokens_optimism', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='optimism', + traces = source('optimism','traces'), + transactions = source('optimism','transactions'), + erc20_transfers = source('erc20_optimism','evt_transfer'), + native_contract_address = null +) +}} diff --git a/models/_sector/tokens/optimism/tokens_optimism_transfers.sql b/models/_sector/tokens/optimism/tokens_optimism_transfers.sql new file mode 100644 index 00000000000..6031d521a2f --- /dev/null +++ b/models/_sector/tokens/optimism/tokens_optimism_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_optimism', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='optimism', + transfers_base = ref('tokens_optimism_base_transfers'), + native_symbol = 'ETH' +)}} diff --git a/models/_sector/tokens/polygon/_schema.yml b/models/_sector/tokens/polygon/_schema.yml new file mode 100644 index 00000000000..c461f046e06 --- /dev/null +++ b/models/_sector/tokens/polygon/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_polygon_base_transfers + meta: + blockchain: polygon + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'polygon'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_polygon_transfers + meta: + blockchain: polygon + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'polygon'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/polygon/tokens_polygon_base_transfers.sql b/models/_sector/tokens/polygon/tokens_polygon_base_transfers.sql new file mode 100644 index 00000000000..7aab24647a7 --- /dev/null +++ b/models/_sector/tokens/polygon/tokens_polygon_base_transfers.sql @@ -0,0 +1,32 @@ +{{config( + schema = 'tokens_polygon', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='polygon', + traces = source('polygon','traces'), + transactions = source('polygon','transactions'), + erc20_transfers = source('erc20_polygon','evt_transfer'), + native_contract_address = null +) +}} + +UNION ALL + +SELECT * FROM +( +{{transfers_base_wrapped_token( + blockchain='polygon', + transactions = source('polygon','transactions'), + wrapped_token_deposit = source('mahadao_polygon', 'wmatic_evt_deposit'), + wrapped_token_withdrawal = source('mahadao_polygon', 'wmatic_evt_withdrawal') +)}} +) diff --git a/models/_sector/tokens/polygon/tokens_polygon_transfers.sql b/models/_sector/tokens/polygon/tokens_polygon_transfers.sql new file mode 100644 index 00000000000..af4d3b87baa --- /dev/null +++ b/models/_sector/tokens/polygon/tokens_polygon_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_polygon', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='polygon', + transfers_base = ref('tokens_polygon_base_transfers'), + native_symbol = 'MATIC' +)}} diff --git a/models/_sector/tokens/zksync/_schema.yml b/models/_sector/tokens/zksync/_schema.yml new file mode 100644 index 00000000000..24509f4751f --- /dev/null +++ b/models/_sector/tokens/zksync/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_zksync_base_transfers + meta: + blockchain: zksync + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'zksync'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_zksync_transfers + meta: + blockchain: zksync + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'zksync'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/zksync/tokens_zksync_base_transfers.sql b/models/_sector/tokens/zksync/tokens_zksync_base_transfers.sql new file mode 100644 index 00000000000..636a054e417 --- /dev/null +++ b/models/_sector/tokens/zksync/tokens_zksync_base_transfers.sql @@ -0,0 +1,20 @@ +{{config( + schema = 'tokens_zksync', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='zksync', + traces = source('zksync','traces'), + transactions = source('zksync','transactions'), + erc20_transfers = source('erc20_zksync','evt_transfer'), + native_contract_address = '0x000000000000000000000000000000000000800a' +) +}} diff --git a/models/_sector/tokens/zksync/tokens_zksync_transfers.sql b/models/_sector/tokens/zksync/tokens_zksync_transfers.sql new file mode 100644 index 00000000000..668aaa2b316 --- /dev/null +++ b/models/_sector/tokens/zksync/tokens_zksync_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_zksync', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='zksync', + transfers_base = ref('tokens_zksync_base_transfers'), + native_symbol = 'ETH' +)}} diff --git a/models/_sector/tokens/zora/_schema.yml b/models/_sector/tokens/zora/_schema.yml new file mode 100644 index 00000000000..b5ef625369e --- /dev/null +++ b/models/_sector/tokens/zora/_schema.yml @@ -0,0 +1,93 @@ +version: 2 + +models: + - name: tokens_zora_base_transfers + meta: + blockchain: zora + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'zora'] + description: > + Token transfers + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_number + - tx_index + - evt_index + - trace_address + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + + - name: tokens_zora_transfers + meta: + blockchain: zora + sector: tokens + contributors: aalan3, jeff-dude + config: + tags: ['tokens','transfers', 'zora'] + description: > + Token transfers + columns: + - name: blockchain + description: "The blockchain of the transfers" + - name: block_datetime + description: "The date of the block" + - name: block_number + description: "The block number" + - name: tx_hash + description: "The transaction hash" + - name: tx_index + description: "The transaction index" + - name: tx_from + description: "The transaction sender" + - name: tx_to + description: "The transaction receiver" + - name: evt_index + description: "The log event index of the transfer if any" + - name: trace_address + description: "The trace address of the transfer if any" + - name: token_standard + description: "The token standard of the transfer" + - name: contract_address + description: "The contract address of the transfer" + - name: to + description: "The receiver of the transfer" + - name: from + description: "The sender of the transfer" + - name: amount_raw + description: "The raw amount of the transfer" + - name: amount + description: "The formatted amount of the transfer" + - name: usd_price + description: "The USD price used to calculate the amount_usd" + - name: amount_usd + description: "The USD amount of the transfer" \ No newline at end of file diff --git a/models/_sector/tokens/zora/tokens_zora_base_transfers.sql b/models/_sector/tokens/zora/tokens_zora_base_transfers.sql new file mode 100644 index 00000000000..788061d1cfc --- /dev/null +++ b/models/_sector/tokens/zora/tokens_zora_base_transfers.sql @@ -0,0 +1,20 @@ +{{config( + schema = 'tokens_zora', + alias = 'base_transfers', + partition_by = ['token_standard', 'block_date'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['unique_key'], +) +}} + +{{transfers_base( + blockchain='zora', + traces = source('zora','traces'), + transactions = source('zora','transactions'), + erc20_transfers = source('erc20_zora','evt_transfer'), + native_contract_address = null +) +}} \ No newline at end of file diff --git a/models/_sector/tokens/zora/tokens_zora_transfers.sql b/models/_sector/tokens/zora/tokens_zora_transfers.sql new file mode 100644 index 00000000000..cba640b1194 --- /dev/null +++ b/models/_sector/tokens/zora/tokens_zora_transfers.sql @@ -0,0 +1,12 @@ +{{config( + schema = 'tokens_zora', + alias = 'transfers', + materialized = 'view', +) +}} + +{{transfers_enrich( + blockchain='zora', + transfers_base = ref('tokens_zora_base_transfers'), + native_symbol = 'ETH' +)}} diff --git a/models/arbswap/arbswap_trades.sql b/models/arbswap/arbswap_trades.sql index 1bba060a99e..7eda34367ad 100644 --- a/models/arbswap/arbswap_trades.sql +++ b/models/arbswap/arbswap_trades.sql @@ -5,7 +5,7 @@ file_format = 'delta', incremental_strategy = 'merge', unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index'], - post_hook='{{ expose_spells(\'["arbswap"]\', + post_hook='{{ expose_spells(\'["arbitrum"]\', "project", "arbswap", \'["chrispearcx", "hosuke"]\') }}' diff --git a/models/arbswap/arbswap_trades_sources.yml b/models/arbswap/arbswap_trades_sources.yml deleted file mode 100644 index 1bb12d39043..00000000000 --- a/models/arbswap/arbswap_trades_sources.yml +++ /dev/null @@ -1,60 +0,0 @@ -version: 2 - -sources: - - name: arbswap_arbitrum - description: "Arbitrum decoded tables related to Arbswap contract" - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: SwapPair_evt_Swap - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - &contract_address - name: contract_address - description: "Ethereum address for the liquidity pool used in transaction" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - - &sender - name: sender - - &to - name: to - - name: SwapFactory_evt_PairCreated - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - - &token0 - name: token0 - - &token1 - name: token1 - - name: ArbswapStableSwapTwoPool_evt_TokenExchange - loaded_at_field: evt_block_time - - name: ArbswapStableSwapFactory_evt_NewStableSwapPair - loaded_at_field: evt_block_time \ No newline at end of file diff --git a/models/babyswap/bnb/babyswap_bnb_sources.yml b/models/babyswap/bnb/babyswap_bnb_sources.yml deleted file mode 100644 index 21fe510b9d3..00000000000 --- a/models/babyswap/bnb/babyswap_bnb_sources.yml +++ /dev/null @@ -1,59 +0,0 @@ -version: 2 - -sources: - - name: babyswap_bnb - description: "Binance Smart Chain (bnb) decoded tables related to BabySwap contract" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: BabyPair_evt_Swap - loaded_at_field: evt_block_time - description: "babyswap swap events table on Avalanche C chain" - columns: - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - &contract_address - name: contract_address - description: "Binance Smart Chain address for the liquidity pool used in transaction" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null - - &sender - name: sender - - &to - name: to - - name: BabyFactory_evt_PairCreated - loaded_at_field: evt_block_time - description: "BabySwap Pool created events table" - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - - &token0 - name: token0 - - &token1 - name: token1 diff --git a/models/balancer/arbitrum/balancer_arbitrum_schema.yml b/models/balancer/arbitrum/balancer_arbitrum_schema.yml index 3bc60485084..4db6059f1ab 100644 --- a/models/balancer/arbitrum/balancer_arbitrum_schema.yml +++ b/models/balancer/arbitrum/balancer_arbitrum_schema.yml @@ -374,6 +374,41 @@ models: - name: tx_to - name: evt_index + - name: balancer_v2_arbitrum_protocol_fee + meta: + blockchain: arbitrum + project: balancer_v2 + contributors: viniabussafi + config: + tags: ['arbitrum', 'revenue', 'fees'] + description: > + Daily Protocol Fee collected and Revenue by pool on Balancer, an automated portfolio manager and trading platform. + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - day + - pool_id + - token_address + columns: + - name: day + - name: pool_id + - name: pool_address + - name: pool_symbol + - name: version + - name: blockchain + - name: token_address + - name: token_symbol + - name: token_amount_raw + description: "Raw amount of revenues of the token in the pool" + - name: token_amount + description: "Amount of revenues of the token in the pool" + - name: protocol_fee_collected_usd + description: "Fee collected in the pool in USD" + - name: treasury_share + description: "Share of total revenue that is directed to Balancer DAO's treasury, as per BIPs 19, 161 and 371" + - name: treasury_revenue_usd + description: "Total revenue directed to Balancer DAO's treasury" + - name: balancer_v2_arbitrum_bpt_supply meta: blockchain: arbiturm @@ -398,6 +433,4 @@ models: - &lp_virtual_supply name: lp_virtual_supply description: "The scaled supply of a BPT token." - - *pool_id - - + - *pool_id \ No newline at end of file diff --git a/models/balancer/arbitrum/balancer_arbitrum_sources.yml b/models/balancer/arbitrum/balancer_arbitrum_sources.yml index 1214adfd8f6..fb9f5501f90 100644 --- a/models/balancer/arbitrum/balancer_arbitrum_sources.yml +++ b/models/balancer/arbitrum/balancer_arbitrum_sources.yml @@ -31,32 +31,6 @@ sources: - name: specialization description: 'Pool specialization' - - name: Vault_evt_Swap - description: > - Decoded table related to the contracts emitted by swaps in Balancer V2 pools. - loaded_at_field: evt_block_time - columns: - - name: contract_address - description: 'Balancer Vault contract address' - - name: evt_tx_hash - description: 'Transaction hash of the event' - - name: evt_index - description: 'Event index' - - name: evt_block_time - description: 'Timestamp for block event time in UTC' - - name: evt_block_number - description: 'Event block number' - - name: poolId - description: 'Balancer pool contract address' - - name: tokenIn - description: 'Contract address of the token provided to the pool' - - name: tokenOut - description: 'Contract address of the token bought from the pool' - - name: amountIn - description: 'Raw amount of the token provided to the pool' - - name: amountOut - description: 'Raw amount of the token bought from the pool' - - name: WeightedPoolFactory_call_create description: > Decoded table of registered pools on the Balancer WeightedPoolFactory contract. diff --git a/models/balancer/arbitrum/balancer_arbitrum_trades.sql b/models/balancer/arbitrum/balancer_arbitrum_trades.sql index 9f2c4ef8ce5..f49f9199350 100644 --- a/models/balancer/arbitrum/balancer_arbitrum_trades.sql +++ b/models/balancer/arbitrum/balancer_arbitrum_trades.sql @@ -1,10 +1,6 @@ {{ config( - - alias = 'trades', - post_hook='{{ expose_spells(\'["arbitrum"]\', - "project", - "balancer", - \'["bizzyvinci", "thetroyharris"]\') }}' + schema = 'balancer_arbitrum', + alias = 'trades' ) }} diff --git a/models/balancer/arbitrum/balancer_v2_arbitrum_protocol_fee.sql b/models/balancer/arbitrum/balancer_v2_arbitrum_protocol_fee.sql new file mode 100644 index 00000000000..46a1c40352f --- /dev/null +++ b/models/balancer/arbitrum/balancer_v2_arbitrum_protocol_fee.sql @@ -0,0 +1,21 @@ +{% set blockchain = 'arbitrum' %} + +{{ + config( + schema='balancer_v2_' + blockchain, + alias = 'protocol_fee', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['day', 'pool_id', 'token_address'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.day')] + + ) +}} + +{{ + balancer_protocol_fee_macro( + blockchain = blockchain, + version = '2' + ) +}} diff --git a/models/balancer/arbitrum/balancer_v2_arbitrum_trades.sql b/models/balancer/arbitrum/balancer_v2_arbitrum_trades.sql index 32aacf5e428..c490247280f 100644 --- a/models/balancer/arbitrum/balancer_v2_arbitrum_trades.sql +++ b/models/balancer/arbitrum/balancer_v2_arbitrum_trades.sql @@ -1,6 +1,5 @@ {{ config( schema = 'balancer_v2_arbitrum', - alias = 'trades', partition_by = ['block_month'], materialized = 'incremental', diff --git a/models/balancer/avalanche_c/balancer_avalanche_c_schema.yml b/models/balancer/avalanche_c/balancer_avalanche_c_schema.yml index cd32aa51c2f..12aac8023e5 100644 --- a/models/balancer/avalanche_c/balancer_avalanche_c_schema.yml +++ b/models/balancer/avalanche_c/balancer_avalanche_c_schema.yml @@ -348,6 +348,41 @@ models: - name: contract_address - name: block_month + - name: balancer_v2_avalanche_c_protocol_fee + meta: + blockchain: avalanche_c + project: balancer_v2 + contributors: viniabussafi + config: + tags: ['avalanche_c', 'revenue', 'fees'] + description: > + Daily Protocol Fee collected and Revenue by pool on Balancer, an automated portfolio manager and trading platform. + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - day + - pool_id + - token_address + columns: + - name: day + - name: pool_id + - name: pool_address + - name: pool_symbol + - name: version + - name: blockchain + - name: token_address + - name: token_symbol + - name: token_amount_raw + description: "Raw amount of revenues of the token in the pool" + - name: token_amount + description: "Amount of revenues of the token in the pool" + - name: protocol_fee_collected_usd + description: "Fee collected in the pool in USD" + - name: treasury_share + description: "Share of total revenue that is directed to Balancer DAO's treasury, as per BIPs 19, 161 and 371" + - name: treasury_revenue_usd + description: "Total revenue directed to Balancer DAO's treasury" + - name: balancer_v2_avalanche_c_bpt_supply meta: blockchain: avalanche_c @@ -374,6 +409,4 @@ models: - &lp_virtual_supply name: lp_virtual_supply description: "The scaled supply of a BPT token." - - *pool_id - - + - *pool_id \ No newline at end of file diff --git a/models/balancer/avalanche_c/balancer_avalanche_c_sources.yml b/models/balancer/avalanche_c/balancer_avalanche_c_sources.yml index 46d9b9e87b5..93285acf76a 100644 --- a/models/balancer/avalanche_c/balancer_avalanche_c_sources.yml +++ b/models/balancer/avalanche_c/balancer_avalanche_c_sources.yml @@ -31,32 +31,6 @@ sources: - name: specialization description: 'Pool specialization' - - name: Vault_evt_Swap - description: > - Decoded table related to the contracts emitted by swaps in Balancer V2 pools. - loaded_at_field: evt_block_time - columns: - - name: contract_address - description: 'Balancer Vault contract address' - - name: evt_tx_hash - description: 'Transaction hash of the event' - - name: evt_index - description: 'Event index' - - name: evt_block_time - description: 'Timestamp for block event time in UTC' - - name: evt_block_number - description: 'Event block number' - - name: poolId - description: 'Balancer pool contract address' - - name: tokenIn - description: 'Contract address of the token provided to the pool' - - name: tokenOut - description: 'Contract address of the token bought from the pool' - - name: amountIn - description: 'Raw amount of the token provided to the pool' - - name: amountOut - description: 'Raw amount of the token bought from the pool' - - name: WeightedPoolFactory_call_create description: > Decoded table of registered pools on the Balancer WeightedPoolFactory contract. diff --git a/models/balancer/avalanche_c/balancer_avalanche_c_trades.sql b/models/balancer/avalanche_c/balancer_avalanche_c_trades.sql index 265b2338a5a..d377d2990c6 100644 --- a/models/balancer/avalanche_c/balancer_avalanche_c_trades.sql +++ b/models/balancer/avalanche_c/balancer_avalanche_c_trades.sql @@ -1,11 +1,6 @@ {{ config( - schema = 'balancer_avalanche_c', - alias = 'trades', - post_hook='{{ expose_spells(\'["avalanche_c"]\', - "project", - "balancer", - \'["bizzyvinci", "thetroyharris"]\') }}' + alias = 'trades' ) }} diff --git a/models/balancer/avalanche_c/balancer_v2_avalanche_c_protocol_fee.sql b/models/balancer/avalanche_c/balancer_v2_avalanche_c_protocol_fee.sql new file mode 100644 index 00000000000..08b247378fb --- /dev/null +++ b/models/balancer/avalanche_c/balancer_v2_avalanche_c_protocol_fee.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'avalanche_c' %} + +{{ + config( + schema='balancer_v2_' + blockchain, + alias = 'protocol_fee', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['day', 'pool_id', 'token_address'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.day')] + ) +}} + +{{ + balancer_protocol_fee_macro( + blockchain = blockchain, + version = '2' + ) +}} \ No newline at end of file diff --git a/models/balancer/avalanche_c/balancer_v2_avalanche_c_trades.sql b/models/balancer/avalanche_c/balancer_v2_avalanche_c_trades.sql index 883316c4418..3217ca1b215 100644 --- a/models/balancer/avalanche_c/balancer_v2_avalanche_c_trades.sql +++ b/models/balancer/avalanche_c/balancer_v2_avalanche_c_trades.sql @@ -1,6 +1,5 @@ {{ config( schema = 'balancer_v2_avalanche_c', - alias = 'trades', partition_by = ['block_month'], materialized = 'incremental', diff --git a/models/balancer/balancer_protocol_fee.sql b/models/balancer/balancer_protocol_fee.sql new file mode 100644 index 00000000000..b8d968e7f79 --- /dev/null +++ b/models/balancer/balancer_protocol_fee.sql @@ -0,0 +1,44 @@ +{{ config( + schema = 'balancer', + alias = 'protocol_fee', + post_hook='{{ expose_spells(\'["ethereum", "arbitrum", "polygon", "gnosis", "optimism","avalanche_c", "base"]\', + "project", + "balancer", + \'["viniabussafi"]\') }}' + ) +}} + +{% set balancer_v2_models = [ + ref('balancer_v2_arbitrum_protocol_fee'), + ref('balancer_v2_avalanche_c_protocol_fee'), + ref('balancer_v2_base_protocol_fee'), + ref('balancer_v2_ethereum_protocol_fee'), + ref('balancer_v2_gnosis_protocol_fee'), + ref('balancer_v2_optimism_protocol_fee'), + ref('balancer_v2_polygon_protocol_fee'), +] %} + +SELECT * +FROM ( + {% for protocol_fee in balancer_v2_models %} + SELECT + day, + pool_id, + pool_address, + pool_symbol, + '2' AS version, + blockchain, + token_address, + token_symbol, + token_amount_raw, + token_amount, + protocol_fee_collected_usd, + treasury_share, + treasury_revenue_usd + FROM {{ protocol_fee }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) +; diff --git a/models/balancer/balancer_schema.yml b/models/balancer/balancer_schema.yml index cc031c200df..72df3686e0e 100644 --- a/models/balancer/balancer_schema.yml +++ b/models/balancer/balancer_schema.yml @@ -273,6 +273,41 @@ models: - name: block_number - name: swap_fee_percentage + - name: balancer_protocol_fee + meta: + blockchain: arbitrum, avalanche_c, base, ethereum, gnosis, optimism, polygon + project: balancer + contributors: viniabussafi + config: + tags: ['arbitrum', 'avalanche_c', 'base', 'ethereum', 'gnosis', 'optimism', 'polygon', 'revenue', 'fees'] + description: > + Daily Protocol Fee collected and Revenue by pool on Balancer, an automated portfolio manager and trading platform. + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - day + - pool_id + - token_address + columns: + - name: day + - *pool_id + - name: pool_address + - name: pool_symbol + - *version + - *blockchain + - name: token_address + - name: token_symbol + - name: token_amount_raw + description: "Raw amount of revenues of the token in the pool" + - name: token_amount + description: "Amount of revenues of the token in the pool" + - name: protocol_fee_collected_usd + description: "Fee collected in the pool in USD" + - name: treasury_share + description: "Share of total revenue that is directed to Balancer DAO's treasury, as per BIPs 19, 161 and 371" + - name: treasury_revenue_usd + description: "Total revenue directed to Balancer DAO's treasury" + - name: balancer_bpt_supply meta: blockchain: arbitrum, avalanche_c, base, ethereum, gnosis, optimism, polygon @@ -294,4 +329,4 @@ models: - name: block_number - name: lp_virtual_supply_raw - name: lp_virtual_supply - - name: pool_id + - name: pool_id \ No newline at end of file diff --git a/models/balancer/base/balancer_base_schema.yml b/models/balancer/base/balancer_base_schema.yml index 5276ca427ee..cdc4d782fe6 100644 --- a/models/balancer/base/balancer_base_schema.yml +++ b/models/balancer/base/balancer_base_schema.yml @@ -350,6 +350,41 @@ models: - name: contract_address - name: block_month + - name: balancer_v2_base_protocol_fee + meta: + blockchain: base + project: balancer_v2 + contributors: viniabussafi + config: + tags: ['base', 'revenue', 'fees'] + description: > + Daily Protocol Fee collected and Revenue by pool on Balancer, an automated portfolio manager and trading platform. + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - day + - pool_id + - token_address + columns: + - name: day + - name: pool_id + - name: pool_address + - name: pool_symbol + - name: version + - name: blockchain + - name: token_address + - name: token_symbol + - name: token_amount_raw + description: "Raw amount of revenues of the token in the pool" + - name: token_amount + description: "Amount of revenues of the token in the pool" + - name: protocol_fee_collected_usd + description: "Fee collected in the pool in USD" + - name: treasury_share + description: "Share of total revenue that is directed to Balancer DAO's treasury, as per BIPs 19, 161 and 371" + - name: treasury_revenue_usd + description: "Total revenue directed to Balancer DAO's treasury" + - name: balancer_v2_base_bpt_supply meta: blockchain: base @@ -376,6 +411,4 @@ models: - &lp_virtual_supply name: lp_virtual_supply description: "The scaled supply of a BPT token." - - *pool_id - - + - *pool_id \ No newline at end of file diff --git a/models/balancer/base/balancer_base_sources.yml b/models/balancer/base/balancer_base_sources.yml index ceb11f7c8dd..7b20b9465b6 100644 --- a/models/balancer/base/balancer_base_sources.yml +++ b/models/balancer/base/balancer_base_sources.yml @@ -31,32 +31,6 @@ sources: - name: specialization description: 'Pool specialization' - - name: Vault_evt_Swap - description: > - Decoded table related to the contracts emitted by swaps in Balancer V2 pools. - loaded_at_field: evt_block_time - columns: - - name: contract_address - description: 'Balancer Vault contract address' - - name: evt_tx_hash - description: 'Transaction hash of the event' - - name: evt_index - description: 'Event index' - - name: evt_block_time - description: 'Timestamp for block event time in UTC' - - name: evt_block_number - description: 'Event block number' - - name: poolId - description: 'Balancer pool contract address' - - name: tokenIn - description: 'Contract address of the token provided to the pool' - - name: tokenOut - description: 'Contract address of the token bought from the pool' - - name: amountIn - description: 'Raw amount of the token provided to the pool' - - name: amountOut - description: 'Raw amount of the token bought from the pool' - - name: WeightedPoolFactory_call_create description: > Decoded table of registered pools on the Balancer WeightedPoolFactory contract. diff --git a/models/balancer/base/balancer_base_trades.sql b/models/balancer/base/balancer_base_trades.sql index 93aece65d5f..b3c59c57102 100644 --- a/models/balancer/base/balancer_base_trades.sql +++ b/models/balancer/base/balancer_base_trades.sql @@ -1,11 +1,6 @@ {{ config( - schema = 'balancer_base', - alias = 'trades', - post_hook='{{ expose_spells(\'["base"]\', - "project", - "balancer", - \'["bizzyvinci", "thetroyharris"]\') }}' + alias = 'trades' ) }} diff --git a/models/balancer/base/balancer_v2_base_protocol_fee.sql b/models/balancer/base/balancer_v2_base_protocol_fee.sql new file mode 100644 index 00000000000..42bd40bea0e --- /dev/null +++ b/models/balancer/base/balancer_v2_base_protocol_fee.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'base' %} + +{{ + config( + schema='balancer_v2_' + blockchain, + alias = 'protocol_fee', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['day', 'pool_id', 'token_address'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.day')] + ) +}} + +{{ + balancer_protocol_fee_macro( + blockchain = blockchain, + version = '2' + ) +}} diff --git a/models/balancer/base/balancer_v2_base_trades.sql b/models/balancer/base/balancer_v2_base_trades.sql index e0dae95f514..32dede8d669 100644 --- a/models/balancer/base/balancer_v2_base_trades.sql +++ b/models/balancer/base/balancer_v2_base_trades.sql @@ -1,6 +1,5 @@ {{ config( schema = 'balancer_v2_base', - alias = 'trades', partition_by = ['block_month'], materialized = 'incremental', diff --git a/models/balancer/ethereum/balancer_ethereum_schema.yml b/models/balancer/ethereum/balancer_ethereum_schema.yml index 889af06547d..38d9d4e89b4 100644 --- a/models/balancer/ethereum/balancer_ethereum_schema.yml +++ b/models/balancer/ethereum/balancer_ethereum_schema.yml @@ -604,6 +604,41 @@ models: name: median_price description: "BPT median price" + - name: balancer_v2_ethereum_protocol_fee + meta: + blockchain: ethereum + project: balancer_v2 + contributors: viniabussafi + config: + tags: ['ethereum', 'revenue', 'fees'] + description: > + Daily Protocol Fee collected and Revenue by pool on Balancer, an automated portfolio manager and trading platform. + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - day + - pool_id + - token_address + columns: + - name: day + - name: pool_id + - name: pool_address + - name: pool_symbol + - name: version + - name: blockchain + - name: token_address + - name: token_symbol + - name: token_amount_raw + description: "Raw amount of revenues of the token in the pool" + - name: token_amount + description: "Amount of revenues of the token in the pool" + - name: protocol_fee_collected_usd + description: "Fee collected in the pool in USD" + - name: treasury_share + description: "Share of total revenue that is directed to Balancer DAO's treasury, as per BIPs 19, 161 and 371" + - name: treasury_revenue_usd + description: "Total revenue directed to Balancer DAO's treasury" + - name: balancer_v2_ethereum_bpt_supply meta: blockchain: ethereum @@ -628,6 +663,4 @@ models: - &lp_virtual_supply name: lp_virtual_supply description: "The scaled supply of a BPT token." - - *pool_id - - + - *pool_id \ No newline at end of file diff --git a/models/balancer/ethereum/balancer_ethereum_sources.yml b/models/balancer/ethereum/balancer_ethereum_sources.yml index 4616089c0f3..3304a1fe1a6 100644 --- a/models/balancer/ethereum/balancer_ethereum_sources.yml +++ b/models/balancer/ethereum/balancer_ethereum_sources.yml @@ -31,32 +31,6 @@ sources: - name: specialization description: 'Pool specialization' - - name: Vault_evt_Swap - description: > - Decoded table related to the contracts emitted by swaps in Balancer V2 pools. - loaded_at_field: evt_block_time - columns: - - name: contract_address - description: 'Balancer Vault contract address' - - name: evt_tx_hash - description: 'Transaction hash of the event' - - name: evt_index - description: 'Event index' - - name: evt_block_time - description: 'Timestamp for block event time in UTC' - - name: evt_block_number - description: 'Event block number' - - name: poolId - description: 'Balancer pool contract address' - - name: tokenIn - description: 'Contract address of the token provided to the pool' - - name: tokenOut - description: 'Contract address of the token bought from the pool' - - name: amountIn - description: 'Raw amount of the token provided to the pool' - - name: amountOut - description: 'Raw amount of the token bought from the pool' - - name: WeightedPoolFactory_call_create description: > Decoded table of registered pools on the Balancer WeightedPoolFactory contract. @@ -281,26 +255,6 @@ sources: - name: pool description: 'Balancer pool contract address' - - name: BPool_evt_LOG_SWAP - description: > - Decoded table of balancer v1 swaps - loaded_at_field: evt_block_time - columns: - - name: contract_address - description: 'Pool address' - - *evt_tx_hash - - *evt_index - - *evt_block_time - - *evt_block_number - - name: tokenIn - description: 'Contract address of token that went inside the pool' - - name: tokenOut - description: 'Contract address of token that went out of the pool' - - name: tokenAmountIn - description: 'Raw amount of token that went inside the pool' - - name: tokenAmountOut - description: 'Raw amount of token that went out of the pool' - - name: BPool_call_bind description: > Decoded table related to the Balancer BPool contract. @@ -352,21 +306,6 @@ sources: - name: contract_address description: '' - *token - - - name: BPool_call_setSwapFee - description: > - Decoded table related to the Balancer BPool contract. - loaded_at_field: call_block_time - columns: - - *call_tx_hash - - name: contract_address - description: '' - - name: swapFee - description: '' - - *call_block_number - - *call_block_time - - *call_success - - *call_trace_address - name: balancer_ethereum description: > diff --git a/models/balancer/ethereum/balancer_ethereum_trades.sql b/models/balancer/ethereum/balancer_ethereum_trades.sql index 0acd1770f03..577c3a45932 100644 --- a/models/balancer/ethereum/balancer_ethereum_trades.sql +++ b/models/balancer/ethereum/balancer_ethereum_trades.sql @@ -1,10 +1,6 @@ {{ config( - - alias = 'trades', - post_hook='{{ expose_spells(\'["ethereum"]\', - "project", - "balancer", - \'["bizzyvinci", "thetroyharris"]\') }}' + schema = 'balancer_ethereum', + alias = 'trades' ) }} diff --git a/models/balancer/ethereum/balancer_v1_ethereum_liquidity.sql b/models/balancer/ethereum/balancer_v1_ethereum_liquidity.sql index c072132f43a..cfae994b945 100644 --- a/models/balancer/ethereum/balancer_v1_ethereum_liquidity.sql +++ b/models/balancer/ethereum/balancer_v1_ethereum_liquidity.sql @@ -35,34 +35,6 @@ prices AS ( GROUP BY 1, 2, 3 ), - dex_prices_1 AS ( - SELECT - date_trunc('day', hour) AS day, - contract_address AS token, - approx_percentile(median_price, 0.5) AS price, - SUM(sample_size) AS sample_size - FROM {{ ref('dex_prices') }} - WHERE blockchain = 'ethereum' - {% if is_incremental() %} - AND hour >= date_trunc('day', now() - interval '7' day) - {% endif %} - GROUP BY 1, 2 - HAVING SUM(sample_size) > 5 - AND AVG(median_price) < 1e8 - ), - - dex_prices AS ( - SELECT - *, - LEAD(day, 1, NOW()) OVER ( - PARTITION BY token - ORDER BY - day - ) AS day_of_next_change - FROM dex_prices_1 - ), - - cumulative_balance AS ( SELECT day, @@ -83,14 +55,11 @@ prices AS ( t.symbol, cumulative_amount as token_balance_raw, cumulative_amount / POWER(10, COALESCE(t.decimals, p1.decimals)) AS token_balance, - cumulative_amount / POWER(10, COALESCE(t.decimals, p1.decimals)) * COALESCE(p1.price, p2.price, 0) AS protocol_liquidity_usd + cumulative_amount / POWER(10, COALESCE(t.decimals, p1.decimals)) * COALESCE(p1.price, 0) AS protocol_liquidity_usd FROM cumulative_balance b LEFT JOIN {{ ref('tokens_ethereum_erc20') }} t ON t.contract_address = b.token LEFT JOIN prices p1 ON p1.day = b.day AND p1.token = b.token - LEFT JOIN dex_prices p2 ON p2.day <= b.day - AND b.day < p2.day_of_next_change - AND p2.token = b.token ), pool_liquidity_estimates AS ( diff --git a/models/balancer/ethereum/balancer_v1_ethereum_trades.sql b/models/balancer/ethereum/balancer_v1_ethereum_trades.sql index eac1fb9758d..8e2e1d3820e 100644 --- a/models/balancer/ethereum/balancer_v1_ethereum_trades.sql +++ b/models/balancer/ethereum/balancer_v1_ethereum_trades.sql @@ -1,6 +1,5 @@ {{ config( schema = 'balancer_v1_ethereum', - alias = 'trades', partition_by = ['block_month'], materialized = 'incremental', @@ -122,4 +121,4 @@ LEFT JOIN prices p_bought AND p_bought.contract_address = trades.token_bought_address LEFT JOIN prices p_sold ON p_sold.minute = date_trunc('minute', trades.evt_block_time) - AND p_sold.contract_address = trades.token_sold_address \ No newline at end of file + AND p_sold.contract_address = trades.token_sold_address diff --git a/models/balancer/ethereum/balancer_v2_ethereum_protocol_fee.sql b/models/balancer/ethereum/balancer_v2_ethereum_protocol_fee.sql new file mode 100644 index 00000000000..fdc480f73b5 --- /dev/null +++ b/models/balancer/ethereum/balancer_v2_ethereum_protocol_fee.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'ethereum' %} + +{{ + config( + schema='balancer_v2_' + blockchain, + alias = 'protocol_fee', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['day', 'pool_id', 'token_address'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.day')] + ) +}} + +{{ + balancer_protocol_fee_macro( + blockchain = blockchain, + version = '2' + ) +}} diff --git a/models/balancer/ethereum/balancer_v2_ethereum_trades.sql b/models/balancer/ethereum/balancer_v2_ethereum_trades.sql index e730852fa06..9aa4f3f62cf 100644 --- a/models/balancer/ethereum/balancer_v2_ethereum_trades.sql +++ b/models/balancer/ethereum/balancer_v2_ethereum_trades.sql @@ -1,6 +1,5 @@ {{ config( schema = 'balancer_v2_ethereum', - alias = 'trades', partition_by = ['block_month'], materialized = 'incremental', diff --git a/models/balancer/gnosis/balancer_gnosis_schema.yml b/models/balancer/gnosis/balancer_gnosis_schema.yml index 9586093c22d..9db677bf80a 100644 --- a/models/balancer/gnosis/balancer_gnosis_schema.yml +++ b/models/balancer/gnosis/balancer_gnosis_schema.yml @@ -351,6 +351,41 @@ models: name: value description: 'Amount of BPT transferred in transfer event' + - name: balancer_v2_gnosis_protocol_fee + meta: + blockchain: gnosis + project: balancer_v2 + contributors: viniabussafi + config: + tags: ['gnosis', 'revenue', 'fees'] + description: > + Daily Protocol Fee collected and Revenue by pool on Balancer, an automated portfolio manager and trading platform. + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - day + - pool_id + - token_address + columns: + - name: day + - name: pool_id + - name: pool_address + - name: pool_symbol + - name: version + - name: blockchain + - name: token_address + - name: token_symbol + - name: token_amount_raw + description: "Raw amount of revenues of the token in the pool" + - name: token_amount + description: "Amount of revenues of the token in the pool" + - name: protocol_fee_collected_usd + description: "Fee collected in the pool in USD" + - name: treasury_share + description: "Share of total revenue that is directed to Balancer DAO's treasury, as per BIPs 19, 161 and 371" + - name: treasury_revenue + description: "Total revenue directed to Balancer DAO's treasury" + - name: balancer_v2_gnosis_bpt_supply meta: blockchain: gnosis @@ -377,6 +412,4 @@ models: - &lp_virtual_supply name: lp_virtual_supply description: "The scaled supply of a BPT token." - - *pool_id - - + - *pool_id \ No newline at end of file diff --git a/models/balancer/gnosis/balancer_gnosis_sources.yml b/models/balancer/gnosis/balancer_gnosis_sources.yml index 754cbce55eb..dc5be6de73d 100644 --- a/models/balancer/gnosis/balancer_gnosis_sources.yml +++ b/models/balancer/gnosis/balancer_gnosis_sources.yml @@ -31,32 +31,6 @@ sources: - name: specialization description: 'Pool specialization' - - name: Vault_evt_Swap - description: > - Decoded table related to the contracts emitted by swaps in Balancer V2 pools. - loaded_at_field: evt_block_time - columns: - - name: contract_address - description: 'Balancer Vault contract address' - - name: evt_tx_hash - description: 'Transaction hash of the event' - - name: evt_index - description: 'Event index' - - name: evt_block_time - description: 'Timestamp for block event time in UTC' - - name: evt_block_number - description: 'Event block number' - - name: poolId - description: 'Balancer pool contract address' - - name: tokenIn - description: 'Contract address of the token provided to the pool' - - name: tokenOut - description: 'Contract address of the token bought from the pool' - - name: amountIn - description: 'Raw amount of the token provided to the pool' - - name: amountOut - description: 'Raw amount of the token bought from the pool' - - name: WeightedPoolFactory_call_create description: > Decoded table of registered pools on the Balancer WeightedPoolFactory contract. diff --git a/models/balancer/gnosis/balancer_gnosis_trades.sql b/models/balancer/gnosis/balancer_gnosis_trades.sql index 3095c4cfc9d..2c32d515dfd 100644 --- a/models/balancer/gnosis/balancer_gnosis_trades.sql +++ b/models/balancer/gnosis/balancer_gnosis_trades.sql @@ -1,10 +1,6 @@ {{ config( - - alias = 'trades', - post_hook = '{{ expose_spells(\'["gnosis"]\', - "project", - "balancer", - \'["bizzyvinci", "thetroyharris"]\') }}' + schema = 'balancer_gnosis', + alias = 'trades' ) }} diff --git a/models/balancer/gnosis/balancer_v2_gnosis_protocol_fee.sql b/models/balancer/gnosis/balancer_v2_gnosis_protocol_fee.sql new file mode 100644 index 00000000000..dabe80e88b4 --- /dev/null +++ b/models/balancer/gnosis/balancer_v2_gnosis_protocol_fee.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'gnosis' %} + +{{ + config( + schema='balancer_v2_' + blockchain, + alias = 'protocol_fee', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['day', 'pool_id', 'token_address'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.day')] + ) +}} + +{{ + balancer_protocol_fee_macro( + blockchain = blockchain, + version = '2' + ) +}} diff --git a/models/balancer/gnosis/balancer_v2_gnosis_trades.sql b/models/balancer/gnosis/balancer_v2_gnosis_trades.sql index 98b2b9637b0..b30eb01df10 100644 --- a/models/balancer/gnosis/balancer_v2_gnosis_trades.sql +++ b/models/balancer/gnosis/balancer_v2_gnosis_trades.sql @@ -1,6 +1,5 @@ {{ config( schema = 'balancer_v2_gnosis', - alias = 'trades', partition_by = ['block_month'], materialized = 'incremental', diff --git a/models/balancer/optimism/balancer_optimism_schema.yml b/models/balancer/optimism/balancer_optimism_schema.yml index eb867e51841..30ad1dca450 100644 --- a/models/balancer/optimism/balancer_optimism_schema.yml +++ b/models/balancer/optimism/balancer_optimism_schema.yml @@ -406,6 +406,41 @@ models: - name: tx_to - name: evt_index + - name: balancer_v2_optimism_protocol_fee + meta: + blockchain: optimism + project: balancer_v2 + contributors: viniabussafi + config: + tags: ['optimism', 'revenue', 'fees'] + description: > + Daily Protocol Fee collected and Revenue by pool on Balancer, an automated portfolio manager and trading platform. + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - day + - pool_id + - token_address + columns: + - name: day + - name: pool_id + - name: pool_address + - name: pool_symbol + - name: version + - name: blockchain + - name: token_address + - name: token_symbol + - name: token_amount_raw + description: "Raw amount of revenues of the token in the pool" + - name: token_amount + description: "Amount of revenues of the token in the pool" + - name: protocol_fee_collected_usd + description: "Fee collected in the pool in USD" + - name: treasury_share + description: "Share of total revenue that is directed to Balancer DAO's treasury, as per BIPs 19, 161 and 371" + - name: treasury_revenue_usd + description: "Total revenue directed to Balancer DAO's treasury" + - name: balancer_v2_optimism_bpt_supply meta: blockchain: optimism @@ -430,6 +465,4 @@ models: - &lp_virtual_supply name: lp_virtual_supply description: "The scaled supply of a BPT token." - - *pool_id - - + - *pool_id \ No newline at end of file diff --git a/models/balancer/optimism/balancer_optimism_sources.yml b/models/balancer/optimism/balancer_optimism_sources.yml index 4358e7e0188..335a38ee81b 100644 --- a/models/balancer/optimism/balancer_optimism_sources.yml +++ b/models/balancer/optimism/balancer_optimism_sources.yml @@ -31,32 +31,6 @@ sources: - name: specialization description: 'Pool specialization' - - name: Vault_evt_Swap - description: > - Decoded table related to the the contracts emitted by swaps in Balancer V2 pools. - loaded_at_field: evt_block_time - columns: - - name: contract_address - description: 'Balancer Vault contract address' - - name: evt_tx_hash - description: 'Transaction hash of the event' - - name: evt_index - description: 'Event index' - - name: evt_block_time - description: 'Timestamp for block event time in UTC' - - name: evt_block_number - description: 'Event block number' - - name: poolId - description: 'Balancer pool contract address' - - name: tokenIn - description: 'Contract address of the token provided to the pool' - - name: tokenOut - description: 'Contract address of the token bought from the pool' - - name: amountIn - description: 'Raw amount of the token provided to the pool' - - name: amountOut - description: 'Raw amount of the token bought from the pool' - - name: WeightedPoolFactory_call_create description: > Decoded table of registered pools on the Balancer WeightedPoolFactory contract. diff --git a/models/balancer/optimism/balancer_optimism_trades.sql b/models/balancer/optimism/balancer_optimism_trades.sql index 8c2ddb4540f..4f3fc466dce 100644 --- a/models/balancer/optimism/balancer_optimism_trades.sql +++ b/models/balancer/optimism/balancer_optimism_trades.sql @@ -1,10 +1,6 @@ {{ config( - - alias = 'trades', - post_hook = '{{ expose_spells(\'["optimism"]\', - "project", - "balancer", - \'["bizzyvinci", "thetroyharris"]\') }}' + schema = 'balancer_optimism', + alias = 'trades' ) }} diff --git a/models/balancer/optimism/balancer_v2_optimism_protocol_fee.sql b/models/balancer/optimism/balancer_v2_optimism_protocol_fee.sql new file mode 100644 index 00000000000..4b5f61decc1 --- /dev/null +++ b/models/balancer/optimism/balancer_v2_optimism_protocol_fee.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'optimism' %} + +{{ + config( + schema='balancer_v2_' + blockchain, + alias = 'protocol_fee', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['day', 'pool_id', 'token_address'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.day')] + ) +}} + +{{ + balancer_protocol_fee_macro( + blockchain = blockchain, + version = '2' + ) +}} diff --git a/models/balancer/optimism/balancer_v2_optimism_trades.sql b/models/balancer/optimism/balancer_v2_optimism_trades.sql index f9482e21aa9..bdb7307f051 100644 --- a/models/balancer/optimism/balancer_v2_optimism_trades.sql +++ b/models/balancer/optimism/balancer_v2_optimism_trades.sql @@ -1,6 +1,5 @@ {{ config( schema = 'balancer_v2_optimism', - alias = 'trades', partition_by = ['block_month'], materialized = 'incremental', diff --git a/models/balancer/polygon/balancer_polygon_schema.yml b/models/balancer/polygon/balancer_polygon_schema.yml index a2ef79664da..ec5d4f6892d 100644 --- a/models/balancer/polygon/balancer_polygon_schema.yml +++ b/models/balancer/polygon/balancer_polygon_schema.yml @@ -396,6 +396,42 @@ models: - name: tx_to - name: evt_index + + - name: balancer_v2_polygon_protocol_fee + meta: + blockchain: polygon + project: balancer_v2 + contributors: viniabussafi + config: + tags: ['polygon', 'revenue', 'fees'] + description: > + Daily Protocol Fee collected and Revenue by pool on Balancer, an automated portfolio manager and trading platform. + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - day + - pool_id + - token_address + columns: + - name: day + - name: pool_id + - name: pool_address + - name: pool_symbol + - name: version + - name: blockchain + - name: token_address + - name: token_symbol + - name: token_amount_raw + description: "Raw amount of revenues of the token in the pool" + - name: token_amount + description: "Amount of revenues of the token in the pool" + - name: protocol_fee_collected_usd + description: "Fee collected in the pool in USD" + - name: treasury_share + description: "Share of total revenue that is directed to Balancer DAO's treasury, as per BIPs 19, 161 and 371" + - name: treasury_revenue_usd + description: "Total revenue directed to Balancer DAO's treasury" + - name: balancer_v2_polygon_bpt_supply meta: blockchain: polygon @@ -420,6 +456,4 @@ models: - &lp_virtual_supply name: lp_virtual_supply description: "The scaled supply of a BPT token." - - *pool_id - - + - *pool_id \ No newline at end of file diff --git a/models/balancer/polygon/balancer_polygon_sources.yml b/models/balancer/polygon/balancer_polygon_sources.yml index f4ad78f5d62..45b432475c3 100644 --- a/models/balancer/polygon/balancer_polygon_sources.yml +++ b/models/balancer/polygon/balancer_polygon_sources.yml @@ -31,32 +31,6 @@ sources: - name: specialization description: 'Pool specialization' - - name: Vault_evt_Swap - description: > - Decoded table related to the the contracts emitted by swaps in Balancer V2 pools. - loaded_at_field: evt_block_time - columns: - - name: contract_address - description: 'Balancer Vault contract address' - - name: evt_tx_hash - description: 'Transaction hash of the event' - - name: evt_index - description: 'Event index' - - name: evt_block_time - description: 'Timestamp for block event time in UTC' - - name: evt_block_number - description: 'Event block number' - - name: poolId - description: 'Balancer pool contract address' - - name: tokenIn - description: 'Contract address of the token provided to the pool' - - name: tokenOut - description: 'Contract address of the token bought from the pool' - - name: amountIn - description: 'Raw amount of the token provided to the pool' - - name: amountOut - description: 'Raw amount of the token bought from the pool' - - name: WeightedPoolFactory_call_create description: > Decoded table of registered pools on the Balancer WeightedPoolFactory contract. diff --git a/models/balancer/polygon/balancer_polygon_trades.sql b/models/balancer/polygon/balancer_polygon_trades.sql index a8161513e20..163d655487a 100644 --- a/models/balancer/polygon/balancer_polygon_trades.sql +++ b/models/balancer/polygon/balancer_polygon_trades.sql @@ -1,10 +1,6 @@ {{ config( - - alias = 'trades', - post_hook='{{ expose_spells(\'["polygon"]\', - "project", - "balancer", - \'["bizzyvinci", "thetroyharris"]\') }}' + schema = 'balancer_polygon', + alias = 'trades' ) }} diff --git a/models/balancer/polygon/balancer_v2_polygon_protocol_fee.sql b/models/balancer/polygon/balancer_v2_polygon_protocol_fee.sql new file mode 100644 index 00000000000..dbd1c6b5fb2 --- /dev/null +++ b/models/balancer/polygon/balancer_v2_polygon_protocol_fee.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'polygon' %} + +{{ + config( + schema='balancer_v2_' + blockchain, + alias = 'protocol_fee', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['day', 'pool_id', 'token_address'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.day')] + ) +}} + +{{ + balancer_protocol_fee_macro( + blockchain = blockchain, + version = '2' + ) +}} diff --git a/models/balancer/polygon/balancer_v2_polygon_trades.sql b/models/balancer/polygon/balancer_v2_polygon_trades.sql index 378b6412b45..534f71db424 100644 --- a/models/balancer/polygon/balancer_v2_polygon_trades.sql +++ b/models/balancer/polygon/balancer_v2_polygon_trades.sql @@ -1,6 +1,5 @@ {{ config( schema = 'balancer_v2_polygon', - alias = 'trades', partition_by = ['block_month'], materialized = 'incremental', diff --git a/models/bancor/ethereum/bancor_ethereum_sources.yml b/models/bancor/ethereum/bancor_ethereum_sources.yml deleted file mode 100644 index 1a2958d06ef..00000000000 --- a/models/bancor/ethereum/bancor_ethereum_sources.yml +++ /dev/null @@ -1,137 +0,0 @@ -version: 2 - -sources: - - name: bancornetwork_ethereum - description: "Ethereum decoded tables related to Bancor Network contract" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: BancorNetwork_v6_evt_Conversion - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &contract_address - name: contract_address - description: "Ethereum address for BancorNetwork v6 contract" - - &_trader - name: _trader - description: "Buyer Ethereum wallet address" - - &_fromAmount - name: _fromAmount - description: "Raw amount of tokens sold during transaction with the contract" - - &_toAmount - name: _toAmount - description: "Raw amount of tokens bought during transaction with the contract" - - &_fromToken - name: _fromToken - description: "Ethereum address of tokens sold during transaction with the contract" - - &_toToken - name: _toToken - description: "Ethereum address of tokens bought during transaction with the contract" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null - - name: BancorNetwork_v7_evt_Conversion - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - name: contract_address - description: "Ethereum address for BancorNetwork v7 contract" - - *_trader - - *_fromAmount - - *_toAmount - - *_fromToken - - *_toToken - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - name: BancorNetwork_v8_evt_Conversion - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - name: contract_address - description: "Ethereum address for BancorNetwork v8 contract" - - *_trader - - *_fromAmount - - *_toAmount - - *_fromToken - - *_toToken - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - name: BancorNetwork_v9_evt_Conversion - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - name: contract_address - description: "Ethereum address for BancorNetwork v9 contract" - - *_trader - - *_fromAmount - - *_toAmount - - *_fromToken - - *_toToken - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - name: BancorNetwork_v10_evt_Conversion - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - name: contract_address - description: "Ethereum address for BancorNetwork v10 contract" - - *_trader - - *_fromAmount - - *_toAmount - - *_fromToken - - *_toToken - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - name: bancor3_ethereum - description: "Ethereum decoded tables related to Bancor Network contract" - tables: - - name: BancorNetwork_evt_TokensTraded - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - name: contract_address - description: "Ethereum address for BancorNetwork v3 contract" - - &trader - name: trader - description: "Buyer Ethereum wallet address" - - &sourceAmount - name: sourceAmount - description: "Raw amount of tokens sold during transaction with the contract" - - &targetAmount - name: targetAmount - description: "Raw amount of tokens bought during transaction with the contract" - - &sourceToken - name: sourceToken - description: "Ethereum address of tokens sold during transaction with the contract" - - &targetToken - name: targetToken - description: "Ethereum address of tokens bought during transaction with the contract" - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash diff --git a/models/bebop/arbitrum/bebop_arbitrum_trades.sql b/models/bebop/arbitrum/bebop_arbitrum_trades.sql index 3dede700683..bac647eb0f2 100644 --- a/models/bebop/arbitrum/bebop_arbitrum_trades.sql +++ b/models/bebop/arbitrum/bebop_arbitrum_trades.sql @@ -34,23 +34,30 @@ bebop_raw_data AS ( json_array_length(json_extract((JSON_EXTRACT(ex."order", '$.taker_tokens')), '$[0]')) as taker_length, json_array_length(json_extract((JSON_EXTRACT(ex."order", '$.maker_tokens')), '$[0]')) as maker_length FROM - (SELECT * FROM {{ source('bebop_v3_arbitrum', 'BebopAggregationContract_evt_AggregateOrderExecuted') }} + (SELECT + evt_index, evt_tx_hash, evt_block_time, ROW_NUMBER() OVER (PARTITION BY evt_tx_hash ORDER BY evt_index) AS row_num + FROM {{ source('bebop_v3_arbitrum', 'BebopAggregationContract_evt_AggregateOrderExecuted') }} UNION ALL - SELECT * FROM {{ source('bebop_v4_arbitrum', 'BebopSettlement_evt_AggregateOrderExecuted') }}) evt + SELECT + evt_index, evt_tx_hash, evt_block_time, ROW_NUMBER() OVER (PARTITION BY evt_tx_hash ORDER BY evt_index) AS row_num + FROM {{ source('bebop_v4_arbitrum', 'BebopSettlement_evt_AggregateOrderExecuted') }}) evt LEFT JOIN (SELECT - call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order" + call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order", + ROW_NUMBER() OVER (PARTITION BY call_tx_hash ORDER BY call_block_number) AS row_num FROM {{ source('bebop_v3_arbitrum', 'BebopAggregationContract_call_SettleAggregateOrder') }} UNION ALL SELECT - call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order" + call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order", + ROW_NUMBER() OVER (PARTITION BY call_tx_hash ORDER BY call_block_number) AS row_num FROM {{ source('bebop_v4_arbitrum', 'BebopSettlement_call_SettleAggregateOrder') }} UNION ALL SELECT - call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order" + call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order", + ROW_NUMBER() OVER (PARTITION BY call_tx_hash ORDER BY call_block_number) AS row_num FROM {{ source('bebop_v4_arbitrum', 'BebopSettlement_call_SettleAggregateOrderWithTakerPermits') }} ) ex - ON ex.call_tx_hash = evt.evt_tx_hash + ON ex.call_tx_hash = evt.evt_tx_hash and ex.row_num = evt.row_num WHERE ex.call_success = TRUE {% if is_incremental() %} AND evt.evt_block_time >= date_trunc('day', now() - interval '7' Day) diff --git a/models/bebop/bebop_trades.sql b/models/bebop/bebop_trades.sql index 7ce2b8a8ada..74b0df4d13e 100644 --- a/models/bebop/bebop_trades.sql +++ b/models/bebop/bebop_trades.sql @@ -8,11 +8,10 @@ ) }} ---removed below due to duplicate data ---ref('bebop_ethereum_trades') {% set bebop_models = [ ref('bebop_polygon_trades'), + ref('bebop_ethereum_trades'), ref('bebop_arbitrum_trades') ] %} diff --git a/models/bebop/ethereum/bebop_ethereum_trades.sql b/models/bebop/ethereum/bebop_ethereum_trades.sql index 9542095efd0..f46ace7c9bf 100644 --- a/models/bebop/ethereum/bebop_ethereum_trades.sql +++ b/models/bebop/ethereum/bebop_ethereum_trades.sql @@ -1,12 +1,12 @@ {{ config( - tags = ['prod_exclude'], + alias = 'trades', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'], - post_hook='{{ expose_spells(\'["ethereum"]\', + post_hook='{{ expose_spells(\'["ethereum"]\', "project", "bebop", \'["alekss"]\') }}' @@ -34,23 +34,30 @@ bebop_raw_data AS ( json_array_length(json_extract((JSON_EXTRACT(ex."order", '$.taker_tokens')), '$[0]')) as taker_length, json_array_length(json_extract((JSON_EXTRACT(ex."order", '$.maker_tokens')), '$[0]')) as maker_length FROM - (SELECT * FROM {{ source('bebop_v3_ethereum', 'BebopAggregationContract_evt_AggregateOrderExecuted') }} + (SELECT + evt_index, evt_tx_hash, evt_block_time, ROW_NUMBER() OVER (PARTITION BY evt_tx_hash ORDER BY evt_index) AS row_num + FROM {{ source('bebop_v3_ethereum', 'BebopAggregationContract_evt_AggregateOrderExecuted') }} UNION ALL - SELECT * FROM {{ source('bebop_v4_ethereum', 'BebopSettlement_evt_AggregateOrderExecuted') }}) evt + SELECT + evt_index, evt_tx_hash, evt_block_time, ROW_NUMBER() OVER (PARTITION BY evt_tx_hash ORDER BY evt_index) AS row_num + FROM {{ source('bebop_v4_ethereum', 'BebopSettlement_evt_AggregateOrderExecuted') }}) evt LEFT JOIN (SELECT - call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order" + call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order", + ROW_NUMBER() OVER (PARTITION BY call_tx_hash ORDER BY call_block_number) AS row_num FROM {{ source('bebop_v3_ethereum', 'BebopAggregationContract_call_SettleAggregateOrder') }} UNION ALL SELECT - call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order" + call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order", + ROW_NUMBER() OVER (PARTITION BY call_tx_hash ORDER BY call_block_number) AS row_num FROM {{ source('bebop_v4_ethereum', 'BebopSettlement_call_SettleAggregateOrder') }} UNION ALL SELECT - call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order" + call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order", + ROW_NUMBER() OVER (PARTITION BY call_tx_hash ORDER BY call_block_number) AS row_num FROM {{ source('bebop_v4_ethereum', 'BebopSettlement_call_SettleAggregateOrderWithTakerPermits') }} ) ex - ON ex.call_tx_hash = evt.evt_tx_hash + ON ex.call_tx_hash = evt.evt_tx_hash and ex.row_num = evt.row_num WHERE ex.call_success = TRUE {% if is_incremental() %} AND evt.evt_block_time >= date_trunc('day', now() - interval '7' Day) diff --git a/models/bebop/polygon/bebop_polygon_trades.sql b/models/bebop/polygon/bebop_polygon_trades.sql index ea168caa358..863fd004d89 100644 --- a/models/bebop/polygon/bebop_polygon_trades.sql +++ b/models/bebop/polygon/bebop_polygon_trades.sql @@ -34,23 +34,30 @@ bebop_raw_data AS ( json_array_length(json_extract((JSON_EXTRACT(ex."order", '$.taker_tokens')), '$[0]')) as taker_length, json_array_length(json_extract((JSON_EXTRACT(ex."order", '$.maker_tokens')), '$[0]')) as maker_length FROM - (SELECT * FROM {{ source('bebop_v3_polygon', 'BebopAggregationContract_evt_AggregateOrderExecuted') }} + (SELECT + evt_index, evt_tx_hash, evt_block_time, ROW_NUMBER() OVER (PARTITION BY evt_tx_hash ORDER BY evt_index) AS row_num + FROM {{ source('bebop_v3_polygon', 'BebopAggregationContract_evt_AggregateOrderExecuted') }} UNION ALL - SELECT * FROM {{ source('bebop_v4_polygon', 'BebopSettlement_evt_AggregateOrderExecuted') }}) evt + SELECT + evt_index, evt_tx_hash, evt_block_time, ROW_NUMBER() OVER (PARTITION BY evt_tx_hash ORDER BY evt_index) AS row_num + FROM {{ source('bebop_v4_polygon', 'BebopSettlement_evt_AggregateOrderExecuted') }}) evt LEFT JOIN (SELECT - call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order" + call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order", + ROW_NUMBER() OVER (PARTITION BY call_tx_hash ORDER BY call_block_number) AS row_num FROM {{ source('bebop_v3_polygon', 'BebopAggregationContract_call_SettleAggregateOrder') }} UNION ALL SELECT - call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order" + call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order", + ROW_NUMBER() OVER (PARTITION BY call_tx_hash ORDER BY call_block_number) AS row_num FROM {{ source('bebop_v4_polygon', 'BebopSettlement_call_SettleAggregateOrder') }} UNION ALL SELECT - call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order" + call_success, call_block_time, call_block_number, call_tx_hash, contract_address, "order", + ROW_NUMBER() OVER (PARTITION BY call_tx_hash ORDER BY call_block_number) AS row_num FROM {{ source('bebop_v4_polygon', 'BebopSettlement_call_SettleAggregateOrderWithTakerPermits') }} ) ex - ON ex.call_tx_hash = evt.evt_tx_hash + ON ex.call_tx_hash = evt.evt_tx_hash and ex.row_num = evt.row_num WHERE ex.call_success = TRUE {% if is_incremental() %} AND evt.evt_block_time >= date_trunc('day', now() - interval '7' Day) diff --git a/models/biswap/bnb/biswap_bnb_sources.yml b/models/biswap/bnb/biswap_bnb_sources.yml deleted file mode 100644 index 96289465800..00000000000 --- a/models/biswap/bnb/biswap_bnb_sources.yml +++ /dev/null @@ -1,73 +0,0 @@ -version: 2 - -sources: - - name: biswap_bnb - description: "Binance Smart Chain (bsc) decoded tables related to Biswap contract" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: BiswapPair_evt_Swap - loaded_at_field: evt_block_time - description: "Biswap swap events table on Bnb" - columns: - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - &contract_address - name: contract_address - description: "Bnb address for the liquidity pool used in transaction" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null - - &sender - name: sender - - &to - name: to - - name: BiswapFactory_evt_PairCreated - loaded_at_field: evt_block_time - description: "Biswap Pool created events table" - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - - &token0 - name: token0 - - &token1 - name: token1 - - - name: biswap_v3_bnb - description: "Biswap v3 contracts on BNB chain" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: BiswapPoolV3_evt_Swap - loaded_at_field: evt_block_time - description: "Biswap v3 swap events table on BNB chain" - - - name: BiswapFactoryV3_evt_NewPool - loaded_at_field: evt_block_time - description: "Biswap v3 pool created events table on BNB chain" diff --git a/models/bridges/bnb/_schema.yml b/models/bridges/bnb/_schema.yml new file mode 100644 index 00000000000..deb0d6e668d --- /dev/null +++ b/models/bridges/bnb/_schema.yml @@ -0,0 +1,23 @@ +version: 2 + +models: + - name: bridges_bnb_addresses + meta: + blockchain: bnb + sector: bridges + project: addresses + contributors: rantum + config: + tags: ['table', 'bridges', 'addresses', 'bnb'] + description: "Known bridge addresses" + columns: + - name: blockchain + description: "Name of blockchain" + - name: address + description: "Address of known Bridges" + tests: + - unique + - name: bridge_name + description: "Name of protocol behind the bridge" + - name: description + description: "Description of the bridge" \ No newline at end of file diff --git a/models/bridges/bnb/bridges_bnb_addresses.sql b/models/bridges/bnb/bridges_bnb_addresses.sql new file mode 100644 index 00000000000..8887398652a --- /dev/null +++ b/models/bridges/bnb/bridges_bnb_addresses.sql @@ -0,0 +1,40 @@ +{{ config(alias = 'addresses', + schema = 'bridges_bnb', + tags=['static'], + ) }} + +SELECT blockchain, address, bridge_name, description +FROM (VALUES + ('bnb', 0xBBbD1BbB4f9b936C3604906D7592A644071dE884, 'Allbridge', 'Bridge') + ,('bnb', 0x6F817a0cE8F7640Add3bC0c1C2298635043c2423, 'Anyswap', 'anyETH Token') + ,('bnb', 0xb1CB88B1a1992deB4189Ea4f566b594c13392Ada, 'AnySwap', 'Bridge Avalanche') + ,('bnb', 0x4b3B4120d4D7975455d8C2894228789c91a247F8, 'Anyswap', 'Bridge Fantom') + ,('bnb', 0xd6faf697504075a358524996b132b532cc5D0F14, 'Anyswap', 'Moonriver Bridge') + ,('bnb', 0x9DF69F656A9CFdf5cD1c2140B71e2Aa130cE7eB8, 'BlazeX', 'Crosschain Bridge') + ,('bnb', 0x5d96d4287D1ff115eE50faC0526cf43eCf79bFc6, 'Celer Network', 'cBridge 2.0') + ,('bnb', 0x43dE2d77BF8027e25dBD179B491e8d64f38398aA, 'deBridgeGate', '') + ,('bnb', 0xE7351Fd770A37282b91D153Ee690B63579D6dd7f, 'Dln', 'Destination') + ,('bnb', 0xF0b456250DC9990662a6F25808cC74A6d1131Ea9, 'Gnosis Chain', 'BSC - Gnosis Omni Bridge') + ,('bnb', 0x05185872898b6f94AA600177EF41B9334B1FA48B, 'Gnosis Chain', 'BSC-xDAI Omni Bridge') + ,('bnb', 0xfD53b1B4AF84D59B20bF2C20CA89a6BeeAa2c628, 'Harmony', 'Bridge') + ,('bnb', 0xa90a8e34cea28bF9a234d4eac240fB32358b51AB, 'iSwap', 'Binance Bridge') + ,('bnb', 0x3c2269811836af69497E5F486A85D7316753cf62, 'LayerZero', 'Binance Smart Chain Endpoint') + ,('bnb', 0x4948ff01cF150e7867D9eEef6272DB13fD37C537, 'Less Network', 'Bridge') + ,('bnb', 0x05B70Fb5477A93bE33822bfB31fDAF2c171970dF, 'Mayan', 'Swap Bridge') + ,('bnb', 0xC10Ef9F491C9B59f936957026020C321651ac078, 'Multichain', 'anyCall V6') + ,('bnb', 0x92C079d3155C2722dBf7E65017a5baf9CD15561c, 'Multichain', 'Bridge') + ,('bnb', 0xd1C5966f9F5Ee6881Ff6b261BBeDa45972B1B5f3, 'Multichain', 'Router V4') + ,('bnb', 0xABd380327Fe66724FFDa91A87c772FB8D00bE488, 'Multichain', 'Router V4 2') + ,('bnb', 0xe1d592c3322f1F714Ca11f05B6bC0eFEf1907859, 'Multichain', 'Router V6') + ,('bnb', 0x638E8FE7AD4D9C05735Ecb6b9c66013679276651, 'Spore Finance', 'Bridge') + ,('bnb', 0xd123f70AE324d34A9E76b67a27bf77593bA8749f, 'Synapse', 'Bridge') + ,('bnb', 0x749F37Df06A99D6A8E065dd065f8cF947ca23697, 'Synapse', 'Bridge Zap 1') + ,('bnb', 0x158B536C2ae3afDeA1be69fD91f942A2f96e0a6d, 'Undead Blocks', 'Bridge') + ,('bnb', 0x98f3c9e6E3fAce36bAAd05FE09d375Ef1464288B, 'Wormhole', 'Binance Smart Chain Core Bridge') + ,('bnb', 0x5a58505a96D1dbf8dF91cB21B54419FC36e93fdE, 'Wormhole', 'NFT Bridge') + ,('bnb', 0xB6F6D86a8f9879A9c87f643768d9efc38c1Da6E7, 'Wormhole: Token Bridge', 'Token Bridge') + ,('bnb', 0x31eFc4AeAA7c39e54A33FDc3C46ee2Bd70ae0A09, 'xPollinate', 'Transaction Manager') + ,('bnb', 0xcb9Cc9d0f8f4Ac451a523D3C064553dD33Ea39E3, 'Zeroswap', 'BSC Bridge') + ,('bnb', 0x6694340fc020c5e6b96567843da2df01b2ce1eb6, 'Stargate Finance: Bridge', 'Bridge') + + ) AS x (blockchain, address, bridge_name, description) \ No newline at end of file diff --git a/models/bridges/ethereum/bridges_ethereum_addresses.sql b/models/bridges/ethereum/bridges_ethereum_addresses.sql index 50a08ffaba5..cbafe6d977f 100644 --- a/models/bridges/ethereum/bridges_ethereum_addresses.sql +++ b/models/bridges/ethereum/bridges_ethereum_addresses.sql @@ -107,7 +107,6 @@ FROM (VALUES ('ethereum', 0x8ed95d1746bf1e4dab58d8ed4724f1ef95b20db0, '0x', 'Erc ,('ethereum', 0xcd9d4988c0ae61887b075ba77f08cbfad2b65068, 'Optimism', 'Synthetix: L2 Deposit') ,('ethereum', 0x5fd79d46eba7f351fe49bff9e87cdea6c821ef9f, 'Optimism', 'Synthetix: L2 Deposit Escrow') - -- ,('ethereum', 0x99c9fc46f92e8a1c0dec1b1747d010903e884be1, 'Optimism', 'Optimism: Gateway') --duplicate & renamed ,('ethereum', 0xf20c38fcddf0c790319fd7431d17ea0c2bc9959c, 'Optimism', 'Optimism: Legacy Bridge') ,('ethereum', 0xe681f80966a8b1ffadecf8068bd6f99034791c95, 'Optimism', 'Optimism: Legacy Bridge') ,('ethereum', 0xc51f137e19f1ae6944887388fd12b2b6dfd12594, 'Optimism', 'Synthetix: Legacy Optimism Bridge') @@ -125,6 +124,7 @@ FROM (VALUES ('ethereum', 0x8ed95d1746bf1e4dab58d8ed4724f1ef95b20db0, '0x', 'Erc ,('ethereum', 0x99c9fc46f92e8a1c0dec1b1747d010903e884be1, 'Optimism', 'Optimism: L1StandardBridge Proxy') ,('ethereum', 0x4afdd3a48e13b305e98d9eead67b1b5867e370df, 'Optimism', 'Optimism: L1ERC721Bridge') ,('ethereum', 0x5a7749f83b81b301cab5f48eb8516b986daef23d, 'Optimism', 'Optimism: L1ERC721BridgeProxy') + ,('ethereum', 0x39Ea01a0298C315d149a490E34B59Dbf2EC7e48F, 'Optimism', 'Optimism: SynthetixBridgeToOptimism') ,('ethereum', 0x40ec5b33f54e0e8a33a975908c5ba1c14e5bbbdf, 'Polygon', 'ERC20 Bridge') ,('ethereum', 0xabea9132b05a70803a4e85094fd0e1800777fbef, 'zkSync', 'zkSync Lite Bridge') ,('ethereum', 0x32400084c286cf3e17e7b677ea9583e60a000324, 'zkSync', 'zkSync Era Bridge') @@ -138,4 +138,4 @@ FROM (VALUES ('ethereum', 0x8ed95d1746bf1e4dab58d8ed4724f1ef95b20db0, '0x', 'Erc ,('ethereum', 0x6571d6be3d8460cf5f7d6711cd9961860029d85f, 'Synapse', 'Synapse Bridge Zap 3') ,('ethereum', 0x2a3dd3eb832af982ec71669e178424b10dca2ede, 'Polygon', 'Polygon: zkEVM Bridge') ,('ethereum', 0xd5f0f8db993d26f5df89e70a83d32b369dccdaa0, 'Symbiosis', 'Symbiosis Bridge') - ) AS x (blockchain, address, bridge_name, description) \ No newline at end of file + ) AS x (blockchain, address, bridge_name, description) diff --git a/models/camelot/arbitrum/camelot_arbitrum_schema.yml b/models/camelot/arbitrum/camelot_arbitrum_schema.yml index 33396bec090..777f58c7d4c 100644 --- a/models/camelot/arbitrum/camelot_arbitrum_schema.yml +++ b/models/camelot/arbitrum/camelot_arbitrum_schema.yml @@ -1,11 +1,11 @@ version: 2 models: - - name: camelot_v1_arbitrum_trades + - name: camelot_v2_arbitrum_trades meta: blockchain: arbitrum sector: dex - project: camelot_v1 + project: camelot_v2 contributors: ytoast config: tags: [ 'arbitrum','dex','trades', 'camelot', 'ytoast'] @@ -23,7 +23,7 @@ models: - check_dex_seed: blockchain: arbitrum project: camelot - version: 1 + version: 2 columns: - &blockchain name: blockchain diff --git a/models/camelot/arbitrum/camelot_arbitrum_sources.yml b/models/camelot/arbitrum/camelot_arbitrum_sources.yml deleted file mode 100644 index 02164b81fe6..00000000000 --- a/models/camelot/arbitrum/camelot_arbitrum_sources.yml +++ /dev/null @@ -1,69 +0,0 @@ -version: 2 - -sources: - - name: camelot_arbitrum - description: "Arbitrum chain decoded tables related to Camelot v2 contract" - freshness: # default freshness - warn_after: { count: 12, period: hour } - tables: - - name: CamelotPair_evt_Swap - loaded_at_field: evt_block_time - - name: CamelotFactory_evt_PairCreated - loaded_at_field: evt_block_time - - - name: camelot_v3_arbitrum - description: "Arbitrum decoded tables related to Camelot v3 contract" - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: AlgebraPool_evt_Swap - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &amount1 - name: amount1 - - &amount0 - name: amount0 - - &contract_address - name: contract_address - description: "Arbitrum address for the liquidity pool used in transaction" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null - - &liquidity - name: liquidity - - &recipient - name: recipient - - &sender - name: sender - - &price - name: price - - &tick - name: tick - - - name: AlgebraFactory_evt_Pool - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pool - name: pool - - &token0 - name: token0 - - &token1 - name: token1 \ No newline at end of file diff --git a/models/camelot/arbitrum/camelot_arbitrum_trades.sql b/models/camelot/arbitrum/camelot_arbitrum_trades.sql index 440ad065065..be5a91debe5 100644 --- a/models/camelot/arbitrum/camelot_arbitrum_trades.sql +++ b/models/camelot/arbitrum/camelot_arbitrum_trades.sql @@ -8,7 +8,7 @@ }} {% set camelot_models = [ -ref('camelot_v1_arbitrum_trades'), +ref('camelot_v2_arbitrum_trades'), ref('camelot_v3_arbitrum_trades') ] %} diff --git a/models/camelot/arbitrum/camelot_v1_arbitrum_trades.sql b/models/camelot/arbitrum/camelot_v2_arbitrum_trades.sql similarity index 99% rename from models/camelot/arbitrum/camelot_v1_arbitrum_trades.sql rename to models/camelot/arbitrum/camelot_v2_arbitrum_trades.sql index 47b05f7f496..2126b0b322d 100644 --- a/models/camelot/arbitrum/camelot_v1_arbitrum_trades.sql +++ b/models/camelot/arbitrum/camelot_v2_arbitrum_trades.sql @@ -51,7 +51,7 @@ WITH dexs AS ( SELECT '{{blockchain}}' AS blockchain, 'camelot' AS project, - '1' AS version, + '2' AS version, TRY_CAST(date_trunc('day', dexs.block_time) AS date) AS block_date, CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, dexs.block_time, diff --git a/models/carbon_defi/ethereum/carbon_defi_ethereum_sources.yml b/models/carbon_defi/ethereum/carbon_defi_ethereum_sources.yml deleted file mode 100644 index a2af2f46f7a..00000000000 --- a/models/carbon_defi/ethereum/carbon_defi_ethereum_sources.yml +++ /dev/null @@ -1,53 +0,0 @@ -version: 2 - -sources: - - name: carbon_defi_ethereum - description: "Ethereum decoded tables related to the CarbonController contract" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: CarbonController_evt_TokensTraded - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: "Tokens Traded events from the Carbon Controller" - columns: - - &contract_address - name: contract_address - description: "Ethereum address for the CarbonController contract" - - &_trader - name: _trader - description: "Buyer Ethereum wallet address" - - &sourceAmount - name: sourceAmount - description: "Raw amount of tokens sold during transaction with the contract" - - &targetAmount - name: targetAmount - description: "Raw amount of tokens bought during transaction with the contract" - - &sourceToken - name: sourceToken - description: "Ethereum address of tokens sold during transaction with the contract" - - &targetToken - name: targetToken - description: "Ethereum address of tokens bought during transaction with the contract" - - &tradingFeeAmount - name: tradingFeeAmount - description: "Trading Fee amount taken in sourceToken if byTargetAmount is true and vice-versa" - - &byTargetAmount - name: byTargetAmount - description: "If the trade amount was specified in targetToken" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_admin_meta.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_admin_meta.sql new file mode 100644 index 00000000000..123c9b3d7b8 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_admin_meta.sql @@ -0,0 +1,34 @@ +{{ + config( + alias='ccip_admin_meta', + materialized = 'view' + ) +}} + +SELECT + 'arbitrum' as blockchain, + admin_address, + operator_name +FROM (values + (0xa5D0084A766203b463b3164DFc49D91509C12daB, 'alphachain'), + (0x4a3dF8cAe46765d33c2551ff5438a5C5FC44347c, 'chainlayer'), + (0x59eCf48345A221E0731E785ED79eD40d0A94E2A5, 'cryptomanufaktur'), + (0x9efa0A617C0552F1558c95993aA8b8A68b3e709C, 'dextrac'), + (0xFdC770353dC0bFCE80a17Ab8a6a2E7d80590f1Ba, 'easy2stake'), + (0x7AF3C2b54eE2f170b8104222eB4EDf2511f5d9d0, 'everstake'), + (0x15918ff7f6C44592C81d999B442956B07D26CC44, 'fiews'), + (0x001E0d294383d5b4136476648aCc8D04a6461Ae3, 'kytzu'), + (0x4564A9c6061f6f1F2Eadb954B1b3C241D2DC984e, 'linkforest'), + (0x797de2909991C66C66D8e730C8385bbab8D18eA6, 'linkpool'), + (0x14f94049397C3F1807c45B6f854Cb5F36bC4393B, 'linkriver'), + (0x670dBCf722ee66079DAB6456071e8d536eEC1463, 'newroad'), + (0x0921E157b690c4F89F7C2a210cFd8bF3964F6776, 'northwestnodes'), + (0xCDa423ee5A7A886eF113b181469581306fC8B607, 'p2porg'), + (0x3FB4600736d306Ee2A89EdF0356D4272fb095768, 'piertwo'), + (0xBDB624CD1051F687f116bB0c642330B2aBdfcc06, 'prophet'), + (0xDA80050Ed4F50033949608208f79EE43Ab91dF55, 'rhino'), + (0x0446B8d5d3F3fA74eDbd32154b023FD8da172f05, 'snzpool'), + (0xC51D3470693BC049809A1c515606124c7C75908d, 'syncnode'), + (0x183A96629fF566e7AA8AfA38980Cd037EB40A59A, 'validationcloud'), + (0x111f1B41f702c20707686769a4b7f25c56C533B2, 'wetez') +) a (admin_address, operator_name) diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_fulfilled_transactions.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_fulfilled_transactions.sql new file mode 100644 index 00000000000..a6384024b45 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_fulfilled_transactions.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_fulfilled_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + arbitrum_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * effective_gas_price) as token_amount, + MAX(arbitrum_usd.usd_amount) as usd_amount + FROM + {{ source('arbitrum', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_arbitrum_ccip_send_traces') }} ccip_send_traces ON ccip_send_traces.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_send_traces.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN arbitrum_usd ON date_trunc('minute', tx.block_time) = arbitrum_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'arbitrum' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_gas_daily.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_gas_daily.sql new file mode 100644 index 00000000000..be8791a1e17 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_gas_daily.sql @@ -0,0 +1,77 @@ +{{ + config( + + alias='ccip_gas_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_gas_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE( + fulfilled.node_address, + reverted.node_address + ) AS "node_address", + COALESCE(SUM(fulfilled.token_amount), 0) as fulfilled_token_amount, + COALESCE(SUM(reverted.token_amount), 0) as reverted_token_amount, + COALESCE(SUM(fulfilled.token_amount * fulfilled.usd_amount), 0) as fulfilled_usd_amount, + COALESCE(SUM(reverted.token_amount * reverted.usd_amount), 0) as reverted_usd_amount + FROM + {{ ref('chainlink_arbitrum_ccip_transmitted_fulfilled') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_arbitrum_ccip_transmitted_reverted') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + OR reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, 2 + ORDER BY + 1, 2 + ), + ccip_gas_daily AS ( + SELECT + 'arbitrum' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + ccip_gas_daily_meta.node_address as node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + fulfilled_token_amount + reverted_token_amount as total_token_amount, + fulfilled_usd_amount + reverted_usd_amount as total_usd_amount + FROM ccip_gas_daily_meta + LEFT JOIN {{ ref('chainlink_arbitrum_ccip_operator_meta') }} ccip_operator_meta ON ccip_operator_meta.node_address = ccip_gas_daily_meta.node_address + ) +SELECT + blockchain, + date_start, + date_month, + node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + total_token_amount, + total_usd_amount +FROM + ccip_gas_daily +ORDER BY + "date_start" diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_nop_paid_logs.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_nop_paid_logs.sql new file mode 100644 index 00000000000..e31278ce6a5 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_nop_paid_logs.sql @@ -0,0 +1,29 @@ +{{ + config( + + alias='ccip_nop_paid_logs', + materialized='view' + ) +}} + +SELECT + 'arbitrum' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_substring(topic1, 13) as nop_address, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('arbitrum', 'logs') }} logs +WHERE + topic0 = 0x55fdec2aab60a41fa5abb106670eb1006f5aeaee1ba7afea2bc89b5b3ec7678f -- NopPaid \ No newline at end of file diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_nop_reward_daily.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_nop_reward_daily.sql new file mode 100644 index 00000000000..fd14f700aa9 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_nop_reward_daily.sql @@ -0,0 +1,72 @@ +{{ + config( + + alias='ccip_nop_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'nop_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + link_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + price.symbol = 'LINK' + GROUP BY + 1 + ORDER BY + 1 + ), + nop_paid AS ( + SELECT + 'arbitrum' as blockchain, + cast(date_trunc('day', block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', block_time) AS date)) AS date_month, + nop_logs.nop_address as nop_address, + MAX(admin_meta.operator_name) as operator_name, + SUM(nop_logs.total_tokens / 1e18) as token_amount +FROM + {{ref('chainlink_arbitrum_ccip_nop_paid_logs')}} nop_logs + LEFT JOIN {{ref('chainlink_arbitrum_ccip_admin_meta')}} admin_meta ON admin_meta.admin_address = nop_logs.nop_address +{% if is_incremental() %} + WHERE block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 4 +ORDER BY + 2, 4 + ), + nop_reward_daily AS ( + SELECT + nop_paid.date_start, + cast(date_trunc('month', nop_paid.date_start) as date) as date_month, + nop_paid.operator_name, + nop_paid.nop_address, + nop_paid.token_amount as token_amount, + (nop_paid.token_amount * lud.usd_amount) as usd_amount + FROM + nop_paid + LEFT JOIN link_usd_daily lud ON lud.date_start = nop_paid.date_start + ORDER BY date_start + ) +SELECT + 'arbitrum' as blockchain, + date_start, + date_month, + operator_name, + nop_address, + token_amount, + usd_amount +FROM + nop_reward_daily +ORDER BY + 2, 5 diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_operator_meta.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_operator_meta.sql new file mode 100644 index 00000000000..2bee857b865 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_operator_meta.sql @@ -0,0 +1,31 @@ +{{ + config( + alias='ccip_operator_meta', + materialized = 'view' + ) +}} + +SELECT + 'arbitrum' as blockchain, + node_address, + operator_name +FROM (values + (0x1a6d5C4396EaF8ED93Ec77bf1aF9B43ffeD7814d, 'chainlayer'), + (0x1e181f7ac976208D448546C99ffDb69CDF7c513D, 'cryptomanufaktur'), + (0x7bA784D7ea6369781552058ed9c81bb193E52a1b, 'dextrac'), + (0x2A47f18ED6B4BBeB6106c96e42C912b401495e15, 'everstake'), + (0x3Ac6ACCbC8FE6D087A038e1EE40369BA85c42BEC, 'fiews'), + (0xcbed1c2B44a9C2F2F972295E2B803b94A8fF5595, 'kytzu'), + (0xee38FB85C6de951F00595e466D606f3A6909F51f, 'linkforest'), + (0x3605e81c7976Ec485C5f406C2e315AA2a7C7B72b, 'linkpool'), + (0xb5FD1c35f08F798A173CCeBFC2dbBA24960F8634, 'linkriver'), + (0xA12a88F1A0aC5b794BA1d012Fe37D69BB4A3b90b, 'newroad'), + (0xCbde8d712893dE5A5f1C0F069164BE261b1f8E5e, 'northwestnodes'), + (0x5fBBC8da114f426691eDf2835Dff527D5D626d0D, 'p2porg'), + (0xA4c2Cf0286bC126F252cA549f0e48Defb74839ac, 'piertwo'), + (0x186cF2112481163712404c8820C4B268951D5eeC, 'prophet'), + (0x01f4e56D5ee46e84Edf8595ca7A7B62a3306De76, 'snzpool'), + (0xeE48705b37a6a9E6261646fFd54b3CDb95984833, 'syncnode'), + (0xd499Ec90377a7F797392bD4499eB2464CCF8d793, 'validationcloud'), + (0xC371Cf8701104B15C7ae4D69a4abb184016BDb6B, 'wetez') +) a (node_address, operator_name) diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_request_daily.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_request_daily.sql new file mode 100644 index 00000000000..c7ae519b825 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_request_daily.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_request_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_request_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE(COUNT(fulfilled.token_amount), 0) as fulfilled_requests, + COALESCE(COUNT(reverted.token_amount), 0) as reverted_requests, + COALESCE(COUNT(fulfilled.token_amount), 0) + COALESCE(COUNT(reverted.token_amount), 0) as total_requests + FROM + {{ ref('chainlink_arbitrum_ccip_fulfilled_transactions') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_arbitrum_ccip_reverted_transactions') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + AND reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1 + ORDER BY + 1 + ), + ccip_request_daily AS ( + SELECT + 'arbitrum' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + fulfilled_requests, + reverted_requests, + total_requests + FROM ccip_request_daily_meta + ) +SELECT + ccip_request_daily.blockchain, + date_start, + date_month, + fulfilled_requests, + reverted_requests, + total_requests +FROM + ccip_request_daily +ORDER BY + "date_start" diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_reverted_transactions.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_reverted_transactions.sql new file mode 100644 index 00000000000..9f5a00cf018 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_reverted_transactions.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_reverted_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + arbitrum_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * effective_gas_price) as token_amount, + MAX(arbitrum_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_arbitrum_ccip_send_traces') }} tx + INNER JOIN {{ source('arbitrum', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx2.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN arbitrum_usd ON date_trunc('minute', tx.block_time) = arbitrum_usd.block_time + WHERE + tx.tx_success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx."from" + ) +SELECT + 'arbitrum' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_reward_daily.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_reward_daily.sql new file mode 100644 index 00000000000..df44a2b9b1e --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_reward_daily.sql @@ -0,0 +1,63 @@ +{{ + config( + alias='ccip_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'token'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + token_meta AS ( + SELECT + token_contract, + token_symbol + FROM + {{ref('chainlink_arbitrum_ccip_token_meta')}} + ), + token_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + token_meta.token_symbol as symbol, + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + JOIN token_meta ON price.symbol = token_meta.token_symbol + {% if is_incremental() %} + WHERE price.minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, token_meta.token_symbol + ORDER BY + 1 + ), + ccip_reward_daily AS ( + SELECT + ccip_send_requested_daily.date_start, + cast(date_trunc('month', ccip_send_requested_daily.date_start) as date) as date_month, + SUM(ccip_send_requested_daily.fee_amount) as token_amount, + SUM((ccip_send_requested_daily.fee_amount * tud.usd_amount)) as usd_amount, + ccip_send_requested_daily.token as token + FROM + {{ref('chainlink_arbitrum_ccip_send_requested_daily')}} ccip_send_requested_daily + LEFT JOIN token_usd_daily tud ON tud.date_start = ccip_send_requested_daily.date_start AND tud.symbol = ccip_send_requested_daily.token + {% if is_incremental() %} + WHERE ccip_send_requested_daily.date_start >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY 1, 5 + ) +SELECT + 'arbitrum' as blockchain, + date_start, + date_month, + token_amount, + usd_amount, + token +FROM + ccip_reward_daily +ORDER BY + 2, 6 diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_send_requested.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_send_requested.sql new file mode 100644 index 00000000000..d031b54d4b9 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_send_requested.sql @@ -0,0 +1,51 @@ +{{ + config( + + alias='ccip_send_requested', + materialized='view' + ) +}} + +SELECT + MAX(ccip_traces.blockchain) AS blockchain, + MAX(ccip_traces.block_time) AS evt_block_time, + MAX(reward_evt_transfer.value / 1e18) AS fee_amount, + MAX(token_addresses.token_symbol) AS token, + MAX(ccip_traces.chain_selector) as destination_chain_selector, + MAX(ccip_traces.destination) as destination_blockchain +FROM + {{ ref('chainlink_arbitrum_ccip_send_traces') }} ccip_traces + LEFT JOIN {{ source('erc20_arbitrum', 'evt_Transfer') }} reward_evt_transfer ON reward_evt_transfer.evt_tx_hash = ccip_traces.tx_hash + LEFT JOIN {{ ref('chainlink_arbitrum_ccip_token_meta') }} token_addresses ON token_addresses.token_contract = reward_evt_transfer.contract_address + LEFT JOIN {{ ref('chainlink_arbitrum_ccip_tokens_locked_logs') }} tokens_locked ON tokens_locked.tx_hash = ccip_traces.tx_hash +WHERE + ( + ( + ccip_traces.value > 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_arbitrum_ccip_token_meta') }} + WHERE + token_symbol = 'WETH' + ) + ) + OR ( + ccip_traces.value <= 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_arbitrum_ccip_token_meta') }} + WHERE + token_symbol != 'WETH' + ) + ) + ) + AND ( + tokens_locked.tx_hash IS NULL + OR tokens_locked.total_tokens != reward_evt_transfer.value + ) +GROUP BY + ccip_traces.tx_hash \ No newline at end of file diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_send_requested_daily.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_send_requested_daily.sql new file mode 100644 index 00000000000..41d799aec27 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_send_requested_daily.sql @@ -0,0 +1,31 @@ +{{ + config( + + alias='ccip_send_requested_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'token', 'destination_blockchain'] + ) +}} + +{% set incremental_interval = '7' %} + +SELECT + 'arbitrum' as blockchain, + cast(date_trunc('day', evt_block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', evt_block_time) AS date)) AS date_month, + SUM(ccip_send_requested.fee_amount) as fee_amount, + ccip_send_requested.token as token, + ccip_send_requested.destination_blockchain AS destination_blockchain, + COUNT(ccip_send_requested.destination_blockchain) AS count +FROM + {{ref('chainlink_arbitrum_ccip_send_requested')}} ccip_send_requested +{% if is_incremental() %} + WHERE evt_block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 5, 6 +ORDER BY + 2, 5, 6 diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_send_traces.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_send_traces.sql new file mode 100644 index 00000000000..d3e0aa75042 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_send_traces.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_send_traces', + materialized='view' + ) +}} + +SELECT + 'arbitrum' as blockchain, + block_hash, + block_number, + block_time, + tx_hash, + traces."from", + traces."to", + input, + traces."output", + traces.tx_success, + traces.value, + network_meta.chain_selector as chain_selector, + network_meta.blockchain as destination +FROM + {{ source('arbitrum', 'traces') }} traces +left join {{ref('chainlink_ccip_network_meta')}} network_meta on network_meta.chain_selector = bytearray_to_uint256(bytearray_substring(input, 5, 32)) +WHERE + traces."to" = (SELECT router FROM {{ref('chainlink_ccip_network_meta')}} WHERE blockchain = 'arbitrum') + AND bytearray_substring(input, 1, 4) = 0x96f4e9f9 \ No newline at end of file diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_token_meta.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_token_meta.sql new file mode 100644 index 00000000000..c4316e76d71 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_token_meta.sql @@ -0,0 +1,18 @@ +{{ + config( + + alias='ccip_token_meta', + materialized = 'view' + ) +}} + +-- will need to be updated to add new fee tokens in the future + +SELECT + 'arbitrum' AS blockchain, + token_contract, + token_symbol +FROM (VALUES + (0xf97f4df75117a78c1A5a0DBb814Af92458539FB4, 'LINK'), + (0x82aF49447D8a07e3bd95BD0d56f35241523fBab1, 'WETH') +) a (token_contract, token_symbol) diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_tokens_locked_logs.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_tokens_locked_logs.sql new file mode 100644 index 00000000000..991ebae66c0 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_tokens_locked_logs.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_tokens_locked_logs', + materialized='view' + ) +}} + +SELECT + 'arbitrum' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('arbitrum', 'logs') }} logs +WHERE + topic0 = 0x9f1ec8c880f76798e7b793325d625e9b60e4082a553c98f42b6cda368dd60008 -- Locked \ No newline at end of file diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_transmitted_fulfilled.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_transmitted_fulfilled.sql new file mode 100644 index 00000000000..d1ae1b1f36c --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_transmitted_fulfilled.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_transmitted_fulfilled', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + arbitrum_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * effective_gas_price) as token_amount, + MAX(arbitrum_usd.usd_amount) as usd_amount + FROM + {{ source('arbitrum', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_arbitrum_ccip_transmitted_logs') }} ccip_tx ON ccip_tx.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN arbitrum_usd ON date_trunc('minute', tx.block_time) = arbitrum_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'arbitrum' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_transmitted_logs.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_transmitted_logs.sql new file mode 100644 index 00000000000..1933ade4fac --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_transmitted_logs.sql @@ -0,0 +1,27 @@ +{{ + config( + + alias='ccip_transmitted_logs', + materialized='view' + ) +}} + +SELECT + 'arbitrum' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from +FROM + {{ source('arbitrum', 'logs') }} logs +WHERE + topic0 = 0xb04e63db38c49950639fa09d29872f21f5d49d614f3a969d8adf3d4b52e41a62 -- Transmitted \ No newline at end of file diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_ccip_transmitted_reverted.sql b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_transmitted_reverted.sql new file mode 100644 index 00000000000..e4b9b07b940 --- /dev/null +++ b/models/chainlink/arbitrum/chainlink_arbitrum_ccip_transmitted_reverted.sql @@ -0,0 +1,64 @@ +{{ + config( + + alias='ccip_transmitted_reverted', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + arbitrum_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx.tx_from as "node_address", + MAX((cast((gas_used) as double) / 1e18) * effective_gas_price) as token_amount, + MAX(arbitrum_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_arbitrum_ccip_transmitted_logs') }} tx + LEFT JOIN {{ source('arbitrum', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN arbitrum_usd ON date_trunc('minute', tx.block_time) = arbitrum_usd.block_time + WHERE + tx2.success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx.index, + tx.tx_from + ) +SELECT + 'arbitrum' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/arbitrum/chainlink_arbitrum_schema.yml b/models/chainlink/arbitrum/chainlink_arbitrum_schema.yml index 494574cad3e..63d4fb04776 100644 --- a/models/chainlink/arbitrum/chainlink_arbitrum_schema.yml +++ b/models/chainlink/arbitrum/chainlink_arbitrum_schema.yml @@ -957,3 +957,365 @@ models: - *feed_name - *requester_address - *requester_name + + - name: chainlink_arbitrum_ccip_fulfilled_transactions + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "fulfilled", "transactions", "arbitrum"] + description: > + Chainlink CCIP Fulfilled Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_arbitrum_ccip_gas_daily + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "gas", "daily", "arbitrum"] + description: > + Chainlink CCIP Gas Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - node_address + columns: + - *blockchain + - *date_start + - *date_month + - *node_address + - *operator_name + - *fulfilled_token_amount + - *fulfilled_usd_amount + - *reverted_token_amount + - *reverted_usd_amount + - *total_token_amount + - *total_usd_amount + + - name: chainlink_arbitrum_ccip_request_daily + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "request", "daily", "arbitrum"] + description: > + Chainlink CCIP Request Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + columns: + - *blockchain + - *date_start + - *date_month + - *fulfilled_requests + - *reverted_requests + - *total_requests + + - name: chainlink_arbitrum_ccip_reverted_transactions + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reverted", "transactions", "arbitrum"] + description: > + Chainlink CCIP Reverted Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + + - name: chainlink_arbitrum_ccip_reward_daily + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reward", "daily", "arbitrum"] + description: > + Chainlink CCIP Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - &token + name: token + description: "Token" + + - name: chainlink_arbitrum_ccip_send_requested + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "arbitrum"] + description: > + Chainlink CCIP Send Requested + columns: + - *blockchain + - *evt_block_time + - &fee_amount + name: fee_amount + description: "Fee Amount" + - *token + - &destination_blockchain + name: destination_blockchain + description: "Destination Blockchain" + - &destination_chain_selector + name: destination_chain_selector + description: "Destination Chain Selector" + + - name: chainlink_arbitrum_ccip_send_requested_daily + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "daily", "arbitrum"] + description: > + Chainlink CCIP Send Requested Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + - destination_blockchain + columns: + - *blockchain + - *date_start + - *date_month + - *fee_amount + - *token + - *destination_blockchain + - &count + name: count + description: "Count" + + - name: chainlink_arbitrum_ccip_send_traces + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "traces", "arbitrum"] + description: > + Chainlink CCIP Send Traces + columns: + - *blockchain + - *block_hash + - *block_number + - *block_time + - *tx_hash + - *from + - *to + - *input + - *output + - &tx_success + name: tx_success + description: "Transaction Success" + - &value + name: value + description: "Value" + - &chain_selector + name: chain_selector + description: "Chain Selector" + - &destination + name: destination + description: "Destination" + + - name: chainlink_arbitrum_ccip_tokens_locked_logs + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "tokens", "locked", "logs", "arbitrum"] + description: > + Chainlink CCIP Tokens Locked Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &total_tokens + name: total_tokens + description: "Total Tokens" + + - name: chainlink_arbitrum_ccip_transmitted_fulfilled + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "fulfilled", "arbitrum"] + description: > + Chainlink CCIP Transmitted Fulfilled + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_arbitrum_ccip_transmitted_reverted + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "reverted", "arbitrum"] + description: > + Chainlink CCIP Transmitted Reverted + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_arbitrum_ccip_transmitted_logs + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "logs", "arbitrum"] + description: > + Chainlink CCIP Transmitted Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + + - name: chainlink_arbitrum_ccip_nop_paid_logs + meta: + blockchain: "arbitrum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "paid", "logs", "arbitrum"] + description: > + Chainlink CCIP Nop Paid Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &nop_address + name: nop_address + description: "Nop Address" + - *total_tokens + + - name: chainlink_arbitrum_ccip_nop_reward_daily + meta: + blockchain: "arbitrum" + + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "reward", "daily", "arbitrum"] + description: > + Chainlink CCIP Nop Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - date_start + - nop_address + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - *operator_name + - *nop_address diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_admin_meta.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_admin_meta.sql new file mode 100644 index 00000000000..c6c8460c879 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_admin_meta.sql @@ -0,0 +1,33 @@ +{{ + config( + alias='ccip_admin_meta', + materialized = 'view' + ) +}} + +SELECT + 'avalanche_c' as blockchain, + admin_address, + operator_name +FROM (values + (0xa5D0084A766203b463b3164DFc49D91509C12daB, 'alphachain'), + (0x4a3dF8cAe46765d33c2551ff5438a5C5FC44347c, 'chainlayer'), + (0x59eCf48345A221E0731E785ED79eD40d0A94E2A5, 'cryptomanufaktur'), + (0x9efa0A617C0552F1558c95993aA8b8A68b3e709C, 'dextrac'), + (0xFdC770353dC0bFCE80a17Ab8a6a2E7d80590f1Ba, 'easy2stake'), + (0x7AF3C2b54eE2f170b8104222eB4EDf2511f5d9d0, 'everstake'), + (0x15918ff7f6C44592C81d999B442956B07D26CC44, 'fiews'), + (0x001E0d294383d5b4136476648aCc8D04a6461Ae3, 'kytzu'), + (0x4564A9c6061f6f1F2Eadb954B1b3C241D2DC984e, 'linkforest'), + (0x797de2909991C66C66D8e730C8385bbab8D18eA6, 'linkpool'), + (0x14f94049397C3F1807c45B6f854Cb5F36bC4393B, 'linkriver'), + (0x670dBCf722ee66079DAB6456071e8d536eEC1463, 'newroad'), + (0x0921E157b690c4F89F7C2a210cFd8bF3964F6776, 'northwestnodes'), + (0xCDa423ee5A7A886eF113b181469581306fC8B607, 'p2porg'), + (0x3FB4600736d306Ee2A89EdF0356D4272fb095768, 'piertwo'), + (0xBDB624CD1051F687f116bB0c642330B2aBdfcc06, 'prophet'), + (0xDA80050Ed4F50033949608208f79EE43Ab91dF55, 'rhino'), + (0xC51D3470693BC049809A1c515606124c7C75908d, 'syncnode'), + (0x183A96629fF566e7AA8AfA38980Cd037EB40A59A, 'validationcloud'), + (0x111f1B41f702c20707686769a4b7f25c56C533B2, 'wetez') +) a (admin_address, operator_name) diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_fulfilled_transactions.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_fulfilled_transactions.sql new file mode 100644 index 00000000000..dff2bea3199 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_fulfilled_transactions.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_fulfilled_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + avalanche_c_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'AVAX' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(avalanche_c_usd.usd_amount) as usd_amount + FROM + {{ source('avalanche_c', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_avalanche_c_ccip_send_traces') }} ccip_send_traces ON ccip_send_traces.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_send_traces.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN avalanche_c_usd ON date_trunc('minute', tx.block_time) = avalanche_c_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'avalanche_c' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_gas_daily.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_gas_daily.sql new file mode 100644 index 00000000000..9fc69269f72 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_gas_daily.sql @@ -0,0 +1,77 @@ +{{ + config( + + alias='ccip_gas_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_gas_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE( + fulfilled.node_address, + reverted.node_address + ) AS "node_address", + COALESCE(SUM(fulfilled.token_amount), 0) as fulfilled_token_amount, + COALESCE(SUM(reverted.token_amount), 0) as reverted_token_amount, + COALESCE(SUM(fulfilled.token_amount * fulfilled.usd_amount), 0) as fulfilled_usd_amount, + COALESCE(SUM(reverted.token_amount * reverted.usd_amount), 0) as reverted_usd_amount + FROM + {{ ref('chainlink_avalanche_c_ccip_transmitted_fulfilled') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_avalanche_c_ccip_transmitted_reverted') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + OR reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, 2 + ORDER BY + 1, 2 + ), + ccip_gas_daily AS ( + SELECT + 'avalanche_c' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + ccip_gas_daily_meta.node_address as node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + fulfilled_token_amount + reverted_token_amount as total_token_amount, + fulfilled_usd_amount + reverted_usd_amount as total_usd_amount + FROM ccip_gas_daily_meta + LEFT JOIN {{ ref('chainlink_avalanche_c_ccip_operator_meta') }} ccip_operator_meta ON ccip_operator_meta.node_address = ccip_gas_daily_meta.node_address + ) +SELECT + blockchain, + date_start, + date_month, + node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + total_token_amount, + total_usd_amount +FROM + ccip_gas_daily +ORDER BY + "date_start" diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_nop_paid_logs.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_nop_paid_logs.sql new file mode 100644 index 00000000000..8601f46195f --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_nop_paid_logs.sql @@ -0,0 +1,29 @@ +{{ + config( + + alias='ccip_nop_paid_logs', + materialized='view' + ) +}} + +SELECT + 'avalanche_c' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_substring(topic1, 13) as nop_address, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('avalanche_c', 'logs') }} logs +WHERE + topic0 = 0x55fdec2aab60a41fa5abb106670eb1006f5aeaee1ba7afea2bc89b5b3ec7678f -- NopPaid \ No newline at end of file diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_nop_reward_daily.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_nop_reward_daily.sql new file mode 100644 index 00000000000..6b0a1fce9c2 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_nop_reward_daily.sql @@ -0,0 +1,72 @@ +{{ + config( + + alias='ccip_nop_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'nop_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + link_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + price.symbol = 'LINK' + GROUP BY + 1 + ORDER BY + 1 + ), + nop_paid AS ( + SELECT + 'avalanche_c' as blockchain, + cast(date_trunc('day', block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', block_time) AS date)) AS date_month, + nop_logs.nop_address as nop_address, + MAX(admin_meta.operator_name) as operator_name, + SUM(nop_logs.total_tokens / 1e18) as token_amount +FROM + {{ref('chainlink_avalanche_c_ccip_nop_paid_logs')}} nop_logs + LEFT JOIN {{ref('chainlink_avalanche_c_ccip_admin_meta')}} admin_meta ON admin_meta.admin_address = nop_logs.nop_address +{% if is_incremental() %} + WHERE block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 4 +ORDER BY + 2, 4 + ), + nop_reward_daily AS ( + SELECT + nop_paid.date_start, + cast(date_trunc('month', nop_paid.date_start) as date) as date_month, + nop_paid.operator_name, + nop_paid.nop_address, + nop_paid.token_amount as token_amount, + (nop_paid.token_amount * lud.usd_amount) as usd_amount + FROM + nop_paid + LEFT JOIN link_usd_daily lud ON lud.date_start = nop_paid.date_start + ORDER BY date_start + ) +SELECT + 'avalanche_c' as blockchain, + date_start, + date_month, + operator_name, + nop_address, + token_amount, + usd_amount +FROM + nop_reward_daily +ORDER BY + 2, 5 diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_operator_meta.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_operator_meta.sql new file mode 100644 index 00000000000..f997d7af791 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_operator_meta.sql @@ -0,0 +1,31 @@ +{{ + config( + alias='ccip_operator_meta', + materialized = 'view' + ) +}} + +SELECT + 'avalanche_c' as blockchain, + node_address, + operator_name +FROM (values + (0x89da56e409dDef3C52BdCfBeFC9b595870880bAA, 'alphachain'), + (0xd877d01d972D28dBd28ed138c63173D07A024E5C, 'chainlayer'), + (0x5b7fFA174f432A4Ad6F3b493ddAf5F5BCA0BaaA1, 'cryptomanufaktur'), + (0xb8F87E376Ef984d154DA9C63b9D06740369F2B49, 'dextrac'), + (0x206598DAc5206fc1c26745050eEbD3Ee80F4e6ba, 'everstake'), + (0xEacB0b11675650ed8Bc48c42eE72e55d480e9F81, 'fiews'), + (0xD808878Af04941eEE5F4685D68aFBf2130Dfe6f5, 'kytzu'), + (0x7b9c30FF13cb28710bB6b20c1ac4C7938309AF27, 'linkforest'), + (0x223e46855d1f9A04C80F2D044512D847307508E8, 'linkpool'), + (0xB5A91c2adFbcB2DA16DC542Eb5c7c54e4c8D45a5, 'linkriver'), + (0xeC55779329cBb18B49F748870C8Ad4328f6E7fC8, 'newroad'), + (0x4499a00546aBa51124dfd7b27A17e7653cF125df, 'northwestnodes'), + (0x93246EfeffC97238B5dE72F14AbbC29fd5F66b65, 'p2porg'), + (0xed462A9F2Bc31eA3f3255597091897585cDaA344, 'piertwo'), + (0x8c6Bb4E3Ce25F723b9C9433904a2b585A68763c8, 'prophet'), + (0x4384bc89E8342aaFCAa467a9f891E0390f99C430, 'syncnode'), + (0x7ee01CdbbaA7258C802BBf5e94C233c1884B908b, 'validationcloud'), + (0x84cEb6f75561dF86dB6e127c286B6efF1e3239B2, 'wetez') +) a (node_address, operator_name) diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_request_daily.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_request_daily.sql new file mode 100644 index 00000000000..f7f450368ed --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_request_daily.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_request_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_request_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE(COUNT(fulfilled.token_amount), 0) as fulfilled_requests, + COALESCE(COUNT(reverted.token_amount), 0) as reverted_requests, + COALESCE(COUNT(fulfilled.token_amount), 0) + COALESCE(COUNT(reverted.token_amount), 0) as total_requests + FROM + {{ ref('chainlink_avalanche_c_ccip_fulfilled_transactions') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_avalanche_c_ccip_reverted_transactions') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + AND reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1 + ORDER BY + 1 + ), + ccip_request_daily AS ( + SELECT + 'avalanche_c' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + fulfilled_requests, + reverted_requests, + total_requests + FROM ccip_request_daily_meta + ) +SELECT + ccip_request_daily.blockchain, + date_start, + date_month, + fulfilled_requests, + reverted_requests, + total_requests +FROM + ccip_request_daily +ORDER BY + "date_start" diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_reverted_transactions.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_reverted_transactions.sql new file mode 100644 index 00000000000..3b397b77899 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_reverted_transactions.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_reverted_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + avalanche_c_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'AVAX' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(avalanche_c_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_avalanche_c_ccip_send_traces') }} tx + INNER JOIN {{ source('avalanche_c', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx2.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN avalanche_c_usd ON date_trunc('minute', tx.block_time) = avalanche_c_usd.block_time + WHERE + tx.tx_success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx."from" + ) +SELECT + 'avalanche_c' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_reward_daily.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_reward_daily.sql new file mode 100644 index 00000000000..cffbbca5597 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_reward_daily.sql @@ -0,0 +1,63 @@ +{{ + config( + alias='ccip_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'token'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + token_meta AS ( + SELECT + token_contract, + token_symbol + FROM + {{ref('chainlink_avalanche_c_ccip_token_meta')}} + ), + token_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + token_meta.token_symbol as symbol, + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + JOIN token_meta ON price.symbol = token_meta.token_symbol + {% if is_incremental() %} + WHERE price.minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, token_meta.token_symbol + ORDER BY + 1 + ), + ccip_reward_daily AS ( + SELECT + ccip_send_requested_daily.date_start, + cast(date_trunc('month', ccip_send_requested_daily.date_start) as date) as date_month, + SUM(ccip_send_requested_daily.fee_amount) as token_amount, + SUM((ccip_send_requested_daily.fee_amount * tud.usd_amount)) as usd_amount, + ccip_send_requested_daily.token as token + FROM + {{ref('chainlink_avalanche_c_ccip_send_requested_daily')}} ccip_send_requested_daily + LEFT JOIN token_usd_daily tud ON tud.date_start = ccip_send_requested_daily.date_start AND tud.symbol = ccip_send_requested_daily.token + {% if is_incremental() %} + WHERE ccip_send_requested_daily.date_start >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY 1, 5 + ) +SELECT + 'avalanche_c' as blockchain, + date_start, + date_month, + token_amount, + usd_amount, + token +FROM + ccip_reward_daily +ORDER BY + 2, 6 diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_send_requested.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_send_requested.sql new file mode 100644 index 00000000000..7839dc0c385 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_send_requested.sql @@ -0,0 +1,51 @@ +{{ + config( + + alias='ccip_send_requested', + materialized='view' + ) +}} + +SELECT + MAX(ccip_traces.blockchain) AS blockchain, + MAX(ccip_traces.block_time) AS evt_block_time, + MAX(reward_evt_transfer.value / 1e18) AS fee_amount, + MAX(token_addresses.token_symbol) AS token, + MAX(ccip_traces.chain_selector) as destination_chain_selector, + MAX(ccip_traces.destination) as destination_blockchain +FROM + {{ ref('chainlink_avalanche_c_ccip_send_traces') }} ccip_traces + LEFT JOIN {{ source('erc20_avalanche_c', 'evt_Transfer') }} reward_evt_transfer ON reward_evt_transfer.evt_tx_hash = ccip_traces.tx_hash + LEFT JOIN {{ ref('chainlink_avalanche_c_ccip_token_meta') }} token_addresses ON token_addresses.token_contract = reward_evt_transfer.contract_address + LEFT JOIN {{ ref('chainlink_avalanche_c_ccip_tokens_locked_logs') }} tokens_locked ON tokens_locked.tx_hash = ccip_traces.tx_hash +WHERE + ( + ( + ccip_traces.value > 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_avalanche_c_ccip_token_meta') }} + WHERE + token_symbol = 'WAVAX' + ) + ) + OR ( + ccip_traces.value <= 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_avalanche_c_ccip_token_meta') }} + WHERE + token_symbol != 'WAVAX' + ) + ) + ) + AND ( + tokens_locked.tx_hash IS NULL + OR tokens_locked.total_tokens != reward_evt_transfer.value + ) +GROUP BY + ccip_traces.tx_hash \ No newline at end of file diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_send_requested_daily.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_send_requested_daily.sql new file mode 100644 index 00000000000..7e8236f3926 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_send_requested_daily.sql @@ -0,0 +1,31 @@ +{{ + config( + + alias='ccip_send_requested_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'token', 'destination_blockchain'] + ) +}} + +{% set incremental_interval = '7' %} + +SELECT + 'avalanche_c' as blockchain, + cast(date_trunc('day', evt_block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', evt_block_time) AS date)) AS date_month, + SUM(ccip_send_requested.fee_amount) as fee_amount, + ccip_send_requested.token as token, + ccip_send_requested.destination_blockchain AS destination_blockchain, + COUNT(ccip_send_requested.destination_blockchain) AS count +FROM + {{ref('chainlink_avalanche_c_ccip_send_requested')}} ccip_send_requested +{% if is_incremental() %} + WHERE evt_block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 5, 6 +ORDER BY + 2, 5, 6 diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_send_traces.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_send_traces.sql new file mode 100644 index 00000000000..a4de4e5844e --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_send_traces.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_send_traces', + materialized='view' + ) +}} + +SELECT + 'avalanche_c' as blockchain, + block_hash, + block_number, + block_time, + tx_hash, + traces."from", + traces."to", + input, + traces."output", + traces.tx_success, + traces.value, + network_meta.chain_selector as chain_selector, + network_meta.blockchain as destination +FROM + {{ source('avalanche_c', 'traces') }} traces +left join {{ref('chainlink_ccip_network_meta')}} network_meta on network_meta.chain_selector = bytearray_to_uint256(bytearray_substring(input, 5, 32)) +WHERE + traces."to" = (SELECT router FROM {{ref('chainlink_ccip_network_meta')}} WHERE blockchain = 'avalanche_c') + AND bytearray_substring(input, 1, 4) = 0x96f4e9f9 \ No newline at end of file diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_token_meta.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_token_meta.sql new file mode 100644 index 00000000000..930e49f2abf --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_token_meta.sql @@ -0,0 +1,18 @@ +{{ + config( + + alias='ccip_token_meta', + materialized = 'view' + ) +}} + +-- will need to be updated to add new fee tokens in the future + +SELECT + 'avalanche_c' AS blockchain, + token_contract, + token_symbol +FROM (VALUES + (0x5947BB275c521040051D82396192181b413227A3, 'LINK'), + (0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7, 'WAVAX') +) a (token_contract, token_symbol) diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_tokens_locked_logs.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_tokens_locked_logs.sql new file mode 100644 index 00000000000..62b496e8a6f --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_tokens_locked_logs.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_tokens_locked_logs', + materialized='view' + ) +}} + +SELECT + 'avalanche_c' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('avalanche_c', 'logs') }} logs +WHERE + topic0 = 0x9f1ec8c880f76798e7b793325d625e9b60e4082a553c98f42b6cda368dd60008 -- Locked \ No newline at end of file diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_transmitted_fulfilled.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_transmitted_fulfilled.sql new file mode 100644 index 00000000000..dd969de666c --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_transmitted_fulfilled.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_transmitted_fulfilled', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + avalanche_c_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'AVAX' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(avalanche_c_usd.usd_amount) as usd_amount + FROM + {{ source('avalanche_c', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_avalanche_c_ccip_transmitted_logs') }} ccip_tx ON ccip_tx.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN avalanche_c_usd ON date_trunc('minute', tx.block_time) = avalanche_c_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'avalanche_c' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_transmitted_logs.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_transmitted_logs.sql new file mode 100644 index 00000000000..046e2a7676c --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_transmitted_logs.sql @@ -0,0 +1,27 @@ +{{ + config( + + alias='ccip_transmitted_logs', + materialized='view' + ) +}} + +SELECT + 'avalanche_c' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from +FROM + {{ source('avalanche_c', 'logs') }} logs +WHERE + topic0 = 0xb04e63db38c49950639fa09d29872f21f5d49d614f3a969d8adf3d4b52e41a62 -- Transmitted \ No newline at end of file diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_transmitted_reverted.sql b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_transmitted_reverted.sql new file mode 100644 index 00000000000..8c8acffc6c8 --- /dev/null +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_ccip_transmitted_reverted.sql @@ -0,0 +1,64 @@ +{{ + config( + + alias='ccip_transmitted_reverted', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + avalanche_c_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'AVAX' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx.tx_from as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(avalanche_c_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_avalanche_c_ccip_transmitted_logs') }} tx + LEFT JOIN {{ source('avalanche_c', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN avalanche_c_usd ON date_trunc('minute', tx.block_time) = avalanche_c_usd.block_time + WHERE + tx2.success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx.index, + tx.tx_from + ) +SELECT + 'avalanche_c' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/avalanche_c/chainlink_avalanche_c_schema.yml b/models/chainlink/avalanche_c/chainlink_avalanche_c_schema.yml index 555396d027c..ead8debad67 100644 --- a/models/chainlink/avalanche_c/chainlink_avalanche_c_schema.yml +++ b/models/chainlink/avalanche_c/chainlink_avalanche_c_schema.yml @@ -1189,3 +1189,365 @@ models: - *feed_name - *requester_address - *requester_name + + - name: chainlink_avalanche_c_ccip_fulfilled_transactions + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "fulfilled", "transactions", "avalanche_c"] + description: > + Chainlink CCIP Fulfilled Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_avalanche_c_ccip_gas_daily + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "gas", "daily", "avalanche_c"] + description: > + Chainlink CCIP Gas Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - node_address + columns: + - *blockchain + - *date_start + - *date_month + - *node_address + - *operator_name + - *fulfilled_token_amount + - *fulfilled_usd_amount + - *reverted_token_amount + - *reverted_usd_amount + - *total_token_amount + - *total_usd_amount + + - name: chainlink_avalanche_c_ccip_request_daily + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "request", "daily", "avalanche_c"] + description: > + Chainlink CCIP Request Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + columns: + - *blockchain + - *date_start + - *date_month + - *fulfilled_requests + - *reverted_requests + - *total_requests + + - name: chainlink_avalanche_c_ccip_reverted_transactions + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reverted", "transactions", "avalanche_c"] + description: > + Chainlink CCIP Reverted Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + + - name: chainlink_avalanche_c_ccip_reward_daily + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reward", "daily", "avalanche_c"] + description: > + Chainlink CCIP Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - &token + name: token + description: "Token" + + - name: chainlink_avalanche_c_ccip_send_requested + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "avalanche_c"] + description: > + Chainlink CCIP Send Requested + columns: + - *blockchain + - *evt_block_time + - &fee_amount + name: fee_amount + description: "Fee Amount" + - *token + - &destination_blockchain + name: destination_blockchain + description: "Destination Blockchain" + - &destination_chain_selector + name: destination_chain_selector + description: "Destination Chain Selector" + + - name: chainlink_avalanche_c_ccip_send_requested_daily + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "daily", "avalanche_c"] + description: > + Chainlink CCIP Send Requested Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + - destination_blockchain + columns: + - *blockchain + - *date_start + - *date_month + - *fee_amount + - *token + - *destination_blockchain + - &count + name: count + description: "Count" + + - name: chainlink_avalanche_c_ccip_send_traces + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "traces", "avalanche_c"] + description: > + Chainlink CCIP Send Traces + columns: + - *blockchain + - *block_hash + - *block_number + - *block_time + - *tx_hash + - *from + - *to + - *input + - *output + - &tx_success + name: tx_success + description: "Transaction Success" + - &value + name: value + description: "Value" + - &chain_selector + name: chain_selector + description: "Chain Selector" + - &destination + name: destination + description: "Destination" + + - name: chainlink_avalanche_c_ccip_tokens_locked_logs + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "tokens", "locked", "logs", "avalanche_c"] + description: > + Chainlink CCIP Tokens Locked Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &total_tokens + name: total_tokens + description: "Total Tokens" + + - name: chainlink_avalanche_c_ccip_transmitted_fulfilled + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "fulfilled", "avalanche_c"] + description: > + Chainlink CCIP Transmitted Fulfilled + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_avalanche_c_ccip_transmitted_reverted + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "reverted", "avalanche_c"] + description: > + Chainlink CCIP Transmitted Reverted + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_avalanche_c_ccip_transmitted_logs + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "logs", "avalanche_c"] + description: > + Chainlink CCIP Transmitted Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + + - name: chainlink_avalanche_c_ccip_nop_paid_logs + meta: + blockchain: "avalanche_c" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "paid", "logs", "avalanche_c"] + description: > + Chainlink CCIP Nop Paid Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &nop_address + name: nop_address + description: "Nop Address" + - *total_tokens + + - name: chainlink_avalanche_c_ccip_nop_reward_daily + meta: + blockchain: "avalanche_c" + + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "reward", "daily", "avalanche_c"] + description: > + Chainlink CCIP Nop Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - date_start + - nop_address + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - *operator_name + - *nop_address diff --git a/models/chainlink/base/chainlink_base_ccip_admin_meta.sql b/models/chainlink/base/chainlink_base_ccip_admin_meta.sql new file mode 100644 index 00000000000..c8d95da1a71 --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_admin_meta.sql @@ -0,0 +1,29 @@ +{{ + config( + alias='ccip_admin_meta', + materialized = 'view' + ) +}} + +SELECT + 'base' as blockchain, + admin_address, + operator_name +FROM (values + (0x59eCf48345A221E0731E785ED79eD40d0A94E2A5, 'cryptomanufaktur'), + (0x9efa0A617C0552F1558c95993aA8b8A68b3e709C, 'dextrac'), + (0x7AF3C2b54eE2f170b8104222eB4EDf2511f5d9d0, 'everstake'), + (0x15918ff7f6C44592C81d999B442956B07D26CC44, 'fiews'), + (0x001E0d294383d5b4136476648aCc8D04a6461Ae3, 'kytzu'), + (0x4564A9c6061f6f1F2Eadb954B1b3C241D2DC984e, 'linkforest'), + (0x797de2909991C66C66D8e730C8385bbab8D18eA6, 'linkpool'), + (0x14f94049397C3F1807c45B6f854Cb5F36bC4393B, 'linkriver'), + (0x670dBCf722ee66079DAB6456071e8d536eEC1463, 'newroad'), + (0x0921E157b690c4F89F7C2a210cFd8bF3964F6776, 'northwestnodes'), + (0xCDa423ee5A7A886eF113b181469581306fC8B607, 'p2porg'), + (0x3FB4600736d306Ee2A89EdF0356D4272fb095768, 'piertwo'), + (0xBDB624CD1051F687f116bB0c642330B2aBdfcc06, 'prophet'), + (0xC51D3470693BC049809A1c515606124c7C75908d, 'syncnode'), + (0x183A96629fF566e7AA8AfA38980Cd037EB40A59A, 'validationcloud'), + (0x111f1B41f702c20707686769a4b7f25c56C533B2, 'wetez') +) a (admin_address, operator_name) diff --git a/models/chainlink/base/chainlink_base_ccip_fulfilled_transactions.sql b/models/chainlink/base/chainlink_base_ccip_fulfilled_transactions.sql new file mode 100644 index 00000000000..f70962268db --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_fulfilled_transactions.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_fulfilled_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + base_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((l1_gas_used) as double) / 1e18) * l1_gas_price) as token_amount, + MAX(base_usd.usd_amount) as usd_amount + FROM + {{ source('base', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_base_ccip_send_traces') }} ccip_send_traces ON ccip_send_traces.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_send_traces.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN base_usd ON date_trunc('minute', tx.block_time) = base_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'base' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/base/chainlink_base_ccip_gas_daily.sql b/models/chainlink/base/chainlink_base_ccip_gas_daily.sql new file mode 100644 index 00000000000..661d4e45911 --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_gas_daily.sql @@ -0,0 +1,77 @@ +{{ + config( + + alias='ccip_gas_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_gas_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE( + fulfilled.node_address, + reverted.node_address + ) AS "node_address", + COALESCE(SUM(fulfilled.token_amount), 0) as fulfilled_token_amount, + COALESCE(SUM(reverted.token_amount), 0) as reverted_token_amount, + COALESCE(SUM(fulfilled.token_amount * fulfilled.usd_amount), 0) as fulfilled_usd_amount, + COALESCE(SUM(reverted.token_amount * reverted.usd_amount), 0) as reverted_usd_amount + FROM + {{ ref('chainlink_base_ccip_transmitted_fulfilled') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_base_ccip_transmitted_reverted') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + OR reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, 2 + ORDER BY + 1, 2 + ), + ccip_gas_daily AS ( + SELECT + 'base' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + ccip_gas_daily_meta.node_address as node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + fulfilled_token_amount + reverted_token_amount as total_token_amount, + fulfilled_usd_amount + reverted_usd_amount as total_usd_amount + FROM ccip_gas_daily_meta + LEFT JOIN {{ ref('chainlink_base_ccip_operator_meta') }} ccip_operator_meta ON ccip_operator_meta.node_address = ccip_gas_daily_meta.node_address + ) +SELECT + blockchain, + date_start, + date_month, + node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + total_token_amount, + total_usd_amount +FROM + ccip_gas_daily +ORDER BY + "date_start" diff --git a/models/chainlink/base/chainlink_base_ccip_nop_paid_logs.sql b/models/chainlink/base/chainlink_base_ccip_nop_paid_logs.sql new file mode 100644 index 00000000000..867a0cbb03a --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_nop_paid_logs.sql @@ -0,0 +1,29 @@ +{{ + config( + + alias='ccip_nop_paid_logs', + materialized='view' + ) +}} + +SELECT + 'base' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_substring(topic1, 13) as nop_address, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('base', 'logs') }} logs +WHERE + topic0 = 0x55fdec2aab60a41fa5abb106670eb1006f5aeaee1ba7afea2bc89b5b3ec7678f -- NopPaid \ No newline at end of file diff --git a/models/chainlink/base/chainlink_base_ccip_nop_reward_daily.sql b/models/chainlink/base/chainlink_base_ccip_nop_reward_daily.sql new file mode 100644 index 00000000000..92819a50f29 --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_nop_reward_daily.sql @@ -0,0 +1,72 @@ +{{ + config( + + alias='ccip_nop_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'nop_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + link_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + price.symbol = 'LINK' + GROUP BY + 1 + ORDER BY + 1 + ), + nop_paid AS ( + SELECT + 'base' as blockchain, + cast(date_trunc('day', block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', block_time) AS date)) AS date_month, + nop_logs.nop_address as nop_address, + MAX(admin_meta.operator_name) as operator_name, + SUM(nop_logs.total_tokens / 1e18) as token_amount +FROM + {{ref('chainlink_base_ccip_nop_paid_logs')}} nop_logs + LEFT JOIN {{ref('chainlink_base_ccip_admin_meta')}} admin_meta ON admin_meta.admin_address = nop_logs.nop_address +{% if is_incremental() %} + WHERE block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 4 +ORDER BY + 2, 4 + ), + nop_reward_daily AS ( + SELECT + nop_paid.date_start, + cast(date_trunc('month', nop_paid.date_start) as date) as date_month, + nop_paid.operator_name, + nop_paid.nop_address, + nop_paid.token_amount as token_amount, + (nop_paid.token_amount * lud.usd_amount) as usd_amount + FROM + nop_paid + LEFT JOIN link_usd_daily lud ON lud.date_start = nop_paid.date_start + ORDER BY date_start + ) +SELECT + 'base' as blockchain, + date_start, + date_month, + operator_name, + nop_address, + token_amount, + usd_amount +FROM + nop_reward_daily +ORDER BY + 2, 5 diff --git a/models/chainlink/base/chainlink_base_ccip_operator_meta.sql b/models/chainlink/base/chainlink_base_ccip_operator_meta.sql new file mode 100644 index 00000000000..6f35d4ad038 --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_operator_meta.sql @@ -0,0 +1,29 @@ +{{ + config( + alias='ccip_operator_meta', + materialized = 'view' + ) +}} + +SELECT + 'base' as blockchain, + node_address, + operator_name +FROM (values + (0x2b06E81cd29Ec579Ca61B7205B7C04F61eFE1135, 'cryptomanufaktur'), + (0x458807fc1e375aA814037D31E9608214a5d89f24, 'dextrac'), + (0x49Fc8CbD8A6Cff529eF7C498c812f6f3f33f005E, 'everstake'), + (0xb3D4D386B89b5D04a3dB43B39Ec24A95751e4Cf9, 'fiews'), + (0x409E2F15d1668aAD747242af6df32D0f9888994e, 'kytzu'), + (0x31FB00b1F2De8106b087cf589Fa9e54ffF2c538D, 'linkforest'), + (0xA7f25cbCb678b61D72aF87867bf85677260b2b68, 'linkpool'), + (0x0b9beBA52349c567dF5c3793fFb061D851d37901, 'linkriver'), + (0x186363157bFAc7e301C56a1Ab9BAFBaa88713d05, 'newroad'), + (0xC4163681c352D832c32F930e205ccb63B1dc08Be, 'northwestnodes'), + (0x59446c1A13c5D1182cA50f2080C86a18dF84A4ED, 'p2porg'), + (0xdaca43Cb6449CB739A63cA1eF0927F63995c0aEE, 'piertwo'), + (0xBAb7937F6c0f3d87F7Beb7a8E15330603c2AB9E0, 'prophet'), + (0x6C5Ca2977f3a5E75Bab2e2DE5815ff8c5D6c6775, 'syncnode'), + (0x8Cb973bdeAcE0Ad71bbB57E4901390caA952267D, 'validationcloud'), + (0x5a3dF9bD4Cf07510dB5812aC071c2F83895122c2, 'wetez') +) a (node_address, operator_name) diff --git a/models/chainlink/base/chainlink_base_ccip_request_daily.sql b/models/chainlink/base/chainlink_base_ccip_request_daily.sql new file mode 100644 index 00000000000..acc23242d1c --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_request_daily.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_request_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_request_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE(COUNT(fulfilled.token_amount), 0) as fulfilled_requests, + COALESCE(COUNT(reverted.token_amount), 0) as reverted_requests, + COALESCE(COUNT(fulfilled.token_amount), 0) + COALESCE(COUNT(reverted.token_amount), 0) as total_requests + FROM + {{ ref('chainlink_base_ccip_fulfilled_transactions') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_base_ccip_reverted_transactions') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + AND reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1 + ORDER BY + 1 + ), + ccip_request_daily AS ( + SELECT + 'base' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + fulfilled_requests, + reverted_requests, + total_requests + FROM ccip_request_daily_meta + ) +SELECT + ccip_request_daily.blockchain, + date_start, + date_month, + fulfilled_requests, + reverted_requests, + total_requests +FROM + ccip_request_daily +ORDER BY + "date_start" diff --git a/models/chainlink/base/chainlink_base_ccip_reverted_transactions.sql b/models/chainlink/base/chainlink_base_ccip_reverted_transactions.sql new file mode 100644 index 00000000000..466a7754c23 --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_reverted_transactions.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_reverted_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + base_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((l1_gas_used) as double) / 1e18) * l1_gas_price) as token_amount, + MAX(base_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_base_ccip_send_traces') }} tx + INNER JOIN {{ source('base', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx2.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN base_usd ON date_trunc('minute', tx.block_time) = base_usd.block_time + WHERE + tx.tx_success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx."from" + ) +SELECT + 'base' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/base/chainlink_base_ccip_reward_daily.sql b/models/chainlink/base/chainlink_base_ccip_reward_daily.sql new file mode 100644 index 00000000000..b085ba6b0aa --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_reward_daily.sql @@ -0,0 +1,63 @@ +{{ + config( + alias='ccip_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'token'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + token_meta AS ( + SELECT + token_contract, + token_symbol + FROM + {{ref('chainlink_base_ccip_token_meta')}} + ), + token_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + token_meta.token_symbol as symbol, + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + JOIN token_meta ON price.symbol = token_meta.token_symbol + {% if is_incremental() %} + WHERE price.minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, token_meta.token_symbol + ORDER BY + 1 + ), + ccip_reward_daily AS ( + SELECT + ccip_send_requested_daily.date_start, + cast(date_trunc('month', ccip_send_requested_daily.date_start) as date) as date_month, + SUM(ccip_send_requested_daily.fee_amount) as token_amount, + SUM((ccip_send_requested_daily.fee_amount * tud.usd_amount)) as usd_amount, + ccip_send_requested_daily.token as token + FROM + {{ref('chainlink_base_ccip_send_requested_daily')}} ccip_send_requested_daily + LEFT JOIN token_usd_daily tud ON tud.date_start = ccip_send_requested_daily.date_start AND tud.symbol = ccip_send_requested_daily.token + {% if is_incremental() %} + WHERE ccip_send_requested_daily.date_start >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY 1, 5 + ) +SELECT + 'base' as blockchain, + date_start, + date_month, + token_amount, + usd_amount, + token +FROM + ccip_reward_daily +ORDER BY + 2, 6 diff --git a/models/chainlink/base/chainlink_base_ccip_send_requested.sql b/models/chainlink/base/chainlink_base_ccip_send_requested.sql new file mode 100644 index 00000000000..e933546d908 --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_send_requested.sql @@ -0,0 +1,51 @@ +{{ + config( + + alias='ccip_send_requested', + materialized='view' + ) +}} + +SELECT + MAX(ccip_traces.blockchain) AS blockchain, + MAX(ccip_traces.block_time) AS evt_block_time, + MAX(reward_evt_transfer.value / 1e18) AS fee_amount, + MAX(token_addresses.token_symbol) AS token, + MAX(ccip_traces.chain_selector) as destination_chain_selector, + MAX(ccip_traces.destination) as destination_blockchain +FROM + {{ ref('chainlink_base_ccip_send_traces') }} ccip_traces + LEFT JOIN {{ source('erc20_base', 'evt_transfer') }} reward_evt_transfer ON reward_evt_transfer.evt_tx_hash = ccip_traces.tx_hash + LEFT JOIN {{ ref('chainlink_base_ccip_token_meta') }} token_addresses ON token_addresses.token_contract = reward_evt_transfer.contract_address + LEFT JOIN {{ ref('chainlink_base_ccip_tokens_locked_logs') }} tokens_locked ON tokens_locked.tx_hash = ccip_traces.tx_hash +WHERE + ( + ( + ccip_traces.value > 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_base_ccip_token_meta') }} + WHERE + token_symbol = 'WETH' + ) + ) + OR ( + ccip_traces.value <= 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_base_ccip_token_meta') }} + WHERE + token_symbol != 'WETH' + ) + ) + ) + AND ( + tokens_locked.tx_hash IS NULL + OR tokens_locked.total_tokens != reward_evt_transfer.value + ) +GROUP BY + ccip_traces.tx_hash \ No newline at end of file diff --git a/models/chainlink/base/chainlink_base_ccip_send_requested_daily.sql b/models/chainlink/base/chainlink_base_ccip_send_requested_daily.sql new file mode 100644 index 00000000000..28ef3ae518e --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_send_requested_daily.sql @@ -0,0 +1,31 @@ +{{ + config( + + alias='ccip_send_requested_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'token', 'destination_blockchain'] + ) +}} + +{% set incremental_interval = '7' %} + +SELECT + 'base' as blockchain, + cast(date_trunc('day', evt_block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', evt_block_time) AS date)) AS date_month, + SUM(ccip_send_requested.fee_amount) as fee_amount, + ccip_send_requested.token as token, + ccip_send_requested.destination_blockchain AS destination_blockchain, + COUNT(ccip_send_requested.destination_blockchain) AS count +FROM + {{ref('chainlink_base_ccip_send_requested')}} ccip_send_requested +{% if is_incremental() %} + WHERE evt_block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 5, 6 +ORDER BY + 2, 5, 6 diff --git a/models/chainlink/base/chainlink_base_ccip_send_traces.sql b/models/chainlink/base/chainlink_base_ccip_send_traces.sql new file mode 100644 index 00000000000..8c9ac619e8b --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_send_traces.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_send_traces', + materialized='view' + ) +}} + +SELECT + 'base' as blockchain, + block_hash, + block_number, + block_time, + tx_hash, + traces."from", + traces."to", + input, + traces."output", + traces.tx_success, + traces.value, + network_meta.chain_selector as chain_selector, + network_meta.blockchain as destination +FROM + {{ source('base', 'traces') }} traces +left join {{ref('chainlink_ccip_network_meta')}} network_meta on network_meta.chain_selector = bytearray_to_uint256(bytearray_substring(input, 5, 32)) +WHERE + traces."to" = (SELECT router FROM {{ref('chainlink_ccip_network_meta')}} WHERE blockchain = 'base') + AND bytearray_substring(input, 1, 4) = 0x96f4e9f9 \ No newline at end of file diff --git a/models/chainlink/base/chainlink_base_ccip_token_meta.sql b/models/chainlink/base/chainlink_base_ccip_token_meta.sql new file mode 100644 index 00000000000..1bd5c83700a --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_token_meta.sql @@ -0,0 +1,18 @@ +{{ + config( + + alias='ccip_token_meta', + materialized = 'view' + ) +}} + +-- will need to be updated to add new fee tokens in the future + +SELECT + 'base' AS blockchain, + token_contract, + token_symbol +FROM (VALUES + (0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196, 'LINK'), + (0x4200000000000000000000000000000000000006, 'WETH') +) a (token_contract, token_symbol) diff --git a/models/chainlink/base/chainlink_base_ccip_tokens_locked_logs.sql b/models/chainlink/base/chainlink_base_ccip_tokens_locked_logs.sql new file mode 100644 index 00000000000..708d8e4f13c --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_tokens_locked_logs.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_tokens_locked_logs', + materialized='view' + ) +}} + +SELECT + 'base' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('base', 'logs') }} logs +WHERE + topic0 = 0x9f1ec8c880f76798e7b793325d625e9b60e4082a553c98f42b6cda368dd60008 -- Locked \ No newline at end of file diff --git a/models/chainlink/base/chainlink_base_ccip_transmitted_fulfilled.sql b/models/chainlink/base/chainlink_base_ccip_transmitted_fulfilled.sql new file mode 100644 index 00000000000..1cf226421c0 --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_transmitted_fulfilled.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_transmitted_fulfilled', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + base_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((l1_gas_used) as double) / 1e18) * l1_gas_price) as token_amount, + MAX(base_usd.usd_amount) as usd_amount + FROM + {{ source('base', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_base_ccip_transmitted_logs') }} ccip_tx ON ccip_tx.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN base_usd ON date_trunc('minute', tx.block_time) = base_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'base' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/base/chainlink_base_ccip_transmitted_logs.sql b/models/chainlink/base/chainlink_base_ccip_transmitted_logs.sql new file mode 100644 index 00000000000..4be1cad276b --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_transmitted_logs.sql @@ -0,0 +1,27 @@ +{{ + config( + + alias='ccip_transmitted_logs', + materialized='view' + ) +}} + +SELECT + 'base' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from +FROM + {{ source('base', 'logs') }} logs +WHERE + topic0 = 0xb04e63db38c49950639fa09d29872f21f5d49d614f3a969d8adf3d4b52e41a62 -- Transmitted \ No newline at end of file diff --git a/models/chainlink/base/chainlink_base_ccip_transmitted_reverted.sql b/models/chainlink/base/chainlink_base_ccip_transmitted_reverted.sql new file mode 100644 index 00000000000..274d4036877 --- /dev/null +++ b/models/chainlink/base/chainlink_base_ccip_transmitted_reverted.sql @@ -0,0 +1,64 @@ +{{ + config( + + alias='ccip_transmitted_reverted', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + base_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx.tx_from as "node_address", + MAX((cast((l1_gas_used) as double) / 1e18) * l1_gas_price) as token_amount, + MAX(base_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_base_ccip_transmitted_logs') }} tx + LEFT JOIN {{ source('base', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN base_usd ON date_trunc('minute', tx.block_time) = base_usd.block_time + WHERE + tx2.success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx.index, + tx.tx_from + ) +SELECT + 'base' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/base/chainlink_base_schema.yml b/models/chainlink/base/chainlink_base_schema.yml new file mode 100644 index 00000000000..195ab135bbc --- /dev/null +++ b/models/chainlink/base/chainlink_base_schema.yml @@ -0,0 +1,430 @@ +version: 2 + +models: + - name: chainlink_base_ccip_fulfilled_transactions + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "fulfilled", "transactions", "base"] + description: > + Chainlink CCIP Fulfilled Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - &blockchain + name: blockchain + description: "Blockchain" + - &block_time + name: block_time + description: "Block Time" + - &date_month + name: date_month + description: "Date Month" + - &node_address + name: node_address + description: "Node Address" + - &token_amount + name: token_amount + description: "Token Amount" + - &usd_amount + name: usd_amount + description: "USD Amount" + - &tx_hash + name: tx_hash + description: "Transaction Hash" + - &tx_index + name: tx_index + description: "Transaction Index" + + - name: chainlink_base_ccip_gas_daily + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "gas", "daily", "base"] + description: > + Chainlink CCIP Gas Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - node_address + columns: + - *blockchain + - &date_start + name: date_start + description: "Date Start" + - *date_month + - *node_address + - &operator_name + name: operator_name + description: "Operator Name" + - &fulfilled_token_amount + name: fulfilled_token_amount + description: "Fulfilled Token Amount" + - &fulfilled_usd_amount + name: fulfilled_usd_amount + description: "Fulfilled USD Amount" + - &reverted_token_amount + name: reverted_token_amount + description: "Reverted Token Amount" + - &reverted_usd_amount + name: reverted_usd_amount + description: "Reverted USD Amount" + - &total_token_amount + name: total_token_amount + description: "Total Token Amount" + - &total_usd_amount + name: total_usd_amount + description: "Total USD Amount" + + - name: chainlink_base_ccip_request_daily + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "request", "daily", "base"] + description: > + Chainlink CCIP Request Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + columns: + - *blockchain + - *date_start + - *date_month + - &fulfilled_requests + name: fulfilled_requests + description: "Fulfilled Requests" + - &reverted_requests + name: reverted_requests + description: "Reverted Requests" + - &total_requests + name: total_requests + description: "Total Requests" + + - name: chainlink_base_ccip_reverted_transactions + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reverted", "transactions", "base"] + description: > + Chainlink CCIP Reverted Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + + - name: chainlink_base_ccip_reward_daily + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reward", "daily", "base"] + description: > + Chainlink CCIP Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - &token + name: token + description: "Token" + + - name: chainlink_base_ccip_send_requested + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "base"] + description: > + Chainlink CCIP Send Requested + columns: + - *blockchain + - &evt_block_time + name: evt_block_time + description: "Event Block Time" + - &fee_amount + name: fee_amount + description: "Fee Amount" + - *token + - &destination_blockchain + name: destination_blockchain + description: "Destination Blockchain" + - &destination_chain_selector + name: destination_chain_selector + description: "Destination Chain Selector" + + - name: chainlink_base_ccip_send_requested_daily + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "daily", "base"] + description: > + Chainlink CCIP Send Requested Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + - destination_blockchain + columns: + - *blockchain + - *date_start + - *date_month + - *fee_amount + - *token + - *destination_blockchain + - &count + name: count + description: "Count" + + - name: chainlink_base_ccip_send_traces + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "traces", "base"] + description: > + Chainlink CCIP Send Traces + columns: + - *blockchain + - &block_hash + name: block_hash + description: "Block Hash" + - &block_number + name: block_number + description: "Block Number" + - *block_time + - *tx_hash + - &from + name: from + description: "From" + - &to + name: to + description: "To" + - &input + name: input + description: "Input" + - &output + name: output + description: "Output" + - &tx_success + name: tx_success + description: "Transaction Success" + - &value + name: value + description: "Value" + - &chain_selector + name: chain_selector + description: "Chain Selector" + - &destination + name: destination + description: "Destination" + + - name: chainlink_base_ccip_tokens_locked_logs + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "tokens", "locked", "logs", "base"] + description: > + Chainlink CCIP Tokens Locked Logs + columns: + - *blockchain + - *block_hash + - &contract_address + name: contract_address + description: "Contract Address" + - &data + name: data + description: "Data" + - &topic0 + name: topic0 + description: "Topic 0" + - &topic1 + name: topic1 + description: "Topic 1" + - &topic2 + name: topic2 + description: "Topic 2" + - &topic3 + name: topic3 + description: "Topic 3" + - *tx_hash + - *block_number + - *block_time + - &index + name: index + description: "Index" + - *tx_index + - &total_tokens + name: total_tokens + description: "Total Tokens" + + - name: chainlink_base_ccip_transmitted_fulfilled + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "fulfilled", "base"] + description: > + Chainlink CCIP Transmitted Fulfilled + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_base_ccip_transmitted_reverted + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "reverted", "base"] + description: > + Chainlink CCIP Transmitted Reverted + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_base_ccip_transmitted_logs + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "logs", "base"] + description: > + Chainlink CCIP Transmitted Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + + - name: chainlink_base_ccip_nop_paid_logs + meta: + blockchain: "base" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "paid", "logs", "base"] + description: > + Chainlink CCIP Nop Paid Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &nop_address + name: nop_address + description: "Nop Address" + - *total_tokens + + - name: chainlink_base_ccip_nop_reward_daily + meta: + blockchain: "base" + + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "reward", "daily", "base"] + description: > + Chainlink CCIP Nop Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - date_start + - nop_address + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - *operator_name + - *nop_address diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_admin_meta.sql b/models/chainlink/bnb/chainlink_bnb_ccip_admin_meta.sql new file mode 100644 index 00000000000..dfe4bfc3b9a --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_admin_meta.sql @@ -0,0 +1,29 @@ +{{ + config( + alias='ccip_admin_meta', + materialized = 'view' + ) +}} + +SELECT + 'bnb' as blockchain, + admin_address, + operator_name +FROM (values + (0x59eCf48345A221E0731E785ED79eD40d0A94E2A5, 'cryptomanufaktur'), + (0x9efa0A617C0552F1558c95993aA8b8A68b3e709C, 'dextrac'), + (0x7AF3C2b54eE2f170b8104222eB4EDf2511f5d9d0, 'everstake'), + (0x15918ff7f6C44592C81d999B442956B07D26CC44, 'fiews'), + (0x001E0d294383d5b4136476648aCc8D04a6461Ae3, 'kytzu'), + (0x4564A9c6061f6f1F2Eadb954B1b3C241D2DC984e, 'linkforest'), + (0x797de2909991C66C66D8e730C8385bbab8D18eA6, 'linkpool'), + (0x14f94049397C3F1807c45B6f854Cb5F36bC4393B, 'linkriver'), + (0x670dBCf722ee66079DAB6456071e8d536eEC1463, 'newroad'), + (0x0921E157b690c4F89F7C2a210cFd8bF3964F6776, 'northwestnodes'), + (0xCDa423ee5A7A886eF113b181469581306fC8B607, 'p2porg'), + (0x3FB4600736d306Ee2A89EdF0356D4272fb095768, 'piertwo'), + (0xBDB624CD1051F687f116bB0c642330B2aBdfcc06, 'prophet'), + (0xC51D3470693BC049809A1c515606124c7C75908d, 'syncnode'), + (0x183A96629fF566e7AA8AfA38980Cd037EB40A59A, 'validationcloud'), + (0x111f1B41f702c20707686769a4b7f25c56C533B2, 'wetez') +) a (admin_address, operator_name) diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_fulfilled_transactions.sql b/models/chainlink/bnb/chainlink_bnb_ccip_fulfilled_transactions.sql new file mode 100644 index 00000000000..234645b9c33 --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_fulfilled_transactions.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_fulfilled_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + bnb_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'BNB' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(bnb_usd.usd_amount) as usd_amount + FROM + {{ source('bnb', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_bnb_ccip_send_traces') }} ccip_send_traces ON ccip_send_traces.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_send_traces.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN bnb_usd ON date_trunc('minute', tx.block_time) = bnb_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'bnb' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_gas_daily.sql b/models/chainlink/bnb/chainlink_bnb_ccip_gas_daily.sql new file mode 100644 index 00000000000..972c45c071c --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_gas_daily.sql @@ -0,0 +1,77 @@ +{{ + config( + + alias='ccip_gas_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_gas_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE( + fulfilled.node_address, + reverted.node_address + ) AS "node_address", + COALESCE(SUM(fulfilled.token_amount), 0) as fulfilled_token_amount, + COALESCE(SUM(reverted.token_amount), 0) as reverted_token_amount, + COALESCE(SUM(fulfilled.token_amount * fulfilled.usd_amount), 0) as fulfilled_usd_amount, + COALESCE(SUM(reverted.token_amount * reverted.usd_amount), 0) as reverted_usd_amount + FROM + {{ ref('chainlink_bnb_ccip_transmitted_fulfilled') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_bnb_ccip_transmitted_reverted') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + OR reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, 2 + ORDER BY + 1, 2 + ), + ccip_gas_daily AS ( + SELECT + 'bnb' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + ccip_gas_daily_meta.node_address as node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + fulfilled_token_amount + reverted_token_amount as total_token_amount, + fulfilled_usd_amount + reverted_usd_amount as total_usd_amount + FROM ccip_gas_daily_meta + LEFT JOIN {{ ref('chainlink_bnb_ccip_operator_meta') }} ccip_operator_meta ON ccip_operator_meta.node_address = ccip_gas_daily_meta.node_address + ) +SELECT + blockchain, + date_start, + date_month, + node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + total_token_amount, + total_usd_amount +FROM + ccip_gas_daily +ORDER BY + "date_start" diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_nop_paid_logs.sql b/models/chainlink/bnb/chainlink_bnb_ccip_nop_paid_logs.sql new file mode 100644 index 00000000000..57ccbbaebc7 --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_nop_paid_logs.sql @@ -0,0 +1,29 @@ +{{ + config( + + alias='ccip_nop_paid_logs', + materialized='view' + ) +}} + +SELECT + 'bnb' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_substring(topic1, 13) as nop_address, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('bnb', 'logs') }} logs +WHERE + topic0 = 0x55fdec2aab60a41fa5abb106670eb1006f5aeaee1ba7afea2bc89b5b3ec7678f -- NopPaid \ No newline at end of file diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_nop_reward_daily.sql b/models/chainlink/bnb/chainlink_bnb_ccip_nop_reward_daily.sql new file mode 100644 index 00000000000..294c0c7bddc --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_nop_reward_daily.sql @@ -0,0 +1,72 @@ +{{ + config( + + alias='ccip_nop_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'nop_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + link_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + price.symbol = 'LINK' + GROUP BY + 1 + ORDER BY + 1 + ), + nop_paid AS ( + SELECT + 'bnb' as blockchain, + cast(date_trunc('day', block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', block_time) AS date)) AS date_month, + nop_logs.nop_address as nop_address, + MAX(admin_meta.operator_name) as operator_name, + SUM(nop_logs.total_tokens / 1e18) as token_amount +FROM + {{ref('chainlink_bnb_ccip_nop_paid_logs')}} nop_logs + LEFT JOIN {{ref('chainlink_bnb_ccip_admin_meta')}} admin_meta ON admin_meta.admin_address = nop_logs.nop_address +{% if is_incremental() %} + WHERE block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 4 +ORDER BY + 2, 4 + ), + nop_reward_daily AS ( + SELECT + nop_paid.date_start, + cast(date_trunc('month', nop_paid.date_start) as date) as date_month, + nop_paid.operator_name, + nop_paid.nop_address, + nop_paid.token_amount as token_amount, + (nop_paid.token_amount * lud.usd_amount) as usd_amount + FROM + nop_paid + LEFT JOIN link_usd_daily lud ON lud.date_start = nop_paid.date_start + ORDER BY date_start + ) +SELECT + 'bnb' as blockchain, + date_start, + date_month, + operator_name, + nop_address, + token_amount, + usd_amount +FROM + nop_reward_daily +ORDER BY + 2, 5 diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_operator_meta.sql b/models/chainlink/bnb/chainlink_bnb_ccip_operator_meta.sql new file mode 100644 index 00000000000..35e11b6d360 --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_operator_meta.sql @@ -0,0 +1,29 @@ +{{ + config( + alias='ccip_operator_meta', + materialized = 'view' + ) +}} + +SELECT + 'bnb' as blockchain, + node_address, + operator_name +FROM (values + (0xF2073874894E3a3a96473bf6E5Fc0063eaa7D213, 'cryptomanufaktur'), + (0xa04Ed470720D6053DDC8e52a5ccD932c20cA7CD7, 'dextrac'), + (0x8CdDbCCC4Cd312Ed7172b40031f4cbB130CfD370, 'everstake'), + (0x25e0E48f7d456342016111251FF299192e6606bc, 'fiews'), + (0x6B0A9d7Bd3eafa53723f8133267B2B92b150bF5e, 'kytzu'), + (0xF0f0a40035cAA716ac5ec082F2488D3fF55b0D7f, 'linkforest'), + (0x90a59345a36fcAAc56d8813C46Be9a4442d9E2Ec, 'linkpool'), + (0x6afA1D3Eb24106EE4aAf57D80950c4ccBD1300b9, 'linkriver'), + (0xBCac4d2009203BFDf664D5f456F8c4C8A8882a5A, 'newroad'), + (0x0fc372E74aB2E087811fBdDCF8AaaCb2682563c9, 'northwestnodes'), + (0x85d6849c34780A18Edf0D780304A593F3B6834c8, 'p2porg'), + (0x4e793dB6da959C33F754D2239f2b4BCBd94f025a, 'piertwo'), + (0x180eE3fb4BD9e6f874f01A1C7c44598585f3599D, 'prophet'), + (0x376aDb3316991F09dCC7771273258eB333a6cEd1, 'syncnode'), + (0x91b68A402e44364c55Dd242CE34982bB2d9FA7a9, 'validationcloud'), + (0x21F500EB03C79ff2260E2Eb045e37eFE16b460D8, 'wetez') +) a (node_address, operator_name) diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_request_daily.sql b/models/chainlink/bnb/chainlink_bnb_ccip_request_daily.sql new file mode 100644 index 00000000000..e89b91d209b --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_request_daily.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_request_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_request_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE(COUNT(fulfilled.token_amount), 0) as fulfilled_requests, + COALESCE(COUNT(reverted.token_amount), 0) as reverted_requests, + COALESCE(COUNT(fulfilled.token_amount), 0) + COALESCE(COUNT(reverted.token_amount), 0) as total_requests + FROM + {{ ref('chainlink_bnb_ccip_fulfilled_transactions') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_bnb_ccip_reverted_transactions') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + AND reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1 + ORDER BY + 1 + ), + ccip_request_daily AS ( + SELECT + 'bnb' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + fulfilled_requests, + reverted_requests, + total_requests + FROM ccip_request_daily_meta + ) +SELECT + ccip_request_daily.blockchain, + date_start, + date_month, + fulfilled_requests, + reverted_requests, + total_requests +FROM + ccip_request_daily +ORDER BY + "date_start" diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_reverted_transactions.sql b/models/chainlink/bnb/chainlink_bnb_ccip_reverted_transactions.sql new file mode 100644 index 00000000000..d35862d960b --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_reverted_transactions.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_reverted_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + bnb_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'BNB' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(bnb_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_bnb_ccip_send_traces') }} tx + INNER JOIN {{ source('bnb', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx2.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN bnb_usd ON date_trunc('minute', tx.block_time) = bnb_usd.block_time + WHERE + tx.tx_success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx."from" + ) +SELECT + 'bnb' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_reward_daily.sql b/models/chainlink/bnb/chainlink_bnb_ccip_reward_daily.sql new file mode 100644 index 00000000000..a7b2d785351 --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_reward_daily.sql @@ -0,0 +1,63 @@ +{{ + config( + alias='ccip_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'token'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + token_meta AS ( + SELECT + token_contract, + token_symbol + FROM + {{ref('chainlink_bnb_ccip_token_meta')}} + ), + token_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + token_meta.token_symbol as symbol, + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + JOIN token_meta ON price.symbol = token_meta.token_symbol + {% if is_incremental() %} + WHERE price.minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, token_meta.token_symbol + ORDER BY + 1 + ), + ccip_reward_daily AS ( + SELECT + ccip_send_requested_daily.date_start, + cast(date_trunc('month', ccip_send_requested_daily.date_start) as date) as date_month, + SUM(ccip_send_requested_daily.fee_amount) as token_amount, + SUM((ccip_send_requested_daily.fee_amount * tud.usd_amount)) as usd_amount, + ccip_send_requested_daily.token as token + FROM + {{ref('chainlink_bnb_ccip_send_requested_daily')}} ccip_send_requested_daily + LEFT JOIN token_usd_daily tud ON tud.date_start = ccip_send_requested_daily.date_start AND tud.symbol = ccip_send_requested_daily.token + {% if is_incremental() %} + WHERE ccip_send_requested_daily.date_start >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY 1, 5 + ) +SELECT + 'bnb' as blockchain, + date_start, + date_month, + token_amount, + usd_amount, + token +FROM + ccip_reward_daily +ORDER BY + 2, 6 diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_send_requested.sql b/models/chainlink/bnb/chainlink_bnb_ccip_send_requested.sql new file mode 100644 index 00000000000..698c581ef5b --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_send_requested.sql @@ -0,0 +1,51 @@ +{{ + config( + + alias='ccip_send_requested', + materialized='view' + ) +}} + +SELECT + MAX(ccip_traces.blockchain) AS blockchain, + MAX(ccip_traces.block_time) AS evt_block_time, + MAX(reward_evt_transfer.value / 1e18) AS fee_amount, + MAX(token_addresses.token_symbol) AS token, + MAX(ccip_traces.chain_selector) as destination_chain_selector, + MAX(ccip_traces.destination) as destination_blockchain +FROM + {{ ref('chainlink_bnb_ccip_send_traces') }} ccip_traces + LEFT JOIN {{ source('erc20_bnb', 'evt_Transfer') }} reward_evt_transfer ON reward_evt_transfer.evt_tx_hash = ccip_traces.tx_hash + LEFT JOIN {{ ref('chainlink_bnb_ccip_token_meta') }} token_addresses ON token_addresses.token_contract = reward_evt_transfer.contract_address + LEFT JOIN {{ ref('chainlink_bnb_ccip_tokens_locked_logs') }} tokens_locked ON tokens_locked.tx_hash = ccip_traces.tx_hash +WHERE + ( + ( + ccip_traces.value > 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_bnb_ccip_token_meta') }} + WHERE + token_symbol = 'WBNB' + ) + ) + OR ( + ccip_traces.value <= 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_bnb_ccip_token_meta') }} + WHERE + token_symbol != 'WBNB' + ) + ) + ) + AND ( + tokens_locked.tx_hash IS NULL + OR tokens_locked.total_tokens != reward_evt_transfer.value + ) +GROUP BY + ccip_traces.tx_hash \ No newline at end of file diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_send_requested_daily.sql b/models/chainlink/bnb/chainlink_bnb_ccip_send_requested_daily.sql new file mode 100644 index 00000000000..6c6e3e4b780 --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_send_requested_daily.sql @@ -0,0 +1,31 @@ +{{ + config( + + alias='ccip_send_requested_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'token', 'destination_blockchain'] + ) +}} + +{% set incremental_interval = '7' %} + +SELECT + 'bnb' as blockchain, + cast(date_trunc('day', evt_block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', evt_block_time) AS date)) AS date_month, + SUM(ccip_send_requested.fee_amount) as fee_amount, + ccip_send_requested.token as token, + ccip_send_requested.destination_blockchain AS destination_blockchain, + COUNT(ccip_send_requested.destination_blockchain) AS count +FROM + {{ref('chainlink_bnb_ccip_send_requested')}} ccip_send_requested +{% if is_incremental() %} + WHERE evt_block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 5, 6 +ORDER BY + 2, 5, 6 diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_send_traces.sql b/models/chainlink/bnb/chainlink_bnb_ccip_send_traces.sql new file mode 100644 index 00000000000..c79f3606c54 --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_send_traces.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_send_traces', + materialized='view' + ) +}} + +SELECT + 'bnb' as blockchain, + block_hash, + block_number, + block_time, + tx_hash, + traces."from", + traces."to", + input, + traces."output", + traces.tx_success, + traces.value, + network_meta.chain_selector as chain_selector, + network_meta.blockchain as destination +FROM + {{ source('bnb', 'traces') }} traces +left join {{ref('chainlink_ccip_network_meta')}} network_meta on network_meta.chain_selector = bytearray_to_uint256(bytearray_substring(input, 5, 32)) +WHERE + traces."to" = (SELECT router FROM {{ref('chainlink_ccip_network_meta')}} WHERE blockchain = 'bnb') + AND bytearray_substring(input, 1, 4) = 0x96f4e9f9 \ No newline at end of file diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_token_meta.sql b/models/chainlink/bnb/chainlink_bnb_ccip_token_meta.sql new file mode 100644 index 00000000000..2d2dc7f12ca --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_token_meta.sql @@ -0,0 +1,18 @@ +{{ + config( + + alias='ccip_token_meta', + materialized = 'view' + ) +}} + +-- will need to be updated to add new fee tokens in the future + +SELECT + 'bnb' AS blockchain, + token_contract, + token_symbol +FROM (VALUES + (0x404460C6A5EdE2D891e8297795264fDe62ADBB75, 'LINK'), + (0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c, 'WBNB') +) a (token_contract, token_symbol) diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_tokens_locked_logs.sql b/models/chainlink/bnb/chainlink_bnb_ccip_tokens_locked_logs.sql new file mode 100644 index 00000000000..a5b94717420 --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_tokens_locked_logs.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_tokens_locked_logs', + materialized='view' + ) +}} + +SELECT + 'bnb' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('bnb', 'logs') }} logs +WHERE + topic0 = 0x9f1ec8c880f76798e7b793325d625e9b60e4082a553c98f42b6cda368dd60008 -- Locked \ No newline at end of file diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_transmitted_fulfilled.sql b/models/chainlink/bnb/chainlink_bnb_ccip_transmitted_fulfilled.sql new file mode 100644 index 00000000000..7253302a40d --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_transmitted_fulfilled.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_transmitted_fulfilled', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + bnb_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'BNB' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(bnb_usd.usd_amount) as usd_amount + FROM + {{ source('bnb', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_bnb_ccip_transmitted_logs') }} ccip_tx ON ccip_tx.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN bnb_usd ON date_trunc('minute', tx.block_time) = bnb_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'bnb' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_transmitted_logs.sql b/models/chainlink/bnb/chainlink_bnb_ccip_transmitted_logs.sql new file mode 100644 index 00000000000..d9cd3c2b020 --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_transmitted_logs.sql @@ -0,0 +1,27 @@ +{{ + config( + + alias='ccip_transmitted_logs', + materialized='view' + ) +}} + +SELECT + 'bnb' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from +FROM + {{ source('bnb', 'logs') }} logs +WHERE + topic0 = 0xb04e63db38c49950639fa09d29872f21f5d49d614f3a969d8adf3d4b52e41a62 -- Transmitted \ No newline at end of file diff --git a/models/chainlink/bnb/chainlink_bnb_ccip_transmitted_reverted.sql b/models/chainlink/bnb/chainlink_bnb_ccip_transmitted_reverted.sql new file mode 100644 index 00000000000..1b986e79427 --- /dev/null +++ b/models/chainlink/bnb/chainlink_bnb_ccip_transmitted_reverted.sql @@ -0,0 +1,64 @@ +{{ + config( + + alias='ccip_transmitted_reverted', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + bnb_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'BNB' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx.tx_from as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(bnb_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_bnb_ccip_transmitted_logs') }} tx + LEFT JOIN {{ source('bnb', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN bnb_usd ON date_trunc('minute', tx.block_time) = bnb_usd.block_time + WHERE + tx2.success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx.index, + tx.tx_from + ) +SELECT + 'bnb' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/bnb/chainlink_bnb_schema.yml b/models/chainlink/bnb/chainlink_bnb_schema.yml index d9ca6ac7ea1..d5f874c5136 100644 --- a/models/chainlink/bnb/chainlink_bnb_schema.yml +++ b/models/chainlink/bnb/chainlink_bnb_schema.yml @@ -1164,3 +1164,365 @@ models: - *feed_name - *requester_address - *requester_name + + - name: chainlink_bnb_ccip_fulfilled_transactions + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "fulfilled", "transactions", "bnb"] + description: > + Chainlink CCIP Fulfilled Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_bnb_ccip_gas_daily + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "gas", "daily", "bnb"] + description: > + Chainlink CCIP Gas Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - node_address + columns: + - *blockchain + - *date_start + - *date_month + - *node_address + - *operator_name + - *fulfilled_token_amount + - *fulfilled_usd_amount + - *reverted_token_amount + - *reverted_usd_amount + - *total_token_amount + - *total_usd_amount + + - name: chainlink_bnb_ccip_request_daily + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "request", "daily", "bnb"] + description: > + Chainlink CCIP Request Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + columns: + - *blockchain + - *date_start + - *date_month + - *fulfilled_requests + - *reverted_requests + - *total_requests + + - name: chainlink_bnb_ccip_reverted_transactions + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reverted", "transactions", "bnb"] + description: > + Chainlink CCIP Reverted Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + + - name: chainlink_bnb_ccip_reward_daily + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reward", "daily", "bnb"] + description: > + Chainlink CCIP Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - &token + name: token + description: "Token" + + - name: chainlink_bnb_ccip_send_requested + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "bnb"] + description: > + Chainlink CCIP Send Requested + columns: + - *blockchain + - *evt_block_time + - &fee_amount + name: fee_amount + description: "Fee Amount" + - *token + - &destination_blockchain + name: destination_blockchain + description: "Destination Blockchain" + - &destination_chain_selector + name: destination_chain_selector + description: "Destination Chain Selector" + + - name: chainlink_bnb_ccip_send_requested_daily + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "daily", "bnb"] + description: > + Chainlink CCIP Send Requested Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + - destination_blockchain + columns: + - *blockchain + - *date_start + - *date_month + - *fee_amount + - *token + - *destination_blockchain + - &count + name: count + description: "Count" + + - name: chainlink_bnb_ccip_send_traces + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "traces", "bnb"] + description: > + Chainlink CCIP Send Traces + columns: + - *blockchain + - *block_hash + - *block_number + - *block_time + - *tx_hash + - *from + - *to + - *input + - *output + - &tx_success + name: tx_success + description: "Transaction Success" + - &value + name: value + description: "Value" + - &chain_selector + name: chain_selector + description: "Chain Selector" + - &destination + name: destination + description: "Destination" + + - name: chainlink_bnb_ccip_tokens_locked_logs + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "tokens", "locked", "logs", "bnb"] + description: > + Chainlink CCIP Tokens Locked Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &total_tokens + name: total_tokens + description: "Total Tokens" + + - name: chainlink_bnb_ccip_transmitted_fulfilled + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "fulfilled", "bnb"] + description: > + Chainlink CCIP Transmitted Fulfilled + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_bnb_ccip_transmitted_reverted + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "reverted", "bnb"] + description: > + Chainlink CCIP Transmitted Reverted + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_bnb_ccip_transmitted_logs + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "logs", "bnb"] + description: > + Chainlink CCIP Transmitted Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + + - name: chainlink_bnb_ccip_nop_paid_logs + meta: + blockchain: "bnb" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "paid", "logs", "bnb"] + description: > + Chainlink CCIP Nop Paid Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &nop_address + name: nop_address + description: "Nop Address" + - *total_tokens + + - name: chainlink_bnb_ccip_nop_reward_daily + meta: + blockchain: "bnb" + + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "reward", "daily", "bnb"] + description: > + Chainlink CCIP Nop Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - date_start + - nop_address + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - *operator_name + - *nop_address diff --git a/models/chainlink/chainlink_ccip_fulfilled_transactions.sql b/models/chainlink/chainlink_ccip_fulfilled_transactions.sql new file mode 100644 index 00000000000..76c3ca27383 --- /dev/null +++ b/models/chainlink/chainlink_ccip_fulfilled_transactions.sql @@ -0,0 +1,39 @@ +{{ + config( + + alias='ccip_fulfilled_transactions', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_fulfilled_transactions', + 'chainlink_avalanche_c_ccip_fulfilled_transactions', + 'chainlink_base_ccip_fulfilled_transactions', + 'chainlink_bnb_ccip_fulfilled_transactions', + 'chainlink_ethereum_ccip_fulfilled_transactions', + 'chainlink_optimism_ccip_fulfilled_transactions', + 'chainlink_polygon_ccip_fulfilled_transactions' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_ccip_gas_daily.sql b/models/chainlink/chainlink_ccip_gas_daily.sql new file mode 100644 index 00000000000..16d4e461e32 --- /dev/null +++ b/models/chainlink/chainlink_ccip_gas_daily.sql @@ -0,0 +1,42 @@ +{{ + config( + + alias='ccip_gas_daily', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_gas_daily', + 'chainlink_avalanche_c_ccip_gas_daily', + 'chainlink_base_ccip_gas_daily', + 'chainlink_bnb_ccip_gas_daily', + 'chainlink_ethereum_ccip_gas_daily', + 'chainlink_optimism_ccip_gas_daily', + 'chainlink_polygon_ccip_gas_daily' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + date_start, + date_month, + node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + total_token_amount, + total_usd_amount + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_ccip_network_meta.sql b/models/chainlink/chainlink_ccip_network_meta.sql new file mode 100644 index 00000000000..699c58ea0dd --- /dev/null +++ b/models/chainlink/chainlink_ccip_network_meta.sql @@ -0,0 +1,26 @@ +{{ + config( + + alias='ccip_network_meta', + post_hook='{{ expose_spells(\'["arbitrum", "ethereum", "avalanche_c", "bnb", "base", "polygon", "optimism"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + + +SELECT +blockchain, +router AS router, +cast(chain_selector AS UINT256) AS chain_selector +FROM (VALUES + ('ethereum', 0xe561d5e02207fb5eb32cca20a699e0d8919a1476, '5009297550715157269') +, ('optimism', 0x261c05167db67b2b619f9d312e0753f3721ad6e8, '3734403246176062136') +, ('avalanche_c', 0x27f39d0af3303703750d4001fcc1844c6491563c, '6433500567565415381') +, ('polygon', 0x3c3d92629a02a8d95d5cb9650fe49c3544f69b43, '4051577828743386545') +, ('arbitrum', 0xE92634289A1841A979C11C2f618B33D376e4Ba85, '4949039107694359620') +, ('base', 0x673aa85efd75080031d44fca061575d1da427a28, '15971525489660198786') +, ('bnb', 0x536d7e53d0adeb1f20e7c81fea45d02ec9dbd698, '11344663589394136015') +) +AS a (blockchain, router, chain_selector) diff --git a/models/chainlink/chainlink_ccip_nop_paid_logs.sql b/models/chainlink/chainlink_ccip_nop_paid_logs.sql new file mode 100644 index 00000000000..72905bb146a --- /dev/null +++ b/models/chainlink/chainlink_ccip_nop_paid_logs.sql @@ -0,0 +1,46 @@ +{{ + config( + + alias='ccip_nop_paid_logs', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_nop_paid_logs', + 'chainlink_avalanche_c_ccip_nop_paid_logs', + 'chainlink_base_ccip_nop_paid_logs', + 'chainlink_bnb_ccip_nop_paid_logs', + 'chainlink_ethereum_ccip_nop_paid_logs', + 'chainlink_optimism_ccip_nop_paid_logs', + 'chainlink_polygon_ccip_nop_paid_logs' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + nop_address, + total_tokens + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_ccip_nop_reward_daily.sql b/models/chainlink/chainlink_ccip_nop_reward_daily.sql new file mode 100644 index 00000000000..dbf313b9e78 --- /dev/null +++ b/models/chainlink/chainlink_ccip_nop_reward_daily.sql @@ -0,0 +1,38 @@ +{{ + config( + + alias='ccip_nop_reward_daily', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_nop_reward_daily', + 'chainlink_avalanche_c_ccip_nop_reward_daily', + 'chainlink_base_ccip_nop_reward_daily', + 'chainlink_bnb_ccip_nop_reward_daily', + 'chainlink_ethereum_ccip_nop_reward_daily', + 'chainlink_optimism_ccip_nop_reward_daily', + 'chainlink_polygon_ccip_nop_reward_daily' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + date_start, + date_month, + operator_name, + nop_address, + token_amount, + usd_amount + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) diff --git a/models/chainlink/chainlink_ccip_request_daily.sql b/models/chainlink/chainlink_ccip_request_daily.sql new file mode 100644 index 00000000000..30eaf205dab --- /dev/null +++ b/models/chainlink/chainlink_ccip_request_daily.sql @@ -0,0 +1,37 @@ +{{ + config( + + alias='ccip_request_daily', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_request_daily', + 'chainlink_avalanche_c_ccip_request_daily', + 'chainlink_base_ccip_request_daily', + 'chainlink_bnb_ccip_request_daily', + 'chainlink_ethereum_ccip_request_daily', + 'chainlink_optimism_ccip_request_daily', + 'chainlink_polygon_ccip_request_daily' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + date_start, + date_month, + fulfilled_requests, + reverted_requests, + total_requests + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_ccip_reverted_transactions.sql b/models/chainlink/chainlink_ccip_reverted_transactions.sql new file mode 100644 index 00000000000..30579406b43 --- /dev/null +++ b/models/chainlink/chainlink_ccip_reverted_transactions.sql @@ -0,0 +1,38 @@ +{{ + config( + + alias='ccip_reverted_transactions', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_reverted_transactions', + 'chainlink_avalanche_c_ccip_reverted_transactions', + 'chainlink_base_ccip_reverted_transactions', + 'chainlink_bnb_ccip_reverted_transactions', + 'chainlink_ethereum_ccip_reverted_transactions', + 'chainlink_optimism_ccip_reverted_transactions', + 'chainlink_polygon_ccip_reverted_transactions' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_ccip_reward_daily.sql b/models/chainlink/chainlink_ccip_reward_daily.sql new file mode 100644 index 00000000000..6c0fa49af92 --- /dev/null +++ b/models/chainlink/chainlink_ccip_reward_daily.sql @@ -0,0 +1,37 @@ +{{ + config( + + alias='ccip_reward_daily', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_reward_daily', + 'chainlink_avalanche_c_ccip_reward_daily', + 'chainlink_base_ccip_reward_daily', + 'chainlink_bnb_ccip_reward_daily', + 'chainlink_ethereum_ccip_reward_daily', + 'chainlink_optimism_ccip_reward_daily', + 'chainlink_polygon_ccip_reward_daily' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + date_start, + date_month, + token_amount, + usd_amount, + token + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) diff --git a/models/chainlink/chainlink_ccip_send_requested.sql b/models/chainlink/chainlink_ccip_send_requested.sql new file mode 100644 index 00000000000..79a6e851ca7 --- /dev/null +++ b/models/chainlink/chainlink_ccip_send_requested.sql @@ -0,0 +1,37 @@ +{{ + config( + + alias='ccip_send_requested', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_send_requested', + 'chainlink_avalanche_c_ccip_send_requested', + 'chainlink_base_ccip_send_requested', + 'chainlink_bnb_ccip_send_requested', + 'chainlink_ethereum_ccip_send_requested', + 'chainlink_optimism_ccip_send_requested', + 'chainlink_polygon_ccip_send_requested' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + evt_block_time, + fee_amount, + token, + destination_chain_selector, + destination_blockchain + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) diff --git a/models/chainlink/chainlink_ccip_send_requested_daily.sql b/models/chainlink/chainlink_ccip_send_requested_daily.sql new file mode 100644 index 00000000000..fafc6fc5cc6 --- /dev/null +++ b/models/chainlink/chainlink_ccip_send_requested_daily.sql @@ -0,0 +1,38 @@ +{{ + config( + + alias='ccip_send_requested_daily', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_send_requested_daily', + 'chainlink_avalanche_c_ccip_send_requested_daily', + 'chainlink_base_ccip_send_requested_daily', + 'chainlink_bnb_ccip_send_requested_daily', + 'chainlink_ethereum_ccip_send_requested_daily', + 'chainlink_optimism_ccip_send_requested_daily', + 'chainlink_polygon_ccip_send_requested_daily' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + date_start, + date_month, + fee_amount, + token, + destination_blockchain, + count + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_ccip_send_traces.sql b/models/chainlink/chainlink_ccip_send_traces.sql new file mode 100644 index 00000000000..fc2a278a9d5 --- /dev/null +++ b/models/chainlink/chainlink_ccip_send_traces.sql @@ -0,0 +1,44 @@ +{{ + config( + + alias='ccip_send_traces', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_send_traces', + 'chainlink_avalanche_c_ccip_send_traces', + 'chainlink_base_ccip_send_traces', + 'chainlink_bnb_ccip_send_traces', + 'chainlink_ethereum_ccip_send_traces', + 'chainlink_optimism_ccip_send_traces', + 'chainlink_polygon_ccip_send_traces' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + block_hash, + block_number, + block_time, + tx_hash, + "from", + "to", + input, + "output", + tx_success, + value, + chain_selector, + destination + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) diff --git a/models/chainlink/chainlink_ccip_tokens_locked_logs.sql b/models/chainlink/chainlink_ccip_tokens_locked_logs.sql new file mode 100644 index 00000000000..ecb848c936e --- /dev/null +++ b/models/chainlink/chainlink_ccip_tokens_locked_logs.sql @@ -0,0 +1,45 @@ +{{ + config( + + alias='ccip_tokens_locked_logs', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_tokens_locked_logs', + 'chainlink_avalanche_c_ccip_tokens_locked_logs', + 'chainlink_base_ccip_tokens_locked_logs', + 'chainlink_bnb_ccip_tokens_locked_logs', + 'chainlink_ethereum_ccip_tokens_locked_logs', + 'chainlink_optimism_ccip_tokens_locked_logs', + 'chainlink_polygon_ccip_tokens_locked_logs' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + total_tokens + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_ccip_transmitted_fulfilled.sql b/models/chainlink/chainlink_ccip_transmitted_fulfilled.sql new file mode 100644 index 00000000000..f21e4520c3a --- /dev/null +++ b/models/chainlink/chainlink_ccip_transmitted_fulfilled.sql @@ -0,0 +1,39 @@ +{{ + config( + + alias='ccip_transmitted_fulfilled', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_transmitted_fulfilled', + 'chainlink_avalanche_c_ccip_transmitted_fulfilled', + 'chainlink_base_ccip_transmitted_fulfilled', + 'chainlink_bnb_ccip_transmitted_fulfilled', + 'chainlink_ethereum_ccip_transmitted_fulfilled', + 'chainlink_optimism_ccip_transmitted_fulfilled', + 'chainlink_polygon_ccip_transmitted_fulfilled' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_ccip_transmitted_logs.sql b/models/chainlink/chainlink_ccip_transmitted_logs.sql new file mode 100644 index 00000000000..4f4e5fdfd4b --- /dev/null +++ b/models/chainlink/chainlink_ccip_transmitted_logs.sql @@ -0,0 +1,44 @@ +{{ + config( + + alias='ccip_transmitted_logs', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_transmitted_logs', + 'chainlink_avalanche_c_ccip_transmitted_logs', + 'chainlink_base_ccip_transmitted_logs', + 'chainlink_bnb_ccip_transmitted_logs', + 'chainlink_ethereum_ccip_transmitted_logs', + 'chainlink_optimism_ccip_transmitted_logs', + 'chainlink_polygon_ccip_transmitted_logs' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_ccip_transmitted_reverted.sql b/models/chainlink/chainlink_ccip_transmitted_reverted.sql new file mode 100644 index 00000000000..08281302713 --- /dev/null +++ b/models/chainlink/chainlink_ccip_transmitted_reverted.sql @@ -0,0 +1,39 @@ +{{ + config( + + alias='ccip_transmitted_reverted', + post_hook='{{ expose_spells(\'["arbitrum", "avalanche_c", "base", "bnb", "ethereum", "optimism", "polygon"]\', + "project", + "chainlink", + \'["linkpool_jon"]\') }}' + ) +}} + +{% set models = [ + 'chainlink_arbitrum_ccip_transmitted_reverted', + 'chainlink_avalanche_c_ccip_transmitted_reverted', + 'chainlink_base_ccip_transmitted_reverted', + 'chainlink_bnb_ccip_transmitted_reverted', + 'chainlink_ethereum_ccip_transmitted_reverted', + 'chainlink_optimism_ccip_transmitted_reverted', + 'chainlink_polygon_ccip_transmitted_reverted' +] %} + +SELECT * +FROM ( + {% for model in models %} + SELECT + blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index + FROM {{ ref(model) }} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) \ No newline at end of file diff --git a/models/chainlink/chainlink_schema.yml b/models/chainlink/chainlink_schema.yml index 38ed6afafc6..4c85f4ea377 100644 --- a/models/chainlink/chainlink_schema.yml +++ b/models/chainlink/chainlink_schema.yml @@ -1899,3 +1899,683 @@ models: - *feed_name - *requester_address - *requester_name + + - name: chainlink_ccip_fulfilled_transactions + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "fulfilled", + "transactions", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Fulfilled Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_ccip_gas_daily + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "gas", + "daily", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Gas Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - node_address + columns: + - *blockchain + - *date_start + - *date_month + - *node_address + - *operator_name + - *fulfilled_token_amount + - *fulfilled_usd_amount + - *reverted_token_amount + - *reverted_usd_amount + - *total_token_amount + - *total_usd_amount + + - name: chainlink_ccip_request_daily + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "request", + "daily", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Request Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + columns: + - *blockchain + - *date_start + - *date_month + - *fulfilled_requests + - *reverted_requests + - *total_requests + + - name: chainlink_ccip_reverted_transactions + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "reverted", + "transactions", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Reverted Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + + - name: chainlink_ccip_reward_daily + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "reward", + "daily", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - &token + name: token + description: "Token" + + - name: chainlink_ccip_send_requested + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "send", + "requested", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Send Requested + columns: + - *blockchain + - *evt_block_time + - &fee_amount + name: fee_amount + description: "Fee Amount" + - *token + - &destination_blockchain + name: destination_blockchain + description: "Destination Blockchain" + - &destination_chain_selector + name: destination_chain_selector + description: "Destination Chain Selector" + + - name: chainlink_ccip_send_requested_daily + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "send", + "requested", + "daily", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Send Requested Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + - destination_blockchain + columns: + - *blockchain + - *date_start + - *date_month + - *fee_amount + - *token + - *destination_blockchain + - &count + name: count + description: "Count" + + - name: chainlink_ccip_send_traces + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "send", + "traces", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Send Traces + columns: + - *blockchain + - *block_hash + - *block_number + - *block_time + - *tx_hash + - *from + - *to + - *input + - *output + - &tx_success + name: tx_success + description: "Transaction Success" + - &value + name: value + description: "Value" + - &chain_selector + name: chain_selector + description: "Chain Selector" + - &destination + name: destination + description: "Destination" + + - name: chainlink_ccip_tokens_locked_logs + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "tokens", + "locked", + "logs", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Tokens Locked Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &total_tokens + name: total_tokens + description: "Total Tokens" + + - name: chainlink_ccip_transmitted_fulfilled + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "transmitted", + "fulfilled", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Transmitted Fulfilled + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_ccip_transmitted_reverted + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "transmitted", + "reverted", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Transmitted Reverted + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_ccip_transmitted_logs + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "transmitted", + "logs", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Transmitted Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + + - name: chainlink_ccip_nop_paid_logs + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "transmitted", + "logs", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Nop Paid Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &nop_address + name: nop_address + description: "Nop Address" + - *total_tokens + + - name: chainlink_ccip_nop_reward_daily + meta: + blockchain: + [ + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + sector: oracle + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: + [ + "chainlink", + "ccip", + "reward", + "daily", + "arbitrum", + "avalanche_c", + "base", + "bnb", + "ethereum", + "optimism", + "polygon", + ] + description: > + Chainlink CCIP Nop Reward Daily + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - *operator_name + - *nop_address diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_admin_meta.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_admin_meta.sql new file mode 100644 index 00000000000..2a686e8dff8 --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_admin_meta.sql @@ -0,0 +1,34 @@ +{{ + config( + alias='ccip_admin_meta', + materialized = 'view' + ) +}} + +SELECT + 'ethereum' as blockchain, + admin_address, + operator_name +FROM (values + (0xfA3430d84324ABC9ac8AAf30B2D26260F5172ad0, 'alphachain'), + (0x9D219125a0CE10241b4eC1280c2F880475f172f1, 'chainlayer'), + (0x59eCf48345A221E0731E785ED79eD40d0A94E2A5, 'cryptomanufaktur'), + (0x9efa0A617C0552F1558c95993aA8b8A68b3e709C, 'dextrac'), + (0xFdC770353dC0bFCE80a17Ab8a6a2E7d80590f1Ba, 'easy2stake'), + (0x7AF3C2b54eE2f170b8104222eB4EDf2511f5d9d0, 'everstake'), + (0x15918ff7f6C44592C81d999B442956B07D26CC44, 'fiews'), + (0x001E0d294383d5b4136476648aCc8D04a6461Ae3, 'kytzu'), + (0x4564A9c6061f6f1F2Eadb954B1b3C241D2DC984e, 'linkforest'), + (0x797de2909991C66C66D8e730C8385bbab8D18eA6, 'linkpool'), + (0x14f94049397C3F1807c45B6f854Cb5F36bC4393B, 'linkriver'), + (0x670dBCf722ee66079DAB6456071e8d536eEC1463, 'newroad'), + (0x0921E157b690c4F89F7C2a210cFd8bF3964F6776, 'northwestnodes'), + (0xCDa423ee5A7A886eF113b181469581306fC8B607, 'p2porg'), + (0x3FB4600736d306Ee2A89EdF0356D4272fb095768, 'piertwo'), + (0xBDB624CD1051F687f116bB0c642330B2aBdfcc06, 'prophet'), + (0xDA80050Ed4F50033949608208f79EE43Ab91dF55, 'rhino'), + (0x9cCbFD17FA284f36c2ff503546160B256d1CD3D1, 'snzpool'), + (0xC51D3470693BC049809A1c515606124c7C75908d, 'syncnode'), + (0x183A96629fF566e7AA8AfA38980Cd037EB40A59A, 'validationcloud'), + (0x111f1B41f702c20707686769a4b7f25c56C533B2, 'wetez') +) a (admin_address, operator_name) diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_fulfilled_transactions.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_fulfilled_transactions.sql new file mode 100644 index 00000000000..5114ddb7a3a --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_fulfilled_transactions.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_fulfilled_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + ethereum_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(ethereum_usd.usd_amount) as usd_amount + FROM + {{ source('ethereum', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_ethereum_ccip_send_traces') }} ccip_send_traces ON ccip_send_traces.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_send_traces.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN ethereum_usd ON date_trunc('minute', tx.block_time) = ethereum_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'ethereum' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_gas_daily.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_gas_daily.sql new file mode 100644 index 00000000000..316602bb6d0 --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_gas_daily.sql @@ -0,0 +1,77 @@ +{{ + config( + + alias='ccip_gas_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_gas_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE( + fulfilled.node_address, + reverted.node_address + ) AS "node_address", + COALESCE(SUM(fulfilled.token_amount), 0) as fulfilled_token_amount, + COALESCE(SUM(reverted.token_amount), 0) as reverted_token_amount, + COALESCE(SUM(fulfilled.token_amount * fulfilled.usd_amount), 0) as fulfilled_usd_amount, + COALESCE(SUM(reverted.token_amount * reverted.usd_amount), 0) as reverted_usd_amount + FROM + {{ ref('chainlink_ethereum_ccip_transmitted_fulfilled') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_ethereum_ccip_transmitted_reverted') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + OR reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, 2 + ORDER BY + 1, 2 + ), + ccip_gas_daily AS ( + SELECT + 'ethereum' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + ccip_gas_daily_meta.node_address as node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + fulfilled_token_amount + reverted_token_amount as total_token_amount, + fulfilled_usd_amount + reverted_usd_amount as total_usd_amount + FROM ccip_gas_daily_meta + LEFT JOIN {{ ref('chainlink_ethereum_ccip_operator_meta') }} ccip_operator_meta ON ccip_operator_meta.node_address = ccip_gas_daily_meta.node_address + ) +SELECT + blockchain, + date_start, + date_month, + node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + total_token_amount, + total_usd_amount +FROM + ccip_gas_daily +ORDER BY + "date_start" diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_nop_paid_logs.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_nop_paid_logs.sql new file mode 100644 index 00000000000..14b86ff53bb --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_nop_paid_logs.sql @@ -0,0 +1,29 @@ +{{ + config( + + alias='ccip_nop_paid_logs', + materialized='view' + ) +}} + +SELECT + 'ethereum' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_substring(topic1, 13) as nop_address, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('ethereum', 'logs') }} logs +WHERE + topic0 = 0x55fdec2aab60a41fa5abb106670eb1006f5aeaee1ba7afea2bc89b5b3ec7678f -- NopPaid \ No newline at end of file diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_nop_reward_daily.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_nop_reward_daily.sql new file mode 100644 index 00000000000..713455721eb --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_nop_reward_daily.sql @@ -0,0 +1,72 @@ +{{ + config( + + alias='ccip_nop_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'nop_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + link_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + price.symbol = 'LINK' + GROUP BY + 1 + ORDER BY + 1 + ), + nop_paid AS ( + SELECT + 'ethereum' as blockchain, + cast(date_trunc('day', block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', block_time) AS date)) AS date_month, + nop_logs.nop_address as nop_address, + MAX(admin_meta.operator_name) as operator_name, + SUM(nop_logs.total_tokens / 1e18) as token_amount +FROM + {{ref('chainlink_ethereum_ccip_nop_paid_logs')}} nop_logs + LEFT JOIN {{ref('chainlink_ethereum_ccip_admin_meta')}} admin_meta ON admin_meta.admin_address = nop_logs.nop_address +{% if is_incremental() %} + WHERE block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 4 +ORDER BY + 2, 4 + ), + nop_reward_daily AS ( + SELECT + nop_paid.date_start, + cast(date_trunc('month', nop_paid.date_start) as date) as date_month, + nop_paid.operator_name, + nop_paid.nop_address, + nop_paid.token_amount as token_amount, + (nop_paid.token_amount * lud.usd_amount) as usd_amount + FROM + nop_paid + LEFT JOIN link_usd_daily lud ON lud.date_start = nop_paid.date_start + ORDER BY date_start + ) +SELECT + 'ethereum' as blockchain, + date_start, + date_month, + operator_name, + nop_address, + token_amount, + usd_amount +FROM + nop_reward_daily +ORDER BY + 2, 5 diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_operator_meta.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_operator_meta.sql new file mode 100644 index 00000000000..27b17057421 --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_operator_meta.sql @@ -0,0 +1,34 @@ +{{ + config( + alias='ccip_operator_meta', + materialized = 'view' + ) +}} + +SELECT + 'ethereum' as blockchain, + node_address, + operator_name +FROM (values + (0x5a8216a9c47ee2E8Df1c874252fDEe467215C25b, 'alphachain'), + (0xc74cE67BfC623c803D48AFc74a09A6FF6b599003, 'chainlayer'), + (0xfc038715c79Ebcf7F9ee5723E466454B21434157, 'cryptomanufaktur'), + (0x96d1D86b1BEd64053410FdCc2E3585EB578DdE1f, 'dextrac'), + (0x5565b5362FF9f468bA2f144f38b87187C9a010A8, 'easy2stake'), + (0xd086b29d92C8D15d187e8c65B79Ba0C44C8326c2, 'everstake'), + (0xE336C8e4B6649c82A16a7c78577169A24Baa7fff, 'fiews'), + (0xA39B7c0f08e4727c8325b4ad043513AA5185a4E2, 'kytzu'), + (0xa968cf59aB2BaE618f6eE0a80EcBd5b242ebE991, 'linkforest'), + (0x90f91a0fFDC93a11c045b3155F0b3cc0D9fB9ef6, 'linkpool'), + (0x465Cb88B0Bf2A984a7C6c053262C8137D667bEaE, 'linkriver'), + (0xc333b76845bDF806369EF0F00134559988aa985C, 'newroad'), + (0x31eD28c2549e0195c4A405B71e4f18EfB935bE6f, 'northwestnodes'), + (0x316D2E43270ff4091Ca5d269c0E5cD8363524C91, 'p2porg'), + (0xf547696fF576aeA0D2C8e41D467daD4CeE904513, 'piertwo'), + (0xCEED45aD0f1c8E621eef28a4643B06AF04A6dEB0, 'prophet'), + (0x634438d879a90a25437B87168252c2b983734391, 'rhino'), + (0x7BFb89db2d7217c57C3Ad3d4B55826eFD17dC2e9, 'snzpool'), + (0xd7d7f77069aCEF3116B6D0eDBEA48e45aCc3562e, 'syncnode'), + (0x6A985273Db73f21D6a74Ee9f76725112819BD950, 'validationcloud'), + (0xFc52B2196a94D08fc9614b8039821bcE03bF58E8, 'wetez') +) a (node_address, operator_name) diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_request_daily.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_request_daily.sql new file mode 100644 index 00000000000..a064f16fed1 --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_request_daily.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_request_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_request_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE(COUNT(fulfilled.token_amount), 0) as fulfilled_requests, + COALESCE(COUNT(reverted.token_amount), 0) as reverted_requests, + COALESCE(COUNT(fulfilled.token_amount), 0) + COALESCE(COUNT(reverted.token_amount), 0) as total_requests + FROM + {{ ref('chainlink_ethereum_ccip_fulfilled_transactions') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_ethereum_ccip_reverted_transactions') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + AND reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1 + ORDER BY + 1 + ), + ccip_request_daily AS ( + SELECT + 'ethereum' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + fulfilled_requests, + reverted_requests, + total_requests + FROM ccip_request_daily_meta + ) +SELECT + ccip_request_daily.blockchain, + date_start, + date_month, + fulfilled_requests, + reverted_requests, + total_requests +FROM + ccip_request_daily +ORDER BY + "date_start" diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_reverted_transactions.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_reverted_transactions.sql new file mode 100644 index 00000000000..a6efc0cb150 --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_reverted_transactions.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_reverted_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + ethereum_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(ethereum_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_ethereum_ccip_send_traces') }} tx + INNER JOIN {{ source('ethereum', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx2.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN ethereum_usd ON date_trunc('minute', tx.block_time) = ethereum_usd.block_time + WHERE + tx.tx_success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx."from" + ) +SELECT + 'ethereum' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_reward_daily.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_reward_daily.sql new file mode 100644 index 00000000000..09bede3fd4d --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_reward_daily.sql @@ -0,0 +1,63 @@ +{{ + config( + alias='ccip_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'token'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + token_meta AS ( + SELECT + token_contract, + token_symbol + FROM + {{ref('chainlink_ethereum_ccip_token_meta')}} + ), + token_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + token_meta.token_symbol as symbol, + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + JOIN token_meta ON price.symbol = token_meta.token_symbol + {% if is_incremental() %} + WHERE price.minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, token_meta.token_symbol + ORDER BY + 1 + ), + ccip_reward_daily AS ( + SELECT + ccip_send_requested_daily.date_start, + cast(date_trunc('month', ccip_send_requested_daily.date_start) as date) as date_month, + SUM(ccip_send_requested_daily.fee_amount) as token_amount, + SUM((ccip_send_requested_daily.fee_amount * tud.usd_amount)) as usd_amount, + ccip_send_requested_daily.token as token + FROM + {{ref('chainlink_ethereum_ccip_send_requested_daily')}} ccip_send_requested_daily + LEFT JOIN token_usd_daily tud ON tud.date_start = ccip_send_requested_daily.date_start AND tud.symbol = ccip_send_requested_daily.token + {% if is_incremental() %} + WHERE ccip_send_requested_daily.date_start >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY 1, 5 + ) +SELECT + 'ethereum' as blockchain, + date_start, + date_month, + token_amount, + usd_amount, + token +FROM + ccip_reward_daily +ORDER BY + 2, 6 diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_send_requested.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_send_requested.sql new file mode 100644 index 00000000000..a38a145db3e --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_send_requested.sql @@ -0,0 +1,51 @@ +{{ + config( + + alias='ccip_send_requested', + materialized='view' + ) +}} + +SELECT + MAX(ccip_traces.blockchain) AS blockchain, + MAX(ccip_traces.block_time) AS evt_block_time, + MAX(reward_evt_transfer.value / 1e18) AS fee_amount, + MAX(token_addresses.token_symbol) AS token, + MAX(ccip_traces.chain_selector) as destination_chain_selector, + MAX(ccip_traces.destination) as destination_blockchain +FROM + {{ ref('chainlink_ethereum_ccip_send_traces') }} ccip_traces + LEFT JOIN {{ source('erc20_ethereum', 'evt_Transfer') }} reward_evt_transfer ON reward_evt_transfer.evt_tx_hash = ccip_traces.tx_hash + LEFT JOIN {{ ref('chainlink_ethereum_ccip_token_meta') }} token_addresses ON token_addresses.token_contract = reward_evt_transfer.contract_address + LEFT JOIN {{ ref('chainlink_ethereum_ccip_tokens_locked_logs') }} tokens_locked ON tokens_locked.tx_hash = ccip_traces.tx_hash +WHERE + ( + ( + ccip_traces.value > 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_ethereum_ccip_token_meta') }} + WHERE + token_symbol = 'WETH' + ) + ) + OR ( + ccip_traces.value <= 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_ethereum_ccip_token_meta') }} + WHERE + token_symbol != 'WETH' + ) + ) + ) + AND ( + tokens_locked.tx_hash IS NULL + OR tokens_locked.total_tokens != reward_evt_transfer.value + ) +GROUP BY + ccip_traces.tx_hash \ No newline at end of file diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_send_requested_daily.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_send_requested_daily.sql new file mode 100644 index 00000000000..cccae6a6a12 --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_send_requested_daily.sql @@ -0,0 +1,31 @@ +{{ + config( + + alias='ccip_send_requested_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'token', 'destination_blockchain'] + ) +}} + +{% set incremental_interval = '7' %} + +SELECT + 'ethereum' as blockchain, + cast(date_trunc('day', evt_block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', evt_block_time) AS date)) AS date_month, + SUM(ccip_send_requested.fee_amount) as fee_amount, + ccip_send_requested.token as token, + ccip_send_requested.destination_blockchain AS destination_blockchain, + COUNT(ccip_send_requested.destination_blockchain) AS count +FROM + {{ref('chainlink_ethereum_ccip_send_requested')}} ccip_send_requested +{% if is_incremental() %} + WHERE evt_block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 5, 6 +ORDER BY + 2, 5, 6 diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_send_traces.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_send_traces.sql new file mode 100644 index 00000000000..cf4c2138a60 --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_send_traces.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_send_traces', + materialized='view' + ) +}} + +SELECT + 'ethereum' as blockchain, + block_hash, + block_number, + block_time, + tx_hash, + traces."from", + traces."to", + input, + traces."output", + traces.tx_success, + traces.value, + network_meta.chain_selector as chain_selector, + network_meta.blockchain as destination +FROM + {{ source('ethereum', 'traces') }} traces +left join {{ref('chainlink_ccip_network_meta')}} network_meta on network_meta.chain_selector = bytearray_to_uint256(bytearray_substring(input, 5, 32)) +WHERE + traces."to" = (SELECT router FROM {{ref('chainlink_ccip_network_meta')}} WHERE blockchain = 'ethereum') + AND bytearray_substring(input, 1, 4) = 0x96f4e9f9 \ No newline at end of file diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_token_meta.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_token_meta.sql new file mode 100644 index 00000000000..8a8e5f157cc --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_token_meta.sql @@ -0,0 +1,18 @@ +{{ + config( + + alias='ccip_token_meta', + materialized = 'view' + ) +}} + +-- will need to be updated to add new fee tokens in the future + +SELECT + 'ethereum' AS blockchain, + token_contract, + token_symbol +FROM (VALUES + (0x514910771AF9Ca656af840dff83E8264EcF986CA, 'LINK'), + (0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 'WETH') +) a (token_contract, token_symbol) diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_tokens_locked_logs.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_tokens_locked_logs.sql new file mode 100644 index 00000000000..21a47901b68 --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_tokens_locked_logs.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_tokens_locked_logs', + materialized='view' + ) +}} + +SELECT + 'ethereum' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('ethereum', 'logs') }} logs +WHERE + topic0 = 0x9f1ec8c880f76798e7b793325d625e9b60e4082a553c98f42b6cda368dd60008 -- Locked \ No newline at end of file diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_transmitted_fulfilled.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_transmitted_fulfilled.sql new file mode 100644 index 00000000000..7e8fc30ac1e --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_transmitted_fulfilled.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_transmitted_fulfilled', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + ethereum_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(ethereum_usd.usd_amount) as usd_amount + FROM + {{ source('ethereum', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_ethereum_ccip_transmitted_logs') }} ccip_tx ON ccip_tx.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN ethereum_usd ON date_trunc('minute', tx.block_time) = ethereum_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'ethereum' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_transmitted_logs.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_transmitted_logs.sql new file mode 100644 index 00000000000..897316816bd --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_transmitted_logs.sql @@ -0,0 +1,27 @@ +{{ + config( + + alias='ccip_transmitted_logs', + materialized='view' + ) +}} + +SELECT + 'ethereum' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from +FROM + {{ source('ethereum', 'logs') }} logs +WHERE + topic0 = 0xb04e63db38c49950639fa09d29872f21f5d49d614f3a969d8adf3d4b52e41a62 -- Transmitted \ No newline at end of file diff --git a/models/chainlink/ethereum/chainlink_ethereum_ccip_transmitted_reverted.sql b/models/chainlink/ethereum/chainlink_ethereum_ccip_transmitted_reverted.sql new file mode 100644 index 00000000000..73ef2000d99 --- /dev/null +++ b/models/chainlink/ethereum/chainlink_ethereum_ccip_transmitted_reverted.sql @@ -0,0 +1,64 @@ +{{ + config( + + alias='ccip_transmitted_reverted', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + ethereum_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx.tx_from as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(ethereum_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_ethereum_ccip_transmitted_logs') }} tx + LEFT JOIN {{ source('ethereum', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN ethereum_usd ON date_trunc('minute', tx.block_time) = ethereum_usd.block_time + WHERE + tx2.success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx.index, + tx.tx_from + ) +SELECT + 'ethereum' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/ethereum/chainlink_ethereum_schema.yml b/models/chainlink/ethereum/chainlink_ethereum_schema.yml index 81ee1f49611..5a3447ca8a6 100644 --- a/models/chainlink/ethereum/chainlink_ethereum_schema.yml +++ b/models/chainlink/ethereum/chainlink_ethereum_schema.yml @@ -1161,3 +1161,365 @@ models: - *feed_name - *requester_address - *requester_name + + - name: chainlink_ethereum_ccip_fulfilled_transactions + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "fulfilled", "transactions", "ethereum"] + description: > + Chainlink CCIP Fulfilled Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_ethereum_ccip_gas_daily + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "gas", "daily", "ethereum"] + description: > + Chainlink CCIP Gas Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - node_address + columns: + - *blockchain + - *date_start + - *date_month + - *node_address + - *operator_name + - *fulfilled_token_amount + - *fulfilled_usd_amount + - *reverted_token_amount + - *reverted_usd_amount + - *total_token_amount + - *total_usd_amount + + - name: chainlink_ethereum_ccip_request_daily + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "request", "daily", "ethereum"] + description: > + Chainlink CCIP Request Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + columns: + - *blockchain + - *date_start + - *date_month + - *fulfilled_requests + - *reverted_requests + - *total_requests + + - name: chainlink_ethereum_ccip_reverted_transactions + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reverted", "transactions", "ethereum"] + description: > + Chainlink CCIP Reverted Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + + - name: chainlink_ethereum_ccip_reward_daily + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reward", "daily", "ethereum"] + description: > + Chainlink CCIP Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - &token + name: token + description: "Token" + + - name: chainlink_ethereum_ccip_send_requested + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "ethereum"] + description: > + Chainlink CCIP Send Requested + columns: + - *blockchain + - *evt_block_time + - &fee_amount + name: fee_amount + description: "Fee Amount" + - *token + - &destination_blockchain + name: destination_blockchain + description: "Destination Blockchain" + - &destination_chain_selector + name: destination_chain_selector + description: "Destination Chain Selector" + + - name: chainlink_ethereum_ccip_send_requested_daily + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "daily", "ethereum"] + description: > + Chainlink CCIP Send Requested Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + - destination_blockchain + columns: + - *blockchain + - *date_start + - *date_month + - *fee_amount + - *token + - *destination_blockchain + - &count + name: count + description: "Count" + + - name: chainlink_ethereum_ccip_send_traces + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "traces", "ethereum"] + description: > + Chainlink CCIP Send Traces + columns: + - *blockchain + - *block_hash + - *block_number + - *block_time + - *tx_hash + - *from + - *to + - *input + - *output + - &tx_success + name: tx_success + description: "Transaction Success" + - &value + name: value + description: "Value" + - &chain_selector + name: chain_selector + description: "Chain Selector" + - &destination + name: destination + description: "Destination" + + - name: chainlink_ethereum_ccip_tokens_locked_logs + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "tokens", "locked", "logs", "ethereum"] + description: > + Chainlink CCIP Tokens Locked Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &total_tokens + name: total_tokens + description: "Total Tokens" + + - name: chainlink_ethereum_ccip_transmitted_fulfilled + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "fulfilled", "ethereum"] + description: > + Chainlink CCIP Transmitted Fulfilled + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_ethereum_ccip_transmitted_reverted + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "reverted", "ethereum"] + description: > + Chainlink CCIP Transmitted Reverted + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_ethereum_ccip_transmitted_logs + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "logs", "ethereum"] + description: > + Chainlink CCIP Transmitted Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + + - name: chainlink_ethereum_ccip_nop_paid_logs + meta: + blockchain: "ethereum" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "paid", "logs", "ethereum"] + description: > + Chainlink CCIP Nop Paid Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &nop_address + name: nop_address + description: "Nop Address" + - *total_tokens + + - name: chainlink_ethereum_ccip_nop_reward_daily + meta: + blockchain: "ethereum" + + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "reward", "daily", "ethereum"] + description: > + Chainlink CCIP Nop Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - date_start + - nop_address + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - *operator_name + - *nop_address diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_admin_meta.sql b/models/chainlink/optimism/chainlink_optimism_ccip_admin_meta.sql new file mode 100644 index 00000000000..928b7d6c734 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_admin_meta.sql @@ -0,0 +1,33 @@ +{{ + config( + alias='ccip_admin_meta', + materialized = 'view' + ) +}} + +SELECT + 'optimism' as blockchain, + admin_address, + operator_name +FROM (values + (0xa5D0084A766203b463b3164DFc49D91509C12daB, 'alphachain'), + (0x4a3dF8cAe46765d33c2551ff5438a5C5FC44347c, 'chainlayer'), + (0x59eCf48345A221E0731E785ED79eD40d0A94E2A5, 'cryptomanufaktur'), + (0x9efa0A617C0552F1558c95993aA8b8A68b3e709C, 'dextrac'), + (0xFdC770353dC0bFCE80a17Ab8a6a2E7d80590f1Ba, 'easy2stake'), + (0x7AF3C2b54eE2f170b8104222eB4EDf2511f5d9d0, 'everstake'), + (0x15918ff7f6C44592C81d999B442956B07D26CC44, 'fiews'), + (0x001E0d294383d5b4136476648aCc8D04a6461Ae3, 'kytzu'), + (0x4564A9c6061f6f1F2Eadb954B1b3C241D2DC984e, 'linkforest'), + (0x797de2909991C66C66D8e730C8385bbab8D18eA6, 'linkpool'), + (0x14f94049397C3F1807c45B6f854Cb5F36bC4393B, 'linkriver'), + (0x670dBCf722ee66079DAB6456071e8d536eEC1463, 'newroad'), + (0x0921E157b690c4F89F7C2a210cFd8bF3964F6776, 'northwestnodes'), + (0xCDa423ee5A7A886eF113b181469581306fC8B607, 'p2porg'), + (0x3FB4600736d306Ee2A89EdF0356D4272fb095768, 'piertwo'), + (0xBDB624CD1051F687f116bB0c642330B2aBdfcc06, 'prophet'), + (0xDA80050Ed4F50033949608208f79EE43Ab91dF55, 'rhino'), + (0xC51D3470693BC049809A1c515606124c7C75908d, 'syncnode'), + (0x183A96629fF566e7AA8AfA38980Cd037EB40A59A, 'validationcloud'), + (0x111f1B41f702c20707686769a4b7f25c56C533B2, 'wetez') +) a (admin_address, operator_name) diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_fulfilled_transactions.sql b/models/chainlink/optimism/chainlink_optimism_ccip_fulfilled_transactions.sql new file mode 100644 index 00000000000..9b6d1d37ae6 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_fulfilled_transactions.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_fulfilled_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + optimism_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((l1_gas_used) as double) / 1e18) * l1_gas_price) as token_amount, + MAX(optimism_usd.usd_amount) as usd_amount + FROM + {{ source('optimism', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_optimism_ccip_send_traces') }} ccip_send_traces ON ccip_send_traces.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_send_traces.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN optimism_usd ON date_trunc('minute', tx.block_time) = optimism_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'optimism' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_gas_daily.sql b/models/chainlink/optimism/chainlink_optimism_ccip_gas_daily.sql new file mode 100644 index 00000000000..94895a21809 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_gas_daily.sql @@ -0,0 +1,77 @@ +{{ + config( + + alias='ccip_gas_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_gas_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE( + fulfilled.node_address, + reverted.node_address + ) AS "node_address", + COALESCE(SUM(fulfilled.token_amount), 0) as fulfilled_token_amount, + COALESCE(SUM(reverted.token_amount), 0) as reverted_token_amount, + COALESCE(SUM(fulfilled.token_amount * fulfilled.usd_amount), 0) as fulfilled_usd_amount, + COALESCE(SUM(reverted.token_amount * reverted.usd_amount), 0) as reverted_usd_amount + FROM + {{ ref('chainlink_optimism_ccip_transmitted_fulfilled') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_optimism_ccip_transmitted_reverted') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + OR reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, 2 + ORDER BY + 1, 2 + ), + ccip_gas_daily AS ( + SELECT + 'optimism' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + ccip_gas_daily_meta.node_address as node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + fulfilled_token_amount + reverted_token_amount as total_token_amount, + fulfilled_usd_amount + reverted_usd_amount as total_usd_amount + FROM ccip_gas_daily_meta + LEFT JOIN {{ ref('chainlink_optimism_ccip_operator_meta') }} ccip_operator_meta ON ccip_operator_meta.node_address = ccip_gas_daily_meta.node_address + ) +SELECT + blockchain, + date_start, + date_month, + node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + total_token_amount, + total_usd_amount +FROM + ccip_gas_daily +ORDER BY + "date_start" diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_nop_paid_logs.sql b/models/chainlink/optimism/chainlink_optimism_ccip_nop_paid_logs.sql new file mode 100644 index 00000000000..593b48ecde5 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_nop_paid_logs.sql @@ -0,0 +1,29 @@ +{{ + config( + + alias='ccip_nop_paid_logs', + materialized='view' + ) +}} + +SELECT + 'optimism' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_substring(topic1, 13) as nop_address, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('optimism', 'logs') }} logs +WHERE + topic0 = 0x55fdec2aab60a41fa5abb106670eb1006f5aeaee1ba7afea2bc89b5b3ec7678f -- NopPaid \ No newline at end of file diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_nop_reward_daily.sql b/models/chainlink/optimism/chainlink_optimism_ccip_nop_reward_daily.sql new file mode 100644 index 00000000000..18a1c6a5457 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_nop_reward_daily.sql @@ -0,0 +1,72 @@ +{{ + config( + + alias='ccip_nop_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'nop_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + link_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + price.symbol = 'LINK' + GROUP BY + 1 + ORDER BY + 1 + ), + nop_paid AS ( + SELECT + 'optimism' as blockchain, + cast(date_trunc('day', block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', block_time) AS date)) AS date_month, + nop_logs.nop_address as nop_address, + MAX(admin_meta.operator_name) as operator_name, + SUM(nop_logs.total_tokens / 1e18) as token_amount +FROM + {{ref('chainlink_optimism_ccip_nop_paid_logs')}} nop_logs + LEFT JOIN {{ref('chainlink_optimism_ccip_admin_meta')}} admin_meta ON admin_meta.admin_address = nop_logs.nop_address +{% if is_incremental() %} + WHERE block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 4 +ORDER BY + 2, 4 + ), + nop_reward_daily AS ( + SELECT + nop_paid.date_start, + cast(date_trunc('month', nop_paid.date_start) as date) as date_month, + nop_paid.operator_name, + nop_paid.nop_address, + nop_paid.token_amount as token_amount, + (nop_paid.token_amount * lud.usd_amount) as usd_amount + FROM + nop_paid + LEFT JOIN link_usd_daily lud ON lud.date_start = nop_paid.date_start + ORDER BY date_start + ) +SELECT + 'optimism' as blockchain, + date_start, + date_month, + operator_name, + nop_address, + token_amount, + usd_amount +FROM + nop_reward_daily +ORDER BY + 2, 5 diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_operator_meta.sql b/models/chainlink/optimism/chainlink_optimism_ccip_operator_meta.sql new file mode 100644 index 00000000000..2c68851548c --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_operator_meta.sql @@ -0,0 +1,30 @@ +{{ + config( + alias='ccip_operator_meta', + materialized = 'view' + ) +}} + +SELECT + 'optimism' as blockchain, + node_address, + operator_name +FROM (values + (0x2878c587eba4C4251f97784cE124f7387305Ab32, 'chainlayer'), + (0x71b1d50A1203497492775dc126c3A6e582cE311E, 'cryptomanufaktur'), + (0x229dAb0e38b6d8858fc1aa904EDf61a4b5C686cF, 'dextrac'), + (0xB2b315D8eB297Aa599179aFEa34E9BC32A3BAAa5, 'everstake'), + (0xF06060C6837805D58C2871eB8A113A2EED8BD4E1, 'fiews'), + (0x962Bb12D7C569C58B64f0d0Dea774366fde95f6F, 'kytzu'), + (0x5ED81B2f3a1121A803548eEc170E5e8A87C24231, 'linkforest'), + (0xCA2245C646D272d2D82Eb056876Ae18D63882ce3, 'linkpool'), + (0x8ccc95646059a639470627f73c7E471B0EE1A6f4, 'linkriver'), + (0x5EfA53Ed9A84284DE4e2FF08e889957D9d047100, 'newroad'), + (0x2d44A5AC97d2b0d9433739e1A2B58b2acbA903D5, 'northwestnodes'), + (0x9B7c9b61bca887b2F008224B0819d50422AE63Ac, 'p2porg'), + (0x2F69469e34e2E281269E4B070e7ed672748cccDe, 'piertwo'), + (0x2bD71Dc33AaA57002253f071F84d25402358B74b, 'prophet'), + (0xfcc955232D26348385237A0bA2B5428920b0aBeC, 'syncnode'), + (0x90f27A4eDd5e4D486ea63C06019cf8F5D091f507, 'validationcloud'), + (0xeDCECED1664E53A75F6F864Ed95f88aF45B2276E, 'wetez') +) a (node_address, operator_name) diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_request_daily.sql b/models/chainlink/optimism/chainlink_optimism_ccip_request_daily.sql new file mode 100644 index 00000000000..2943e693d84 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_request_daily.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_request_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_request_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE(COUNT(fulfilled.token_amount), 0) as fulfilled_requests, + COALESCE(COUNT(reverted.token_amount), 0) as reverted_requests, + COALESCE(COUNT(fulfilled.token_amount), 0) + COALESCE(COUNT(reverted.token_amount), 0) as total_requests + FROM + {{ ref('chainlink_optimism_ccip_fulfilled_transactions') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_optimism_ccip_reverted_transactions') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + AND reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1 + ORDER BY + 1 + ), + ccip_request_daily AS ( + SELECT + 'optimism' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + fulfilled_requests, + reverted_requests, + total_requests + FROM ccip_request_daily_meta + ) +SELECT + ccip_request_daily.blockchain, + date_start, + date_month, + fulfilled_requests, + reverted_requests, + total_requests +FROM + ccip_request_daily +ORDER BY + "date_start" diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_reverted_transactions.sql b/models/chainlink/optimism/chainlink_optimism_ccip_reverted_transactions.sql new file mode 100644 index 00000000000..55921f10ef4 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_reverted_transactions.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_reverted_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + optimism_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((l1_gas_used) as double) / 1e18) * l1_gas_price) as token_amount, + MAX(optimism_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_optimism_ccip_send_traces') }} tx + INNER JOIN {{ source('optimism', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx2.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN optimism_usd ON date_trunc('minute', tx.block_time) = optimism_usd.block_time + WHERE + tx.tx_success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx."from" + ) +SELECT + 'optimism' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_reward_daily.sql b/models/chainlink/optimism/chainlink_optimism_ccip_reward_daily.sql new file mode 100644 index 00000000000..6fc21a60650 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_reward_daily.sql @@ -0,0 +1,63 @@ +{{ + config( + alias='ccip_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'token'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + token_meta AS ( + SELECT + token_contract, + token_symbol + FROM + {{ref('chainlink_optimism_ccip_token_meta')}} + ), + token_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + token_meta.token_symbol as symbol, + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + JOIN token_meta ON price.symbol = token_meta.token_symbol + {% if is_incremental() %} + WHERE price.minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, token_meta.token_symbol + ORDER BY + 1 + ), + ccip_reward_daily AS ( + SELECT + ccip_send_requested_daily.date_start, + cast(date_trunc('month', ccip_send_requested_daily.date_start) as date) as date_month, + SUM(ccip_send_requested_daily.fee_amount) as token_amount, + SUM((ccip_send_requested_daily.fee_amount * tud.usd_amount)) as usd_amount, + ccip_send_requested_daily.token as token + FROM + {{ref('chainlink_optimism_ccip_send_requested_daily')}} ccip_send_requested_daily + LEFT JOIN token_usd_daily tud ON tud.date_start = ccip_send_requested_daily.date_start AND tud.symbol = ccip_send_requested_daily.token + {% if is_incremental() %} + WHERE ccip_send_requested_daily.date_start >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY 1, 5 + ) +SELECT + 'optimism' as blockchain, + date_start, + date_month, + token_amount, + usd_amount, + token +FROM + ccip_reward_daily +ORDER BY + 2, 6 diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_send_requested.sql b/models/chainlink/optimism/chainlink_optimism_ccip_send_requested.sql new file mode 100644 index 00000000000..da7ecc8ecbb --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_send_requested.sql @@ -0,0 +1,51 @@ +{{ + config( + + alias='ccip_send_requested', + materialized='view' + ) +}} + +SELECT + MAX(ccip_traces.blockchain) AS blockchain, + MAX(ccip_traces.block_time) AS evt_block_time, + MAX(reward_evt_transfer.value / 1e18) AS fee_amount, + MAX(token_addresses.token_symbol) AS token, + MAX(ccip_traces.chain_selector) as destination_chain_selector, + MAX(ccip_traces.destination) as destination_blockchain +FROM + {{ ref('chainlink_optimism_ccip_send_traces') }} ccip_traces + LEFT JOIN {{ source('erc20_optimism', 'evt_Transfer') }} reward_evt_transfer ON reward_evt_transfer.evt_tx_hash = ccip_traces.tx_hash + LEFT JOIN {{ ref('chainlink_optimism_ccip_token_meta') }} token_addresses ON token_addresses.token_contract = reward_evt_transfer.contract_address + LEFT JOIN {{ ref('chainlink_optimism_ccip_tokens_locked_logs') }} tokens_locked ON tokens_locked.tx_hash = ccip_traces.tx_hash +WHERE + ( + ( + ccip_traces.value > 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_optimism_ccip_token_meta') }} + WHERE + token_symbol = 'WETH' + ) + ) + OR ( + ccip_traces.value <= 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_optimism_ccip_token_meta') }} + WHERE + token_symbol != 'WETH' + ) + ) + ) + AND ( + tokens_locked.tx_hash IS NULL + OR tokens_locked.total_tokens != reward_evt_transfer.value + ) +GROUP BY + ccip_traces.tx_hash \ No newline at end of file diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_send_requested_daily.sql b/models/chainlink/optimism/chainlink_optimism_ccip_send_requested_daily.sql new file mode 100644 index 00000000000..ddb7e51fdad --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_send_requested_daily.sql @@ -0,0 +1,31 @@ +{{ + config( + + alias='ccip_send_requested_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'token', 'destination_blockchain'] + ) +}} + +{% set incremental_interval = '7' %} + +SELECT + 'optimism' as blockchain, + cast(date_trunc('day', evt_block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', evt_block_time) AS date)) AS date_month, + SUM(ccip_send_requested.fee_amount) as fee_amount, + ccip_send_requested.token as token, + ccip_send_requested.destination_blockchain AS destination_blockchain, + COUNT(ccip_send_requested.destination_blockchain) AS count +FROM + {{ref('chainlink_optimism_ccip_send_requested')}} ccip_send_requested +{% if is_incremental() %} + WHERE evt_block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 5, 6 +ORDER BY + 2, 5, 6 diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_send_traces.sql b/models/chainlink/optimism/chainlink_optimism_ccip_send_traces.sql new file mode 100644 index 00000000000..db4bd2b1659 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_send_traces.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_send_traces', + materialized='view' + ) +}} + +SELECT + 'optimism' as blockchain, + block_hash, + block_number, + block_time, + tx_hash, + traces."from", + traces."to", + input, + traces."output", + traces.tx_success, + traces.value, + network_meta.chain_selector as chain_selector, + network_meta.blockchain as destination +FROM + {{ source('optimism', 'traces') }} traces +left join {{ref('chainlink_ccip_network_meta')}} network_meta on network_meta.chain_selector = bytearray_to_uint256(bytearray_substring(input, 5, 32)) +WHERE + traces."to" = (SELECT router FROM {{ref('chainlink_ccip_network_meta')}} WHERE blockchain = 'optimism') + AND bytearray_substring(input, 1, 4) = 0x96f4e9f9 \ No newline at end of file diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_token_meta.sql b/models/chainlink/optimism/chainlink_optimism_ccip_token_meta.sql new file mode 100644 index 00000000000..7edded56b1d --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_token_meta.sql @@ -0,0 +1,18 @@ +{{ + config( + + alias='ccip_token_meta', + materialized = 'view' + ) +}} + +-- will need to be updated to add new fee tokens in the future + +SELECT + 'optimism' AS blockchain, + token_contract, + token_symbol +FROM (VALUES + (0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6, 'LINK'), + (0x4200000000000000000000000000000000000006, 'WETH') +) a (token_contract, token_symbol) diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_tokens_locked_logs.sql b/models/chainlink/optimism/chainlink_optimism_ccip_tokens_locked_logs.sql new file mode 100644 index 00000000000..cc139e4fa08 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_tokens_locked_logs.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_tokens_locked_logs', + materialized='view' + ) +}} + +SELECT + 'optimism' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('optimism', 'logs') }} logs +WHERE + topic0 = 0x9f1ec8c880f76798e7b793325d625e9b60e4082a553c98f42b6cda368dd60008 -- Locked \ No newline at end of file diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_transmitted_fulfilled.sql b/models/chainlink/optimism/chainlink_optimism_ccip_transmitted_fulfilled.sql new file mode 100644 index 00000000000..fa44b43f58f --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_transmitted_fulfilled.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_transmitted_fulfilled', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + optimism_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((l1_gas_used) as double) / 1e18) * l1_gas_price) as token_amount, + MAX(optimism_usd.usd_amount) as usd_amount + FROM + {{ source('optimism', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_optimism_ccip_transmitted_logs') }} ccip_tx ON ccip_tx.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN optimism_usd ON date_trunc('minute', tx.block_time) = optimism_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'optimism' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_transmitted_logs.sql b/models/chainlink/optimism/chainlink_optimism_ccip_transmitted_logs.sql new file mode 100644 index 00000000000..bc9d5a854d6 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_transmitted_logs.sql @@ -0,0 +1,27 @@ +{{ + config( + + alias='ccip_transmitted_logs', + materialized='view' + ) +}} + +SELECT + 'optimism' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from +FROM + {{ source('optimism', 'logs') }} logs +WHERE + topic0 = 0xb04e63db38c49950639fa09d29872f21f5d49d614f3a969d8adf3d4b52e41a62 -- Transmitted \ No newline at end of file diff --git a/models/chainlink/optimism/chainlink_optimism_ccip_transmitted_reverted.sql b/models/chainlink/optimism/chainlink_optimism_ccip_transmitted_reverted.sql new file mode 100644 index 00000000000..d372a55ba14 --- /dev/null +++ b/models/chainlink/optimism/chainlink_optimism_ccip_transmitted_reverted.sql @@ -0,0 +1,64 @@ +{{ + config( + + alias='ccip_transmitted_reverted', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + optimism_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'ETH' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx.tx_from as "node_address", + MAX((cast((l1_gas_used) as double) / 1e18) * l1_gas_price) as token_amount, + MAX(optimism_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_optimism_ccip_transmitted_logs') }} tx + LEFT JOIN {{ source('optimism', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN optimism_usd ON date_trunc('minute', tx.block_time) = optimism_usd.block_time + WHERE + tx2.success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx.index, + tx.tx_from + ) +SELECT + 'optimism' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/optimism/chainlink_optimism_schema.yml b/models/chainlink/optimism/chainlink_optimism_schema.yml index e3cb7f7e49e..aeee78d800c 100644 --- a/models/chainlink/optimism/chainlink_optimism_schema.yml +++ b/models/chainlink/optimism/chainlink_optimism_schema.yml @@ -694,3 +694,365 @@ models: - *feed_name - *requester_address - *requester_name + + - name: chainlink_optimism_ccip_fulfilled_transactions + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "fulfilled", "transactions", "optimism"] + description: > + Chainlink CCIP Fulfilled Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_optimism_ccip_gas_daily + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "gas", "daily", "optimism"] + description: > + Chainlink CCIP Gas Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - node_address + columns: + - *blockchain + - *date_start + - *date_month + - *node_address + - *operator_name + - *fulfilled_token_amount + - *fulfilled_usd_amount + - *reverted_token_amount + - *reverted_usd_amount + - *total_token_amount + - *total_usd_amount + + - name: chainlink_optimism_ccip_request_daily + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "request", "daily", "optimism"] + description: > + Chainlink CCIP Request Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + columns: + - *blockchain + - *date_start + - *date_month + - *fulfilled_requests + - *reverted_requests + - *total_requests + + - name: chainlink_optimism_ccip_reverted_transactions + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reverted", "transactions", "optimism"] + description: > + Chainlink CCIP Reverted Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + + - name: chainlink_optimism_ccip_reward_daily + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reward", "daily", "optimism"] + description: > + Chainlink CCIP Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - &token + name: token + description: "Token" + + - name: chainlink_optimism_ccip_send_requested + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "optimism"] + description: > + Chainlink CCIP Send Requested + columns: + - *blockchain + - *evt_block_time + - &fee_amount + name: fee_amount + description: "Fee Amount" + - *token + - &destination_blockchain + name: destination_blockchain + description: "Destination Blockchain" + - &destination_chain_selector + name: destination_chain_selector + description: "Destination Chain Selector" + + - name: chainlink_optimism_ccip_send_requested_daily + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "daily", "optimism"] + description: > + Chainlink CCIP Send Requested Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + - destination_blockchain + columns: + - *blockchain + - *date_start + - *date_month + - *fee_amount + - *token + - *destination_blockchain + - &count + name: count + description: "Count" + + - name: chainlink_optimism_ccip_send_traces + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "traces", "optimism"] + description: > + Chainlink CCIP Send Traces + columns: + - *blockchain + - *block_hash + - *block_number + - *block_time + - *tx_hash + - *from + - *to + - *input + - *output + - &tx_success + name: tx_success + description: "Transaction Success" + - &value + name: value + description: "Value" + - &chain_selector + name: chain_selector + description: "Chain Selector" + - &destination + name: destination + description: "Destination" + + - name: chainlink_optimism_ccip_tokens_locked_logs + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "tokens", "locked", "logs", "optimism"] + description: > + Chainlink CCIP Tokens Locked Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &total_tokens + name: total_tokens + description: "Total Tokens" + + - name: chainlink_optimism_ccip_transmitted_fulfilled + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "fulfilled", "optimism"] + description: > + Chainlink CCIP Transmitted Fulfilled + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_optimism_ccip_transmitted_reverted + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "reverted", "optimism"] + description: > + Chainlink CCIP Transmitted Reverted + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_optimism_ccip_transmitted_logs + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "logs", "optimism"] + description: > + Chainlink CCIP Transmitted Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + + - name: chainlink_optimism_ccip_nop_paid_logs + meta: + blockchain: "optimism" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "paid", "logs", "optimism"] + description: > + Chainlink CCIP Nop Paid Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &nop_address + name: nop_address + description: "Nop Address" + - *total_tokens + + - name: chainlink_optimism_ccip_nop_reward_daily + meta: + blockchain: "optimism" + + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "reward", "daily", "optimism"] + description: > + Chainlink CCIP Nop Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - date_start + - nop_address + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - *operator_name + - *nop_address diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_admin_meta.sql b/models/chainlink/polygon/chainlink_polygon_ccip_admin_meta.sql new file mode 100644 index 00000000000..ffef77e2132 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_admin_meta.sql @@ -0,0 +1,34 @@ +{{ + config( + alias='ccip_admin_meta', + materialized = 'view' + ) +}} + +SELECT + 'polygon' as blockchain, + admin_address, + operator_name +FROM (values + (0xa5D0084A766203b463b3164DFc49D91509C12daB, 'alphachain'), + (0x4a3dF8cAe46765d33c2551ff5438a5C5FC44347c, 'chainlayer'), + (0x59eCf48345A221E0731E785ED79eD40d0A94E2A5, 'cryptomanufaktur'), + (0x9efa0A617C0552F1558c95993aA8b8A68b3e709C, 'dextrac'), + (0xFdC770353dC0bFCE80a17Ab8a6a2E7d80590f1Ba, 'easy2stake'), + (0x7AF3C2b54eE2f170b8104222eB4EDf2511f5d9d0, 'everstake'), + (0x15918ff7f6C44592C81d999B442956B07D26CC44, 'fiews'), + (0x001E0d294383d5b4136476648aCc8D04a6461Ae3, 'kytzu'), + (0x4564A9c6061f6f1F2Eadb954B1b3C241D2DC984e, 'linkforest'), + (0x797de2909991C66C66D8e730C8385bbab8D18eA6, 'linkpool'), + (0x14f94049397C3F1807c45B6f854Cb5F36bC4393B, 'linkriver'), + (0x670dBCf722ee66079DAB6456071e8d536eEC1463, 'newroad'), + (0x0921E157b690c4F89F7C2a210cFd8bF3964F6776, 'northwestnodes'), + (0xCDa423ee5A7A886eF113b181469581306fC8B607, 'p2porg'), + (0x3FB4600736d306Ee2A89EdF0356D4272fb095768, 'piertwo'), + (0xBDB624CD1051F687f116bB0c642330B2aBdfcc06, 'prophet'), + (0xDA80050Ed4F50033949608208f79EE43Ab91dF55, 'rhino'), + (0x9cCbFD17FA284f36c2ff503546160B256d1CD3D1, 'snzpool'), + (0xC51D3470693BC049809A1c515606124c7C75908d, 'syncnode'), + (0x183A96629fF566e7AA8AfA38980Cd037EB40A59A, 'validationcloud'), + (0x111f1B41f702c20707686769a4b7f25c56C533B2, 'wetez') +) a (admin_address, operator_name) diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_fulfilled_transactions.sql b/models/chainlink/polygon/chainlink_polygon_ccip_fulfilled_transactions.sql new file mode 100644 index 00000000000..638244faf26 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_fulfilled_transactions.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_fulfilled_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + polygon_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'MATIC' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(polygon_usd.usd_amount) as usd_amount + FROM + {{ source('polygon', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_polygon_ccip_send_traces') }} ccip_send_traces ON ccip_send_traces.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_send_traces.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN polygon_usd ON date_trunc('minute', tx.block_time) = polygon_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'polygon' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_gas_daily.sql b/models/chainlink/polygon/chainlink_polygon_ccip_gas_daily.sql new file mode 100644 index 00000000000..2c1beff0927 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_gas_daily.sql @@ -0,0 +1,77 @@ +{{ + config( + + alias='ccip_gas_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_gas_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE( + fulfilled.node_address, + reverted.node_address + ) AS "node_address", + COALESCE(SUM(fulfilled.token_amount), 0) as fulfilled_token_amount, + COALESCE(SUM(reverted.token_amount), 0) as reverted_token_amount, + COALESCE(SUM(fulfilled.token_amount * fulfilled.usd_amount), 0) as fulfilled_usd_amount, + COALESCE(SUM(reverted.token_amount * reverted.usd_amount), 0) as reverted_usd_amount + FROM + {{ ref('chainlink_polygon_ccip_transmitted_fulfilled') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_polygon_ccip_transmitted_reverted') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + OR reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, 2 + ORDER BY + 1, 2 + ), + ccip_gas_daily AS ( + SELECT + 'polygon' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + ccip_gas_daily_meta.node_address as node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + fulfilled_token_amount + reverted_token_amount as total_token_amount, + fulfilled_usd_amount + reverted_usd_amount as total_usd_amount + FROM ccip_gas_daily_meta + LEFT JOIN {{ ref('chainlink_polygon_ccip_operator_meta') }} ccip_operator_meta ON ccip_operator_meta.node_address = ccip_gas_daily_meta.node_address + ) +SELECT + blockchain, + date_start, + date_month, + node_address, + operator_name, + fulfilled_token_amount, + fulfilled_usd_amount, + reverted_token_amount, + reverted_usd_amount, + total_token_amount, + total_usd_amount +FROM + ccip_gas_daily +ORDER BY + "date_start" diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_nop_paid_logs.sql b/models/chainlink/polygon/chainlink_polygon_ccip_nop_paid_logs.sql new file mode 100644 index 00000000000..1a2d0bfdc4f --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_nop_paid_logs.sql @@ -0,0 +1,29 @@ +{{ + config( + + alias='ccip_nop_paid_logs', + materialized='view' + ) +}} + +SELECT + 'polygon' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_substring(topic1, 13) as nop_address, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('polygon', 'logs') }} logs +WHERE + topic0 = 0x55fdec2aab60a41fa5abb106670eb1006f5aeaee1ba7afea2bc89b5b3ec7678f -- NopPaid \ No newline at end of file diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_nop_reward_daily.sql b/models/chainlink/polygon/chainlink_polygon_ccip_nop_reward_daily.sql new file mode 100644 index 00000000000..b7a50a2f5d9 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_nop_reward_daily.sql @@ -0,0 +1,72 @@ +{{ + config( + + alias='ccip_nop_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'nop_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + link_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + price.symbol = 'LINK' + GROUP BY + 1 + ORDER BY + 1 + ), + nop_paid AS ( + SELECT + 'polygon' as blockchain, + cast(date_trunc('day', block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', block_time) AS date)) AS date_month, + nop_logs.nop_address as nop_address, + MAX(admin_meta.operator_name) as operator_name, + SUM(nop_logs.total_tokens / 1e18) as token_amount +FROM + {{ref('chainlink_polygon_ccip_nop_paid_logs')}} nop_logs + LEFT JOIN {{ref('chainlink_polygon_ccip_admin_meta')}} admin_meta ON admin_meta.admin_address = nop_logs.nop_address +{% if is_incremental() %} + WHERE block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 4 +ORDER BY + 2, 4 + ), + nop_reward_daily AS ( + SELECT + nop_paid.date_start, + cast(date_trunc('month', nop_paid.date_start) as date) as date_month, + nop_paid.operator_name, + nop_paid.nop_address, + nop_paid.token_amount as token_amount, + (nop_paid.token_amount * lud.usd_amount) as usd_amount + FROM + nop_paid + LEFT JOIN link_usd_daily lud ON lud.date_start = nop_paid.date_start + ORDER BY date_start + ) +SELECT + 'polygon' as blockchain, + date_start, + date_month, + operator_name, + nop_address, + token_amount, + usd_amount +FROM + nop_reward_daily +ORDER BY + 2, 5 diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_operator_meta.sql b/models/chainlink/polygon/chainlink_polygon_ccip_operator_meta.sql new file mode 100644 index 00000000000..db421acbc31 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_operator_meta.sql @@ -0,0 +1,32 @@ +{{ + config( + alias='ccip_operator_meta', + materialized = 'view' + ) +}} + +SELECT + 'polygon' as blockchain, + node_address, + operator_name +FROM (values + (0xED5cBf90D90eCcF2a846a1DA6D966A4B7E0A3269, 'alphachain'), + (0x7537cB7b7E8083ff8E68cb5c0cA18553Ab54946f, 'chainlayer'), + (0x2a8213afA1C17b56FFD4E74bc9B8a6a501c2Ca59, 'cryptomanufaktur'), + (0x577071e8cb406BB1643adde495AD04E926BbD35f, 'dextrac'), + (0x7F797646dF0432f3A5bB89F34ab1f114513dAd84, 'everstake'), + (0x68Df61A58BEb7f38979DDef92577B641Fc1cF93c, 'fiews'), + (0x9E604B15222f16B3A009a6cc9101630D09307aE8, 'kytzu'), + (0xEc1E746DD5F4FadDE8234C4BD6163802f504e000, 'linkforest'), + (0x0B996B8C217F8fd087B8C1e6231ac99f43Cd2115, 'linkpool'), + (0x814cdA4aA8A5E2c83dF5eB66970695a9CAA373C9, 'linkriver'), + (0xf01C2Bc5bf3C9178aB5C1603D1041fb4389B0C7F, 'newroad'), + (0x9f94408A1d6ad2993671753ad42BaE8b1Add24D5, 'northwestnodes'), + (0x1E5bb4FfB55252A54294D2093d30f3671fFEE6B3, 'p2porg'), + (0x5f99e976Da7CE1213E29e38726627F46b270A640, 'piertwo'), + (0x28D0D41d7c260b5110f9Ad4D4c67712EA0B0EDB3, 'prophet'), + (0x84A611B71254F5fCCb1E5a619aD723CAD8a03638, 'snzpool'), + (0x5bf83a4944b59B8A163D546B3A57f5AaE7938ff1, 'syncnode'), + (0xB8395157BB560386148274540Df48D12cc5F9B78, 'validationcloud'), + (0xB4c03485172079e82A6ed7DE3535d7d12E5e8D8F, 'wetez') +) a (node_address, operator_name) diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_request_daily.sql b/models/chainlink/polygon/chainlink_polygon_ccip_request_daily.sql new file mode 100644 index 00000000000..3ad2c6d8b2b --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_request_daily.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_request_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start'] + ) +}} + +{% set incremental_interval = '7' %} +{% set truncate_by = 'day' %} + +WITH + ccip_request_daily_meta AS ( + SELECT + COALESCE( + cast(date_trunc('{{truncate_by}}', fulfilled.block_time) as date), + cast(date_trunc('{{truncate_by}}', reverted.block_time) as date) + ) AS "date_start", + COALESCE(COUNT(fulfilled.token_amount), 0) as fulfilled_requests, + COALESCE(COUNT(reverted.token_amount), 0) as reverted_requests, + COALESCE(COUNT(fulfilled.token_amount), 0) + COALESCE(COUNT(reverted.token_amount), 0) as total_requests + FROM + {{ ref('chainlink_polygon_ccip_fulfilled_transactions') }} fulfilled + FULL OUTER JOIN {{ ref('chainlink_polygon_ccip_reverted_transactions') }} reverted ON + reverted.block_time = fulfilled.block_time AND + reverted.node_address = fulfilled.node_address + {% if is_incremental() %} + WHERE + fulfilled.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + AND reverted.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1 + ORDER BY + 1 + ), + ccip_request_daily AS ( + SELECT + 'polygon' as blockchain, + date_start, + cast(date_trunc('month', date_start) as date) as date_month, + fulfilled_requests, + reverted_requests, + total_requests + FROM ccip_request_daily_meta + ) +SELECT + ccip_request_daily.blockchain, + date_start, + date_month, + fulfilled_requests, + reverted_requests, + total_requests +FROM + ccip_request_daily +ORDER BY + "date_start" diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_reverted_transactions.sql b/models/chainlink/polygon/chainlink_polygon_ccip_reverted_transactions.sql new file mode 100644 index 00000000000..6ff30a69246 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_reverted_transactions.sql @@ -0,0 +1,61 @@ +{{ + config( + + alias='ccip_reverted_transactions', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + polygon_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'MATIC' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(polygon_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_polygon_ccip_send_traces') }} tx + INNER JOIN {{ source('polygon', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx2.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN polygon_usd ON date_trunc('minute', tx.block_time) = polygon_usd.block_time + WHERE + tx.tx_success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx."from" + ) +SELECT + 'polygon' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_reward_daily.sql b/models/chainlink/polygon/chainlink_polygon_ccip_reward_daily.sql new file mode 100644 index 00000000000..c5690ae3ab3 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_reward_daily.sql @@ -0,0 +1,63 @@ +{{ + config( + alias='ccip_reward_daily', + partition_by = ['date_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['date_start', 'token'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + token_meta AS ( + SELECT + token_contract, + token_symbol + FROM + {{ref('chainlink_polygon_ccip_token_meta')}} + ), + token_usd_daily AS ( + SELECT + cast(date_trunc('day', price.minute) as date) as "date_start", + token_meta.token_symbol as symbol, + MAX(price.price) as usd_amount + FROM + {{ source('prices', 'usd') }} price + JOIN token_meta ON price.symbol = token_meta.token_symbol + {% if is_incremental() %} + WHERE price.minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + 1, token_meta.token_symbol + ORDER BY + 1 + ), + ccip_reward_daily AS ( + SELECT + ccip_send_requested_daily.date_start, + cast(date_trunc('month', ccip_send_requested_daily.date_start) as date) as date_month, + SUM(ccip_send_requested_daily.fee_amount) as token_amount, + SUM((ccip_send_requested_daily.fee_amount * tud.usd_amount)) as usd_amount, + ccip_send_requested_daily.token as token + FROM + {{ref('chainlink_polygon_ccip_send_requested_daily')}} ccip_send_requested_daily + LEFT JOIN token_usd_daily tud ON tud.date_start = ccip_send_requested_daily.date_start AND tud.symbol = ccip_send_requested_daily.token + {% if is_incremental() %} + WHERE ccip_send_requested_daily.date_start >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY 1, 5 + ) +SELECT + 'polygon' as blockchain, + date_start, + date_month, + token_amount, + usd_amount, + token +FROM + ccip_reward_daily +ORDER BY + 2, 6 diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_send_requested.sql b/models/chainlink/polygon/chainlink_polygon_ccip_send_requested.sql new file mode 100644 index 00000000000..159cdfaa74e --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_send_requested.sql @@ -0,0 +1,51 @@ +{{ + config( + + alias='ccip_send_requested', + materialized='view' + ) +}} + +SELECT + MAX(ccip_traces.blockchain) AS blockchain, + MAX(ccip_traces.block_time) AS evt_block_time, + MAX(reward_evt_transfer.value / 1e18) AS fee_amount, + MAX(token_addresses.token_symbol) AS token, + MAX(ccip_traces.chain_selector) as destination_chain_selector, + MAX(ccip_traces.destination) as destination_blockchain +FROM + {{ ref('chainlink_polygon_ccip_send_traces') }} ccip_traces + LEFT JOIN {{ source('erc20_polygon', 'evt_Transfer') }} reward_evt_transfer ON reward_evt_transfer.evt_tx_hash = ccip_traces.tx_hash + LEFT JOIN {{ ref('chainlink_polygon_ccip_token_meta') }} token_addresses ON token_addresses.token_contract = reward_evt_transfer.contract_address + LEFT JOIN {{ ref('chainlink_polygon_ccip_tokens_locked_logs') }} tokens_locked ON tokens_locked.tx_hash = ccip_traces.tx_hash +WHERE + ( + ( + ccip_traces.value > 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_polygon_ccip_token_meta') }} + WHERE + token_symbol = 'WMATIC' + ) + ) + OR ( + ccip_traces.value <= 0 + AND reward_evt_transfer.contract_address IN ( + SELECT + token_contract + FROM + {{ ref('chainlink_polygon_ccip_token_meta') }} + WHERE + token_symbol != 'WMATIC' + ) + ) + ) + AND ( + tokens_locked.tx_hash IS NULL + OR tokens_locked.total_tokens != reward_evt_transfer.value + ) +GROUP BY + ccip_traces.tx_hash \ No newline at end of file diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_send_requested_daily.sql b/models/chainlink/polygon/chainlink_polygon_ccip_send_requested_daily.sql new file mode 100644 index 00000000000..c07a45f0606 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_send_requested_daily.sql @@ -0,0 +1,31 @@ +{{ + config( + + alias='ccip_send_requested_daily', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['date_start', 'token', 'destination_blockchain'] + ) +}} + +{% set incremental_interval = '7' %} + +SELECT + 'polygon' as blockchain, + cast(date_trunc('day', evt_block_time) AS date) AS date_start, + MAX(cast(date_trunc('month', evt_block_time) AS date)) AS date_month, + SUM(ccip_send_requested.fee_amount) as fee_amount, + ccip_send_requested.token as token, + ccip_send_requested.destination_blockchain AS destination_blockchain, + COUNT(ccip_send_requested.destination_blockchain) AS count +FROM + {{ref('chainlink_polygon_ccip_send_requested')}} ccip_send_requested +{% if is_incremental() %} + WHERE evt_block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) +{% endif %} +GROUP BY + 2, 5, 6 +ORDER BY + 2, 5, 6 diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_send_traces.sql b/models/chainlink/polygon/chainlink_polygon_ccip_send_traces.sql new file mode 100644 index 00000000000..d4cf5f3979b --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_send_traces.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_send_traces', + materialized='view' + ) +}} + +SELECT + 'polygon' as blockchain, + block_hash, + block_number, + block_time, + tx_hash, + traces."from", + traces."to", + input, + traces."output", + traces.tx_success, + traces.value, + network_meta.chain_selector as chain_selector, + network_meta.blockchain as destination +FROM + {{ source('polygon', 'traces') }} traces +left join {{ref('chainlink_ccip_network_meta')}} network_meta on network_meta.chain_selector = bytearray_to_uint256(bytearray_substring(input, 5, 32)) +WHERE + traces."to" = (SELECT router FROM {{ref('chainlink_ccip_network_meta')}} WHERE blockchain = 'polygon') + AND bytearray_substring(input, 1, 4) = 0x96f4e9f9 \ No newline at end of file diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_token_meta.sql b/models/chainlink/polygon/chainlink_polygon_ccip_token_meta.sql new file mode 100644 index 00000000000..a8d2c0a1642 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_token_meta.sql @@ -0,0 +1,18 @@ +{{ + config( + + alias='ccip_token_meta', + materialized = 'view' + ) +}} + +-- will need to be updated to add new fee tokens in the future + +SELECT + 'polygon' AS blockchain, + token_contract, + token_symbol +FROM (VALUES + (0xb0897686c545045aFc77CF20eC7A532E3120E0F1, 'LINK'), + (0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270, 'WMATIC') +) a (token_contract, token_symbol) diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_tokens_locked_logs.sql b/models/chainlink/polygon/chainlink_polygon_ccip_tokens_locked_logs.sql new file mode 100644 index 00000000000..f9984fa8426 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_tokens_locked_logs.sql @@ -0,0 +1,28 @@ +{{ + config( + + alias='ccip_tokens_locked_logs', + materialized='view' + ) +}} + +SELECT + 'polygon' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from, + bytearray_to_uint256(bytearray_substring(data, 1, 32)) as total_tokens +FROM + {{ source('polygon', 'logs') }} logs +WHERE + topic0 = 0x9f1ec8c880f76798e7b793325d625e9b60e4082a553c98f42b6cda368dd60008 -- Locked \ No newline at end of file diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_transmitted_fulfilled.sql b/models/chainlink/polygon/chainlink_polygon_ccip_transmitted_fulfilled.sql new file mode 100644 index 00000000000..5b855a09df1 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_transmitted_fulfilled.sql @@ -0,0 +1,62 @@ +{{ + config( + + alias='ccip_transmitted_fulfilled', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + polygon_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'MATIC' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_fulfilled_transactions AS ( + SELECT + tx.hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx."from" as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(polygon_usd.usd_amount) as usd_amount + FROM + {{ source('polygon', 'transactions') }} tx + RIGHT JOIN {{ ref('chainlink_polygon_ccip_transmitted_logs') }} ccip_tx ON ccip_tx.tx_hash = tx.hash + {% if is_incremental() %} + AND ccip_tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN polygon_usd ON date_trunc('minute', tx.block_time) = polygon_usd.block_time + {% if is_incremental() %} + WHERE tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.hash, + tx.index, + tx."from" + ) +SELECT + 'polygon' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_fulfilled_transactions \ No newline at end of file diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_transmitted_logs.sql b/models/chainlink/polygon/chainlink_polygon_ccip_transmitted_logs.sql new file mode 100644 index 00000000000..79e320dbc84 --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_transmitted_logs.sql @@ -0,0 +1,27 @@ +{{ + config( + + alias='ccip_transmitted_logs', + materialized='view' + ) +}} + +SELECT + 'polygon' as blockchain, + block_hash, + contract_address, + data, + topic0, + topic1, + topic2, + topic3, + tx_hash, + block_number, + block_time, + index, + tx_index, + tx_from +FROM + {{ source('polygon', 'logs') }} logs +WHERE + topic0 = 0xb04e63db38c49950639fa09d29872f21f5d49d614f3a969d8adf3d4b52e41a62 -- Transmitted \ No newline at end of file diff --git a/models/chainlink/polygon/chainlink_polygon_ccip_transmitted_reverted.sql b/models/chainlink/polygon/chainlink_polygon_ccip_transmitted_reverted.sql new file mode 100644 index 00000000000..f269c225fff --- /dev/null +++ b/models/chainlink/polygon/chainlink_polygon_ccip_transmitted_reverted.sql @@ -0,0 +1,64 @@ +{{ + config( + + alias='ccip_transmitted_reverted', + partition_by=['date_month'], + materialized='incremental', + file_format='delta', + incremental_strategy='merge', + unique_key=['tx_hash', 'tx_index', 'node_address'] + ) +}} + +{% set incremental_interval = '7' %} + +WITH + polygon_usd AS ( + SELECT + minute as block_time, + price as usd_amount + FROM + {{ source('prices', 'usd') }} price + WHERE + symbol = 'MATIC' + {% if is_incremental() %} + AND minute >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + ), + ccip_reverted_transactions AS ( + SELECT + tx.tx_hash as tx_hash, + tx.index as tx_index, + MAX(tx.block_time) as block_time, + cast(date_trunc('month', MAX(tx.block_time)) as date) as date_month, + tx.tx_from as "node_address", + MAX((cast((gas_used) as double) / 1e18) * gas_price) as token_amount, + MAX(polygon_usd.usd_amount) as usd_amount + FROM + {{ ref('chainlink_polygon_ccip_transmitted_logs') }} tx + LEFT JOIN {{ source('polygon', 'transactions') }} tx2 ON tx2.hash = tx.tx_hash + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + LEFT JOIN polygon_usd ON date_trunc('minute', tx.block_time) = polygon_usd.block_time + WHERE + tx2.success = false + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '{{incremental_interval}}' day) + {% endif %} + GROUP BY + tx.tx_hash, + tx.index, + tx.tx_from + ) +SELECT + 'polygon' as blockchain, + block_time, + date_month, + node_address, + token_amount, + usd_amount, + tx_hash, + tx_index +FROM + ccip_reverted_transactions \ No newline at end of file diff --git a/models/chainlink/polygon/chainlink_polygon_schema.yml b/models/chainlink/polygon/chainlink_polygon_schema.yml index ccaaceff5a1..14743c83c2d 100644 --- a/models/chainlink/polygon/chainlink_polygon_schema.yml +++ b/models/chainlink/polygon/chainlink_polygon_schema.yml @@ -1185,3 +1185,366 @@ models: - *feed_name - *requester_address - *requester_name + + - name: chainlink_polygon_ccip_fulfilled_transactions + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "fulfilled", "transactions", "polygon"] + description: > + Chainlink CCIP Fulfilled Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_polygon_ccip_gas_daily + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "gas", "daily", "polygon"] + description: > + Chainlink CCIP Gas Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - node_address + columns: + - *blockchain + - *date_start + - *date_month + - *node_address + - *operator_name + - *fulfilled_token_amount + - *fulfilled_usd_amount + - *reverted_token_amount + - *reverted_usd_amount + - *total_token_amount + - *total_usd_amount + + - name: chainlink_polygon_ccip_request_daily + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "request", "daily", "polygon"] + description: > + Chainlink CCIP Request Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + columns: + - *blockchain + - *date_start + - *date_month + - *fulfilled_requests + - *reverted_requests + - *total_requests + + - name: chainlink_polygon_ccip_reverted_transactions + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reverted", "transactions", "polygon"] + description: > + Chainlink CCIP Reverted Transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + + - name: chainlink_polygon_ccip_reward_daily + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "reward", "daily", "polygon"] + description: > + Chainlink CCIP Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - &token + name: token + description: "Token" + + - name: chainlink_polygon_ccip_send_requested + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "polygon"] + description: > + Chainlink CCIP Send Requested + columns: + - *blockchain + - *evt_block_time + - &fee_amount + name: fee_amount + description: "Fee Amount" + - *token + - &destination_blockchain + name: destination_blockchain + description: "Destination Blockchain" + - &destination_chain_selector + name: destination_chain_selector + description: "Destination Chain Selector" + + - name: chainlink_polygon_ccip_send_requested_daily + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "requested", "daily", "polygon"] + description: > + Chainlink CCIP Send Requested Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - token + - destination_blockchain + columns: + - *blockchain + - *date_start + - *date_month + - *fee_amount + - *token + - *destination_blockchain + - &count + name: count + description: "Count" + + - name: chainlink_polygon_ccip_send_traces + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "send", "traces", "polygon"] + description: > + Chainlink CCIP Send Traces + columns: + - *blockchain + - *block_hash + - *block_number + - *block_time + - *tx_hash + - *from + - *to + - *input + - *output + - &tx_success + name: tx_success + description: "Transaction Success" + - &value + name: value + description: "Value" + - &chain_selector + name: chain_selector + description: "Chain Selector" + - &destination + name: destination + description: "Destination" + + - name: chainlink_polygon_ccip_tokens_locked_logs + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "tokens", "locked", "logs", "polygon"] + description: > + Chainlink CCIP Tokens Locked Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &total_tokens + name: total_tokens + description: "Total Tokens" + + - name: chainlink_polygon_ccip_transmitted_fulfilled + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "fulfilled", "polygon"] + description: > + Chainlink CCIP Transmitted Fulfilled + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_polygon_ccip_transmitted_reverted + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "reverted", "polygon"] + description: > + Chainlink CCIP Transmitted Reverted + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - tx_index + - node_address + columns: + - *blockchain + - *block_time + - *date_month + - *node_address + - *token_amount + - *usd_amount + - *tx_hash + - *tx_index + + - name: chainlink_polygon_ccip_transmitted_logs + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "transmitted", "logs", "polygon"] + description: > + Chainlink CCIP Transmitted Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + + - name: chainlink_polygon_ccip_nop_paid_logs + meta: + blockchain: "polygon" + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "paid", "logs", "polygon"] + description: > + Chainlink CCIP Nop Paid Logs + columns: + - *blockchain + - *block_hash + - *contract_address + - *data + - *topic0 + - *topic1 + - *topic2 + - *topic3 + - *tx_hash + - *block_number + - *block_time + - *index + - *tx_index + - &nop_address + name: nop_address + description: "Nop Address" + - *total_tokens + + - name: chainlink_polygon_ccip_nop_reward_daily + meta: + blockchain: "polygon" + + project: chainlink + contributors: ["linkpool_jon"] + config: + tags: ["chainlink", "ccip", "nop", "reward", "daily", "polygon"] + description: > + Chainlink CCIP Nop Reward Daily + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - date_start + - nop_address + columns: + - *blockchain + - *date_start + - *date_month + - *token_amount + - *usd_amount + - *operator_name + - *nop_address diff --git a/models/cow_protocol/ethereum/cow_protocol_ethereum_solvers.sql b/models/cow_protocol/ethereum/cow_protocol_ethereum_solvers.sql index 142788c016e..9c3665cb1bf 100644 --- a/models/cow_protocol/ethereum/cow_protocol_ethereum_solvers.sql +++ b/models/cow_protocol/ethereum/cow_protocol_ethereum_solvers.sql @@ -101,6 +101,8 @@ known_solver_metadata (address, environment, name) as ( (0xFf662Eedb413273B6727e1F59755607CA6876044, 'prod', 'OpenOcean_Aggregator'), (0xBEAf89aEc78A2990BE29E2a317feed6B75Bc78Cd, 'prod', 'Quasimodo'), (0x16C473448E770Ff647c69CBe19e28528877fba1B, 'prod', 'Copium_Capital'), + (0x4FC4a61a3b99A1ad4A61b03f3752CA12B4A17646, 'prod', 'Rizzolver'), + (0x2854C9A92cd1dC65BdDF45aFE397D9d75D4718C8, 'barn', 'Rizzolver'), (0x8E8C00aD7011AabEa0E06e984cfA7194CF8b16b0, 'barn', 'Copium_Capital'), (0xaaC451d13cF8D6915f859f4c7Bc26dA2df10ECA6, 'barn', 'Quasimodo'), (0x9902F0B57b6B8b2Fa7339Cd3eFe0710CF63c86d6, 'barn', 'OpenOcean_Aggregator'), diff --git a/models/curvefi/ethereum/curvefi_ethereum_sources.yml b/models/curvefi/ethereum/curvefi_ethereum_sources.yml index 2b05a3a39d4..a5e1bfb8cf8 100644 --- a/models/curvefi/ethereum/curvefi_ethereum_sources.yml +++ b/models/curvefi/ethereum/curvefi_ethereum_sources.yml @@ -73,6 +73,12 @@ sources: loaded_at_field: evt_block_time - name: rsr_frax_usdc_pool_evt_TokenExchange loaded_at_field: evt_block_time + - name: crvUSD_StableswapFactory_evt_PlainPoolDeployed + loaded_at_field: evt_block_time + - name: crvUSD_StableswapFactory_call_deploy_plain_pool + loaded_at_field: call_block_time + - name: crvUSD_StableswapFactory_call_deploy_metapool + loaded_at_field: evt_block_time - name: curvefi_v2_ethereum description: "decoded events and function calls for curve.fi v2 on ethereum" freshness: # default freshness diff --git a/models/curvefi/ethereum/curvefi_ethereum_trades.sql b/models/curvefi/ethereum/curvefi_ethereum_trades.sql index cea2e4b7fda..4ce13b7f3f1 100644 --- a/models/curvefi/ethereum/curvefi_ethereum_trades.sql +++ b/models/curvefi/ethereum/curvefi_ethereum_trades.sql @@ -45,7 +45,7 @@ WITH dexs AS FROM {{ source('ethereum', 'logs') }} l JOIN {{ ref('curvefi_ethereum_view_pools') }} p ON l.contract_address = p.pool_address - AND p.version IN ('Factory V1 Meta', 'Factory V1 Plain', 'Regular') --note Plain only has TokenExchange. + AND p.version IN ('Factory V1 Meta', 'Factory V1 Plain', 'Regular', 'Factory V1 Stableswap Plain', 'Factory V1 Stableswap Meta') --note Plain only has TokenExchange. WHERE l.topic0 IN ( 0xd013ca23e77a65003c2c659c5442c00c805371b7fc1ebd4c206c41d1536bd90b -- TokenExchangeUnderlying diff --git a/models/curvefi/ethereum/curvefi_ethereum_view_pools.sql b/models/curvefi/ethereum/curvefi_ethereum_view_pools.sql index 842db3c11c7..46185b413f4 100644 --- a/models/curvefi/ethereum/curvefi_ethereum_view_pools.sql +++ b/models/curvefi/ethereum/curvefi_ethereum_view_pools.sql @@ -157,8 +157,69 @@ meta_pools_deployed AS ( FROM meta_calls mc LEFT JOIN regular_pools r ON r.pool_address = mc._base_pool + + UNION ALL + + SELECT + 'Factory V1 Stableswap Meta' AS version, + _name AS name, + _symbol AS symbol, + output_0 AS pool_address, + _A AS A, + _fee AS mid_fee, + _fee AS out_fee, + output_0 AS token_address, + output_0 AS deposit_contract, + _coin AS coin0, + r.token_address as coin1, --reference the token address of the base pool as coin1. meta pools swap into the base pool token, and then another swap is conducted. + CAST(NULL as varbinary) AS coin2, + CAST(NULL as varbinary) AS coin3, + _coin AS undercoin0, + --Listing underlying coins for the ExchangeUnderlying function + r.coin0 as undercoin1, + r.coin1 as undercoin2, + r.coin2 as undercoin3 + FROM + {{ source( + 'curvefi_ethereum', + 'crvUSD_StableswapFactory_call_deploy_metapool' + ) }} mc + LEFT JOIN regular_pools r ON r.pool_address = mc._base_pool ), -v1_pools_deployed AS ( + +v1_stableswap as ( + SELECT + 'Factory V1 Stableswap Plain' AS version, + p._name AS name, + p._symbol AS symbol, + dp.pool AS pool_address, + p._A AS A, + p._fee AS mid_fee, + p._fee AS out_fee, + dp.pool AS token_address, + dp.pool AS deposit_contract, + p._coins[1] AS coin0, + p._coins[2] AS coin1, + COALESCE(try(p._coins[3]),CAST(NULL as varbinary)) as coin2, + COALESCE(try(p._coins[4]),CAST(NULL as varbinary)) as coin3, + CAST(NULL as varbinary) AS undercoin0, + CAST(NULL as varbinary) AS undercoin1, + CAST(NULL as varbinary) AS undercoin2, + CAST(NULL as varbinary) AS undercoin3 + FROM + {{ source( + 'curvefi_ethereum', + 'crvUSD_StableswapFactory_call_deploy_plain_pool' + ) }} as p + LEFT JOIN {{ source( + 'curvefi_ethereum', + 'crvUSD_StableswapFactory_evt_PlainPoolDeployed' + ) }} dp + ON p.call_block_time = dp.evt_block_time + AND p.call_tx_hash = dp.evt_tx_hash +) + +, v1_pools_deployed AS ( SELECT version, name, @@ -200,6 +261,27 @@ v1_pools_deployed AS ( undercoin3 FROM meta_pools_deployed + UNION ALL + SELECT + version, + name, + symbol, + pool_address, + A, + mid_fee, + out_fee, + token_address, + deposit_contract, + coin0, + coin1, + coin2, + coin3, + undercoin0, + undercoin1, + undercoin2, + undercoin3 + FROM + v1_stableswap ), ---------------------------------------------------------------- V2 Pools ---------------------------------------------------------------- v2_pools_deployed AS ( diff --git a/models/datasets/reservoir/ethereum/_sources.yml b/models/datasets/reservoir/ethereum/_sources.yml new file mode 100644 index 00000000000..c321e44c793 --- /dev/null +++ b/models/datasets/reservoir/ethereum/_sources.yml @@ -0,0 +1,6 @@ +version: 2 + +sources: + - name: reservoir + tables: + - name: tokens_0010 \ No newline at end of file diff --git a/models/datasets/reservoir/ethereum/tokens_beta.sql b/models/datasets/reservoir/ethereum/tokens_beta.sql index a65c12cc330..51c1e48b3e3 100644 --- a/models/datasets/reservoir/ethereum/tokens_beta.sql +++ b/models/datasets/reservoir/ethereum/tokens_beta.sql @@ -1,12 +1,36 @@ -{{ config( - +{{ config( schema = 'reservoir', alias = 'tokens_beta', post_hook = '{{ expose_dataset(\'["ethereum"]\', \'[""]\') }}' ) }} -select + +WITH ranked_entries AS ( + SELECT + created_at, + collection_id, + contract, + floor_ask_maker, + floor_ask_id, + owner, + description, + floor_ask_source, + floor_ask_valid_from, + floor_ask_valid_to, + floor_ask_value, + id, + last_sale_timestamp, + last_sale_value, + name, + token_id, + updated_at, + ROW_NUMBER() OVER (PARTITION BY id ORDER BY updated_at DESC, filename DESC) AS row_num + FROM + {{ source('reservoir', 'tokens_0010') }} +) + +SELECT t.created_at, t.collection_id, from_hex(t.contract) as contract, @@ -26,16 +50,7 @@ select t.name, t.token_id, t.updated_at -from delta_prod.reservoir.tokens_0010 t - inner join ( - select - id, - max(updated_at) as recent_updated_at, - max(filename) as last_filename - from - delta_prod.reservoir.tokens_0010 - group by - id - ) tm on t.id = tm.id - and t.updated_at = tm.recent_updated_at - and t.filename = tm.last_filename +FROM + ranked_entries t +WHERE + row_num = 1 diff --git a/models/dex/chains/dex_schema.yml b/models/dex/chains/dex_schema.yml index 8160d15c293..090ac54211b 100644 --- a/models/dex/chains/dex_schema.yml +++ b/models/dex/chains/dex_schema.yml @@ -15,7 +15,6 @@ models: combination_of_columns: - blockchain - tx_hash - - project_contract_address - evt_index columns: - &blockchain @@ -108,7 +107,6 @@ models: combination_of_columns: - blockchain - tx_hash - - project_contract_address - evt_index columns: - *blockchain @@ -151,7 +149,6 @@ models: combination_of_columns: - blockchain - tx_hash - - project_contract_address - evt_index columns: - *blockchain @@ -194,7 +191,6 @@ models: combination_of_columns: - blockchain - tx_hash - - project_contract_address - evt_index columns: - *blockchain @@ -237,7 +233,6 @@ models: combination_of_columns: - blockchain - tx_hash - - project_contract_address - evt_index columns: - *blockchain @@ -280,7 +275,6 @@ models: combination_of_columns: - blockchain - tx_hash - - project_contract_address - evt_index columns: - *blockchain @@ -323,7 +317,6 @@ models: combination_of_columns: - blockchain - tx_hash - - project_contract_address - evt_index columns: - *blockchain @@ -366,7 +359,6 @@ models: combination_of_columns: - blockchain - tx_hash - - project_contract_address - evt_index columns: - *blockchain @@ -409,7 +401,6 @@ models: combination_of_columns: - blockchain - tx_hash - - project_contract_address - evt_index columns: - *blockchain @@ -437,4 +428,1024 @@ models: - *token_bought_amount - *amount_usd - *evt_index - \ No newline at end of file + + - name: dex_zksync_sandwiches + meta: + blockchain: zksync + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiches', 'zksync'] + description: > + DEX MEV Sandwich Trades on zkSync + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_celo_sandwiches + meta: + blockchain: celo + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiches', 'celo'] + description: > + DEX MEV Sandwich Trades on Celo + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_ethereum_sandwiched + meta: + blockchain: ethereum + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'ethereum'] + description: > + DEX MEV Sandwiched Trades on Ethereum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - &tx_index + name: tx_index + description: "Index of transaction in block" + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_arbitrum_sandwiched + meta: + blockchain: arbitrum + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'arbitrum'] + description: > + DEX MEV Sandwiched Trades on Arbitrum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_avalanche_c_sandwiched + meta: + blockchain: avalanche_c + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'avalanche_c'] + description: > + DEX MEV Sandwiched Trades on Avalanche + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_bnb_sandwiched + meta: + blockchain: bnb + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'bnb'] + description: > + DEX MEV Sandwiched Trades on BNB + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_fantom_sandwiched + meta: + blockchain: fantom + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'fantom'] + description: > + DEX MEV Sandwiched Trades on Fantom + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_gnosis_sandwiched + meta: + blockchain: gnosis + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'gnosis'] + description: > + DEX MEV Sandwiched Trades on Gnosis + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_optimism_sandwiched + meta: + blockchain: optimism + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'optimism'] + description: > + DEX MEV Sandwiched Trades on Optimism + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_polygon_sandwiched + meta: + blockchain: polygon + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'polygon'] + description: > + DEX MEV Sandwiched Trades on Polygon + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_base_sandwiched + meta: + blockchain: base + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'base'] + description: > + DEX MEV Sandwiched Trades on Base + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_celo_sandwiched + meta: + blockchain: celo + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'celo'] + description: > + DEX MEV Sandwiched Trades on Celo + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_zksync_sandwiched + meta: + blockchain: zksync + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched', 'zksync'] + description: > + DEX MEV Sandwiched Trades on zkSync + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_ethereum_atomic_arbitrages + meta: + blockchain: ethereum + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'ethereum'] + description: > + DEX MEV Arbitrage Trades on Ethereum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_arbitrum_atomic_arbitrages + meta: + blockchain: arbitrum + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'arbitrum'] + description: > + DEX MEV Arbitrage Trades on Arbitrum + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_avalanche_c_atomic_arbitrages + meta: + blockchain: avalanche_c + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'avalanche_c'] + description: > + DEX MEV Arbitrage Trades on Avalanche + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_bnb_atomic_arbitrages + meta: + blockchain: bnb + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'bnb'] + description: > + DEX MEV Arbitrage Trades on BNB + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_fantom_atomic_arbitrages + meta: + blockchain: fantom + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'fantom'] + description: > + DEX MEV Arbitrage Trades on Fantom + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_gnosis_atomic_arbitrages + meta: + blockchain: gnosis + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'gnosis'] + description: > + DEX MEV Arbitrage Trades on Gnosis + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_optimism_atomic_arbitrages + meta: + blockchain: optimism + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'optimism'] + description: > + DEX MEV Arbitrage Trades on Optimism + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_polygon_atomic_arbitrages + meta: + blockchain: polygon + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'polygon'] + description: > + DEX MEV Arbitrage Trades on Polygon + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_base_atomic_arbitrages + meta: + blockchain: base + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'base'] + description: > + DEX MEV Arbitrage Trades on Base + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_celo_atomic_arbitrages + meta: + blockchain: celo + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'celo'] + description: > + DEX MEV Arbitrage Trades on Celo + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index + + - name: dex_zksync_atomic_arbitrages + meta: + blockchain: zksync + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages', 'zksync'] + description: > + DEX MEV Arbitrage Trades on zkSync + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index diff --git a/models/dex/chains/mev/arbitrages/dex_arbitrum_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_arbitrum_atomic_arbitrages.sql new file mode 100644 index 00000000000..3b0f7ad8a47 --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_arbitrum_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'arbitrum' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_avalanche_c_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_avalanche_c_atomic_arbitrages.sql new file mode 100644 index 00000000000..21357abcf92 --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_avalanche_c_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'avalanche_c' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_base_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_base_atomic_arbitrages.sql new file mode 100644 index 00000000000..13503eced54 --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_base_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'base' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_bnb_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_bnb_atomic_arbitrages.sql new file mode 100644 index 00000000000..f40ca477fc5 --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_bnb_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'bnb' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_celo_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_celo_atomic_arbitrages.sql new file mode 100644 index 00000000000..19499bbb37e --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_celo_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'celo' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_ethereum_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_ethereum_atomic_arbitrages.sql new file mode 100644 index 00000000000..2212aa5cc7f --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_ethereum_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'ethereum' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] + ) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_fantom_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_fantom_atomic_arbitrages.sql new file mode 100644 index 00000000000..024087b5c1c --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_fantom_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'fantom' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_gnosis_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_gnosis_atomic_arbitrages.sql new file mode 100644 index 00000000000..778866a21e9 --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_gnosis_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'gnosis' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_optimism_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_optimism_atomic_arbitrages.sql new file mode 100644 index 00000000000..c46250653d8 --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_optimism_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'optimism' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_polygon_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_polygon_atomic_arbitrages.sql new file mode 100644 index 00000000000..ddf150d1e5b --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_polygon_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'polygon' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/arbitrages/dex_zksync_atomic_arbitrages.sql b/models/dex/chains/mev/arbitrages/dex_zksync_atomic_arbitrages.sql new file mode 100644 index 00000000000..da36a29b55c --- /dev/null +++ b/models/dex/chains/mev/arbitrages/dex_zksync_atomic_arbitrages.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'zksync' %} + +{{ config( + schema = 'dex_' + blockchain, + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_atomic_arbitrages( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} \ No newline at end of file diff --git a/models/dex/chains/mev/sandwiches/dex_arbitrum_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_arbitrum_sandwiched.sql new file mode 100644 index 00000000000..4a741b53411 --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_arbitrum_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'arbitrum' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/mev/sandwiches/dex_arbitrum_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_arbitrum_sandwiches.sql new file mode 100644 index 00000000000..9a6e663cffd --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_arbitrum_sandwiches.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'arbitrum' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiches', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain','tx_hash', 'evt_index'] +) +}} + +{{dex_sandwiches( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} diff --git a/models/dex/chains/mev/sandwiches/dex_avalanche_c_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_avalanche_c_sandwiched.sql new file mode 100644 index 00000000000..6c3b4e3e1b5 --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_avalanche_c_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'avalanche_c' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/mev/sandwiches/dex_avalanche_c_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_avalanche_c_sandwiches.sql new file mode 100644 index 00000000000..68a44ed2883 --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_avalanche_c_sandwiches.sql @@ -0,0 +1,18 @@ +{% set blockchain = 'avalanche_c' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiches', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'] +) +}} + +{{dex_sandwiches( + blockchain = blockchain + , transactions = source(blockchain,'transactions') +)}} diff --git a/models/dex/chains/mev/sandwiches/dex_base_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_base_sandwiched.sql new file mode 100644 index 00000000000..3d654f030e9 --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_base_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'base' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/dex_base_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_base_sandwiches.sql similarity index 50% rename from models/dex/chains/dex_base_sandwiches.sql rename to models/dex/chains/mev/sandwiches/dex_base_sandwiches.sql index 2af4a81cfef..662789b4f76 100644 --- a/models/dex/chains/dex_base_sandwiches.sql +++ b/models/dex/chains/mev/sandwiches/dex_base_sandwiches.sql @@ -1,16 +1,18 @@ +{% set blockchain = 'base' %} + {{ config( - schema = 'dex_base', + schema = 'dex_' + blockchain, alias = 'sandwiches', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'] + unique_key = ['blockchain', 'tx_hash', 'evt_index'] ) }} {{dex_sandwiches( - blockchain='base' - , transactions = source('base','transactions') + blockchain = blockchain + , transactions = source(blockchain,'transactions') )}} diff --git a/models/dex/chains/mev/sandwiches/dex_bnb_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_bnb_sandwiched.sql new file mode 100644 index 00000000000..1250595fa8a --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_bnb_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'bnb' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/dex_bnb_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_bnb_sandwiches.sql similarity index 50% rename from models/dex/chains/dex_bnb_sandwiches.sql rename to models/dex/chains/mev/sandwiches/dex_bnb_sandwiches.sql index 1e9ad2ea047..2d595f64c8f 100644 --- a/models/dex/chains/dex_bnb_sandwiches.sql +++ b/models/dex/chains/mev/sandwiches/dex_bnb_sandwiches.sql @@ -1,16 +1,18 @@ +{% set blockchain = 'bnb' %} + {{ config( - schema = 'dex_bnb', + schema = 'dex_' + blockchain, alias = 'sandwiches', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'] + unique_key = ['blockchain', 'tx_hash', 'evt_index'] ) }} {{dex_sandwiches( - blockchain='bnb' - , transactions = source('bnb','transactions') + blockchain = blockchain + , transactions = source(blockchain,'transactions') )}} diff --git a/models/dex/chains/mev/sandwiches/dex_celo_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_celo_sandwiched.sql new file mode 100644 index 00000000000..2f6a58cda0a --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_celo_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'celo' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/dex_arbitrum_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_celo_sandwiches.sql similarity index 50% rename from models/dex/chains/dex_arbitrum_sandwiches.sql rename to models/dex/chains/mev/sandwiches/dex_celo_sandwiches.sql index 7ec16420b2d..52286dbeb36 100644 --- a/models/dex/chains/dex_arbitrum_sandwiches.sql +++ b/models/dex/chains/mev/sandwiches/dex_celo_sandwiches.sql @@ -1,16 +1,18 @@ +{% set blockchain = 'celo' %} + {{ config( - schema = 'dex_arbitrum', + schema = 'dex_' + blockchain, alias = 'sandwiches', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['blockchain','tx_hash', 'project_contract_address', 'evt_index'] + unique_key = ['blockchain', 'tx_hash', 'evt_index'] ) }} {{dex_sandwiches( - blockchain='arbitrum' - , transactions = source('arbitrum','transactions') + blockchain = blockchain + , transactions = source(blockchain,'transactions') )}} diff --git a/models/dex/chains/mev/sandwiches/dex_ethereum_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_ethereum_sandwiched.sql new file mode 100644 index 00000000000..c8fdda5acb4 --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_ethereum_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'ethereum' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/dex_ethereum_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_ethereum_sandwiches.sql similarity index 51% rename from models/dex/chains/dex_ethereum_sandwiches.sql rename to models/dex/chains/mev/sandwiches/dex_ethereum_sandwiches.sql index 7ba32a45c3e..e02c55a45bb 100644 --- a/models/dex/chains/dex_ethereum_sandwiches.sql +++ b/models/dex/chains/mev/sandwiches/dex_ethereum_sandwiches.sql @@ -1,16 +1,18 @@ +{% set blockchain = 'ethereum' %} + {{ config( - schema = 'dex_ethereum', + schema = 'dex_' + blockchain, alias = 'sandwiches', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'] + unique_key = ['blockchain', 'tx_hash', 'evt_index'] ) }} {{dex_sandwiches( - blockchain='ethereum' - , transactions = source('ethereum','transactions') + blockchain = blockchain + , transactions = source(blockchain,'transactions') )}} diff --git a/models/dex/chains/mev/sandwiches/dex_fantom_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_fantom_sandwiched.sql new file mode 100644 index 00000000000..65fe8836aa1 --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_fantom_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'fantom' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/dex_fantom_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_fantom_sandwiches.sql similarity index 50% rename from models/dex/chains/dex_fantom_sandwiches.sql rename to models/dex/chains/mev/sandwiches/dex_fantom_sandwiches.sql index b80bb910b39..2b7b946c6f0 100644 --- a/models/dex/chains/dex_fantom_sandwiches.sql +++ b/models/dex/chains/mev/sandwiches/dex_fantom_sandwiches.sql @@ -1,16 +1,18 @@ +{% set blockchain = 'fantom' %} + {{ config( - schema = 'dex_fantom', + schema = 'dex_' + blockchain, alias = 'sandwiches', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'] + unique_key = ['blockchain', 'tx_hash', 'evt_index'] ) }} {{dex_sandwiches( - blockchain='fantom' - , transactions = source('fantom','transactions') + blockchain = blockchain + , transactions = source(blockchain,'transactions') )}} diff --git a/models/dex/chains/mev/sandwiches/dex_gnosis_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_gnosis_sandwiched.sql new file mode 100644 index 00000000000..c54e765ab05 --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_gnosis_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'gnosis' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/dex_gnosis_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_gnosis_sandwiches.sql similarity index 50% rename from models/dex/chains/dex_gnosis_sandwiches.sql rename to models/dex/chains/mev/sandwiches/dex_gnosis_sandwiches.sql index fd3ac72a77e..a14430ccbc7 100644 --- a/models/dex/chains/dex_gnosis_sandwiches.sql +++ b/models/dex/chains/mev/sandwiches/dex_gnosis_sandwiches.sql @@ -1,16 +1,18 @@ +{% set blockchain = 'gnosis' %} + {{ config( - schema = 'dex_gnosis', + schema = 'dex_' + blockchain, alias = 'sandwiches', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'] + unique_key = ['blockchain', 'tx_hash', 'evt_index'] ) }} {{dex_sandwiches( - blockchain='gnosis' - , transactions = source('gnosis','transactions') + blockchain = blockchain + , transactions = source(blockchain,'transactions') )}} diff --git a/models/dex/chains/mev/sandwiches/dex_optimism_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_optimism_sandwiched.sql new file mode 100644 index 00000000000..db7bdfc5c1a --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_optimism_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'optimism' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/dex_optimism_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_optimism_sandwiches.sql similarity index 50% rename from models/dex/chains/dex_optimism_sandwiches.sql rename to models/dex/chains/mev/sandwiches/dex_optimism_sandwiches.sql index 2fab4d6dbb6..73d05854c2e 100644 --- a/models/dex/chains/dex_optimism_sandwiches.sql +++ b/models/dex/chains/mev/sandwiches/dex_optimism_sandwiches.sql @@ -1,16 +1,18 @@ +{% set blockchain = 'optimism' %} + {{ config( - schema = 'dex_optimism', + schema = 'dex_' + blockchain, alias = 'sandwiches', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'] + unique_key = ['blockchain', 'tx_hash', 'evt_index'] ) }} {{dex_sandwiches( - blockchain='optimism' - , transactions = source('optimism','transactions') + blockchain = blockchain + , transactions = source(blockchain,'transactions') )}} diff --git a/models/dex/chains/mev/sandwiches/dex_polygon_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_polygon_sandwiched.sql new file mode 100644 index 00000000000..902f244baf0 --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_polygon_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'polygon' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/dex_polygon_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_polygon_sandwiches.sql similarity index 50% rename from models/dex/chains/dex_polygon_sandwiches.sql rename to models/dex/chains/mev/sandwiches/dex_polygon_sandwiches.sql index 36cd4a9dacf..8dde5cf670d 100644 --- a/models/dex/chains/dex_polygon_sandwiches.sql +++ b/models/dex/chains/mev/sandwiches/dex_polygon_sandwiches.sql @@ -1,16 +1,18 @@ +{% set blockchain = 'polygon' %} + {{ config( - schema = 'dex_polygon', + schema = 'dex_' + blockchain, alias = 'sandwiches', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'] + unique_key = ['blockchain', 'tx_hash', 'evt_index'] ) }} {{dex_sandwiches( - blockchain='polygon' - , transactions = source('polygon','transactions') + blockchain = blockchain + , transactions = source(blockchain,'transactions') )}} diff --git a/models/dex/chains/mev/sandwiches/dex_zksync_sandwiched.sql b/models/dex/chains/mev/sandwiches/dex_zksync_sandwiched.sql new file mode 100644 index 00000000000..e8a938d7e3b --- /dev/null +++ b/models/dex/chains/mev/sandwiches/dex_zksync_sandwiched.sql @@ -0,0 +1,20 @@ +{% set blockchain = 'zksync' %} + +{{ config( + + schema = 'dex_' + blockchain, + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')] +) +}} + +{{dex_sandwiched( + blockchain = blockchain + , transactions = source(blockchain,'transactions') + , sandwiches = ref('dex_' + blockchain + '_sandwiches') +)}} diff --git a/models/dex/chains/dex_avalanche_c_sandwiches.sql b/models/dex/chains/mev/sandwiches/dex_zksync_sandwiches.sql similarity index 50% rename from models/dex/chains/dex_avalanche_c_sandwiches.sql rename to models/dex/chains/mev/sandwiches/dex_zksync_sandwiches.sql index e96e8754d30..c4f9f72522f 100644 --- a/models/dex/chains/dex_avalanche_c_sandwiches.sql +++ b/models/dex/chains/mev/sandwiches/dex_zksync_sandwiches.sql @@ -1,16 +1,18 @@ +{% set blockchain = 'zksync' %} + {{ config( - schema = 'dex_avalanche_c', + schema = 'dex_' + blockchain, alias = 'sandwiches', partition_by = ['block_month'], materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'] + unique_key = ['blockchain', 'tx_hash', 'evt_index'] ) }} {{dex_sandwiches( - blockchain='avalanche_c' - , transactions = source('avalanche_c','transactions') + blockchain = blockchain + , transactions = source(blockchain,'transactions') )}} diff --git a/models/dex/dex_aggregator_trades.sql b/models/dex/dex_aggregator_trades.sql index fcd8428a989..8561b9c1786 100644 --- a/models/dex/dex_aggregator_trades.sql +++ b/models/dex/dex_aggregator_trades.sql @@ -22,7 +22,6 @@ spells with issues, to be excluded in short term: {% set dex_aggregator_models = [ ref('cow_protocol_trades') - ,ref('oneinch_ethereum_trades') ,ref('openocean_trades') ,ref('paraswap_trades') ,ref('lifi_trades') @@ -32,6 +31,7 @@ spells with issues, to be excluded in short term: ,ref('zeroex_trades') ,ref('kyberswap_aggregator_trades') ,ref('tokenlon_trades') + ,ref('oneinch_ar_trades') ] %} {% for aggregator_model in dex_aggregator_models %} diff --git a/models/dex/dex_atomic_arbitrages.sql b/models/dex/dex_atomic_arbitrages.sql new file mode 100644 index 00000000000..71618d11f0f --- /dev/null +++ b/models/dex/dex_atomic_arbitrages.sql @@ -0,0 +1,66 @@ +{{ config( + schema='dex', + alias = 'atomic_arbitrages', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + post_hook='{{ expose_spells(\'["ethereum", "bnb", "avalanche_c", "gnosis", "optimism", "arbitrum", "fantom", "polygon", "base", "celo", "zksync"]\', + "sector", + "dex", + \'["hildobby"]\') }}' + ) +}} + +{% set arbitrages_models = [ + (ref('dex_arbitrum_atomic_arbitrages')) + , (ref('dex_avalanche_c_atomic_arbitrages')) + , (ref('dex_bnb_atomic_arbitrages')) + , (ref('dex_ethereum_atomic_arbitrages')) + , (ref('dex_fantom_atomic_arbitrages')) + , (ref('dex_gnosis_atomic_arbitrages')) + , (ref('dex_optimism_atomic_arbitrages')) + , (ref('dex_polygon_atomic_arbitrages')) + , (ref('dex_base_atomic_arbitrages')) + , (ref('dex_celo_atomic_arbitrages')) + , (ref('dex_zksync_atomic_arbitrages')) +] %} + +SELECT * +FROM ( + {% for arbitrages_model in arbitrages_models %} + SELECT block_time + , block_number + , tx_hash + , evt_index + , blockchain + , project + , version + , block_month + , token_sold_symbol + , token_bought_symbol + , token_sold_address + , token_bought_address + , token_pair + , token_sold_amount + , token_bought_amount + , token_sold_amount_raw + , token_bought_amount_raw + , amount_usd + , taker + , maker + , project_contract_address + , tx_from + , tx_to + , tx_index + FROM {{ arbitrages_model }} + {% if is_incremental() %} + WHERE {{ incremental_predicate('block_time') }} + {% endif %} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} + ) diff --git a/models/dex/dex_info.sql b/models/dex/dex_info.sql index 2081ac303e5..b2caf2826f1 100644 --- a/models/dex/dex_info.sql +++ b/models/dex/dex_info.sql @@ -91,4 +91,6 @@ FROM (VALUES , ('xchange', 'X7 Finance', 'Direct', 'X7_Finance') , ('mento', 'Mento', 'Direct', 'mento') , ('hashflow', 'Hashflow', 'Direct', 'hashflow') + , ('mummy_finance', 'Mummy Finance', 'Direct', 'mummyftm') + , ('carbonhood', 'Carbonhood', 'Direct', 'carbonhood') ) AS temp_table (project, name, marketplace_type, x_username) diff --git a/models/dex/dex_raw_pool_creations.sql b/models/dex/dex_raw_pool_creations.sql new file mode 100644 index 00000000000..f9726170b12 --- /dev/null +++ b/models/dex/dex_raw_pool_creations.sql @@ -0,0 +1,158 @@ +{{ config( + schema='dex', + alias = 'raw_pool_creations', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'pool'] + ) +}} + + + +-- FYI: +-- -- about 20 pools on fantom missing because of broken creation_traces table +-- -- some of the pools on zksync are missing because of broken creation_traces table (known issue, node problems) + +-- TODO: +-- -- implement mento pools on celo. it's only 11 of them, but implementation is not trivial, so for now we'll just skip them + + +-- {topic0: params} +{% + set config = { + '0x0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9': { + 'type': 'uniswap_compatible', + 'version': 'v2', + 'pool_position': 13, + }, + '0x3541d8fea55be35f686281f975bf8b7ab8fbb500c1c7ddd6c4e714655e9cd4e2': { + 'type': 'uniswap_compatible', + 'version': 'v2', + 'pool_position': 13, + }, + '0x41f8736f924f57e464ededb08bf71f868f9d142885bbc73a1516db2be21fc428': { + 'type': 'uniswap_compatible', + 'version': 'v2', + 'pool_position': 13, + }, + '0xc4805696c66d7cf352fc1d6bb633ad5ee82f6cb577c453024b6e0eb8306c6fc9': { + 'type': 'uniswap_compatible', + 'version': 'v2', + 'pool_position': 45, + }, + '0x783cca1c0412dd0d695e784568c96da2e9c22ff989357a2e8b1d9b2b4e6b7118': { + 'type': 'uniswap_compatible', + 'version': 'v3', + 'pool_position': 45, + }, + } +%} + + + +{% + set blockchains = [ + "ethereum", + "polygon", + "bnb", + "avalanche_c", + "gnosis", + "fantom", + "optimism", + "arbitrum", + "celo", + "base", + "zksync", + "zora", + ] +%} + + + +with + + +pool_created_logs as ( + {% for blockchain in blockchains %} + {% for topic0, data in config.items() %} + select + '{{ blockchain }}' as blockchain + , '{{ data['type'] }}' as type + , '{{ data['version'] }}' as version + , substr(data, {{ config[topic0]['pool_position'] }}, 20) as pool + , substr(topic1, 13) as token0 + , substr(topic2, 13) as token1 + , block_number + , block_time + , contract_address + , tx_hash + from {{ source(blockchain, 'logs') }} + where topic0 = {{ topic0 }} + {% if not loop.last %} + union all + {% endif %} + {% endfor %} + {% if not loop.last %} + union all + {% endif %} + {% endfor %} +) + + +, creation_traces as ( + {% for blockchain in blockchains %} + select + '{{ blockchain }}' as blockchain + , address as pool + , block_time + , block_number + , tx_hash + from {{ source(blockchain, 'creation_traces') }} + {% if not loop.last %} + union all + {% endif %} + {% endfor %} +) + + +-- hardcoded OP legacy pools +, _optimism_ovm1_legacy as ( + select + 'optimism' as blockchain + , 'uniswap_compatible' as type + , 'v3' as version + , pool + , token0 + , token1 + , creation_block_time + , creation_block_number + , contract_address + from ( + select oldaddress as pool, * from {{ ref('uniswap_optimism_ovm1_pool_mapping') }} + union all + select newaddress as pool, * from {{ ref('uniswap_optimism_ovm1_pool_mapping') }} + ) +) + + + +select + blockchain + , type + , version + , pool + , token0 + , token1 + , block_time as creation_block_time + , block_number as creation_block_number + , contract_address +from pool_created_logs +join creation_traces using(blockchain, tx_hash, block_number, block_time, pool) +{% if is_incremental() %} + where {{ incremental_predicate('block_time') }} +{% endif %} + +union all + +select * from _optimism_ovm1_legacy \ No newline at end of file diff --git a/models/dex/dex_raw_pool_initializations.sql b/models/dex/dex_raw_pool_initializations.sql new file mode 100644 index 00000000000..4f3da1a2e7d --- /dev/null +++ b/models/dex/dex_raw_pool_initializations.sql @@ -0,0 +1,58 @@ +{{ config( + schema='dex', + alias = 'raw_pool_initializations', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'pool', 'tx_hash', 'call_trace_address'] +) +}} + + + +{% + set blockchains = [ + "ethereum", + "polygon", + "bnb", + "avalanche_c", + "gnosis", + "fantom", + "optimism", + "arbitrum", + "celo", + "base", + "zksync", + "zora", + ] +%} + + + +select * from ( + {% for blockchain in blockchains %} + -- only v2. re-initialization is restricted on v3 + select + '{{blockchain}}' as blockchain + , 'uniswap_compatible' as type + , 'v2' as version + , block_time + , "to" as pool + , substr(input, 17, 20) token0 + , substr(input, 49, 20) token1 + , tx_hash + , trace_address call_trace_address + from {{ source(blockchain, 'traces') }} + where + substr(input, 1, 4) = 0x485cc955 + and success + {% if is_incremental() %} + and {{ incremental_predicate('block_time') }} + {% endif %} + + {% if not loop.last %} + union all + {% endif %} + {% endfor %} +) + diff --git a/models/dex/dex_raw_pools.sql b/models/dex/dex_raw_pools.sql index 6942214f2f9..58bc1c625bf 100644 --- a/models/dex/dex_raw_pools.sql +++ b/models/dex/dex_raw_pools.sql @@ -1,152 +1,22 @@ {{ config( schema='dex', alias = 'raw_pools', - materialized = 'incremental', + materialized = 'view', file_format = 'delta', - incremental_strategy = 'merge', unique_key = ['blockchain', 'pool'], post_hook='{{ expose_spells(\'["ethereum", "polygon", "bnb", "avalanche_c", "gnosis", "fantom", "optimism", "arbitrum", "celo", "base", "zksync", "zora"]\', - "sector", - "dex", - \'["grkhr"]\') }}' - ) -}} - - - --- FYI: --- -- about 20 pools on fantom missing because of broken creation_traces table --- -- some of the pools on zksync are missing because of broken creation_traces table (known issue, node problems) - --- TODO: --- -- implement mento pools on celo. it's only 11 of them, but implementation is not trivial, so for now we'll just skip them - - --- {topic0: params} -{% - set config = { - '0x0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9': { - 'type': 'uniswap_compatible', - 'version': 'v2', - 'pool_position': 13, - }, - '0xc4805696c66d7cf352fc1d6bb633ad5ee82f6cb577c453024b6e0eb8306c6fc9': { - 'type': 'uniswap_compatible', - 'version': 'v2', - 'pool_position': 45, - }, - '0x783cca1c0412dd0d695e784568c96da2e9c22ff989357a2e8b1d9b2b4e6b7118': { - 'type': 'uniswap_compatible', - 'version': 'v3', - 'pool_position': 45, - }, - } -%} - - - -{% - set blockchains = [ - "ethereum", - "polygon", - "bnb", - "avalanche_c", - "gnosis", - "fantom", - "optimism", - "arbitrum", - "celo", - "base", - "zksync", - "zora", - ] -%} - - - -with - - -pool_created_logs as ( - {% for blockchain in blockchains %} - {% for topic0, data in config.items() %} - select - '{{ blockchain }}' as blockchain - , '{{ data['type'] }}' as type - , '{{ data['version'] }}' as version - , substr(data, {{ config[topic0]['pool_position'] }}, 20) as pool - , substr(topic1, 13) as token0 - , substr(topic2, 13) as token1 - , block_number - , block_time - , contract_address - , tx_hash - from {{ source(blockchain, 'logs') }} - where topic0 = {{ topic0 }} - {% if not loop.last %} - union all - {% endif %} - {% endfor %} - {% if not loop.last %} - union all - {% endif %} - {% endfor %} -) - - -, creation_traces as ( - {% for blockchain in blockchains %} - select - '{{ blockchain }}' as blockchain - , address as pool - , block_time - , block_number - , tx_hash - from {{ source(blockchain, 'creation_traces') }} - {% if not loop.last %} - union all - {% endif %} - {% endfor %} + "sector", + "dex", + \'["grkhr"]\') }}' ) +}} --- hardcoded OP legacy pools -, _optimism_ovm1_legacy as ( - select - 'optimism' as blockchain - , 'uniswap_compatible' as type - , 'v3' as version - , pool - , token0 - , token1 - , creation_block_time - , creation_block_number - , contract_address - from ( - select oldaddress as pool, * from {{ ref('uniswap_optimism_ovm1_pool_mapping') }} - union all - select newaddress as pool, * from {{ ref('uniswap_optimism_ovm1_pool_mapping') }} - ) -) - - - -select - blockchain - , type - , version - , pool - , token0 - , token1 - , block_time as creation_block_time - , block_number as creation_block_number - , contract_address -from pool_created_logs -join creation_traces using(blockchain, tx_hash, block_number, block_time, pool) -{% if is_incremental() %} - where {{ incremental_predicate('block_time') }} -{% endif %} - -union all -select * from _optimism_ovm1_legacy \ No newline at end of file +-- get rid of degen-pools changed tokens after creation +select * from {{ ref('dex_raw_pool_creations') }} +where pool not in ( + select pool from {{ ref('dex_raw_pool_initializations') }} + group by pool + having count(*) > 1 +) \ No newline at end of file diff --git a/models/dex/dex_sandwiched.sql b/models/dex/dex_sandwiched.sql new file mode 100644 index 00000000000..4acaccdc246 --- /dev/null +++ b/models/dex/dex_sandwiched.sql @@ -0,0 +1,67 @@ +{{ config( + + schema='dex', + alias = 'sandwiched', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'evt_index'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + post_hook='{{ expose_spells(\'["ethereum", "bnb", "avalanche_c", "gnosis", "optimism", "arbitrum", "fantom", "polygon", "base", "celo", "zksync"]\', + "sector", + "dex", + \'["hildobby"]\') }}' + ) +}} + +{% set sandwiched_models = [ + (ref('dex_arbitrum_sandwiched')) + , (ref('dex_avalanche_c_sandwiched')) + , (ref('dex_bnb_sandwiched')) + , (ref('dex_ethereum_sandwiched')) + , (ref('dex_fantom_sandwiched')) + , (ref('dex_gnosis_sandwiched')) + , (ref('dex_optimism_sandwiched')) + , (ref('dex_polygon_sandwiched')) + , (ref('dex_base_sandwiched')) + , (ref('dex_celo_sandwiched')) + , (ref('dex_zksync_sandwiched')) +] %} + +SELECT * +FROM ( + {% for sandwiched_model in sandwiched_models %} + SELECT blockchain + , project + , version + , block_time + , block_month + , block_number + , token_sold_address + , token_bought_address + , token_sold_symbol + , token_bought_symbol + , maker + , taker + , tx_hash + , tx_from + , tx_to + , project_contract_address + , token_pair + , tx_index + , token_sold_amount_raw + , token_bought_amount_raw + , token_sold_amount + , token_bought_amount + , amount_usd + , evt_index + FROM {{ sandwiched_model }} + {% if is_incremental() %} + WHERE {{ incremental_predicate('block_time') }} + {% endif %} + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} + ) \ No newline at end of file diff --git a/models/dex/dex_sandwiches.sql b/models/dex/dex_sandwiches.sql index 9bbfefef78a..e342d417e93 100644 --- a/models/dex/dex_sandwiches.sql +++ b/models/dex/dex_sandwiches.sql @@ -7,7 +7,7 @@ file_format = 'delta', incremental_strategy = 'merge', unique_key = ['blockchain', 'tx_hash', 'project_contract_address', 'evt_index'], - post_hook='{{ expose_spells(\'["ethereum", "bnb", "avalanche_c", "gnosis", "optimism", "arbitrum", "fantom", "polygon", "base"]\', + post_hook='{{ expose_spells(\'["ethereum", "bnb", "avalanche_c", "gnosis", "optimism", "arbitrum", "fantom", "polygon", "base", "celo", "zksync"]\', "sector", "dex", \'["hildobby"]\') }}' @@ -24,6 +24,8 @@ , (ref('dex_optimism_sandwiches')) , (ref('dex_polygon_sandwiches')) , (ref('dex_base_sandwiches')) + , (ref('dex_celo_sandwiches')) + , (ref('dex_zksync_sandwiches')) ] %} SELECT * diff --git a/models/dex/dex_schema.yml b/models/dex/dex_schema.yml index 06f09bbec37..00556e3852f 100644 --- a/models/dex/dex_schema.yml +++ b/models/dex/dex_schema.yml @@ -242,7 +242,7 @@ models: - name: contract_address description: "Contract address used to create the pool" - - name: dex_raw_pools + - name: dex_raw_pool_initializations meta: blockchain: ethereum, polygon, bnb, avalanche_c, gnosis, fantom, optimism, arbitrum, celo, base, zksync, zora sector: dex @@ -250,18 +250,72 @@ models: config: tags: ['dex', 'cross-chain', 'pools'] description: > - DEX raw pools on all chains across all contracts and versions parsed from logs + DEX raw pools initialization calls tests: - dbt_utils.unique_combination_of_columns: combination_of_columns: - blockchain - pool + - tx_hash + - call_trace_address columns: - *blockchain - &type name: type description: "Pool implementation standard" - *version + - *block_time + - *pool + - *token0 + - *token1 + - *tx_hash + - &call_trace_address + name: call_trace_address + + - name: dex_raw_pool_creations + meta: + blockchain: ethereum, polygon, bnb, avalanche_c, gnosis, fantom, optimism, arbitrum, celo, base, zksync, zora + sector: dex + contributors: grkhr + config: + tags: ['dex', 'cross-chain', 'pools'] + description: > + DEX raw pools on all chains across all contracts and versions parsed from logs + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - pool + columns: + - *blockchain + - *type + - *version + - *pool + - *token0 + - *token1 + - *creation_block_time + - *creation_block_number + - name: contract_address + description: "Contract address used to create the pool" + + - name: dex_raw_pools + meta: + blockchain: ethereum, polygon, bnb, avalanche_c, gnosis, fantom, optimism, arbitrum, celo, base, zksync, zora + sector: dex + contributors: grkhr + config: + tags: ['dex', 'cross-chain', 'pools'] + description: > + DEX raw pools on all chains across all contracts and versions parsed from logs + filtered degen pools + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - pool + columns: + - *blockchain + - *type + - *version - *pool - *token0 - *token1 @@ -269,7 +323,6 @@ models: - *creation_block_number - name: contract_address description: "Contract address used to create the pool" - - name: dex_offers meta: @@ -386,7 +439,7 @@ models: - name: dex_sandwiches meta: - blockchain: ethereum, bnb, avalanche_c, gnosis, optimism, fantom, arbitrum + blockchain: ethereum, bnb, avalanche_c, gnosis, optimism, fantom, arbitrum, celo, zksync sector: dex contributors: hildobby config: @@ -426,8 +479,49 @@ models: - *token_bought_amount_raw - *token_sold_amount - *token_bought_amount - - name: amount_usd - description: "USD value of the trade at time of execution" + - *amount_usd + - *evt_index + + - name: dex_sandwiched + meta: + blockchain: ethereum, bnb, avalanche_c, gnosis, optimism, fantom, arbitrum, celo, zksync + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'sandwiched'] + description: > + DEX MEV Sandwiched Trades across chains + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd - *evt_index - name: dex_info @@ -471,3 +565,46 @@ models: description: "Name of decentralised exchange" - name: distinct_name description: "Distinct name of decentralised exchange address" + + - name: dex_atomic_arbitrages + meta: + blockchain: ethereum, bnb, avalanche_c, gnosis, optimism, arbitrum, fantom, polygon, base, celo, zksync + sector: dex + contributors: hildobby + config: + tags: ['dex', 'mev', 'atomic', 'arbitrages'] + description: > + DEX MEV Arbitrage Trades across all Chains + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - project_contract_address + - evt_index + columns: + - *blockchain + - *project + - *version + - *block_time + - *block_month + - *block_number + - *token_sold_address + - *token_bought_address + - *token_sold_symbol + - *token_bought_symbol + - *maker + - *taker + - *tx_hash + - *tx_from + - *tx_to + - *project_contract_address + - *trace_address + - *token_pair + - *tx_index + - *token_sold_amount_raw + - *token_bought_amount_raw + - *token_sold_amount + - *token_bought_amount + - *amount_usd + - *evt_index \ No newline at end of file diff --git a/models/evms/evms_info.sql b/models/evms/evms_info.sql index 52594fecf36..860eefef712 100644 --- a/models/evms/evms_info.sql +++ b/models/evms/evms_info.sql @@ -12,7 +12,7 @@ FROM (VALUES (1, 'ethereum', 'Ethereum', 'Layer 1', NULL, 'ETH', 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 'https://etherscan.io/', timestamp '2015-07-30 15:26', NULL, NULL) , (43114, 'avalanche_c', 'Avalanche C-Chain', 'Layer 1', NULL, 'AVAX', 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7, 'https://snowtrace.io/', timestamp '2020-09-23 11:02', NULL, NULL) , (42161, 'arbitrum', 'Arbitrum One', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x82af49447d8a07e3bd95bd0d56f35241523fbab1, 'https://arbiscan.io/', timestamp '2021-05-29 00:35', 'Arbitrum', 'ethereum') - , (10, 'optimism', 'OP Mainnet', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://optimistic.etherscan.io/', timestamp '2021-11-11 21:16', 'OP Stack', 'ethereum') + , (10, 'optimism', 'OP Mainnet', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://explorer.optimism.io/', timestamp '2021-11-11 21:16', 'OP Stack', 'ethereum') , (100, 'gnosis', 'Gnosis', 'Layer 1', NULL, 'xDAI', 0xe91d153e0b41518a2ce8dd3d7944fa863463a97d, 'https://gnosisscan.io/', timestamp '2018-10-08 18:43', NULL, NULL) , (137, 'polygon', 'Polygon PoS', 'Layer 1', NULL, 'MATIC', 0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270, 'https://polygonscan.com/', timestamp '2020-05-30 16:30', NULL, NULL) , (250, 'fantom', 'Fantom', 'Layer 1', NULL, 'FTM', 0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83, 'https://ftmscan.com/', timestamp '2019-12-27 03:56', NULL, NULL) @@ -25,7 +25,7 @@ FROM (VALUES , (324, 'zksync', 'zkSync Era', 'Layer 2', 'ZK Rollup', 'ETH', 0x5aea5775959fbc2557cc8789bc1bf90a239d9a91, 'https://explorer.zksync.io/', timestamp '2023-02-14 15:22', 'zkSync', 'ethereum') , (1101, 'polygonzkevm', 'Polygon zkEVM', 'Layer 2', 'ZK Rollup', 'ETH', NULL, 'https://zkevm.polygonscan.com/', timestamp '2023-03-24 05:30', 'Polygon', 'ethereum') , (1088, 'metis_andromeda', 'Metis Andromeda', NULL, NULL, NULL, NULL, 'https://andromeda-explorer.metis.io/', timestamp '2021-11-18 22:19', 'Optimistic Virtual Machine', 'ethereum') - , (5000, 'mantle', 'Mantle', 'Layer 2', 'Optimistic Rollup', 'MNT', NULL, 'https://explorer.mantle.xyz/', timestamp '2023-07-02 18:21', NULL, 'ethereum') + , (5000, 'mantle', 'Mantle', 'Layer 2', 'Optimistic Rollup', 'MNT', NULL, 'https://explorer.mantle.xyz/', timestamp '2023-07-02 18:21', 'Optimistic Virtual Machine', 'ethereum') , (59144, 'linea', 'Linea', 'Layer 2', 'ZK Rollup', 'ETH', NULL, 'https://lineascan.build/', timestamp '2023-07-06 13:15', NULL, 'ethereum') , (42170, 'arbitrum_nova', 'Arbitrum Nova', 'Layer 2', 'Optimistic Rollup', 'ETH', NULL, 'https://nova-explorer.arbitrum.io/', timestamp '2022-06-25 04:01', 'Arbitrum', 'ethereum') , (288, 'boba', 'Boba Network', 'Layer 2', 'Optimistic Rollup', 'ETH', NULL, 'https://bobascan.com/', timestamp '2021-10-28 05:03', 'Optimistic Virtual Machine', 'ethereum') @@ -33,4 +33,13 @@ FROM (VALUES , (420, 'optimism_goerli', 'Optimism Goerli', 'Testnet', 'Optimistic Rollup', 'GTH', 0x4200000000000000000000000000000000000006, 'https://optimism-goerli.blockscout.com/', timestamp '2022-06-09 16:55', 'OP Stack', 'goerli') , (1313161554, 'aurora', 'Aurora', 'Layer 2', NULL, 'ETH', 0xC9BdeEd33CD01541e1eeD10f90519d2C06Fe3feB, 'https://explorer.aurora.dev/', timestamp '2020-07-21 21:50:11', NULL, NULL) , (8217, 'klaytn', 'Klaytn', 'Layer 1', NULL, 'KLAY', 0xe4f05a66ec68b54a58b17c22107b02e0232cc817, 'https://scope.klaytn.com/', timestamp '2019-06-25 13:41:14', NULL, NULL) + , (34443, 'mode', 'Mode', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://explorer.mode.network/', timestamp '2023-11-16 20:46:23', 'OP Stack', 'ethereum') + , (291, 'orderly', 'Orderly Network', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://explorer.orderly.network/', timestamp '2023-10-06 16:03:49', 'OP Stack', 'ethereum') + , (957, 'lyra', 'Lyra', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://explorer.lyra.finance/', cast(NULL AS timestamp), 'OP Stack', 'ethereum') + , (169, 'manta_pacific', 'Manta Pacific', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://pacific-explorer.manta.network/', timestamp '2023-09-09 02:45:59', 'OP Stack', 'celestia') + , (204, 'opbnb', 'opBNB', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://opbnbscan.com/', timestamp '2023-08-11 11:35:24', 'OP Stack', 'bnb') + , (255, 'kroma', 'Kroma', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://blockscout.kroma.network/', timestamp '2023-09-04 22:19:49', 'OP Stack', 'ethereum') + , (116, 'debank', 'DeBank', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://explorer.debank.com/', cast(NULL AS timestamp), 'OP Stack', NULL) + , (570, 'rollux', 'Rollux', 'Layer 2', 'Optimistic Rollup', 'ETH', 0x4200000000000000000000000000000000000006, 'https://explorer.rollux.com/', timestamp '2023-06-21 07:34:01', 'OP Stack', 'bitcoin') + ) AS temp_table (chain_id, blockchain, name, chain_type, rollup_type, native_token_symbol, wrapped_native_token_address, explorer_link, first_block_time, codebase, data_availability) diff --git a/models/fraxswap/avalanche_c/fraxswap_avalanche_c_sources.yml b/models/fraxswap/avalanche_c/fraxswap_avalanche_c_sources.yml deleted file mode 100644 index 3419b2db908..00000000000 --- a/models/fraxswap/avalanche_c/fraxswap_avalanche_c_sources.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: 2 - -sources: - - name: fraxswap_avalanche_c - description: "Avalanche (C-Chain) decoded tables related to Fraxswap contract" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: FraxswapFactory_evt_PairCreated - loaded_at_field: evt_block_time - - name: FraxswapPair_evt_Swap - loaded_at_field: evt_block_time diff --git a/models/fraxswap/bnb/fraxswap_bnb_sources.yml b/models/fraxswap/bnb/fraxswap_bnb_sources.yml deleted file mode 100644 index ed606baf8d2..00000000000 --- a/models/fraxswap/bnb/fraxswap_bnb_sources.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: 2 - -sources: - - name: fraxswap_bnb - description: "BNB Chain decoded tables related to Fraxswap contract" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: FraxswapFactory_evt_PairCreated - loaded_at_field: evt_block_time - - name: FraxswapPair_evt_Swap - loaded_at_field: evt_block_time diff --git a/models/fraxswap/ethereum/fraxswap_ethereum_sources.yml b/models/fraxswap/ethereum/fraxswap_ethereum_sources.yml deleted file mode 100644 index 5ad0a9bd44d..00000000000 --- a/models/fraxswap/ethereum/fraxswap_ethereum_sources.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: 2 - -sources: - - name: fraxswap_ethereum - description: "Ethereum Chain decoded tables related to Fraxswap contract" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: FraxswapFactory_evt_PairCreated - loaded_at_field: evt_block_time - - name: FraxswapPair_evt_Swap - loaded_at_field: evt_block_time diff --git a/models/fraxswap/polygon/fraxswap_polygon_sources.yml b/models/fraxswap/polygon/fraxswap_polygon_sources.yml deleted file mode 100644 index f2543958a88..00000000000 --- a/models/fraxswap/polygon/fraxswap_polygon_sources.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: 2 - -sources: - - name: fraxswap_polygon - description: "Polygon Chain decoded tables related to Fraxswap contract" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: FraxswapFactory_evt_PairCreated - loaded_at_field: evt_block_time - - name: FraxswapPair_evt_Swap - loaded_at_field: evt_block_time diff --git a/models/gyroscope/gyroscope_trades.sql b/models/gyroscope/gyroscope_trades.sql index 0051d0c096f..9a607a3d773 100644 --- a/models/gyroscope/gyroscope_trades.sql +++ b/models/gyroscope/gyroscope_trades.sql @@ -1,7 +1,11 @@ {{ config( schema = 'gyroscope', alias = 'trades', - materialized = 'view' + materialized = 'view', + post_hook='{{ expose_spells(\'["arbitrum", "ethereum","optimism", "polygon"]\', + "project", + "gyroscope", + \'["fmarrr"]\') }}' ) }} diff --git a/models/honeyswap/gnosis/honeyswap_gnosis_sources.yml b/models/honeyswap/gnosis/honeyswap_gnosis_sources.yml deleted file mode 100644 index 4fccc2b8ec0..00000000000 --- a/models/honeyswap/gnosis/honeyswap_gnosis_sources.yml +++ /dev/null @@ -1,52 +0,0 @@ -version: 2 - -sources: - - name: honeyswap_v2_gnosis - description: "Gnosis decoded tables related to Honeyswap contracts" - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: UniswapV2Pair_evt_Swap - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - &contract_address - name: contract_address - - &evt_block_number - name: evt_block_number - - &evt_block_time - name: evt_block_time - - &evt_index - name: evt_index - - &evt_tx_hash - name: evt_tx_hash - - &sender - name: sender - - &to - name: to - - - name: UniswapV2Factory_evt_PairCreated - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - - &token0 - name: token0 - - &token1 - name: token1 diff --git a/models/labels/addresses/__single_category_labels__/balancer_v2/labels_balancer_v2_pools_gnosis.sql b/models/labels/addresses/__single_category_labels__/balancer_v2/labels_balancer_v2_pools_gnosis.sql index 0c53c6d05be..f73af352195 100644 --- a/models/labels/addresses/__single_category_labels__/balancer_v2/labels_balancer_v2_pools_gnosis.sql +++ b/models/labels/addresses/__single_category_labels__/balancer_v2/labels_balancer_v2_pools_gnosis.sql @@ -40,6 +40,34 @@ WITH pools AS ( UNION ALL + SELECT + pool_id, + zip.tokens AS token_address, + zip.weights / pow(10, 18) AS normalized_weight, + symbol, + pool_type + FROM ( + SELECT + c.poolId AS pool_id, + t.tokens, + w.weights, + cc.symbol, + 'WP' AS pool_type + FROM {{ source('balancer_v2_gnosis', 'Vault_evt_PoolRegistered') }} c + INNER JOIN {{ source('balancer_v2_gnosis', 'WeightedPoolV4Factory_call_create') }} cc + ON c.evt_tx_hash = cc.call_tx_hash + AND bytearray_substring(c.poolId, 1, 20) = cc.output_0 + CROSS JOIN UNNEST(cc.tokens) WITH ORDINALITY t(tokens, pos) + CROSS JOIN UNNEST(cc.normalizedWeights) WITH ORDINALITY w(weights, pos) + WHERE t.pos = w.pos + {% if is_incremental() %} + AND c.evt_block_time >= date_trunc('day', now() - interval '7' day) + AND cc.call_block_time >= date_trunc('day', now() - interval '7' day) + {% endif %} + ) zip + + UNION ALL + SELECT c.poolId AS pool_id, t.tokens, diff --git a/models/labels/addresses/__single_category_labels__/likely_bots/labels_likely_bot_labels.sql b/models/labels/addresses/__single_category_labels__/likely_bots/labels_likely_bot_labels.sql index 7369e72d3c3..c729afa9ee8 100644 --- a/models/labels/addresses/__single_category_labels__/likely_bots/labels_likely_bot_labels.sql +++ b/models/labels/addresses/__single_category_labels__/likely_bots/labels_likely_bot_labels.sql @@ -1,8 +1,7 @@ {{ config( alias = 'likely_bot_labels', - - post_hook='{{ expose_spells(\'["optimism","base"]\', + post_hook='{{ expose_spells(\'["optimism","base","zora"]\', "sector", "labels", \'["msilb7"]\') }}' diff --git a/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bot_addresses.sql b/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bot_addresses.sql index 557295e5a6b..10218f55b3d 100644 --- a/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bot_addresses.sql +++ b/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bot_addresses.sql @@ -1,8 +1,9 @@ {{ config( alias = 'op_chains_likely_bot_addresses', - - post_hook='{{ expose_spells(\'["optimism","base"]\', + materialized ='table', + partition_by = ['blockchain'], + post_hook='{{ expose_spells(\'["optimism","base","zora"]\', "sector", "labels", \'["msilb7"]\') }}' @@ -15,6 +16,7 @@ -- the core of this logic is on transaction frequency and sender concentration The "sender concentration" piece will get tested by mutlisigs / smart contract wallets. WITH sender_transfer_rates AS ( + {% for chain in op_chains %} -- For each transaction sender, get their hourly transaction data SELECT '{{chain}}' as blockchain @@ -25,18 +27,17 @@ WITH sender_transfer_rates AS ( , SUM(CASE WHEN to IN (SELECT address FROM {{ ref('labels_op_chains_likely_bot_contracts') }} WHERE name != 'chain ops bot' AND blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS bot_concentration_txs , SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ source('erc20_' + chain,'evt_transfer') }} r WHERE t.hash = r.evt_tx_hash AND t.block_number = r.evt_block_number) THEN 1 ELSE 0 END) AS num_erc20_tfer_txs - , SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('nft_transfers') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number AND blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS num_nft_tfer_txs + , SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('nft_' + chain + '_transfers') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number) THEN 1 ELSE 0 END) AS num_nft_tfer_txs , SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ source('erc20_' + chain,'evt_transfer') }} r WHERE t.hash = r.evt_tx_hash AND t.block_number = r.evt_block_number) THEN 1 - WHEN EXISTS (SELECT 1 FROM {{ ref('nft_transfers') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number AND blockchain = '{{chain}}') THEN 1 + WHEN EXISTS (SELECT 1 FROM {{ ref('nft_' + chain + '_transfers') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number AND blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS num_token_tfer_txs - , 0 /*SUM(CASE WHEN EXISTS (SELECT 1 FROM [[ ref('dex_trades') ]] r WHERE t.hash = r.tx_hash AND t.block_time = r.block_time AND blockchain = '{{chain}}') THEN 1 ELSE 0 END)*/ AS num_dex_trade_txs - , 0 /*SUM(CASE WHEN EXISTS (SELECT 1 FROM [[ ref('perpetual_trades') ]] r WHERE t.hash = r.tx_hash AND t.block_time = r.block_time AND blockchain = '{{chain}}') THEN 1 ELSE 0 END)*/ AS num_perp_trade_txs - , 0 /*SUM(CASE WHEN EXISTS (SELECT 1 FROM [[ ref('nft_trades') ]] r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number AND blockchain = '{{chain}}') THEN 1 ELSE 0 END)*/ AS num_nft_trade_txs + , SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('dex_trades') }} r WHERE t.hash = r.tx_hash AND t.block_time = r.block_time AND r.block_month = DATE_TRUNC('month',r.block_time) AND blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS num_dex_trade_txs + , SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('perpetual_trades') }} r WHERE t.hash = r.tx_hash AND t.block_time = r.block_time AND r.block_month = DATE_TRUNC('month',r.block_time) AND blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS num_perp_trade_txs + , SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('nft_trades') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number AND r.block_month = DATE_TRUNC('month',r.block_time) AND blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS num_nft_trade_txs FROM {{ source( chain ,'transactions') }} t - GROUP BY 1,2,3 @@ -83,7 +84,7 @@ SELECT *, FROM ( SELECT - '{{chain}}' AS blockchain + blockchain , sender, MAX(wk_txs) AS max_wk_txs, MAX(max_hr_txs) AS max_hr_txs, AVG(wk_txs) AS avg_wk_txs ,MIN(min_block_time) AS min_block_time ,MAX(max_block_time) AS max_block_time diff --git a/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bot_contracts.sql b/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bot_contracts.sql index 2a0c8287020..18e526044ea 100644 --- a/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bot_contracts.sql +++ b/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bot_contracts.sql @@ -1,8 +1,9 @@ {{ config( alias = 'op_chains_likely_bot_contracts', - - post_hook='{{ expose_spells(\'["optimism","base"]\', + materialized ='table', + partition_by = ['blockchain'], + post_hook='{{ expose_spells(\'["optimism","base","zora"]\', "sector", "labels", \'["msilb7"]\') }}' @@ -13,7 +14,6 @@ -- This could/should become a spell with some kind of modular logic approach so that we can plug in new detection logic over time (i.e. many of X method, or Y project's contracts) -- the core of this logic is on transaction frequency and sender concentration The "sender concentration" piece will get tested by mutlisigs / smart contract wallets. - WITH first_contracts AS ( SELECT *, cast(num_erc20_tfer_txs as double) / cast( num_txs as double) AS pct_erc20_tfer_txs, @@ -29,15 +29,15 @@ FROM ( '{{chain}}' as blockchain, to AS contract, SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ source('erc20_' + chain,'evt_transfer') }} r WHERE t.hash = r.evt_tx_hash AND t.block_number = r.evt_block_number) THEN 1 ELSE 0 END) AS num_erc20_tfer_txs, - SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('nft_transfers') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number AND r.blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS num_nft_tfer_txs, + SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('nft_' + chain + '_transfers') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number) THEN 1 ELSE 0 END) AS num_nft_tfer_txs, SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ source('erc20_' + chain,'evt_transfer') }} r WHERE t.hash = r.evt_tx_hash AND t.block_number = r.evt_block_number) THEN 1 - WHEN EXISTS (SELECT 1 FROM {{ ref('nft_transfers') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number AND r.blockchain = '{{chain}}') THEN 1 + WHEN EXISTS (SELECT 1 FROM {{ ref('nft_' + chain + '_transfers') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number ) THEN 1 ELSE 0 END) AS num_token_tfer_txs, - 0 /*SUM(CASE WHEN EXISTS (SELECT 1 FROM [[ ref('dex_trades') ]] r WHERE t.hash = r.tx_hash AND t.block_time = r.block_time AND blockchain = '{{chain}}') THEN 1 ELSE 0 END)*/ AS num_dex_trade_txs, - 0 /*SUM(CASE WHEN EXISTS (SELECT 1 FROM [[ ref('perpetual_trades') ]] r WHERE t.hash = r.tx_hash AND t.block_time = r.block_time AND blockchain = '{{chain}}') THEN 1 ELSE 0 END)*/ AS num_perp_trade_txs, - 0 /*SUM(CASE WHEN EXISTS (SELECT 1 FROM [[ ref('nft_trades') ]] r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number AND blockchain = '{{chain}}') THEN 1 ELSE 0 END)*/ AS num_nft_trade_txs, + SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('dex_trades') }} r WHERE t.hash = r.tx_hash AND t.block_time = r.block_time AND r.block_month = DATE_TRUNC('month',r.block_time) AND blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS num_dex_trade_txs, + SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('perpetual_trades') }} r WHERE t.hash = r.tx_hash AND t.block_time = r.block_time AND r.block_month = DATE_TRUNC('month',r.block_time) AND blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS num_perp_trade_txs, + SUM(CASE WHEN EXISTS (SELECT 1 FROM {{ ref('nft_trades') }} r WHERE t.hash = r.tx_hash AND t.block_number = r.block_number AND r.block_month = DATE_TRUNC('month',r.block_time) AND blockchain = '{{chain}}') THEN 1 ELSE 0 END) AS num_nft_trade_txs, COUNT(*) AS num_txs, COUNT(DISTINCT "from") AS num_senders, COUNT(*)/COUNT(DISTINCT "from") AS txs_per_sender, cast(cast(COUNT(*) as double)/cast(COUNT(DISTINCT "from") as double) as double) / @@ -54,24 +54,28 @@ FROM ( -- search for various potential bot indicators HAVING - -- early bots: > 25 txs / hour per address - (COUNT(*) >= 100 AND - cast(cast(COUNT(*) as double)/cast(COUNT(DISTINCT "from") as double) as double) / - ( cast( date_DIFF('second', MIN(block_time), MAX(block_time)) as double) / (60.0*60.0) ) >= 25 - ) - OR - -- established bots: less than 30 senders & > 2.5k txs & > 0.5 txs / hr (to make sure we don't accidently catch active multisigs) - (COUNT(*) >= 2500 AND COUNT(DISTINCT "from") <=30 - AND cast(COUNT(*) as double) / - ( cast( date_DIFF('second', MIN(block_time), MAX(block_time)) as double) / (60.0*60.0) ) >= 0.5 - ) - OR - -- wider distribution bots: > 2.5k txs and > 1k txs per sender & > 0.5 txs / hr (to make sure we don't accidently catch active multisigs) + COUNT(*) >= 100 --prefilter, req 100 txs + AND + ( + -- early bots: > 25 txs / hour per address ( - COUNT(*) >= 2500 AND cast(COUNT(*) as double)/cast(COUNT(DISTINCT "from") as double) >= 1000 - AND cast(COUNT(*) as double) / - ( cast( date_DIFF('second', MIN(block_time), MAX(block_time)) as double) / (60.0*60.0) ) >= 0.5 + cast(cast(COUNT(*) as double)/cast(COUNT(DISTINCT "from") as double) as double) / + ( cast( date_DIFF('second', MIN(block_time), MAX(block_time)) as double) / (60.0*60.0) ) >= 25 ) + OR + -- established bots: less than 30 senders & > 2.5k txs & > 0.5 txs / hr (to make sure we don't accidently catch active multisigs) + (COUNT(*) >= 2500 AND COUNT(DISTINCT "from") <=30 + AND cast(COUNT(*) as double) / + ( cast( date_DIFF('second', MIN(block_time), MAX(block_time)) as double) / (60.0*60.0) ) >= 0.5 + ) + OR + -- wider distribution bots: > 2.5k txs and > 1k txs per sender & > 0.5 txs / hr (to make sure we don't accidently catch active multisigs) + ( + COUNT(*) >= 2500 AND cast(COUNT(*) as double)/cast(COUNT(DISTINCT "from") as double) >= 1000 + AND cast(COUNT(*) as double) / + ( cast( date_DIFF('second', MIN(block_time), MAX(block_time)) as double) / (60.0*60.0) ) >= 0.5 + ) + ) {% if not loop.last %} UNION ALL diff --git a/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bots_schema.yml b/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bots_schema.yml index 242d63668ce..a092c2c03f8 100644 --- a/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bots_schema.yml +++ b/models/labels/addresses/__single_category_labels__/likely_bots/op_chains/labels_op_chains_likely_bots_schema.yml @@ -21,10 +21,14 @@ models: columns: - &blockchain name: blockchain - description: "Blockchain" + description: "Blockchain" + tests: + - not_null - &address name: address description: "Address" + tests: + - not_null - &name name: name description: "Label name" diff --git a/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_attesters.sql b/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_attesters.sql new file mode 100644 index 00000000000..e0870d0dcd7 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_attesters.sql @@ -0,0 +1,19 @@ +{{config( + alias = 'op_attestationstation_attesters' +)}} + +SELECT + 'optimism' AS blockchain, + attester AS address, + 'Attestation Attester' AS name, + 'op_attestationstation' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-04' AS created_at, + NOW() AS updated_at, + 'op_attestationstation_attesters' AS model_name, + 'persona' AS label_type +FROM + {{ source('attestationstation_v1_optimism', 'EAS_evt_Attested') }} + +GROUP BY attester \ No newline at end of file diff --git a/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_creators.sql b/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_creators.sql new file mode 100644 index 00000000000..6a458aa8b95 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_creators.sql @@ -0,0 +1,20 @@ + +{{config( + alias = 'op_attestationstation_creators' +)}} + +SELECT + 'optimism' AS blockchain, + creator AS address, + 'Attestation Attester' AS name, + 'op_attestationstation' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-04' AS created_at, + NOW() AS updated_at, + 'op_attestationstation_creators' AS model_name, + 'persona' AS label_type +FROM + {{ source('attestationstation_optimism', 'AttestationStation_evt_AttestationCreated') }} + +GROUP BY creator diff --git a/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_schema.yml b/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_schema.yml new file mode 100644 index 00000000000..4136c987753 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_schema.yml @@ -0,0 +1,80 @@ +version: 2 + +models: + - name: labels_op_attestationstation_attesters + meta: + blockchain: optimism + sector: labels + project: op_attestationstation + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'attestation', 'attester'] + description: Attestation attesters on Optimism + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - &blockchain + name: blockchain + description: 'Blockchain' + - &address + name: address + description: 'Address of Attestation attester' + - &name + name: name + description: 'Attestation Attester label' + - &category + name: category + description: 'Label category' + - &contributor + name: contributor + description: 'Wizard(s) contributing to labels' + - &source + name: source + description: 'How were labels generated (could be static or query)' + - &created_at + name: created_at + description: 'When were labels created' + - &updated_at + name: updated_at + description: "When were labels updated for the last time" + - &model_name + name: model_name + description: "Name of the label model sourced from" + - &label_type + name: label_type + description: "Type of label (see labels overall readme)" + + - name: labels_op_attestationstation_creators + meta: + blockchain: optimism + sector: labels + project: op_attestationstation + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'attestation'] + description: Attestation creators on Optimism + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - *blockchain + - *address + - *name + - *category + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type diff --git a/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_sources.yml b/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_sources.yml new file mode 100644 index 00000000000..ab45c2fe895 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_attestationstation/labels_op_attestationstation_sources.yml @@ -0,0 +1,12 @@ +version: 2 + +sources: + + - name: attestationstation_v1_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for created Attestations + tables: + - name: EAS_evt_Attested + loaded_at_field: evt_block_time \ No newline at end of file diff --git a/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_delegators.sql b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_delegators.sql new file mode 100644 index 00000000000..13dba4fa436 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_delegators.sql @@ -0,0 +1,24 @@ +{{config( + alias = 'op_governance_delegators' +)}} + +WITH op_delegators AS +(SELECT DISTINCT(delegator) AS address, 'OP Delegator' AS label +-- FROM op_optimism.GovernanceToken_evt_DelegateChanged +FROM {{ source('op_optimism', 'GovernanceToken_evt_DelegateChanged') }} +WHERE toDelegate != 0x0000000000000000000000000000000000000000 +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'op_governance' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-05' AS created_at, + NOW() AS updated_at, + 'op_governance_delegators' AS model_name, + 'persona' AS label_type +FROM + op_delegators +GROUP BY address, label \ No newline at end of file diff --git a/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_derived_archetype.sql b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_derived_archetype.sql new file mode 100644 index 00000000000..e75d9678692 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_derived_archetype.sql @@ -0,0 +1,46 @@ +{{config( + alias = 'op_governance_derived_archetype' +)}} + +{% set op_governance_labels_models = [ + ref('labels_op_governance_delegators') + ,ref('labels_op_governance_retropgf_proposal_submitters') + ,ref('labels_op_governance_retropgf_voters') + ,ref('labels_op_governance_voters') +] %} + + +WITH joined_gov_labels AS +({% for model in op_governance_labels_models %} +SELECT * +FROM {{model}} +{% if not loop.last %} +UNION +{% endif %} +{% endfor %} +), + +address_count AS +(SELECT address, COUNT(address) AS address_count +FROM joined_gov_labels +GROUP BY address +), + +governance_junkie AS +(SELECT address, 'OP Governance Junkie' AS label +FROM address_count +WHERE address_count > 2 +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'op_governance' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-05' AS created_at, + NOW() AS updated_at, + 'op_governance_derived_archetype' AS model_name, + 'persona' AS label_type +FROM + governance_junkie diff --git a/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_retropgf_proposal_submitters.sql b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_retropgf_proposal_submitters.sql new file mode 100644 index 00000000000..c71f79fe2fc --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_retropgf_proposal_submitters.sql @@ -0,0 +1,26 @@ +{{config( + alias = 'op_governance_retropgf_proposal_submitters' +)}} + +WITH retropgf_proposal_submitters AS +(SELECT DISTINCT(recipient) as address, 'RetroPGF Proposal Submitter' AS label +-- FROM attestationstation_v1_optimism.EAS_evt_Attested +FROM {{ source('attestationstation_v1_optimism', 'EAS_evt_Attested') }} +WHERE schema = 0x76e98cce95f3ba992c2ee25cef25f756495147608a3da3aa2e5ca43109fe77cc +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'op_governance' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-05' AS created_at, + NOW() AS updated_at, + 'op_governance_retropgf_proposal_submitters' AS model_name, + 'persona' AS label_type +FROM + retropgf_proposal_submitters +GROUP BY address, label + + diff --git a/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_retropgf_voters.sql b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_retropgf_voters.sql new file mode 100644 index 00000000000..2c9f22408fd --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_retropgf_voters.sql @@ -0,0 +1,33 @@ +{{config( + alias = 'op_governance_retropgf_voters' +)}} + +WITH retropgf_voter AS +(SELECT DISTINCT(recipient) as address, 'RetroPGF Voter' AS label +-- FROM attestationstation_v1_optimism.EAS_evt_Attested +FROM {{ source('attestationstation_v1_optimism', 'EAS_evt_Attested') }} +WHERE schema = 0x3743be2afa818ee40304516c153427be55931f238d961af5d98653a93192cdb3 +AND attester = 0x621477dba416e12df7ff0d48e14c4d20dc85d7d9 +AND uid NOT IN +(SELECT uid +-- FROM attestationstation_v1_optimism.EAS_evt_Revoked +FROM {{ source('attestationstation_v1_optimism', 'EAS_evt_Revoked') }} +WHERE schema = 0x3743be2afa818ee40304516c153427be55931f238d961af5d98653a93192cdb3 +AND attester = 0x621477dba416e12df7ff0d48e14c4d20dc85d7d9) +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'op_governance' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-05' AS created_at, + NOW() AS updated_at, + 'op_governance_retropgf_voters' AS model_name, + 'persona' AS label_type +FROM + retropgf_voter +GROUP BY address, label + + diff --git a/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_schema.yml b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_schema.yml new file mode 100644 index 00000000000..77bf2c9a08c --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_schema.yml @@ -0,0 +1,169 @@ +version: 2 + +models: + - name: labels_op_governance_voters + meta: + blockchain: optimism + sector: labels + project: op_governance + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'voters', 'governance'] + description: '{{ doc("op_address_archetype_labels_description") }}' + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - &blockchain + name: blockchain + description: 'Blockchain' + - &address + name: address + description: 'Address of Optimism voter' + - &name + name: name + description: 'Persona label attributed to voters based on voting behaviour and usage' + - &category + name: category + description: 'Label category' + - &contributor + name: contributor + description: 'Wizard(s) contributing to labels' + - &source + name: source + description: 'How were labels generated (could be static or query)' + - &created_at + name: created_at + description: 'When were labels created' + - &updated_at + name: updated_at + description: "When were labels updated for the last time" + - &model_name + name: model_name + description: "Name of the label model sourced from" + - &label_type + name: label_type + description: "Type of label (see labels overall readme)" + + - name: labels_op_governance_delegators + meta: + blockchain: optimism + sector: labels + project: op_governance + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'delegators', 'governance'] + description: '{{ doc("op_address_archetype_labels_description") }}' + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - *blockchain + - *address + - *name + - *category + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type + + - name: labels_op_governance_retropgf_proposal_submitters + meta: + blockchain: optimism + sector: labels + project: op_governance + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'retropgf', 'proposal submitters', 'governance'] + description: '{{ doc("op_address_archetype_labels_description") }}' + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - *blockchain + - *address + - *name + - *category + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type + + + - name: labels_op_governance_retropgf_voters + meta: + blockchain: optimism + sector: labels + project: op_governance + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'retropgf', 'voters', 'governance'] + description: '{{ doc("op_address_archetype_labels_description") }}' + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - *blockchain + - *address + - *name + - *category + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type + + + - name: labels_op_governance_derived_archetype + meta: + blockchain: optimism + sector: labels + project: op_governance + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'derived archetype', 'governance'] + description: '{{ doc("op_address_archetype_labels_description") }}' + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - *blockchain + - *address + - *name + - *category + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type \ No newline at end of file diff --git a/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_sources.yml b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_sources.yml new file mode 100644 index 00000000000..621d355e74d --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_sources.yml @@ -0,0 +1,30 @@ +version: 2 + +sources: + - name: optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded optimism event logs table + tables: + - name: decoded_logs + loaded_at_field: evt_block_time + + - name: attestationstation_v1_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for revoked Attestations + tables: + - name: EAS_evt_Revoked + loaded_at_field: evt_block_time + + # - name: attestationstation_v1_optimism + # freshness: + # warn_after: { count: 12, period: hour } + # description: > + # Decoded event table for attested Attestations + # tables: + # - name: EAS_evt_Attested + # loaded_at_field: evt_block_time + diff --git a/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_voters.sql b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_voters.sql new file mode 100644 index 00000000000..54b482fdff0 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_governance/labels_op_governance_voters.sql @@ -0,0 +1,68 @@ + +{{config( + alias = 'op_governance_voters' +)}} + +WITH votes_cast_raw AS +(SELECT *, ROW_NUMBER() OVER (PARTITION BY tx_hash, index ORDER BY index) AS row_number +FROM +(SELECT * +FROM {{ source('optimism', 'logs_decoded') }} +WHERE contract_address = 0xcdf27f107725988f2261ce2256bdfcde8b382b10 +AND event_name = 'VoteCastWithParams' + +UNION + +SELECT * +FROM {{ source('optimism', 'logs_decoded') }} +WHERE contract_address = 0xcdf27f107725988f2261ce2256bdfcde8b382b10 +AND event_name = 'VoteCast' +) +), + +votes_cast AS +(SELECT vote.tx_hash, tx."from" +FROM votes_cast_raw vote +JOIN ( +SELECT * +FROM {{ source('optimism', 'transactions') }} +WHERE hash IN (SELECT tx_hash FROM votes_cast_raw) +) tx + +ON vote.tx_hash = tx.hash +WHERE vote.row_number = 1 +), + +votes_count AS +(SELECT "from", COUNT("from") AS votes_count +FROM votes_cast +GROUP BY "from" +ORDER BY votes_count DESC +), + +percentile_values_voters AS +(SELECT approx_percentile(votes_count, 0.95) AS "0.95p", approx_percentile(votes_count, 0.65) AS "0.65p" +FROM votes_count), + +optimism_voters AS +(SELECT "from" AS address, +(CASE +WHEN votes_count >= (SELECT "0.95p" FROM percentile_values_voters) THEN 'Avid Optimism Voter' +WHEN votes_count >= (SELECT "0.65p" FROM percentile_values_voters) THEN 'Active Optimism Voter' +ELSE 'Casual Optimism Voter' +END) AS label +FROM votes_count) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'op_governance' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-05' AS created_at, + NOW() AS updated_at, + 'op_governance_voters' AS model_name, + 'persona' AS label_type +FROM + optimism_voters +GROUP BY address, label diff --git a/models/labels/addresses/__single_category_labels__/op_perpetual/labels_op_perpetual_schema.yml b/models/labels/addresses/__single_category_labels__/op_perpetual/labels_op_perpetual_schema.yml new file mode 100644 index 00000000000..7503d810f15 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_perpetual/labels_op_perpetual_schema.yml @@ -0,0 +1,51 @@ +version: 2 + +models: + - name: labels_op_perpetual_traders + meta: + blockchain: optimism + sector: labels + project: op_perpetual + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'traders', 'perpetual'] + description: '{{ doc("op_address_archetype_labels_description") }}' + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - &blockchain + name: blockchain + description: 'Blockchain' + - &address + name: address + description: 'Address of perpetual trader' + - &name + name: name + description: 'Persona label attributed to the perpetual trader' + - &category + name: category + description: 'Label category' + - &contributor + name: contributor + description: 'Wizard(s) contributing to labels' + - &source + name: source + description: 'How were labels generated (could be static or query)' + - &created_at + name: created_at + description: 'When were labels created' + - &updated_at + name: updated_at + description: "When were labels updated for the last time" + - &model_name + name: model_name + description: "Name of the label model sourced from" + - &label_type + name: label_type + description: "Type of label (see labels overall readme)" \ No newline at end of file diff --git a/models/labels/addresses/__single_category_labels__/op_perpetual/labels_op_perpetual_traders.sql b/models/labels/addresses/__single_category_labels__/op_perpetual/labels_op_perpetual_traders.sql new file mode 100644 index 00000000000..9ffb0dbddf0 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_perpetual/labels_op_perpetual_traders.sql @@ -0,0 +1,39 @@ + +{{config( + alias = 'op_perpetual_traders' +)}} + +WITH perps_trades_count AS +(SELECT trader, COUNT(trader) AS trades_count +FROM {{ ref('perpetual_trades') }} +WHERE blockchain = 'optimism' +GROUP BY trader +ORDER BY trades_count DESC), + +percentile_perp_trades AS +(SELECT approx_percentile (trades_count, 0.95) AS "0.95p", +approx_percentile(trades_count, 0.65) AS "0.65p" +FROM perps_trades_count), + +perp_traders AS +(SELECT trader AS address, +(CASE +WHEN trades_count >= (SELECT "0.95p" FROM percentile_perp_trades) THEN 'Elite Perp Trader' +WHEN trades_count >= (SELECT "0.65p" FROM percentile_perp_trades) THEN 'Active Perp Trader' +ELSE 'Normie Perp Trader' +END) AS label +FROM perps_trades_count +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'op_perpetual' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-06' AS created_at, + NOW() AS updated_at, + 'op_governance_derived_archetype' AS model_name, + 'persona' AS label_type +FROM + perp_traders diff --git a/models/labels/addresses/__single_category_labels__/op_traders/labels_op_traders_derived_archetype.sql b/models/labels/addresses/__single_category_labels__/op_traders/labels_op_traders_derived_archetype.sql new file mode 100644 index 00000000000..f233008c44c --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_traders/labels_op_traders_derived_archetype.sql @@ -0,0 +1,35 @@ +{{config( + alias = 'op_trades_derived_archetype' +)}} + + +WITH combined_trades AS +(SELECT address, +(CASE +WHEN (nft_traders_label = 'Elite NFT Trader' AND dex_trades_label = 'Elite DEX Trader' +AND perp_trades_label = 'Elite Perp Trader') THEN 'Master Trader' +ELSE 'Jack of All Trades' +END) AS label +FROM +(SELECT nft.address, nft.name AS nft_traders_label, +dex.name AS dex_trades_label, perp.name AS perp_trades_label +FROM {{ ref('labels_op_nft_traders') }} nft +JOIN {{ ref('labels_op_dex_traders') }} dex +ON nft.address = dex.address +JOIN {{ ref('labels_op_perpetual_traders') }} perp +ON nft.address = perp.address +) +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'op_traders' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-06' AS created_at, + NOW() AS updated_at, + 'op_trades_derived_archetype' AS model_name, + 'persona' AS label_type +FROM + combined_trades \ No newline at end of file diff --git a/models/labels/addresses/__single_category_labels__/op_traders/op_traders_schema.yml b/models/labels/addresses/__single_category_labels__/op_traders/op_traders_schema.yml new file mode 100644 index 00000000000..dd602ecfce4 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_traders/op_traders_schema.yml @@ -0,0 +1,52 @@ +version: 2 + +models: + - name: labels_op_traders_derived_archetype + meta: + blockchain: optimism + sector: labels + project: op_traders + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'nft trades', 'perpetual trades', 'DEX trades', 'derived archetype'] + description: '{{ doc("op_address_archetype_labels_description") }}' + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - &blockchain + name: blockchain + description: 'Blockchain' + - &address + name: address + description: 'Wallet address' + - &name + name: name + description: 'Transfer Only label' + - &category + name: category + description: 'Label category' + - &contributor + name: contributor + description: 'Wizard(s) contributing to labels' + - &source + name: source + description: 'How were labels generated (could be static or query)' + - &created_at + name: created_at + description: 'When were labels created' + - &updated_at + name: updated_at + description: "When were labels updated for the last time" + - &model_name + name: model_name + description: "Name of the label model sourced from" + - &label_type + name: label_type + description: "Type of label (see labels overall readme)" + diff --git a/models/labels/addresses/__single_category_labels__/op_transfers/labels_op_transfers_only.sql b/models/labels/addresses/__single_category_labels__/op_transfers/labels_op_transfers_only.sql new file mode 100644 index 00000000000..5d3f94e58ab --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_transfers/labels_op_transfers_only.sql @@ -0,0 +1,35 @@ +{{config( + alias = 'op_transfers_only' +)}} + + +WITH complete_decoded_log AS +(SELECT decode.*, raw."from" +FROM {{ source('optimism', 'logs_decoded') }} decode +JOIN {{ source('optimism', 'transactions') }} raw +ON decode.tx_hash = raw.hash +), + +transfers_only AS +(SELECT DISTINCT("from") AS address, 'Transfers Only' AS label +FROM complete_decoded_log +WHERE "from" NOT IN ( +SELECT "from" +FROM complete_decoded_log +WHERE event_name != 'Transfer' +) +AND namespace = 'erc20' +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'op_transfers' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-07' AS created_at, + NOW() AS updated_at, + 'op_transfers_only' AS model_name, + 'persona' AS label_type +FROM + transfers_only \ No newline at end of file diff --git a/models/labels/addresses/__single_category_labels__/op_transfers/labels_op_transfers_schema.yml b/models/labels/addresses/__single_category_labels__/op_transfers/labels_op_transfers_schema.yml new file mode 100644 index 00000000000..9b042430ec8 --- /dev/null +++ b/models/labels/addresses/__single_category_labels__/op_transfers/labels_op_transfers_schema.yml @@ -0,0 +1,52 @@ +version: 2 + +models: + - name: labels_op_transfers_only + meta: + blockchain: optimism + sector: labels + project: op_transfers + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'transfers'] + description: Addresses that made only erc20 token transfer transactions + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - &blockchain + name: blockchain + description: 'Blockchain' + - &address + name: address + description: 'Wallet address' + - &name + name: name + description: 'Transfer Only label' + - &category + name: category + description: 'Label category' + - &contributor + name: contributor + description: 'Wizard(s) contributing to labels' + - &source + name: source + description: 'How were labels generated (could be static or query)' + - &created_at + name: created_at + description: 'When were labels created' + - &updated_at + name: updated_at + description: "When were labels updated for the last time" + - &model_name + name: model_name + description: "Name of the label model sourced from" + - &label_type + name: label_type + description: "Type of label (see labels overall readme)" + diff --git a/models/labels/addresses/bridge/identifiers/labels_bridges_bnb.sql b/models/labels/addresses/bridge/identifiers/labels_bridges_bnb.sql new file mode 100644 index 00000000000..44d3d6a4286 --- /dev/null +++ b/models/labels/addresses/bridge/identifiers/labels_bridges_bnb.sql @@ -0,0 +1,43 @@ +{{config( + alias = 'bridges_bnb', + post_hook='{{ expose_spells(\'["bnb"]\', + "sector", + "labels", + \'["rantum"]\') }}')}} + +SELECT blockchain, address, name, category, contributor, source, created_at, updated_at, model_name, label_type +FROM (VALUES + + ('bnb', 0xBBbD1BbB4f9b936C3604906D7592A644071dE884, 'Allbridge', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x6F817a0cE8F7640Add3bC0c1C2298635043c2423, 'Anyswap: anyETH Token', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xb1CB88B1a1992deB4189Ea4f566b594c13392Ada, 'AnySwap Bridge Avalanche', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x4b3B4120d4D7975455d8C2894228789c91a247F8, 'Anyswap', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xd6faf697504075a358524996b132b532cc5D0F14, 'Anyswap', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x9DF69F656A9CFdf5cD1c2140B71e2Aa130cE7eB8, 'BlazeX', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x5d96d4287D1ff115eE50faC0526cf43eCf79bFc6, 'Celer Network', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x43dE2d77BF8027e25dBD179B491e8d64f38398aA, 'deBridgeGate', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xE7351Fd770A37282b91D153Ee690B63579D6dd7f, 'Dln', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xF0b456250DC9990662a6F25808cC74A6d1131Ea9, 'Gnosis Chain', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x05185872898b6f94AA600177EF41B9334B1FA48B, 'Gnosis Chain', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xfD53b1B4AF84D59B20bF2C20CA89a6BeeAa2c628, 'Harmony', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xa90a8e34cea28bF9a234d4eac240fB32358b51AB, 'iSwap', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x3c2269811836af69497E5F486A85D7316753cf62, 'LayerZero', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x4948ff01cF150e7867D9eEef6272DB13fD37C537, 'Less Network', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x05B70Fb5477A93bE33822bfB31fDAF2c171970dF, 'Mayan', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xC10Ef9F491C9B59f936957026020C321651ac078, 'Multichain', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x92C079d3155C2722dBf7E65017a5baf9CD15561c, 'Multichain', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xd1C5966f9F5Ee6881Ff6b261BBeDa45972B1B5f3, 'Multichain', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xABd380327Fe66724FFDa91A87c772FB8D00bE488, 'Multichain', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xe1d592c3322f1F714Ca11f05B6bC0eFEf1907859, 'Multichain', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x638E8FE7AD4D9C05735Ecb6b9c66013679276651, 'Spore Finance', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xd123f70AE324d34A9E76b67a27bf77593bA8749f, 'Synapse', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x749F37Df06A99D6A8E065dd065f8cF947ca23697, 'Synapse', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x158B536C2ae3afDeA1be69fD91f942A2f96e0a6d, 'Undead Blocks', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x98f3c9e6E3fAce36bAAd05FE09d375Ef1464288B, 'Wormhole bridge', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x5a58505a96D1dbf8dF91cB21B54419FC36e93fdE, 'Wormhole NFT Bridge', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xB6F6D86a8f9879A9c87f643768d9efc38c1Da6E7, 'Wormhole: Token Bridge', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x31eFc4AeAA7c39e54A33FDc3C46ee2Bd70ae0A09, 'xPollinate Transaction Manager', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0xcb9Cc9d0f8f4Ac451a523D3C064553dD33Ea39E3, 'Zeroswap BSC Bridge', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') +,('bnb', 0x6694340fc020c5e6b96567843da2df01b2ce1eb6, 'Stargate Finance: Bridge', 'bridge', 'rantum', 'static', DATE '2023-11-20', now(), 'bridges_bnb', 'identifier') + + ) AS x (blockchain, address, name, category, contributor, source, created_at, updated_at, model_name, label_type) \ No newline at end of file diff --git a/models/labels/addresses/bridge/identifiers/labels_bridges_ethereum.sql b/models/labels/addresses/bridge/identifiers/labels_bridges_ethereum.sql index 38e1e4bf4bb..0833aec62e8 100644 --- a/models/labels/addresses/bridge/identifiers/labels_bridges_ethereum.sql +++ b/models/labels/addresses/bridge/identifiers/labels_bridges_ethereum.sql @@ -134,5 +134,15 @@ FROM (VALUES , ('ethereum', 0x6571d6be3d8460cf5f7d6711cd9961860029d85f, 'Synapse Bridge Zap 3', 'bridge', 'rantum', 'static', DATE '2023-11-08' , now(), 'bridges_ethereum', 'identifier') , ('ethereum', 0x2a3dd3eb832af982ec71669e178424b10dca2ede, 'Polygon: zkEVM Bridge', 'bridge', 'rantum', 'static', DATE '2023-11-08' , now(), 'bridges_ethereum', 'identifier') , ('ethereum', 0xd5f0f8db993d26f5df89e70a83d32b369dccdaa0, 'Symbiosis Bridge', 'bridge', 'rantum', 'static', DATE '2023-11-08' , now(), 'bridges_ethereum', 'identifier') + , ('ethereum', 0x4F4495243837681061C4743b74B3eEdf548D56A5, 'Axelar:Gateway', 'bridge', 'ppclunghe', 'static', DATE '2023-12-10' , now(), 'bridges_ethereum', 'identifier') + , ('ethereum', 0x40ec5B33f54e0E8A33A975908C5BA1c14e5BbbDf, 'Polygon: ERC20 Bridge', 'bridge', 'ppclunghe', 'static', DATE '2023-12-10' , now(), 'bridges_ethereum', 'identifier') + , ('ethereum', 0x401F6c983eA34274ec46f84D70b31C151321188b, 'Polygon: Plasma Bridge', 'bridge', 'ppclunghe', 'static', DATE '2023-12-10' , now(), 'bridges_ethereum', 'identifier') + , ('ethereum', 0x3154Cf16ccdb4C6d922629664174b904d80F2C35, 'Base Bridge', 'bridge', 'ppclunghe', 'static', DATE '2023-12-10' , now(), 'bridges_ethereum', 'identifier') + , ('ethereum', 0x9de443AdC5A411E83F1878Ef24C3F52C61571e72, 'Base: Lido Bridge', 'bridge', 'ppclunghe', 'static', DATE '2023-12-10' , now(), 'bridges_ethereum', 'identifier') + , ('ethereum', 0x051f1d88f0af5763fb888ec4378b4d8b29ea3319, 'Linea: Lido Bridge', 'bridge', 'ppclunghe', 'static', DATE '2023-12-10' , now(), 'bridges_ethereum', 'identifier') + , ('ethereum', 0x41527B2d03844dB6b0945f25702cB958b6d55989, 'zkSynk Era: Lido Bridge', 'bridge', 'ppclunghe', 'static', DATE '2023-12-10' , now(), 'bridges_ethereum', 'identifier') + , ('ethereum', 0x57891966931Eb4Bb6FB81430E6cE0A03AAbDe063, 'zkSynk Era Bridge', 'bridge', 'ppclunghe', 'static', DATE '2023-12-10' , now(), 'bridges_ethereum', 'identifier') + , ('ethereum', 0x2D001d79E5aF5F65a939781FE228B267a8Ed468B, 'Mantle: Lido Bridge', 'bridge', 'ppclunghe', 'static', DATE '2023-12-10' , now(), 'bridges_ethereum', 'identifier') + ) AS x (blockchain, address, name, category, contributor, source, created_at, updated_at, model_name, label_type) \ No newline at end of file diff --git a/models/labels/addresses/bridge/labels_bridges.sql b/models/labels/addresses/bridge/labels_bridges.sql index 861344318d2..c86b39cbc94 100644 --- a/models/labels/addresses/bridge/labels_bridges.sql +++ b/models/labels/addresses/bridge/labels_bridges.sql @@ -2,20 +2,25 @@ alias = 'bridge', materialized = 'table', file_format = 'delta', - post_hook='{{ expose_spells(\'["ethereum", "fantom","base","arbitrum","polygon","optimism"]\', + post_hook='{{ expose_spells(\'["ethereum", "fantom","base","arbitrum","polygon","optimism","bnb"]\', "sector", "labels", - \'["ilemi","rantum"]\') }}') + \'["ilemi","rantum", "kaiblade"]\') }}') + }} {% set bridges_models = [ + ref('labels_bridges_ethereum') + , ref('labels_bridges_bnb') , ref('labels_bridges_fantom') , ref('labels_bridges_base') , ref('labels_bridges_arbitrum') , ref('labels_bridges_polygon') , ref('labels_bridges_optimism') - + , ref('labels_op_bridge_users') + , ref('labels_op_bridge_derived_archetype') + ] %} SELECT * diff --git a/models/labels/addresses/bridge/labels_bridges_schema.yml b/models/labels/addresses/bridge/labels_bridges_schema.yml index 2cebc6763cd..b8f6cef0cea 100644 --- a/models/labels/addresses/bridge/labels_bridges_schema.yml +++ b/models/labels/addresses/bridge/labels_bridges_schema.yml @@ -11,7 +11,7 @@ models: - model_name - blockchain meta: - blockchain: ethereum, fantom, base + blockchain: ethereum, fantom, base, arbitrum, bnb, optimism, polygon sector: labels project: bridges contributors: hildobby, Henrystats, rantum @@ -94,6 +94,28 @@ models: - *updated_at - *model_name - *label_type + + + - name: labels_bridges_bnb + meta: + blockchain: bnb + sector: labels + project: bridges + contributors: rantum + config: + tags: ['labels', 'bnb', 'bridges'] + description: "Known bridges addresses on bnb" + columns: + - *blockchain + - *address + - *name + - *category + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type - name: labels_bridges_polygon meta: @@ -167,6 +189,28 @@ models: config: tags: ['labels', 'arbitrum', 'bridges'] description: "Known bridges addresses" + columns: + - *blockchain + - *address + - *name + - *category + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type + - *label_type + + - name: labels_op_bridge_derived_archetype + meta: + blockchain: optimism + sector: labels + project: bridge + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'bridge', 'users', 'derived'] + description: '{{ doc("op_address_archetype_labels_description") }}' columns: - *blockchain - *address @@ -178,4 +222,24 @@ models: - *updated_at - *model_name - *label_type - + + - name: labels_op_bridge_users + meta: + blockchain: optimism + sector: labels + project: bridge + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'bridge', 'users'] + description: 'Persona labels attributed to users of various bridges on optimism' + columns: + - *blockchain + - *address + - *name + - *category + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type \ No newline at end of file diff --git a/models/labels/addresses/bridge/persona/labels_op_bridge_derived_archetype.sql b/models/labels/addresses/bridge/persona/labels_op_bridge_derived_archetype.sql new file mode 100644 index 00000000000..575b69c18cc --- /dev/null +++ b/models/labels/addresses/bridge/persona/labels_op_bridge_derived_archetype.sql @@ -0,0 +1,28 @@ +{{config( + alias = 'op_bridge_derived_archetype' +)}} + +WITH derived_bridge_archetype AS +(SELECT address, 'Prolific Bridge User' As label +FROM (SELECT address, COUNT(address) AS address_count +FROM +(SELECT * +FROM {{ ref('labels_op_bridge_users') }} +) +GROUP BY address +) +WHERE address_count >=3 +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'bridge' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-07' AS created_at, + NOW() AS updated_at, + 'op_bridge_derived_archetype' AS model_name, + 'persona' AS label_type +FROM + derived_bridge_archetype \ No newline at end of file diff --git a/models/labels/addresses/bridge/persona/labels_op_bridge_sources.yml b/models/labels/addresses/bridge/persona/labels_op_bridge_sources.yml new file mode 100644 index 00000000000..1a808c70eb8 --- /dev/null +++ b/models/labels/addresses/bridge/persona/labels_op_bridge_sources.yml @@ -0,0 +1,112 @@ +version: 2 + +sources: + + - name: celer_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for celer bridge transactions on Optimism + tables: + - name: Bridge_evt_Send + loaded_at_field: evt_block_time + + - name: synapse_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for synapse bridge transactions on Optimism + tables: + - name: SynapseBridge_evt_TokenMintAndSwap + loaded_at_field: evt_block_time + + - name: synapse_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for synapse bridge transactions on Optimism + tables: + - name: SynapseBridge_evt_TokenRedeem + loaded_at_field: evt_block_time + + - name: synapse_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for synapse bridge transactions on Optimism + tables: + - name: SynapseBridge_evt_TokenRedeemAndRemove + loaded_at_field: evt_block_time + + - name: synapse_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for synapse bridge transactions on Optimism + tables: + - name: SynapseBridge_evt_TokenRedeemAndSwap + loaded_at_field: evt_block_time + + - name: across_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for across bridge transactions on Optimism + tables: + - name: OVM_OETH_BridgeDepositBox_evt_FundsDeposited + loaded_at_field: evt_block_time + + - name: across_v2_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for across bridge transactions on Optimism + tables: + - name: UBA_Optimism_SpokePool_evt_FundsDeposited + loaded_at_field: evt_block_time + + - name: across_v2_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for across bridge transactions on Optimism + tables: + - name: UBA_Optimism_SpokePool_evt_OptimismTokensBridged + loaded_at_field: evt_block_time + + - name: across_v2_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for across bridge transactions on Optimism + tables: + - name: UBA_Optimism_SpokePool_evt_TokensBridged + loaded_at_field: evt_block_time + + - name: across_v2_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for across bridge transactions on Optimism + tables: + - name: Optimism_SpokePool_evt_OptimismTokensBridged + loaded_at_field: evt_block_time + + - name: across_v2_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for across bridge transactions on Optimism + tables: + - name: Optimism_SpokePool_evt_TokensBridged + loaded_at_field: evt_block_time + + + - name: across_v2_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for across bridge transactions on Optimism + tables: + - name: Optimism_SpokePool_evt_FundsDeposited + loaded_at_field: evt_block_time \ No newline at end of file diff --git a/models/labels/addresses/bridge/persona/labels_op_bridge_users.sql b/models/labels/addresses/bridge/persona/labels_op_bridge_users.sql new file mode 100644 index 00000000000..c087bee47bf --- /dev/null +++ b/models/labels/addresses/bridge/persona/labels_op_bridge_users.sql @@ -0,0 +1,157 @@ +{{config( + alias = 'op_bridge_users' +)}} + +WITH optimism_bridge_users AS +(SELECT DISTINCT("from") AS address, 'Optimism Bridge User' AS label +FROM (SELECT bridge.*, tx."from" +FROM {{ source('optimism', 'logs_decoded') }} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.tx_hash = tx.hash +WHERE bridge.contract_address = 0x4200000000000000000000000000000000000010 +AND bridge.event_name = 'WithdrawalInitiated' +) +), + +celer_cbridge_users AS +(SELECT DISTINCT("from") AS address, 'Celer cBridge User' AS label +FROM (SELECT bridge.*, tx."from" +FROM {{ source('celer_optimism', 'Bridge_evt_Send') }} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash +) +), + +synapse_bridge_users AS +(SELECT DISTINCT(tx."from") AS address, 'Synapse Bridge User' AS label +FROM {{ source('synapse_optimism', 'SynapseBridge_evt_TokenMintAndSwap') }} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash + + +UNION + +SELECT DISTINCT(tx."from") AS address, 'Synapse Bridge User' AS label +FROM {{ source('synapse_optimism', 'SynapseBridge_evt_TokenRedeem') }} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash + +UNION + +SELECT DISTINCT(tx."from") AS address, 'Synapse Bridge User' AS label +FROM {{ source('synapse_optimism', 'SynapseBridge_evt_TokenRedeemAndRemove') }} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash + +UNION + +SELECT DISTINCT(tx."from") AS address, 'Synapse Bridge User' AS label +FROM {{ source('synapse_optimism', 'SynapseBridge_evt_TokenRedeemAndSwap') }} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash), + +hop_bridge_users AS +(SELECT DISTINCT(tx."from") AS address, 'Hop Bridge User' AS label +FROM {{ ref('hop_protocol_flows') }} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.tx_hash = tx.hash +WHERE source_chain_name = 'Optimism' +), + +across_bridge_users AS +(SELECT DISTINCT(tx."from") AS address, 'Across Bridge User' AS label +FROM {{ source('across_optimism', 'OVM_OETH_BridgeDepositBox_evt_FundsDeposited')}} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash + +UNION + +SELECT DISTINCT(tx."from") AS address, 'Across Bridge User' AS label +FROM {{ source('across_v2_optimism', 'UBA_Optimism_SpokePool_evt_FundsDeposited')}} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash + +UNION + +SELECT DISTINCT(tx."from") AS address, 'Across Bridge User' AS label +FROM {{ source('across_v2_optimism', 'UBA_Optimism_SpokePool_evt_OptimismTokensBridged')}} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash + +UNION + +SELECT DISTINCT(tx."from") AS address, 'Across Bridge User' AS label +FROM {{ source('across_v2_optimism', 'UBA_Optimism_SpokePool_evt_TokensBridged')}} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash + +UNION + +SELECT DISTINCT(tx."from") AS address, 'Across Bridge User' AS label +FROM {{ source('across_v2_optimism', 'Optimism_SpokePool_evt_FundsDeposited')}} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash + +UNION + +SELECT DISTINCT(tx."from") AS address, 'Across Bridge User' AS label +FROM {{ source('across_v2_optimism', 'Optimism_SpokePool_evt_OptimismTokensBridged')}} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash + +UNION + +SELECT DISTINCT(tx."from") AS address, 'Across Bridge User' AS label +FROM {{ source('across_v2_optimism', 'Optimism_SpokePool_evt_TokensBridged')}} bridge +JOIN {{ source('optimism', 'transactions') }} tx +ON bridge.evt_tx_hash = tx.hash +), + +multichain_bridge_users AS +(SELECT DISTINCT(tx_from) AS address, 'Multichain Bridge User' AS label +FROM {{ source('optimism', 'logs') }} +WHERE topic0 IN (0x409e0ad946b19f77602d6cf11d59e1796ddaa4828159a0b4fb7fa2ff6b161b79, 0x0d969ae475ff6fcaf0dcfa760d4d8607244e8d95e9bf426f8d5d69f9a3e525af) +), + +combined_bridge_users AS +(SELECT * +FROM optimism_bridge_users + +UNION + +SELECT * +FROM celer_cbridge_users + +UNION + +SELECT * +FROM synapse_bridge_users + +UNION + +SELECT * +FROM hop_bridge_users + +UNION + +SELECT * +FROM across_bridge_users + +UNION + +SELECT * +FROM multichain_bridge_users +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'bridge' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-07' AS created_at, + NOW() AS updated_at, + 'op_bridge_users' AS model_name, + 'persona' AS label_type +FROM + combined_bridge_users \ No newline at end of file diff --git a/models/labels/addresses/dex/labels_dex.sql b/models/labels/addresses/dex/labels_dex.sql index 0617f062122..3de794980bc 100644 --- a/models/labels/addresses/dex/labels_dex.sql +++ b/models/labels/addresses/dex/labels_dex.sql @@ -6,7 +6,7 @@ post_hook='{{ expose_spells(\'["ethereum", "solana", "arbitrum", "gnosis", "optimism", "bnb", "avalanche_c"]\', "sector", "labels", - \'["ilemi"]\') }}') + \'["ilemi", "kaiblade"]\') }}') }} {# -- Enable once balances work again @@ -25,6 +25,7 @@ ,ref('labels_trader_age') ,ref('labels_trader_dex_diversity') ,ref('labels_trader_frequencies') +,ref('labels_op_dex_traders') ] %} SELECT * diff --git a/models/labels/addresses/dex/persona/op_dex_traders/labels_op_dex_traders.sql b/models/labels/addresses/dex/persona/op_dex_traders/labels_op_dex_traders.sql new file mode 100644 index 00000000000..384db9bbfea --- /dev/null +++ b/models/labels/addresses/dex/persona/op_dex_traders/labels_op_dex_traders.sql @@ -0,0 +1,37 @@ +{{config( + alias = 'op_dex_traders' +)}} + +WITH dex_trades_count AS +(SELECT taker, COUNT(taker) AS trades_count +FROM {{ ref('dex_trades') }} +WHERE blockchain = 'optimism' +GROUP BY taker +), + +percentile_dex_trades AS +(SELECT approx_percentile (trades_count, 0.95) AS "0.95p", approx_percentile(trades_count, 0.65) AS "0.65p" +FROM dex_trades_count), + +dex_traders AS +(SELECT taker AS address, +(CASE +WHEN trades_count >= (SELECT "0.95p" FROM percentile_dex_trades) THEN 'Elite DEX Trader' +WHEN trades_count >= (SELECT "0.65p" FROM percentile_dex_trades) THEN 'Active DEX Trader' +ELSE 'Normie DEX Trader' +END) AS label +FROM dex_trades_count +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'dex' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-06' AS created_at, + NOW() AS updated_at, + 'op_dex_traders' AS model_name, + 'persona' AS label_type +FROM + dex_traders \ No newline at end of file diff --git a/models/labels/addresses/dex/persona/op_dex_traders/labels_op_dex_traders_schema.yml b/models/labels/addresses/dex/persona/op_dex_traders/labels_op_dex_traders_schema.yml new file mode 100644 index 00000000000..5e03b05730c --- /dev/null +++ b/models/labels/addresses/dex/persona/op_dex_traders/labels_op_dex_traders_schema.yml @@ -0,0 +1,51 @@ +version: 2 + +models: + - name: labels_op_dex_traders + meta: + blockchain: optimism + sector: labels + category: dex + contributors: kaiblade + config: + tags: ['labels', 'optimism', 'traders', 'dex'] + description: '{{ doc("op_address_archetype_labels_description") }}' + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - address + - name + - category + - model_name + - blockchain + columns: + - &blockchain + name: blockchain + description: 'Blockchain' + - &address + name: address + description: 'Address of dex trader' + - &name + name: name + description: 'Persona label attributed to the dex trader' + - &category + name: category + description: 'Label category' + - &contributor + name: contributor + description: 'Wizard(s) contributing to labels' + - &source + name: source + description: 'How were labels generated (could be static or query)' + - &created_at + name: created_at + description: 'When were labels created' + - &updated_at + name: updated_at + description: "When were labels updated for the last time" + - &model_name + name: model_name + description: "Name of the label model sourced from" + - &label_type + name: label_type + description: "Type of label (see labels overall readme)" \ No newline at end of file diff --git a/models/labels/addresses/infrastructure/labels_infrastructure.sql b/models/labels/addresses/infrastructure/labels_infrastructure.sql index 6f86ffe4584..401ad15245f 100644 --- a/models/labels/addresses/infrastructure/labels_infrastructure.sql +++ b/models/labels/addresses/infrastructure/labels_infrastructure.sql @@ -8,18 +8,20 @@ \'["ilemi", "hildobby"]\') }}') }} +--exclude due to duplicates: + --ref('labels_eth_stakers') + {% set infrastructure_models = [ - ref('labels_eth_stakers') - , ref('labels_miners') - , ref('labels_system_addresses') - , ref('labels_validators') - , ref('labels_flashbots_ethereum') - , ref('labels_mev_ethereum') - , ref('labels_contract_deployers') - , ref('labels_stablecoins') - , ref('labels_cex_tokens') - , ref('labels_burn_addresses') - , ref('labels_flashloans_ethereum') + ref('labels_miners') + , ref('labels_system_addresses') + , ref('labels_validators') + , ref('labels_flashbots_ethereum') + , ref('labels_mev_ethereum') + , ref('labels_contract_deployers') + , ref('labels_stablecoins') + , ref('labels_cex_tokens') + , ref('labels_burn_addresses') + , ref('labels_flashloans_ethereum') ] %} SELECT * diff --git a/models/labels/addresses/nft/labels_nft.sql b/models/labels/addresses/nft/labels_nft.sql index cd0ed4c9e1b..a411dc11b84 100644 --- a/models/labels/addresses/nft/labels_nft.sql +++ b/models/labels/addresses/nft/labels_nft.sql @@ -4,7 +4,7 @@ post_hook='{{ expose_spells(\'["ethereum","solana"]\', "sector", "labels", - \'["soispoke", "NazihKalo"]\') }}' + \'["soispoke", "NazihKalo", "kaiblade"]\') }}' )}} {% set nft_labels_models = [ @@ -14,6 +14,9 @@ ,ref('labels_nft_traders_volume_usd_current') ,ref('labels_nft_users_platforms') ,ref('labels_nft_smart_trader_roi_eth') + ,ref('labels_op_nft_minters') + ,ref('labels_op_nft_traders') + ,ref('labels_op_habitual_wash_traders') ] %} SELECT * diff --git a/models/labels/addresses/nft/labels_nft_schema.yml b/models/labels/addresses/nft/labels_nft_schema.yml index c4d62cb37b5..496f287a078 100644 --- a/models/labels/addresses/nft/labels_nft_schema.yml +++ b/models/labels/addresses/nft/labels_nft_schema.yml @@ -194,3 +194,63 @@ models: - *updated_at - *model_name - *label_type + + - name: labels_op_nft_traders + meta: + blockchain: optimism + sector: labels + category: nft + contributors: kaiblade + config: + tags: ['labels', 'nft', 'traders', 'archetypes'] + description: '{{ doc("op_address_archetype_labels_description") }}' + columns: + - *blockchain + - *address + - *name + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type + + - name: labels_op_nft_minters + meta: + blockchain: optimism + sector: labels + category: nft + contributors: kaiblade + config: + tags: ['labels', 'nft', 'minters', 'archetypes'] + description: '{{ doc("op_address_archetype_labels_description") }}' + columns: + - *blockchain + - *address + - *name + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type + + - name: labels_op_habitual_wash_traders + meta: + blockchain: optimism + sector: labels + category: nft + contributors: kaiblade + config: + tags: ['labels', 'nft', 'wash traders', 'archetypes'] + description: '{{ doc("op_address_archetype_labels_description") }}' + columns: + - *blockchain + - *address + - *name + - *contributor + - *source + - *created_at + - *updated_at + - *model_name + - *label_type \ No newline at end of file diff --git a/models/labels/addresses/nft/persona/op_nft_minters/labels_op_nft_minters.sql b/models/labels/addresses/nft/persona/op_nft_minters/labels_op_nft_minters.sql new file mode 100644 index 00000000000..792d0ea15e1 --- /dev/null +++ b/models/labels/addresses/nft/persona/op_nft_minters/labels_op_nft_minters.sql @@ -0,0 +1,72 @@ +{{config( + alias = 'op_nft_minters' +)}} + +WITH erc721_mints AS +( +SELECT "from" AS minter, COUNT("from") AS mint_count +FROM (SELECT nft.evt_tx_hash, tx."from" +FROM {{ source('erc721_optimism', 'evt_Transfer') }} nft +JOIN {{ source('optimism', 'transactions') }} tx +ON nft.evt_tx_hash = tx.hash +WHERE nft."from" = 0x0000000000000000000000000000000000000000 +) +GROUP BY "from" +), + +erc1155_mints_joined AS +( SELECT minter, SUM(mint_count) AS mint_count +FROM (SELECT operator AS minter, COUNT(operator) AS mint_count +FROM {{ source('erc1155_optimism', 'evt_TransferBatch') }} +WHERE "from" = 0x0000000000000000000000000000000000000000 +GROUP BY operator + +UNION ALL + +SELECT operator AS minter, COUNT(operator) AS mint_count +FROM {{ source('erc1155_optimism', 'evt_TransferSingle') }} +WHERE "from" = 0x0000000000000000000000000000000000000000 +GROUP BY operator +) +GROUP BY minter +), + +nft_mint_count AS +(SELECT minter, SUM(mint_count) AS mint_count +FROM (SELECT * +FROM erc1155_mints_joined + +UNION ALL + +SELECT * +FROM erc721_mints +) +GROUP BY minter +), + +percentile_nft_mints AS +(SELECT approx_percentile (mint_count, 0.95) AS "0.95p", approx_percentile(mint_count, 0.65) AS "0.65p" +FROM nft_mint_count), + +nft_minters AS +(SELECT minter AS address, +(CASE +WHEN mint_count >= (SELECT "0.95p" FROM percentile_nft_mints) THEN 'Voracious NFT Minter' +WHEN mint_count >= (SELECT "0.65p" FROM percentile_nft_mints) THEN 'Active NFT Minter' +ELSE 'Normie NFT Minter' +END) AS label +FROM nft_mint_count +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'nft' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-06' AS created_at, + NOW() AS updated_at, + 'op_nft_minters' AS model_name, + 'persona' AS label_type +FROM + nft_minters \ No newline at end of file diff --git a/models/labels/addresses/nft/persona/op_nft_minters/labels_op_nft_sources.yml b/models/labels/addresses/nft/persona/op_nft_minters/labels_op_nft_sources.yml new file mode 100644 index 00000000000..5ba62d20923 --- /dev/null +++ b/models/labels/addresses/nft/persona/op_nft_minters/labels_op_nft_sources.yml @@ -0,0 +1,29 @@ +version: 2 + +sources: + - name: erc721_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for erc721 NFTs transfer on Optimism + tables: + - name: evt_Transfer + loaded_at_field: evt_block_time + + - name: erc1155_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for erc1155 NFTs transfer on Optimism + tables: + - name: evt_TransferBatch + loaded_at_field: evt_block_time + + - name: erc1155_optimism + freshness: + warn_after: { count: 12, period: hour } + description: > + Decoded event table for erc1155 NFTs transfer on Optimism + tables: + - name: evt_TransferSingle + loaded_at_field: evt_block_time \ No newline at end of file diff --git a/models/labels/addresses/nft/persona/op_nft_traders/labels_op_habitual_wash_traders.sql b/models/labels/addresses/nft/persona/op_nft_traders/labels_op_habitual_wash_traders.sql new file mode 100644 index 00000000000..8184fee590a --- /dev/null +++ b/models/labels/addresses/nft/persona/op_nft_traders/labels_op_habitual_wash_traders.sql @@ -0,0 +1,42 @@ +{{config( + alias = 'op_habitual_wash_traders' +)}} + +WITH wash_trades_count AS +(SELECT trader, COUNT(trader) AS trade_count +FROM (SELECT buyer AS trader +FROM {{ ref('nft_optimism_wash_trades') }} +WHERE is_wash_trade = true + +UNION ALL + +SELECT seller AS trader +FROM {{ ref('nft_optimism_wash_trades') }} +WHERE is_wash_trade = true +) +GROUP BY trader +), + +percentile_wash_trades AS +(SELECT approx_percentile (trade_count, 0.95) AS "0.95p", approx_percentile(trade_count, 0.65) AS "0.65p" +FROM wash_trades_count), + +nft_wash_traders AS +(SELECT trader AS address, +'Habitual NFT Wash Trader' AS label +FROM wash_trades_count +WHERE trade_count IN (SELECT "0.95p" FROM percentile_wash_trades) +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'nft' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-07' AS created_at, + NOW() AS updated_at, + 'op_habitual_wash_traders' AS model_name, + 'persona' AS label_type +FROM + nft_wash_traders \ No newline at end of file diff --git a/models/labels/addresses/nft/persona/op_nft_traders/labels_op_nft_traders.sql b/models/labels/addresses/nft/persona/op_nft_traders/labels_op_nft_traders.sql new file mode 100644 index 00000000000..1f9d3c8e8d8 --- /dev/null +++ b/models/labels/addresses/nft/persona/op_nft_traders/labels_op_nft_traders.sql @@ -0,0 +1,50 @@ + +{{config( + alias = 'op_nft_traders' +)}} + +WITH nft_trades_raw AS +(SELECT buyer AS trader +FROM {{ ref('nft_trades') }} +WHERE blockchain = 'optimism' + +UNION ALL + +SELECT seller AS trader +FROM {{ ref('nft_trades') }} +WHERE blockchain = 'optimism' +), + +nft_trades_count AS +(SELECT trader, COUNT(trader) AS trades_count +FROM nft_trades_raw +GROUP BY trader +), + +percentile_nft_trades AS +(SELECT approx_percentile (trades_count, 0.95) AS "0.95p", +approx_percentile(trades_count, 0.65) AS "0.65p" +FROM nft_trades_count), + +nft_traders AS +(SELECT trader AS address, +(CASE +WHEN trades_count >= (SELECT "0.95p" FROM percentile_nft_trades) THEN 'Elite NFT Trader' +WHEN trades_count >= (SELECT "0.65p" FROM percentile_nft_trades) THEN 'Active NFT Trader' +ELSE 'Normie NFT Trader' +END) AS label +FROM nft_trades_count +) + +SELECT 'optimism' AS blockchain, + address, + label AS name, + 'nft' AS category, + 'kaiblade' AS contributor, + 'query' AS source, + TIMESTAMP '2023-12-06' AS created_at, + NOW() AS updated_at, + 'op_nft_traders' AS model_name, + 'persona' AS label_type +FROM + nft_traders diff --git a/models/labels/labels_addresses.sql b/models/labels/labels_addresses.sql index b63ac525aee..b7f99a2d179 100644 --- a/models/labels/labels_addresses.sql +++ b/models/labels/labels_addresses.sql @@ -6,7 +6,7 @@ post_hook='{{ expose_spells(\'["bitcoin", "ethereum", "solana", "arbitrum", "gnosis", "optimism", "bnb", "avalanche_c", "fantom"]\', "sector", "labels", - \'["soispoke", "hildobby", "ilemi", "hosuke"]\') }}') + \'["soispoke", "hildobby", "ilemi", "hosuke", "kaiblade"]\') }}') }} -- single category labels (no subsets), needs label_type and model_name added still. @@ -25,7 +25,16 @@ , ref('labels_likely_bot_labels') , ref('labels_quest_participants') , ref('labels_cex_users') - , ref('labels_op_retropgf') + , ref('labels_op_attestationstation_attesters') + , ref('labels_op_attestationstation_creators') + , ref('labels_op_governance_delegators') + , ref('labels_op_governance_derived_archetype') + , ref('labels_op_governance_retropgf_proposal_submitters') + , ref('labels_op_governance_voters') + , ref('labels_op_governance_retropgf_voters') + , ref('labels_op_perpetual_traders') + , ref('labels_op_traders_derived_archetype') + , ref('labels_op_transfers_only') ] %} -- new/standardized labels diff --git a/models/labels/op_address_archetype_labels_description.md b/models/labels/op_address_archetype_labels_description.md new file mode 100644 index 00000000000..ab467e693ea --- /dev/null +++ b/models/labels/op_address_archetype_labels_description.md @@ -0,0 +1,17 @@ +{% docs op_address_archetype_labels_description %} + +- Labels starting with "Avid", "Elite", "Voracious" and "Habitual" are in the top 5% of the specified dataset (e.g. minters, traders, voters e.t.c) based on transaction volume, trade volume, mint volume e.t.c. + +- Labels starting with "Active" are in the top 35% (this excludes those in the top 5%) of the specified dataset based on transaction volume, trade volume, mint volume e.t.c. + +- Labels starting with "Normie" and "Casual" are in the bottom 65% (i.e. those not in the top 35% or top 5%) of the specified dataset based on transaction volume, trade volume, mint volume e.t.c. + +- "OP Governance Junkie" label is for addresses with 3 or more governance related labels (e.g. "Optimism voter", "RetroPGF Contibutor and "Delegator"). + +- "Master Trader" label is for addresses with all 3 elite trader labels i.e. Elite NFT Trader", "Elite DEX Trader" and "Elite Perp Trader" labels. + +- "Jack of All Trades" label is for addresses that have all three trade related labels (i.e. NFT, Perp and DEX) but all are not elite trader labels. + +- "Prolific Bridge User" label is for addresses with 3 or more bridge related labels. That is, addresses that have used 3 or more different bridges on Optimism. + +{% enddocs %} \ No newline at end of file diff --git a/models/nexusmutual/ethereum/nexusmutual_ethereum_schema.yml b/models/nexusmutual/ethereum/nexusmutual_ethereum_schema.yml index 8ef3f8619d4..a3ba5679087 100644 --- a/models/nexusmutual/ethereum/nexusmutual_ethereum_schema.yml +++ b/models/nexusmutual/ethereum/nexusmutual_ethereum_schema.yml @@ -134,14 +134,14 @@ models: tags: ["ethereum","nexusmutual","trades"] description: > Daily summary for ethereum entering and leaving the nexus mutual capital pool contracts - tests: - - check_seed: - seed_file: ref("nexusmutual_ethereum_capital_pool_eth_daily_transaction_summary_seed") - match_columns: - - day - check_columns: - - eth_ingress - - eth_egress + #tests: + # - check_seed: + # seed_file: ref("nexusmutual_ethereum_capital_pool_eth_daily_transaction_summary_seed") + # match_columns: + # - day + # check_columns: + # - eth_ingress + # - eth_egress columns: - &day name: day diff --git a/models/oneinch/arbitrum/oneinch_arbitrum_schema.yml b/models/oneinch/arbitrum/oneinch_arbitrum_schema.yml index feed3f4b44c..020df18b75d 100644 --- a/models/oneinch/arbitrum/oneinch_arbitrum_schema.yml +++ b/models/oneinch/arbitrum/oneinch_arbitrum_schema.yml @@ -93,26 +93,32 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -123,14 +129,10 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month - name: oneinch_arbitrum_ar meta: @@ -149,43 +151,47 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month + - name: remains + - name: minute + - name: block_month diff --git a/models/oneinch/avalanche_c/oneinch_avalanche_c_schema.yml b/models/oneinch/avalanche_c/oneinch_avalanche_c_schema.yml index 499639d2f75..ad1386dc5d8 100644 --- a/models/oneinch/avalanche_c/oneinch_avalanche_c_schema.yml +++ b/models/oneinch/avalanche_c/oneinch_avalanche_c_schema.yml @@ -93,26 +93,32 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -123,14 +129,10 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month - name: oneinch_avalanche_c_ar meta: @@ -149,43 +151,47 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month + - name: remains + - name: minute + - name: block_month diff --git a/models/oneinch/base/oneinch_base_schema.yml b/models/oneinch/base/oneinch_base_schema.yml index 6f1952402f2..c9e5bfdff4c 100644 --- a/models/oneinch/base/oneinch_base_schema.yml +++ b/models/oneinch/base/oneinch_base_schema.yml @@ -93,26 +93,32 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -123,14 +129,10 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month - name: oneinch_base_ar meta: @@ -149,43 +151,47 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month + - name: remains + - name: minute + - name: block_month diff --git a/models/oneinch/bnb/oneinch_bnb_schema.yml b/models/oneinch/bnb/oneinch_bnb_schema.yml index 3add180f3bb..7fb5a122c71 100644 --- a/models/oneinch/bnb/oneinch_bnb_schema.yml +++ b/models/oneinch/bnb/oneinch_bnb_schema.yml @@ -93,26 +93,32 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -123,14 +129,10 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month - name: oneinch_bnb_ar meta: @@ -149,43 +151,47 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month + - name: remains + - name: minute + - name: block_month diff --git a/models/oneinch/ethereum/clipper/oneinch_clipper_ethereum_trades.sql b/models/oneinch/ethereum/clipper/oneinch_clipper_ethereum_trades.sql deleted file mode 100644 index e7968128c51..00000000000 --- a/models/oneinch/ethereum/clipper/oneinch_clipper_ethereum_trades.sql +++ /dev/null @@ -1,286 +0,0 @@ -{{ config( - - schema='oneinch_clipper_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-11-07' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH clipper AS -( - SELECT - call_block_number, - output_returnAmount, - amount, - srcToken, - dstToken, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_clipperSwap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - amount, - srcToken, - dstToken, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_clipperSwapTo') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - amount, - srcToken, - dstToken, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_clipperSwapToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - inputAmount as amount, - srcToken, - dstToken, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_clipperSwap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - inputAmount as amount, - srcToken, - dstToken, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_clipperSwapTo') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - inputAmount as amount, - srcToken, - dstToken, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_clipperSwapToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - call_block_number as block_number, - call_block_time as block_time, - '1inch' AS project, - 'Clipper v1' AS version, - CAST(NULL as VARBINARY) as taker, - CAST(NULL as VARBINARY) as maker, - output_returnAmount AS token_bought_amount_raw, - amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN dstToken = {{generic_null_address}} - THEN {{burn_address}} - ELSE dstToken - END AS token_bought_address, - CASE - WHEN srcToken = {{generic_null_address}} - THEN {{burn_address}} - ELSE srcToken - END AS token_sold_address, - contract_address AS project_contract_address, - call_tx_hash as tx_hash, - call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index - FROM - clipper -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_embedded_rfq_ethereum_trades.sql b/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_embedded_rfq_ethereum_trades.sql deleted file mode 100644 index 551ddb65526..00000000000 --- a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_embedded_rfq_ethereum_trades.sql +++ /dev/null @@ -1,208 +0,0 @@ -{{ config( - - schema='oneinch_limit_order_protocol_embedded_rfq_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-11-12' %} --for testing, use small subset of data -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH limit_order_protocol_embedded_rfq AS -( - SELECT - call_block_number, - call_block_time, - "order", - output_0, - output_1, - contract_address, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_fillOrderRFQ') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - call_block_time, - "order", - output_0, - output_1, - contract_address, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_fillOrderRFQTo') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - call_block_time, - "order", - output_0, - output_1, - contract_address, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_fillOrderRFQToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - call_block_number as block_number, - call_block_time as block_time, - '1inch Limit Order Protocol' AS project, - 'eRFQ v1' AS version, - CAST(NULL as VARBINARY) as taker, --will get from base table downstream - from_hex(json_extract_scalar("order", '$.maker')) AS maker, - output_1 AS token_bought_amount_raw, - output_0 AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address AS project_contract_address, - call_tx_hash as tx_hash, - call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index - FROM - limit_order_protocol_embedded_rfq -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_rfq_v1_ethereum_trades.sql b/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_rfq_v1_ethereum_trades.sql deleted file mode 100644 index fde3c953540..00000000000 --- a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_rfq_v1_ethereum_trades.sql +++ /dev/null @@ -1,181 +0,0 @@ -{{ config( - - schema='oneinch_limit_order_protocol_rfq_v1_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-06-24' %} --for testing, use small subset of data -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH limit_order_protocol_rfq_v1 AS -( - SELECT - call_block_number as block_number, - call_block_time as block_time, - '1inch Limit Order Protocol' AS project, - 'RFQ v1' AS version, - ts."from" as taker, - bytearray_ltrim(bytearray_substring(from_hex(json_extract_scalar("order", '$.makerAssetData')), 17, 20)) AS maker, - bytearray_to_uint256(bytearray_substring(tf2.input, 69, 32)) as token_bought_amount_raw, - bytearray_to_uint256(bytearray_substring(tf1.input, 69, 32)) as token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address AS project_contract_address, - call_tx_hash as tx_hash, - call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index - FROM - {{ source('oneinch_ethereum', 'LimitOrderProtocolV1_call_fillOrderRFQ') }} as call - INNER JOIN - {{ source('ethereum', 'traces') }} as ts - ON call.call_tx_hash = ts.tx_hash - AND call.call_trace_address = ts.trace_address - AND call.call_block_number = ts.block_number - {% if is_incremental() %} - AND ts.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND ts.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - INNER JOIN - {{ source('ethereum', 'traces') }} as tf1 - ON call.call_tx_hash = tf1.tx_hash - AND call.call_block_number = tf1.block_number - AND COALESCE(call.call_trace_address, ARRAY[]) || ARRAY[(ts.sub_traces - 2)] = tf1.trace_address - {% if is_incremental() %} - AND tf1.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tf1.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - INNER JOIN - {{ source('ethereum', 'traces') }} as tf2 - ON call.call_tx_hash = tf2.tx_hash - AND call.call_block_number = tf2.block_number - AND COALESCE(call.call_trace_address, ARRAY[]) || ARRAY[(ts.sub_traces - 1)] = tf2.trace_address - {% if is_incremental() %} - AND tf2.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tf2.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - WHERE - call.call_success - {% if is_incremental() %} - AND call.call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call.call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM limit_order_protocol_rfq_v1 as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_rfq_v2_ethereum_trades.sql b/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_rfq_v2_ethereum_trades.sql deleted file mode 100644 index 21a192d0e6e..00000000000 --- a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_rfq_v2_ethereum_trades.sql +++ /dev/null @@ -1,207 +0,0 @@ -{{ config( - - schema='oneinch_limit_order_protocol_rfq_v2_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-12-21' %} --for testing, use small subset of data -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH limit_order_protocol_rfq_v2 AS -( - SELECT - call_block_number, - contract_address, - "order", - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'LimitOrderProtocolV2_call_fillOrderRFQ') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - contract_address, - "order", - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'LimitOrderProtocolV2_call_fillOrderRFQTo') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - contract_address, - "order", - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'LimitOrderProtocolV2_call_fillOrderRFQToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - call_block_number as block_number, - call_block_time as block_time, - '1inch Limit Order Protocol' AS project, - 'RFQ v2' as version, - CAST(NULL as VARBINARY) as taker, --will get from base table downstream - from_hex(json_extract_scalar("order", '$.maker')) AS maker, - output_1 AS token_bought_amount_raw, - output_0 AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address AS project_contract_address, - call_tx_hash as tx_hash, - call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index - FROM - limit_order_protocol_rfq_v2 -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_rfq_v3_ethereum_trades.sql b/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_rfq_v3_ethereum_trades.sql deleted file mode 100644 index 9616c8fe904..00000000000 --- a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_rfq_v3_ethereum_trades.sql +++ /dev/null @@ -1,207 +0,0 @@ -{{ config( - - schema='oneinch_limit_order_protocol_rfq_v3_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2022-11-28' %} --for testing, use small subset of data -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH limit_order_protocol_rfq_v3 AS -( - SELECT - call_block_number, - contract_address, - "order", - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_fillOrderRFQ') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - contract_address, - "order", - output_filledMakingAmount as output_0, - output_filledTakingAmount as output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_fillOrderRFQTo') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - contract_address, - "order", - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_fillOrderRFQToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - call_block_number as block_number, - call_block_time as block_time, - '1inch Limit Order Protocol' AS project, - 'RFQ v3' as version, - CAST(NULL as VARBINARY) as taker, --will get from base table downstream - from_hex(json_extract_scalar("order", '$.maker')) AS maker, - output_1 AS token_bought_amount_raw, - output_0 AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address AS project_contract_address, - call_tx_hash as tx_hash, - call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index - FROM - limit_order_protocol_rfq_v3 -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_v1_ethereum_trades.sql b/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_v1_ethereum_trades.sql deleted file mode 100644 index 64f9e37d46f..00000000000 --- a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_v1_ethereum_trades.sql +++ /dev/null @@ -1,168 +0,0 @@ -{{ config( - - schema='oneinch_limit_order_protocol_v1_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-06-08' %} --for testing, use small subset of data -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH limit_order_protocol AS -( - SELECT - call_block_number, - bytearray_ltrim(bytearray_substring(from_hex(json_extract_scalar("order", '$.makerAssetData')), 17, 20)) AS maker, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address, - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'LimitOrderProtocolV1_call_fillOrder') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - call_block_number as block_number, - call_block_time as block_time, - '1inch Limit Order Protocol' AS project, - '1' as version, - CAST(NULL as VARBINARY) as taker, -- get from base table downstream - maker, - output_1 AS token_bought_amount_raw, - output_0 AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - token_bought_address, - token_sold_address, - contract_address AS project_contract_address, - call_tx_hash as tx_hash, - call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index - FROM - limit_order_protocol -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_v2_ethereum_trades.sql b/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_v2_ethereum_trades.sql deleted file mode 100644 index eff8fc4ecc9..00000000000 --- a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_v2_ethereum_trades.sql +++ /dev/null @@ -1,214 +0,0 @@ -{{ config( - - schema='oneinch_limit_order_protocol_v2_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-12-09' %} --for testing, use small subset of data -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH limit_order_protocol AS -( - SELECT - call_block_number, - from_hex(json_extract_scalar("order", '$.maker')) AS maker, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address, - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'LimitOrderProtocolV2_call_fillOrder') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - from_hex(json_extract_scalar("order", '$.maker')) AS maker, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address, - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'LimitOrderProtocolV2_call_fillOrderTo') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - from_hex(json_extract_scalar("order", '$.maker')) AS maker, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address, - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'LimitOrderProtocolV2_call_fillOrderToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - call_block_number as block_number, - call_block_time as block_time, - '1inch Limit Order Protocol' AS project, - '2' as version, - CAST(NULL as VARBINARY) as taker, -- get from base table downstream - maker, - output_1 AS token_bought_amount_raw, - output_0 AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - token_bought_address, - token_sold_address, - contract_address AS project_contract_address, - call_tx_hash as tx_hash, - call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index - FROM - limit_order_protocol -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_v3_ethereum_trades.sql b/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_v3_ethereum_trades.sql deleted file mode 100644 index f2bb4e1775f..00000000000 --- a/models/oneinch/ethereum/limit_order_protocol/oneinch_limit_order_protocol_v3_ethereum_trades.sql +++ /dev/null @@ -1,214 +0,0 @@ -{{ config( - - schema='oneinch_limit_order_protocol_v3_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2022-11-15' %} --for testing, use small subset of data -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH limit_order_protocol AS -( - SELECT - call_block_number, - from_hex(json_extract_scalar(order_, '$.maker')) AS maker, - from_hex(json_extract_scalar(order_, '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar(order_, '$.makerAsset')) AS token_sold_address, - contract_address, - output_actualMakingAmount as output_0, - output_actualTakingAmount as output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_fillOrderTo') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - from_hex(json_extract_scalar("order", '$.maker')) AS maker, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address, - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_fillOrderToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - from_hex(json_extract_scalar("order", '$.maker')) AS maker, - from_hex(json_extract_scalar("order", '$.takerAsset')) AS token_bought_address, - from_hex(json_extract_scalar("order", '$.makerAsset')) AS token_sold_address, - contract_address, - output_0, - output_1, - call_block_time, - call_tx_hash, - call_trace_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_fillOrder') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - call_block_number as block_number, - call_block_time as block_time, - '1inch Limit Order Protocol' AS project, - '3' as version, - CAST(NULL as VARBINARY) as taker, -- get from base table downstream - maker, - output_1 AS token_bought_amount_raw, - output_0 AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - token_bought_address, - token_sold_address, - contract_address AS project_contract_address, - call_tx_hash as tx_hash, - call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index - FROM - limit_order_protocol -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' Day) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/oneinch_ethereum_schema.yml b/models/oneinch/ethereum/oneinch_ethereum_schema.yml index ee5b15aea7d..90a747b2160 100644 --- a/models/oneinch/ethereum/oneinch_ethereum_schema.yml +++ b/models/oneinch/ethereum/oneinch_ethereum_schema.yml @@ -1,1108 +1,6 @@ version: 2 models: - - name: oneinch_v1_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'v1', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 1 - columns: - - &blockchain - name: blockchain - description: "Blockchain which the aggregator project is deployed" - - &project - name: project - description: "Name of the aggregator project" - - &version - name: version - description: "Version of the contract built and deployed by the project" - - &block_date - name: block_date - description: "UTC event block date of the trade" - - &block_time - name: block_time - description: "UTC event block time of the trade" - - &token_bought_symbol - name: token_bought_symbol - description: "Token symbol for token bought in the trade" - - &token_sold_symbol - name: token_sold_symbol - description: "Token symbol for token sold in the trade" - - &token_pair - name: token_pair - description: "Token symbol pair for each token involved in the trade" - - &token_bought_amount - name: token_bought_amount - description: "Value of the token bought at time of execution in the original currency" - - &token_sold_amount - name: token_sold_amount - description: "Value of the token sold at time of execution in the original currency" - - &token_bought_amount_raw - name: token_bought_amount_raw - description: "Raw value of the token bought at time of execution in the original currency" - - &token_sold_amount_raw - name: token_sold_amount_raw - description: "Raw value of the token sold at time of execution in the original currency" - - &amount_usd - name: amount_usd - description: "USD value of the trade at time of execution" - - &token_bought_address - name: token_bought_address - description: "Contract address of the token bought" - - &token_sold_address - name: token_sold_address - description: "Contract address of the token sold" - - &taker - name: taker - description: "Address of trader who purchased a token" - - &maker - name: maker - description: "Address of trader who sold a token" - - &project_contract_address - name: project_contract_address - description: "Project contract address which executed the trade on the blockchain" - - &tx_hash - name: tx_hash - description: "Transaction hash of the trade's settlement" - - &tx_from - name: tx_from - description: "Address which initiated the trade" - - &tx_to - name: tx_to - description: "Address which received the trade" - - &trace_address - name: trace_address - #description: "" todo: what to use here? - - &evt_index - name: evt_index - description: "Index of the corresponding trade event" - - &block_month - name: block_month - description: "UTC event block month of the trade" - - - name: oneinch_v2_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'v2', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 2 - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_v3_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'v3', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 3 - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_v4_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'v4', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 4 - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_v5_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'v5', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 5 - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_onesplit_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'onesplit', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 1split - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_oneproto_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'oneproto', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 1proto - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_zeroex_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', '0x', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: ZRX - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_unoswap_v3_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'unoswap', 'unoswap_v3', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_unoswap_v4_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'unoswap', 'unoswap_v4', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 'UNI v2' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_unoswap_v5_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'unoswap', 'unoswap_v5', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_uniswap_v3_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'uniswap', 'uniswap_v3', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 'UNI v3' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_clipper_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'clipper', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch - version: 'Clipper v1' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_limit_order_protocol_v1_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'limit_order_protocol', 'v1', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch Limit Order Protocol - version: '1' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_limit_order_protocol_v2_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'limit_order_protocol', 'v2', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch Limit Order Protocol - version: '2' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_limit_order_protocol_v3_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'limit_order_protocol', 'v3', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch Limit Order Protocol - version: '3' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_limit_order_protocol_embedded_rfq_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'limit_order_protocol', 'eRFQ v1', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch Limit Order Protocol - version: 'eRFQ v1' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_limit_order_protocol_rfq_v1_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'limit_order_protocol', 'RFQ v1', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch Limit Order Protocol - version: 'RFQ v1' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_limit_order_protocol_rfq_v2_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'limit_order_protocol', 'RFQ v2', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch Limit Order Protocol - version: 'RFQ v2' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_limit_order_protocol_rfq_v3_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'limit_order_protocol', 'RFQ v3', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - block_date - - blockchain - - project - - version - - tx_hash - - evt_index - - trace_address - - check_dex_aggregator_seed: - blockchain: ethereum - project: 1inch Limit Order Protocol - version: 'RFQ v3' - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_ethereum_trades - meta: - blockchain: ethereum - project: oneinch - contributors: [jeff-dude, dsalv, k06a] - config: - tags: ['ethereum','oneinch', 'trades', 'dex', 'aggregator'] - description: > #todo: find a viable description to put here - 1inch aggregator trades on the Ethereum mainnet - columns: - - *blockchain - - *project - - *version - - *block_date - - *block_time - - *token_bought_symbol - - *token_sold_symbol - - *token_pair - - *token_bought_amount - - *token_sold_amount - - *token_bought_amount_raw - - *token_sold_amount_raw - - *amount_usd - - *token_bought_address - - *token_sold_address - - *taker - - *maker - - *project_contract_address - - *tx_hash - - *tx_from - - *tx_to - - *trace_address - - *evt_index - - *block_month - - - name: oneinch_ethereum_airdrop_claims - meta: - blockchain: ethereum - sector: airdrop - project: oneinch - contributors: hildobby - config: - tags: ['table', 'airdrop', 'ethereum', 'claim', 'oneinch'] - description: "List of claim transactions for the $1INCH airdrop" - tests: - - dbt_utils.unique_combination_of_columns: - combination_of_columns: - - tx_hash - - recipient - - evt_index - columns: - - *blockchain - - *block_time - - &block_number - name: block_number - description: "Block number of transaction" - - *project - - &airdrop_number - name: airdrop_number - description: "Airdrop identifier number" - - &recipient - name: recipient - description: "Airdrop recipient" - - &contract_address - name: contract_address - description: "Contract addressed used" - - *tx_hash - - name: amount_raw - description: "Raw amount of tokens" - - name: amount_original - description: "Original amount of tokens" - - name: amount_usd - description: "USD value of tokens" - - &token_address - name: token_address - description: "Token address" - - &token_symbol - name: token_symbol - description: "Token symbol" - - *evt_index - - - name: oneinch_ethereum_calls_transfers meta: blockchain: ['ethereum'] @@ -1118,13 +16,16 @@ models: name: blockchain tests: - not_null - - *block_time + - &block_time + name: block_time - &tx_hash_not_null name: tx_hash tests: - not_null - - *tx_from - - *tx_to + - &tx_from + name: tx_from + - &tx_to + name: tx_to - &tx_success name: tx_success - &call_success @@ -1141,7 +42,8 @@ models: name: protocol - &transfer_trace_address name: transfer_trace_address - - *contract_address + - &contract_address + name: contract_address - &amount name: amount - &native_token @@ -1164,7 +66,7 @@ models: name: call_remains - &minute name: minute - - &block_month_not_null + - &block_month name: block_month tests: - not_null @@ -1191,42 +93,46 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - *maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount name: making_amount - - *taker + - &taker + name: taker - &taker_asset name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month - name: oneinch_ethereum_ar meta: @@ -1245,43 +151,91 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month + - name: remains + - name: minute + - name: block_month + - name: oneinch_ethereum_airdrop_claims + meta: + blockchain: ethereum + sector: airdrop + project: oneinch + contributors: hildobby + config: + tags: ['table', 'airdrop', 'ethereum', 'claim', 'oneinch'] + description: "List of claim transactions for the $1INCH airdrop" + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - tx_hash + - recipient + - evt_index + columns: + - *blockchain_not_null + - *block_time + - name: block_number + description: "Block number of transaction" + - name: project + description: "Project name" + - &airdrop_number + name: airdrop_number + description: "Airdrop identifier number" + - &recipient + name: recipient + description: "Airdrop recipient" + - name: contract_address + description: "Contract addressed used" + - name: tx_hash + description: "Transaction hash" + - name: amount_raw + description: "Raw amount of tokens" + - name: amount_original + description: "Original amount of tokens" + - name: amount_usd + description: "USD value of tokens" + - name: token_address + description: "Token address" + - name: token_symbol + description: "Token symbol" + - name: evt_index + description: "Event index" \ No newline at end of file diff --git a/models/oneinch/ethereum/oneinch_ethereum_trades.sql b/models/oneinch/ethereum/oneinch_ethereum_trades.sql deleted file mode 100644 index f28db680f1c..00000000000 --- a/models/oneinch/ethereum/oneinch_ethereum_trades.sql +++ /dev/null @@ -1,65 +0,0 @@ -{{ config( - - schema = 'oneinch_ethereum', - alias = 'trades' - ) -}} - -{% set oneinch_models = [ -ref('oneinch_v1_ethereum_trades') -,ref('oneinch_v2_ethereum_trades') -,ref('oneinch_v3_ethereum_trades') -,ref('oneinch_v4_ethereum_trades') -,ref('oneinch_v5_ethereum_trades') -,ref('oneinch_onesplit_ethereum_trades') -,ref('oneinch_oneproto_ethereum_trades') -,ref('oneinch_zeroex_ethereum_trades') -,ref('oneinch_unoswap_v3_ethereum_trades') -,ref('oneinch_unoswap_v4_ethereum_trades') -,ref('oneinch_unoswap_v5_ethereum_trades') -,ref('oneinch_uniswap_v3_ethereum_trades') -,ref('oneinch_clipper_ethereum_trades') -,ref('oneinch_limit_order_protocol_v1_ethereum_trades') -,ref('oneinch_limit_order_protocol_v2_ethereum_trades') -,ref('oneinch_limit_order_protocol_v3_ethereum_trades') -,ref('oneinch_limit_order_protocol_embedded_rfq_ethereum_trades') -,ref('oneinch_limit_order_protocol_rfq_v1_ethereum_trades') -,ref('oneinch_limit_order_protocol_rfq_v2_ethereum_trades') -,ref('oneinch_limit_order_protocol_rfq_v3_ethereum_trades') -] %} - - -SELECT * -FROM ( - {% for dex_model in oneinch_models %} - SELECT - blockchain - ,project - ,version - ,block_date - ,block_month - ,block_time - ,token_bought_symbol - ,token_sold_symbol - ,token_pair - ,token_bought_amount - ,token_sold_amount - ,token_bought_amount_raw - ,token_sold_amount_raw - ,amount_usd - ,token_bought_address - ,token_sold_address - ,taker - ,maker - ,project_contract_address - ,tx_hash - ,tx_from - ,tx_to - ,trace_address - ,evt_index - FROM {{ dex_model }} - {% if not loop.last %} - UNION ALL - {% endif %} - {% endfor %} -) diff --git a/models/oneinch/ethereum/oneinch_v1_ethereum_trades.sql b/models/oneinch/ethereum/oneinch_v1_ethereum_trades.sql deleted file mode 100644 index fbbf76334c6..00000000000 --- a/models/oneinch/ethereum/oneinch_v1_ethereum_trades.sql +++ /dev/null @@ -1,367 +0,0 @@ -{{ config( - - schema='oneinch_v1_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2019-06-03' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -{% set final_columns = [ - 'block_number' - ,'taker' - ,'from_token' - ,'to_token' - ,'from_amount' - ,'to_amount' - ,'tx_hash' - ,'block_time' - ,'trace_address' - ,'evt_index' - ,'contract_address' -] %} - -WITH oneinch_calls AS -( - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken as from_token, - toToken as to_token, - tokensAmount as from_amount, - minTokensAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'ExchangeV1_call_aggregate') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken as from_token, - toToken as to_token, - tokensAmount as from_amount, - minTokensAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'ExchangeV2_call_aggregate') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken as from_token, - toToken as to_token, - tokensAmount as from_amount, - minTokensAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'ExchangeV3_call_aggregate') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken as from_token, - toToken as to_token, - tokensAmount as from_amount, - minTokensAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'ExchangeV4_call_aggregate') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken as from_token, - toToken as to_token, - tokensAmount as from_amount, - minTokensAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'ExchangeV5_call_aggregate') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken as from_token, - toToken as to_token, - tokensAmount as from_amount, - minTokensAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'ExchangeV6_call_aggregate') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken as from_token, - toToken as to_token, - fromTokenAmount as from_amount, - minReturnAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'ExchangeV7_call_swap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken as from_token, - toToken as to_token, - fromTokenAmount as from_amount, - minReturnAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV1_call_swap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - block_number, - block_time, - '1inch' AS project, - '1' as version, - taker, - CAST(NULL as VARBINARY) AS maker, - to_amount AS token_bought_amount_raw, - from_amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN to_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE to_token - END AS token_bought_address, - CASE - WHEN from_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE from_token - END AS token_sold_address, - contract_address AS project_contract_address, - tx_hash, - trace_address, - evt_index - FROM - ( - SELECT - {% for column in final_columns %} - {% if not loop.first %},{% endif %} {{column}} - {% endfor %} - FROM - oneinch_calls - ) -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/oneinch_v2_ethereum_trades.sql b/models/oneinch/ethereum/oneinch_v2_ethereum_trades.sql deleted file mode 100644 index 80be88de96f..00000000000 --- a/models/oneinch/ethereum/oneinch_v2_ethereum_trades.sql +++ /dev/null @@ -1,199 +0,0 @@ -{{ config( - - schema='oneinch_v2_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2020-11-04' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -{% set final_columns = [ - 'block_number' - ,'taker' - ,'from_token' - ,'to_token' - ,'from_amount' - ,'to_amount' - ,'tx_hash' - ,'block_time' - ,'trace_address' - ,'evt_index' - ,'contract_address' -] %} - -WITH oneinch_events AS -( - SELECT - evt_block_number as block_number, - sender as taker, - srcToken as from_token, - dstToken as to_token, - spentAmount as from_amount, - returnAmount as to_amount, - evt_tx_hash as tx_hash, - evt_block_time as block_time, - array[-1] as trace_address, - evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV2_evt_Swapped') }} - {% if is_incremental() %} - WHERE - evt_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - WHERE - evt_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - block_number, - block_time, - '1inch' AS project, - '2' as version, - taker, - CAST(NULL as VARBINARY) AS maker, - to_amount AS token_bought_amount_raw, - from_amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN to_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE to_token - END AS token_bought_address, - CASE - WHEN from_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE from_token - END AS token_sold_address, - contract_address AS project_contract_address, - tx_hash, - trace_address, - evt_index - FROM - ( - SELECT - {% for column in final_columns %} - {% if not loop.first %},{% endif %} {{column}} - {% endfor %} - FROM - oneinch_events - ) -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/oneinch_v3_ethereum_trades.sql b/models/oneinch/ethereum/oneinch_v3_ethereum_trades.sql deleted file mode 100644 index 418fa599526..00000000000 --- a/models/oneinch/ethereum/oneinch_v3_ethereum_trades.sql +++ /dev/null @@ -1,199 +0,0 @@ -{{ config( - - schema='oneinch_v3_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-03-15' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -{% set final_columns = [ - 'block_number' - ,'taker' - ,'from_token' - ,'to_token' - ,'from_amount' - ,'to_amount' - ,'tx_hash' - ,'block_time' - ,'trace_address' - ,'evt_index' - ,'contract_address' -] %} - -WITH oneinch_events AS -( - SELECT - evt_block_number as block_number, - sender as taker, - srcToken as from_token, - dstToken as to_token, - spentAmount as from_amount, - returnAmount as to_amount, - evt_tx_hash as tx_hash, - evt_block_time as block_time, - array[-1] as trace_address, - evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV3_evt_Swapped') }} - {% if is_incremental() %} - WHERE - evt_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - WHERE - evt_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - block_number, - block_time, - '1inch' AS project, - '3' as version, - taker, - CAST(NULL as VARBINARY) AS maker, - to_amount AS token_bought_amount_raw, - from_amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN to_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE to_token - END AS token_bought_address, - CASE - WHEN from_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE from_token - END AS token_sold_address, - contract_address AS project_contract_address, - tx_hash, - trace_address, - evt_index - FROM - ( - SELECT - {% for column in final_columns %} - {% if not loop.first %},{% endif %} {{column}} - {% endfor %} - FROM - oneinch_events - ) -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/oneinch_v4_ethereum_trades.sql b/models/oneinch/ethereum/oneinch_v4_ethereum_trades.sql deleted file mode 100644 index 6659c6d1ee6..00000000000 --- a/models/oneinch/ethereum/oneinch_v4_ethereum_trades.sql +++ /dev/null @@ -1,199 +0,0 @@ -{{ config( - - schema='oneinch_v4_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-11-08' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -{% set final_columns = [ - 'block_number' - ,'taker' - ,'from_token' - ,'to_token' - ,'from_amount' - ,'to_amount' - ,'tx_hash' - ,'block_time' - ,'trace_address' - ,'evt_index' - ,'contract_address' -] %} - -WITH oneinch_calls AS -( - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - from_hex(json_extract_scalar("desc", '$.srcToken')) as from_token, - from_hex(json_extract_scalar("desc", '$.dstToken')) as to_token, - output_spentAmount as from_amount, - output_returnAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_swap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - block_number, - block_time, - '1inch' AS project, - '4' as version, - taker, - CAST(NULL as VARBINARY) AS maker, - to_amount AS token_bought_amount_raw, - from_amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN to_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE to_token - END AS token_bought_address, - CASE - WHEN from_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE from_token - END AS token_sold_address, - contract_address AS project_contract_address, - tx_hash, - trace_address, - evt_index - FROM - ( - SELECT - {% for column in final_columns %} - {% if not loop.first %},{% endif %} {{column}} - {% endfor %} - FROM - oneinch_calls - ) -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/oneinch_v5_ethereum_trades.sql b/models/oneinch/ethereum/oneinch_v5_ethereum_trades.sql deleted file mode 100644 index 624ea977fe0..00000000000 --- a/models/oneinch/ethereum/oneinch_v5_ethereum_trades.sql +++ /dev/null @@ -1,199 +0,0 @@ -{{ config( - - schema='oneinch_v5_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2022-11-04' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -{% set final_columns = [ - 'block_number' - ,'taker' - ,'from_token' - ,'to_token' - ,'from_amount' - ,'to_amount' - ,'tx_hash' - ,'block_time' - ,'trace_address' - ,'evt_index' - ,'contract_address' -] %} - -WITH oneinch_calls AS -( - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - from_hex(json_extract_scalar("desc", '$.srcToken')) as from_token, - from_hex(json_extract_scalar("desc", '$.dstToken')) as to_token, - output_spentAmount as from_amount, - output_returnAmount as to_amount, - call_tx_hash as tx_hash, - call_block_time as block_time, - call_trace_address as trace_address, - CAST(-1 as integer) AS evt_index, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_swap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - block_number, - block_time, - '1inch' AS project, - '5' as version, - taker, - CAST(NULL as VARBINARY) AS maker, - to_amount AS token_bought_amount_raw, - from_amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN to_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE to_token - END AS token_bought_address, - CASE - WHEN from_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE from_token - END AS token_sold_address, - contract_address AS project_contract_address, - tx_hash, - trace_address, - evt_index - FROM - ( - SELECT - {% for column in final_columns %} - {% if not loop.first %},{% endif %} {{column}} - {% endfor %} - FROM - oneinch_calls - ) -) - -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = 'ETH' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/oneproto/oneinch_oneproto_ethereum_trades.sql b/models/oneinch/ethereum/oneproto/oneinch_oneproto_ethereum_trades.sql deleted file mode 100644 index 565e20954d9..00000000000 --- a/models/oneinch/ethereum/oneproto/oneinch_oneproto_ethereum_trades.sql +++ /dev/null @@ -1,211 +0,0 @@ -{{ config( - - schema='oneinch_oneproto_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2020-07-21' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH oneproto AS -( - SELECT - evt_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken as from_token, - destToken as to_token, - fromTokenAmount as from_amount, - destTokenAmount as to_amount, - evt_tx_hash as tx_hash, - evt_block_time as block_time, - contract_address, - evt_index - FROM - {{ source('oneproto_ethereum', 'OneSplitAudit_evt_Swapped') }} - {% if is_incremental() %} - WHERE - evt_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - WHERE - evt_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - block_number, - block_time, - '1inch' AS project, - '1proto' as version, - taker, - CAST(NULL as VARBINARY) AS maker, - to_amount AS token_bought_amount_raw, - from_amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN to_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE to_token - END AS token_bought_address, - CASE - WHEN from_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE from_token - END AS token_sold_address, - contract_address AS project_contract_address, - tx_hash, - array[-1] as trace_address, - evt_index - FROM oneproto -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM - oneinch as src -LEFT JOIN --where tx_hash isn't already pulled from oneinch version spells - ( - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v1_ethereum_trades') }} - UNION ALL - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v2_ethereum_trades') }} - UNION ALL - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v3_ethereum_trades') }} - UNION ALL - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v4_ethereum_trades') }} - UNION ALL - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v5_ethereum_trades') }} - ) oneinch - ON src.tx_hash = oneinch.tx_hash - AND src.block_number = oneinch.block_number -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -WHERE oneinch.tx_hash IS NULL \ No newline at end of file diff --git a/models/oneinch/ethereum/onesplit/oneinch_onesplit_ethereum_trades.sql b/models/oneinch/ethereum/onesplit/oneinch_onesplit_ethereum_trades.sql deleted file mode 100644 index 820346fda25..00000000000 --- a/models/oneinch/ethereum/onesplit/oneinch_onesplit_ethereum_trades.sql +++ /dev/null @@ -1,232 +0,0 @@ -{{ config( - - schema='oneinch_onesplit_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2020-01-22' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH onesplit AS -( - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken AS from_token, - toToken AS to_token, - amount AS from_amount, - minReturn AS to_amount, - call_tx_hash AS tx_hash, - call_trace_address AS trace_address, - call_block_time AS block_time, - contract_address - FROM - {{ source('onesplit_ethereum', 'OneSplit_call_swap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - UNION ALL - SELECT - call_block_number as block_number, - CAST(NULL as VARBINARY) as taker, - fromToken AS from_token, - toToken AS to_token, - amount AS from_amount, - minReturn AS to_amount, - call_tx_hash AS tx_hash, - call_trace_address AS trace_address, - call_block_time AS block_time, - contract_address - FROM - {{ source('onesplit_ethereum', 'OneSplit_call_goodSwap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - block_number, - block_time, - '1inch' AS project, - '1split' as version, - taker, - CAST(NULL as VARBINARY) AS maker, - to_amount AS token_bought_amount_raw, - from_amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN to_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE to_token - END AS token_bought_address, - CASE - WHEN from_token = {{generic_null_address}} - THEN {{burn_address}} - ELSE from_token - END AS token_sold_address, - contract_address AS project_contract_address, - tx_hash, - trace_address, - CAST(-1 as integer) AS evt_index - FROM onesplit -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM - oneinch as src -LEFT JOIN --where tx_hash isn't already pulled from oneinch version spells - ( - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v1_ethereum_trades') }} - UNION ALL - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v2_ethereum_trades') }} - UNION ALL - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v3_ethereum_trades') }} - UNION ALL - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v4_ethereum_trades') }} - UNION ALL - SELECT DISTINCT - tx_hash - , block_number - FROM - {{ ref('oneinch_v5_ethereum_trades') }} - ) oneinch - ON src.tx_hash = oneinch.tx_hash - AND src.block_number = oneinch.block_number -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -WHERE oneinch.tx_hash IS NULL \ No newline at end of file diff --git a/models/oneinch/ethereum/uniswap/oneinch_uniswap_v3_ethereum_trades.sql b/models/oneinch/ethereum/uniswap/oneinch_uniswap_v3_ethereum_trades.sql deleted file mode 100644 index ae5377a7bc6..00000000000 --- a/models/oneinch/ethereum/uniswap/oneinch_uniswap_v3_ethereum_trades.sql +++ /dev/null @@ -1,382 +0,0 @@ -{{ config( - - schema='oneinch_uniswap_v3_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-11-07' %} --for testing, use small subset of data -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH uniswap AS -( - SELECT - call_block_number, - output_returnAmount, - amount, - pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_uniswapV3Swap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - amount, - pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_uniswapV3SwapTo') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - amount, - pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_uniswapV3SwapToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - amount, - pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_uniswapV3Swap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - amount, - pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_uniswapV3SwapTo') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - amount, - pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_uniswapV3SwapToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, token_bought as -( - SELECT - call_block_number - , output_returnAmount - , amount - , CASE - WHEN CAST(pools[cardinality(pools)] / POWER(2, 252) AS INTEGER) = bitwise_and(CAST(pools[cardinality(pools)] / POWER(2, 252) AS INTEGER), 2) AND CAST(pools[cardinality(pools)] / POWER(2, 252) AS INTEGER) != 0 - THEN {{burn_address}} - ELSE to - END as dstToken - , pools - , call_tx_hash - , call_trace_address - , call_block_time - , contract_address - FROM - ( - SELECT - uniswap.call_block_number - , uniswap.output_returnAmount - , uniswap.amount - , uniswap.pools - , uniswap.call_tx_hash - , uniswap.call_trace_address - , uniswap.call_block_time - , uniswap.contract_address - , traces.to - , traces."from" - , ROW_NUMBER() OVER ( - PARTITION BY uniswap.call_tx_hash, uniswap.call_trace_address - ORDER BY traces.trace_address desc - ) as first_transfer_trace - FROM - uniswap - LEFT JOIN - {{ source('ethereum', 'traces') }} AS traces - ON traces.tx_hash = uniswap.call_tx_hash - AND traces.block_number = uniswap.call_block_number - AND traces."from" != uniswap.contract_address - AND COALESCE(uniswap.call_trace_address, ARRAY[]) = SLICE(traces.trace_address, 1, COALESCE(cardinality(uniswap.call_trace_address), 0)) - AND COALESCE(cardinality(uniswap.call_trace_address), 0) + 2 = COALESCE(cardinality(traces.trace_address), 0) - AND bytearray_substring(traces.input,1,4) = 0xa9059cbb --find the token address that transfer() was called on - AND traces.call_type = 'call' - {% if is_incremental() %} - AND traces.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND traces.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - ) - WHERE first_transfer_trace = 1 -) -, token_sold as -( - SELECT - call_block_number - , output_returnAmount - , amount - , COALESCE(to, {{burn_address}}) AS srcToken - , pools - , call_tx_hash - , call_trace_address - , call_block_time - , contract_address - FROM - ( - SELECT - uniswap.call_block_number - , uniswap.output_returnAmount - , uniswap.amount - , uniswap.pools - , uniswap.call_tx_hash - , uniswap.call_trace_address - , uniswap.call_block_time - , uniswap.contract_address - , traces.to - , traces."from" - , ROW_NUMBER() OVER ( - PARTITION BY uniswap.call_tx_hash, uniswap.call_trace_address - ORDER BY traces.trace_address - ) as first_transfer_trace - FROM - uniswap - LEFT JOIN - {{ source('ethereum', 'traces') }} AS traces - ON traces.tx_hash = uniswap.call_tx_hash - AND traces.block_number = uniswap.call_block_number - AND COALESCE(uniswap.call_trace_address, ARRAY[]) = SLICE(traces.trace_address, 1, COALESCE(cardinality(uniswap.call_trace_address), 0)) - AND COALESCE(cardinality(uniswap.call_trace_address), 0) + 3 = COALESCE(cardinality(traces.trace_address), 0) - AND bytearray_substring(traces.input,1,4) = 0x23b872dd --find the token address that transfer() was called on - AND traces.call_type = 'call' - {% if is_incremental() %} - AND traces.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND traces.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - ) - WHERE first_transfer_trace = 1 -) -, oneinch as -( - SELECT - src.call_block_number as block_number - ,src.call_block_time as block_time - ,'1inch' AS project - ,'UNI v3' AS version - ,CAST(NULL as VARBINARY) AS taker - ,CAST(NULL as VARBINARY) as maker - ,src.output_returnAmount AS token_bought_amount_raw - ,src.amount AS token_sold_amount_raw - ,CAST(NULL as double) AS amount_usd - ,token_bought.dstToken AS token_bought_address - ,token_sold.srcToken AS token_sold_address - ,src.contract_address AS project_contract_address - ,src.call_tx_hash as tx_hash - ,src.call_trace_address AS trace_address - ,CAST(-1 as integer) AS evt_index - FROM - uniswap as src - INNER JOIN token_bought - ON src.call_tx_hash = token_bought.call_tx_hash - AND src.call_block_number = token_bought.call_block_number - AND src.call_trace_address = token_bought.call_trace_address - INNER JOIN token_sold - ON src.call_tx_hash = token_sold.call_tx_hash - AND src.call_block_number = token_sold.call_block_number - AND src.call_trace_address = token_sold.call_trace_address -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN src.token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN src.token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN src.token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN src.token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM - oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -WHERE - src.tx_hash not in ( - 0x14613a8f439f5f65b3235fbae95b67bc5f6aa7b0937af73e8df593e00d8abb12 -- broken tx with wrong amount and decimals, causing $8,439,415,024,975,841 vol - ) \ No newline at end of file diff --git a/models/oneinch/ethereum/unoswap/oneinch_unoswap_v3_ethereum_trades.sql b/models/oneinch/ethereum/unoswap/oneinch_unoswap_v3_ethereum_trades.sql deleted file mode 100644 index 1ba1ecd7540..00000000000 --- a/models/oneinch/ethereum/unoswap/oneinch_unoswap_v3_ethereum_trades.sql +++ /dev/null @@ -1,225 +0,0 @@ -{{ config( - - schema='oneinch_unoswap_v3_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-03-15' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH unoswap AS -( - SELECT - call_block_number, - output_returnAmount, - amount, - srcToken, - _0 as pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV3_call_unoswap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - amount, - srcToken, - pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV3_call_unoswapWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch as -( - SELECT - src.call_block_number as block_number, - src.call_block_time as block_time, - '1inch' AS project, - 'UNI v2' AS version, - tx."from" AS taker, - CAST(NULL as VARBINARY) as maker, - src.output_returnAmount AS token_bought_amount_raw, - src.amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN ll.to = 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 - AND (CASE WHEN cardinality(src.pools) != 0 THEN bytearray_substring(src.pools[cardinality(src.pools)], 1, 1) ELSE 0x END) IN (0xc0, 0x40) --trino uses 1-based array index, no need to subtract 1 from size output - THEN {{burn_address}} -- sometimes cardinality is zero and this is causing some issues hence the case when added - ELSE ll.to - END AS token_bought_address, - CASE - WHEN src.srcToken = {{generic_null_address}} - THEN {{burn_address}} - ELSE src.srcToken - END AS token_sold_address, - src.contract_address AS project_contract_address, - src.call_tx_hash as tx_hash, - src.call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index, - tx."from" AS tx_from, - tx.to AS tx_to - FROM - unoswap as src - INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.call_tx_hash = tx.hash - AND src.call_block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - LEFT JOIN {{ source('ethereum', 'traces') }} as ll - ON src.call_tx_hash = ll.tx_hash - AND src.call_block_number = ll.block_number - AND ll.trace_address = ( - CONCAT( - src.call_trace_address, - ARRAY - [ - cardinality(src.pools) - * 2 - + CASE - WHEN src.srcToken = {{generic_null_address}} - THEN 1 - ELSE 0 - END - ], - ARRAY[0] - ) - ) - {% if is_incremental() %} - AND ll.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND ll.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN src.token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN src.token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN src.token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN src.token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,src.taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,src.tx_from - ,src.tx_to - ,src.trace_address - ,src.evt_index -FROM - oneinch as src -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/unoswap/oneinch_unoswap_v4_ethereum_trades.sql b/models/oneinch/ethereum/unoswap/oneinch_unoswap_v4_ethereum_trades.sql deleted file mode 100644 index 891b4ba8723..00000000000 --- a/models/oneinch/ethereum/unoswap/oneinch_unoswap_v4_ethereum_trades.sql +++ /dev/null @@ -1,225 +0,0 @@ -{{ config( - - schema='oneinch_unoswap_v4_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2021-11-07' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH unoswap AS -( - SELECT - call_block_number, - output_returnAmount, - amount, - srcToken, - pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_unoswap') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number, - output_returnAmount, - amount, - srcToken, - pools, - call_tx_hash, - call_trace_address, - call_block_time, - contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV4_call_unoswapWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch as -( - SELECT - src.call_block_number as block_number, - src.call_block_time as block_time, - '1inch' AS project, - 'UNI v2' AS version, - tx."from" AS taker, - CAST(NULL as VARBINARY) as maker, - src.output_returnAmount AS token_bought_amount_raw, - src.amount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - CASE - WHEN ll.to = 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 - AND (CASE WHEN cardinality(src.pools) != 0 THEN bytearray_substring(src.pools[cardinality(src.pools)], 1, 1) ELSE 0x END) IN (0xc0, 0x40) --trino uses 1-based array index, no need to subtract 1 from size output - THEN {{burn_address}} -- sometimes cardinality is zero and this is causing some issues hence the case when added - ELSE ll.to - END AS token_bought_address, - CASE - WHEN src.srcToken = {{generic_null_address}} - THEN {{burn_address}} - ELSE src.srcToken - END AS token_sold_address, - src.contract_address AS project_contract_address, - src.call_tx_hash as tx_hash, - src.call_trace_address AS trace_address, - CAST(-1 as integer) AS evt_index, - tx."from" AS tx_from, - tx.to AS tx_to - FROM - unoswap as src - INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.call_tx_hash = tx.hash - AND src.call_block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - LEFT JOIN {{ source('ethereum', 'traces') }} as ll - ON src.call_tx_hash = ll.tx_hash - AND src.call_block_number = ll.block_number - AND ll.trace_address = ( - CONCAT( - src.call_trace_address, - ARRAY - [ - cardinality(src.pools) - * 2 - + CASE - WHEN src.srcToken = {{generic_null_address}} - THEN 1 - ELSE 0 - END - ], - ARRAY[0] - ) - ) - {% if is_incremental() %} - AND ll.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND ll.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN src.token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN src.token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN src.token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN src.token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,src.taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,src.tx_from - ,src.tx_to - ,src.trace_address - ,src.evt_index -FROM - oneinch as src -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/unoswap/oneinch_unoswap_v5_ethereum_trades.sql b/models/oneinch/ethereum/unoswap/oneinch_unoswap_v5_ethereum_trades.sql deleted file mode 100644 index 9abd00fc0d0..00000000000 --- a/models/oneinch/ethereum/unoswap/oneinch_unoswap_v5_ethereum_trades.sql +++ /dev/null @@ -1,272 +0,0 @@ -{{ config( - - schema='oneinch_unoswap_v5_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2022-11-07' %} --for testing, use small subset of data -{% set generic_null_address = '0x0000000000000000000000000000000000000000' %} --according to etherscan label -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH unoswap AS -( - SELECT - call_block_number - ,output_returnAmount - ,amount - ,srcToken - ,pools - ,call_tx_hash - ,call_trace_address - ,call_block_time - ,contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_unoswap') }} - WHERE - call_success - /****************************************************************************************************************** - - a few tx's don't fit into the join on line 131: - AND COALESCE(array_size(unoswap.call_trace_address), 0) + 2 = COALESCE(array_size(traces.trace_address), 0) - - the '+ 2' should apparently be '+ 3' for these tx's to correctly join to traces - - on v1 engine, the tx's were forced to amount_usd = 0 via update statement, as full refresh is less common there - ********************************************************************************************************************/ - AND call_tx_hash not in ( - 0x4f98ac5d5778203a0df3848c85494a179eae35befa64bb6fc360f03851385191 - , 0xce87a97efbf1c6c0491a72997d5239029ced77c9ef7413db66cc30b4da63fe86 - , 0x62c833c1ab66d17c42aeb1407755c00894f9af8691da2c2ca0f14392e3a6334c - , 0x774ad4c15a6f776e71641fe4e9af3abd5bb80f7511c77548d130c2ee124ba80a - , 0xad7d5814544440bdcb22760f8f2f0594958e9e6417249d96d92bf78cd05a80f5 - , 0xafba4b3db26b0e9f26d0ca4c709e80ee2b8bc18e3298fa67126697fc45fba0c6 - , 0xc4691370dbfaf01a7b0e5e1ea42dcb61c8ce55dd7c6e7ae73ca8bb9cdd801b78 - , 0xe88f56e295d0181a37a22ba459a581d18c2f554b47976cd6a27be301d96e619a - , 0xd744887a6bcce41f213353563fd1da81d3fe456e0d8a5628fa60ea1734380988 - ) - /*************************************************** - remove tx_hash filter if join is fixed - ***************************************************/ - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - call_block_number - ,output_returnAmount - ,amount - ,srcToken - ,pools - ,call_tx_hash - ,call_trace_address - ,call_block_time - ,contract_address - FROM - {{ source('oneinch_ethereum', 'AggregationRouterV5_call_unoswapToWithPermit') }} - WHERE - call_success - {% if is_incremental() %} - AND call_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND call_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, join_to_traces as -( - SELECT - call_block_number - , output_returnAmount - , amount - , srcToken - , CASE - WHEN cardinality(pools) = 0 THEN to - ELSE - CASE - WHEN bitwise_and(CAST(pools[cardinality(pools)] / POW(2, 252) AS integer), 2) != 0 THEN {{burn_address}} - ELSE to - END - END as dstToken - , pools - , call_tx_hash - , call_trace_address - , call_block_time - , contract_address - , "from" as taker - FROM - ( - SELECT - unoswap.call_block_number - , unoswap.output_returnAmount - , unoswap.amount - , unoswap.srcToken - , unoswap.pools - , unoswap.call_tx_hash - , unoswap.call_trace_address - , unoswap.call_block_time - , unoswap.contract_address - , traces.to - , traces."from" - , ROW_NUMBER() OVER ( - PARTITION BY unoswap.call_tx_hash, unoswap.call_trace_address - ORDER BY traces.trace_address desc - ) as first_transfer_trace - FROM - unoswap - LEFT JOIN - {{ source('ethereum', 'traces') }} AS traces - ON traces.tx_hash = unoswap.call_tx_hash - AND traces.block_number = unoswap.call_block_number - AND traces."from" != unoswap.contract_address - AND COALESCE(unoswap.call_trace_address, ARRAY[]) = slice(traces.trace_address, 1, COALESCE(cardinality(unoswap.call_trace_address), 0)) - AND COALESCE(cardinality(unoswap.call_trace_address), 0) + 2 = COALESCE(cardinality(traces.trace_address), 0) - AND bytearray_substring(traces.input,1,4) = 0xa9059cbb --find the token address that transfer() was called on - AND traces.call_type = 'call' - {% if is_incremental() %} - AND traces.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND traces.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - ) - WHERE first_transfer_trace = 1 -) -, oneinch as -( - SELECT - src.call_block_number as block_number - ,src.call_block_time as block_time - ,'1inch' AS project - ,'UNI v2' AS version - ,CAST(NULL as VARBINARY) AS taker - ,CAST(NULL as VARBINARY) as maker - ,src.output_returnAmount AS token_bought_amount_raw - ,src.amount AS token_sold_amount_raw - ,CAST(NULL as double) AS amount_usd - ,src.dstToken AS token_bought_address - ,CASE - WHEN src.srcToken = {{generic_null_address}} - THEN {{burn_address}} - ELSE src.srcToken - END AS token_sold_address - ,src.contract_address AS project_contract_address - ,src.call_tx_hash as tx_hash - ,src.call_trace_address AS trace_address - ,CAST(-1 as integer) AS evt_index - FROM - join_to_traces as src -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN src.token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN src.token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN src.token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN src.token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM - oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/ethereum/zeroex/oneinch_zeroex_ethereum_trades.sql b/models/oneinch/ethereum/zeroex/oneinch_zeroex_ethereum_trades.sql deleted file mode 100644 index 425ef894a63..00000000000 --- a/models/oneinch/ethereum/zeroex/oneinch_zeroex_ethereum_trades.sql +++ /dev/null @@ -1,260 +0,0 @@ -{{ config( - - schema='oneinch_zeroex_ethereum', - alias = 'trades', - partition_by = ['block_month'], - on_schema_change='sync_all_columns', - file_format ='delta', - materialized='incremental', - incremental_strategy='merge', - unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'] - ) -}} - -{% set project_start_date = '2018-09-05' %} --for testing, use small subset of data -{% set burn_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} --according to etherscan label -{% set blockchain = 'ethereum' %} -{% set blockchain_symbol = 'ETH' %} - -WITH zeroex AS -( - SELECT - evt_block_number, - feeRecipientAddress, - takerAssetData, - makerAssetData, - makerAddress, - takerAddress, - makerAssetFilledAmount, - takerAssetFilledAmount, - contract_address, - evt_block_time, - evt_tx_hash, - evt_index - FROM - {{ source('zeroex_v2_ethereum', 'Exchange2_0_evt_Fill') }} - WHERE - feeRecipientAddress IN - ( - 0x910bf2d50fa5e014fd06666f456182d4ab7c8bd2 - ,0x68a17b587caf4f9329f0e372e3a78d23a46de6b5 - ) - {% if is_incremental() %} - AND evt_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND evt_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - evt_block_number, - feeRecipientAddress, - takerAssetData, - makerAssetData, - makerAddress, - takerAddress, - makerAssetFilledAmount, - takerAssetFilledAmount, - contract_address, - evt_block_time, - evt_tx_hash, - evt_index - FROM - {{ source('zeroex_v2_ethereum', 'Exchange2_1_evt_Fill') }} - WHERE - feeRecipientAddress IN - ( - 0x910bf2d50fa5e014fd06666f456182d4ab7c8bd2 - ,0x68a17b587caf4f9329f0e372e3a78d23a46de6b5 - ) - {% if is_incremental() %} - AND evt_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND evt_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - evt_block_number, - feeRecipientAddress, - takerAssetData, - makerAssetData, - makerAddress, - takerAddress, - makerAssetFilledAmount, - takerAssetFilledAmount, - contract_address, - evt_block_time, - evt_tx_hash, - evt_index - FROM - {{ source('zeroex_v3_ethereum', 'Exchange_evt_Fill') }} - WHERE - feeRecipientAddress IN - ( - 0x910bf2d50fa5e014fd06666f456182d4ab7c8bd2 - ,0x68a17b587caf4f9329f0e372e3a78d23a46de6b5 - ) - {% if is_incremental() %} - AND evt_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND evt_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} - - UNION ALL - - SELECT - evt_block_number, - feeRecipient, - takerToken, - makerToken, - maker, - taker, - makerTokenFilledAmount, - takerTokenFilledAmount, - contract_address, - evt_block_time, - evt_tx_hash, - evt_index - FROM - {{ source('zeroex_ethereum', 'ExchangeProxy_evt_LimitOrderFilled') }} - WHERE - feeRecipient IN - ( - 0x910bf2d50fa5e014fd06666f456182d4ab7c8bd2 - ,0x68a17b587caf4f9329f0e372e3a78d23a46de6b5 - ) - {% if is_incremental() %} - AND evt_block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND evt_block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -) -, oneinch AS -( - SELECT - evt_block_number as block_number, - evt_block_time as block_time, - '1inch' AS project, - 'ZRX' AS version, - takerAddress AS taker, - makerAddress AS maker, - takerAssetFilledAmount AS token_bought_amount_raw, - makerAssetFilledAmount AS token_sold_amount_raw, - CAST(NULL as double) AS amount_usd, - bytearray_ltrim(bytearray_substring(takerAssetData, 17, 20)) AS token_bought_address, - bytearray_ltrim(bytearray_substring(makerAssetData, 17, 20)) AS token_sold_address, - contract_address AS project_contract_address, - evt_tx_hash as tx_hash, - array[-1] as trace_address, - evt_index - FROM zeroex -) -SELECT - '{{blockchain}}' AS blockchain - ,src.project - ,src.version - ,CAST(date_trunc('day', src.block_time) as date) AS block_date - ,CAST(date_trunc('month', src.block_time) as date) AS block_month - ,src.block_time - ,src.block_number - ,token_bought.symbol AS token_bought_symbol - ,token_sold.symbol AS token_sold_symbol - ,case - when lower(token_bought.symbol) > lower(token_sold.symbol) then concat(token_sold.symbol, '-', token_bought.symbol) - else concat(token_bought.symbol, '-', token_sold.symbol) - end as token_pair - ,src.token_bought_amount_raw / power(10, token_bought.decimals) AS token_bought_amount - ,src.token_sold_amount_raw / power(10, token_sold.decimals) AS token_sold_amount - ,src.token_bought_amount_raw - ,src.token_sold_amount_raw - ,coalesce( - src.amount_usd - , (src.token_bought_amount_raw / power(10, - CASE - WHEN token_bought_address = {{burn_address}} - THEN 18 - ELSE prices_bought.decimals - END - ) - ) - * - ( - CASE - WHEN token_bought_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_bought.price - END - ) - , (src.token_sold_amount_raw / power(10, - CASE - WHEN token_sold_address = {{burn_address}} - THEN 18 - ELSE prices_sold.decimals - END - ) - ) - * - ( - CASE - WHEN token_sold_address = {{burn_address}} - THEN prices_eth.price - ELSE prices_sold.price - END - ) - ) AS amount_usd - ,src.token_bought_address - ,src.token_sold_address - ,coalesce(src.taker, tx."from") AS taker - ,src.maker - ,src.project_contract_address - ,src.tx_hash - ,tx."from" AS tx_from - ,tx.to AS tx_to - ,src.trace_address - ,src.evt_index -FROM - oneinch as src -INNER JOIN {{ source('ethereum', 'transactions') }} as tx - ON src.tx_hash = tx.hash - AND src.block_number = tx.block_number - {% if is_incremental() %} - AND tx.block_time >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND tx.block_time >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ ref('tokens_erc20') }} as token_bought - ON token_bought.contract_address = src.token_bought_address - AND token_bought.blockchain = '{{blockchain}}' -LEFT JOIN {{ ref('tokens_erc20') }} as token_sold - ON token_sold.contract_address = src.token_sold_address - AND token_sold.blockchain = '{{blockchain}}' -LEFT JOIN {{ source('prices', 'usd') }} as prices_bought - ON prices_bought.minute = date_trunc('minute', src.block_time) - AND prices_bought.contract_address = src.token_bought_address - AND prices_bought.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_bought.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_bought.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_sold - ON prices_sold.minute = date_trunc('minute', src.block_time) - AND prices_sold.contract_address = src.token_sold_address - AND prices_sold.blockchain = '{{blockchain}}' - {% if is_incremental() %} - AND prices_sold.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_sold.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} -LEFT JOIN {{ source('prices', 'usd') }} as prices_eth - ON prices_eth.minute = date_trunc('minute', src.block_time) - AND prices_eth.blockchain is null - AND prices_eth.symbol = '{{blockchain_symbol}}' - {% if is_incremental() %} - AND prices_eth.minute >= date_trunc('day', now() - interval '7' DAY) - {% else %} - AND prices_eth.minute >= TIMESTAMP '{{project_start_date}}' - {% endif %} \ No newline at end of file diff --git a/models/oneinch/fantom/oneinch_fantom_schema.yml b/models/oneinch/fantom/oneinch_fantom_schema.yml index b96f691ad63..3b161b05c79 100644 --- a/models/oneinch/fantom/oneinch_fantom_schema.yml +++ b/models/oneinch/fantom/oneinch_fantom_schema.yml @@ -93,26 +93,32 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -123,14 +129,10 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month - name: oneinch_fantom_ar meta: @@ -149,43 +151,47 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month + - name: remains + - name: minute + - name: block_month diff --git a/models/oneinch/gnosis/oneinch_gnosis_schema.yml b/models/oneinch/gnosis/oneinch_gnosis_schema.yml index b812a24674f..5fc307a0f9f 100644 --- a/models/oneinch/gnosis/oneinch_gnosis_schema.yml +++ b/models/oneinch/gnosis/oneinch_gnosis_schema.yml @@ -93,26 +93,32 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -123,14 +129,10 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month - name: oneinch_gnosis_ar meta: @@ -149,43 +151,47 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month + - name: remains + - name: minute + - name: block_month diff --git a/models/oneinch/oneinch_ar.sql b/models/oneinch/oneinch_ar.sql index 94374ca5538..9d9af4d2a80 100644 --- a/models/oneinch/oneinch_ar.sql +++ b/models/oneinch/oneinch_ar.sql @@ -26,6 +26,45 @@ {% for blockchain in blockchains %} - select * from {{ ref('oneinch_' + blockchain + '_ar') }} + select + blockchain + , block_number + , block_time + , tx_hash + , tx_from + , tx_to + , tx_success + , tx_nonce + , gas_price + , priority_fee_per_gas + , contract_name + , protocol + , protocol_version + , method + , call_selector + , call_trace_address + , call_from + , call_to + , call_success + , call_gas_used + , call_output + , call_error + , src_receiver + , dst_receiver + , src_token_address + , dst_token_address + , src_amount -- will be removed soon + , dst_amount -- will be removed soon + , dst_amount_min -- will be removed soon + , src_amount as src_token_amount + , dst_amount as dst_token_amount + , dst_amount_min as dst_token_amount_min + , ordinary + , pools + , router_type + , remains + , minute + , block_month + from {{ ref('oneinch_' + blockchain + '_ar') }} {% if not loop.last %} union all {% endif %} {% endfor %} \ No newline at end of file diff --git a/models/oneinch/oneinch_ar_trades.sql b/models/oneinch/oneinch_ar_trades.sql new file mode 100644 index 00000000000..04e13cd57a5 --- /dev/null +++ b/models/oneinch/oneinch_ar_trades.sql @@ -0,0 +1,157 @@ +{{ + config( + schema = 'oneinch', + alias = 'ar_trades', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + partition_by = ['block_month'], + unique_key = ['blockchain', 'tx_hash', 'trace_address'] + ) +}} + + + +{% set native_addresses = '(0x0000000000000000000000000000000000000000, 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee)' %} +{% set true_native_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} + + + +with + +prices as ( + select + blockchain + , contract_address + , minute + , price + , decimals + , symbol + from {{ source('prices', 'usd') }} + {% if is_incremental() %} + where {{ incremental_predicate('minute') }} + {% endif %} +) + +, tokens_src as ( + select + blockchain + , contract_address src_token_address + , symbol src_token_symbol + , decimals src_decimals + from {{ ref('tokens_erc20') }} +) + +, tokens_dst as ( + select + blockchain + , contract_address dst_token_address + , symbol dst_token_symbol + , decimals dst_decimals + from {{ ref('tokens_erc20') }} +) + +, _calls as ( + -- AR calls + select + blockchain + , tx_hash + , call_trace_address + , protocol_version + , tx_from as user + , if(src_token_address in {{native_addresses}}, wrapped_native_token_address, src_token_address) as src_token_address + , if(src_token_address in {{native_addresses}}, native_token_symbol) as src_native + , src_amount + , if(dst_token_address in {{native_addresses}}, wrapped_native_token_address, dst_token_address) as dst_token_address + , if(dst_token_address in {{native_addresses}}, native_token_symbol) as dst_native + , dst_amount + , minute + from {{ ref('oneinch_ar') }} + join {{ ref('evms_info') }} using(blockchain) + where + tx_success + and call_success + {% if is_incremental() %} + and {{ incremental_predicate('block_time') }} + {% endif %} +) + +, calls as ( + select * from _calls + left join tokens_src using(blockchain, src_token_address) + left join tokens_dst using(blockchain, dst_token_address) +) + +, trades as ( + select + blockchain + , tx_hash + , call_trace_address + , block_time + , minute + , tx_from + , tx_to + , protocol_version + , call_to + , user + , any_value(if(src_native is null, src_token_address, {{true_native_address}})) filter(where contract_address = src_token_address) as src_token_address + , any_value(if(dst_native is null, dst_token_address, {{true_native_address}})) filter(where contract_address = dst_token_address) as dst_token_address + , max(amount) filter(where contract_address = src_token_address and amount <= src_amount) as src_amount + , max(amount) filter(where contract_address = dst_token_address and amount <= dst_amount) as dst_amount + , max(cast(amount as double) / pow(10, src_decimals)) filter(where contract_address = src_token_address and amount <= src_amount) as src_amount_decimals + , max(cast(amount as double) / pow(10, dst_decimals)) filter(where contract_address = dst_token_address and amount <= dst_amount) as dst_amount_decimals + , any_value(coalesce(src_native, src_token_symbol)) filter(where contract_address = src_token_address) as src_token_symbol + , any_value(coalesce(dst_native, dst_token_symbol)) filter(where contract_address = dst_token_address) as dst_token_symbol + , max(amount * price / pow(10, decimals)) filter(where contract_address = src_token_address and amount <= src_amount or contract_address = dst_token_address and amount <= dst_amount) as sources_amount_usd + , max(amount * price / pow(10, decimals)) as transfers_amount_usd + from ( + select + blockchain + , tx_hash + , call_trace_address + , block_time + , tx_from + , tx_to + , contract_address + , call_from + , call_to + , minute + , amount + from {{ ref('oneinch_calls_transfers_amounts') }} + {% if is_incremental() %} + where {{ incremental_predicate('block_time') }} + {% endif %} + ) + join calls using(blockchain, tx_hash, call_trace_address, minute) + left join prices using(blockchain, contract_address, minute) + group by 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 +) + + + +select + blockchain + , '1inch' as project + , 'AR v' || protocol_version as version + , date_trunc('day', block_time) as block_date + , date(date_trunc('month', block_time)) as block_month + , block_time + , coalesce(dst_token_symbol, '') as token_bought_symbol + , coalesce(src_token_symbol, '') as token_sold_symbol + , array_join(array_sort(array[coalesce(src_token_symbol, ''), coalesce(dst_token_symbol, '')]), '-') as token_pair + , dst_amount_decimals as token_bought_amount + , src_amount_decimals as token_sold_amount + , dst_amount as token_bought_amount_raw + , src_amount as token_sold_amount_raw + , coalesce(sources_amount_usd, transfers_amount_usd) as amount_usd + , dst_token_address as token_bought_address + , src_token_address as token_sold_address + , user as taker + , cast(null as varbinary) as maker + , call_to as project_contract_address + , tx_hash + , tx_from + , tx_to + , call_trace_address as trace_address + , -1 as evt_index +from trades diff --git a/models/oneinch/oneinch_lop.sql b/models/oneinch/oneinch_lop.sql index 193e01e8cfc..ed369e3bd33 100644 --- a/models/oneinch/oneinch_lop.sql +++ b/models/oneinch/oneinch_lop.sql @@ -26,6 +26,39 @@ {% for blockchain in blockchains %} - select * from {{ ref('oneinch_' + blockchain + '_lop') }} + select + blockchain + , block_number + , block_time + , tx_hash + , tx_from + , tx_to + , tx_success + , tx_nonce + , gas_price + , priority_fee_per_gas + , contract_name + , protocol + , protocol_version + , method + , call_selector + , call_trace_address + , call_from + , call_to + , call_success + , call_gas_used + , call_output + , call_error + , maker + , receiver + , maker_asset + , making_amount + , taker_asset + , taking_amount + , order_hash + , remains + , minute + , block_month + from {{ ref('oneinch_' + blockchain + '_lop') }} {% if not loop.last %} union all {% endif %} {% endfor %} \ No newline at end of file diff --git a/models/oneinch/oneinch_schema.yml b/models/oneinch/oneinch_schema.yml index 0a1c5da3624..dca662854e9 100644 --- a/models/oneinch/oneinch_schema.yml +++ b/models/oneinch/oneinch_schema.yml @@ -388,9 +388,10 @@ models: name: receiver - *signature + - name: oneinch_lop meta: - blockchain: ['ethereum','bnb','polygon','arbitrum','avalanche_c','gnosis','optimism','fantom','base','zksync'] + blockchain: ['ethereum', 'bnb', 'polygon', 'arbitrum', 'avalanche_c', 'gnosis', 'optimism', 'fantom', 'base'] sector: oneinch contributors: ['max-morrow', 'grkhr'] config: @@ -405,21 +406,29 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - &protocol_version - name: protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -430,13 +439,9 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute + - name: order_hash + - name: remains + - name: minute - *block_month_not_null - name: oneinch_lop_own_trades @@ -456,12 +461,12 @@ models: - evt_index columns: - *blockchain_not_null - - *project - - *version + - name: project + - name: version - &block_date name: block_date - *block_month_not_null - - *block_time + - name: block_time - &token_bought_symbol name: token_bought_symbol - &token_sold_symbol @@ -482,19 +487,19 @@ models: name: token_bought_address - &token_sold_address name: token_sold_address - - *taker - - *maker + - name: taker + - name: maker - &project_contract_address name: project_contract_address - *tx_hash_not_null - - *tx_from - - *tx_to + - name: tx_from + - name: tx_to - &evt_index name: evt_index - name: oneinch_ar meta: - blockchain: ['ethereum','bnb','polygon','arbitrum','avalanche_c','gnosis','optimism','fantom','base','zksync'] + blockchain: ['ethereum', 'bnb', 'polygon', 'arbitrum', 'avalanche_c', 'gnosis', 'optimism', 'fantom', 'base'] sector: oneinch contributors: ['max-morrow', 'grkhr'] config: @@ -509,42 +514,150 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: src_token_address + - name: dst_token_address - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month_not_null \ No newline at end of file + - name: remains + - name: minute + - *block_month_not_null + + - name: oneinch_swaps + meta: + blockchain: ['ethereum','bnb','polygon','arbitrum','avalanche_c','gnosis','optimism','fantom','base','zksync'] + sector: oneinch + contributors: ['max-morrow', 'grkhr'] + config: + tags: ['oneinch', 'swaps'] + description: > + 1inch swaps + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - call_trace_address + - second_side + columns: + - *blockchain_not_null + - *tx_hash_not_null + - *call_trace_address_not_null + - name: block_time + - name: minute + - name: tx_from + - name: tx_to + - name: call_from + - name: call_to + - name: contract_name + - *protocol_not_null + - name: protocol_version + - name: method + - &user + name: user + - name: receiver + - &fusion + name: fusion + - &contracts_only + name: contracts_only + - &second_side + name: second_side + - name: remains + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount + - &src_token_symbol + name: src_token_symbol + - &dst_token_symbol + name: dst_token_symbol + - &usd_amount + name: usd_amount + - &sources_usd_amount + name: sources_usd_amount + - &transfers_usd_amount + name: transfers_usd_amount + - &transfers + name: transfers + - &explorer_link + name: explorer_link + - *block_month_not_null + + + - name: oneinch_ar_trades + meta: + blockchain: ['ethereum','bnb','polygon','arbitrum','avalanche_c','gnosis','optimism','fantom','base','zksync'] + sector: oneinch + contributors: ['max-morrow', 'grkhr'] + config: + tags: ['oneinch', 'ar', 'trades'] + description: > + 1inch aggregation router trades + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - trace_address + columns: + - *blockchain_not_null + - name: project + - name: version + - name: block_date + - *block_month_not_null + - name: block_time + - name: token_bought_symbol + - name: token_sold_symbol + - name: token_pair + - name: token_bought_amount + - name: token_sold_amount + - name: token_bought_amount_raw + - name: token_sold_amount_raw + - name: amount_usd + - name: token_bought_address + - name: token_sold_address + - name: taker + - name: maker + - name: project_contract_address + - *tx_hash_not_null + - name: tx_from + - name: tx_to + - &trace_address + name: trace_address + - name: evt_index + diff --git a/models/oneinch/oneinch_swaps.sql b/models/oneinch/oneinch_swaps.sql new file mode 100644 index 00000000000..5f195d2fd91 --- /dev/null +++ b/models/oneinch/oneinch_swaps.sql @@ -0,0 +1,262 @@ +{{ + config( + schema = 'oneinch', + alias = 'swaps', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + partition_by = ['block_month'], + unique_key = ['blockchain', 'tx_hash', 'call_trace_address', 'second_side'], + post_hook='{{ expose_spells(\'["ethereum", "polygon", "bnb", "avalanche_c", "gnosis", "fantom", "optimism", "arbitrum", "base"]\', + "project", + "oneinch", + \'["grkhr", "max-morrow"]\') }}' + ) +}} + + + +{% set native_addresses = '(0x0000000000000000000000000000000000000000, 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee)' %} +{% set true_native_address = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' %} + + + +with + +settlements as ( + select + blockchain + , contract_address as call_from + , true as fusion + from {{ ref('oneinch_fusion_settlements') }} +) + +, prices as ( + select + blockchain + , contract_address + , minute + , price + , decimals + , symbol + from {{ source('prices', 'usd') }} + {% if is_incremental() %} + where {{ incremental_predicate('minute') }} + {% endif %} +) + +, tokens_src as ( + select + blockchain + , contract_address src_token_address + , symbol src_token_symbol + , decimals src_decimals + from {{ ref('tokens_erc20') }} +) + +, tokens_dst as ( + select + blockchain + , contract_address dst_token_address + , symbol dst_token_symbol + , decimals dst_decimals + from {{ ref('tokens_erc20') }} +) + +, _calls as ( + -- AR calls + select + blockchain + , tx_hash + , call_trace_address + , contract_name + , 'AR' as protocol + , protocol_version + , method + , tx_from as user + , dst_receiver as receiver + , if(src_token_address in {{native_addresses}}, wrapped_native_token_address, src_token_address) as src_token_address + , if(src_token_address in {{native_addresses}}, native_token_symbol) as src_native + , src_amount + , if(dst_token_address in {{native_addresses}}, wrapped_native_token_address, dst_token_address) as dst_token_address + , if(dst_token_address in {{native_addresses}}, native_token_symbol) as dst_native + , dst_amount + , false as fusion + , false as contracts_only + , false as second_side + , explorer_link + , minute + from {{ ref('oneinch_ar') }} + join {{ ref('evms_info') }} using(blockchain) + where + tx_success + and call_success + {% if is_incremental() %} + and {{ incremental_predicate('block_time') }} + {% endif %} + + + union all + -- LOP calls - first side (when a direct call LOP method => users from two sides) + select + blockchain + , tx_hash + , call_trace_address + , contract_name + , 'LOP' as protocol + , protocol_version + , method + , maker as user + , receiver + , if(maker_asset in {{native_addresses}}, wrapped_native_token_address, maker_asset) as src_token_address + , if(maker_asset in {{native_addresses}}, native_token_symbol) as src_native + , making_amount as src_amount + , if(taker_asset in {{native_addresses}}, wrapped_native_token_address, taker_asset) as dst_token_address + , if(taker_asset in {{native_addresses}}, native_token_symbol) as dst_native + , taking_amount as dst_amount + , coalesce(fusion, false) as fusion + , position('RFQ' in method) > 0 as contracts_only + , false as second_side + , explorer_link + , minute + from {{ ref('oneinch_lop') }} + join {{ ref('evms_info') }} using(blockchain) + left join settlements using(blockchain, call_from) + where + tx_success + and call_success + {% if is_incremental() %} + and {{ incremental_predicate('block_time') }} + {% endif %} + + + union all + -- LOP calls - second side (when a direct call LOP method => users from two sides) + select + blockchain + , tx_hash + , call_trace_address + , contract_name + , 'LOP' as protocol + , protocol_version + , method + , tx_from as user + , receiver + , if(taker_asset in {{native_addresses}}, wrapped_native_token_address, taker_asset) as src_token_address + , if(taker_asset in {{native_addresses}}, native_token_symbol) as src_native + , taking_amount as src_amount + , if(maker_asset in {{native_addresses}}, wrapped_native_token_address, maker_asset) as dst_token_address + , if(maker_asset in {{native_addresses}}, native_token_symbol) as dst_native + , making_amount as dst_amount + , false as fusion + , false as contracts_only + , true as second_side + , explorer_link + , minute + from {{ ref('oneinch_lop') }} + join {{ ref('evms_info') }} using(blockchain) + where + tx_success + and call_success + and cardinality(call_trace_address) = 0 + {% if is_incremental() %} + and {{ incremental_predicate('block_time') }} + {% endif %} +) + +, calls as ( + select * from _calls + left join tokens_src using(blockchain, src_token_address) + left join tokens_dst using(blockchain, dst_token_address) +) + +, swaps as ( + select + blockchain + , tx_hash + , call_trace_address + , block_time + , minute + , tx_from + , tx_to + , call_from + , call_to + , contract_name + , protocol + , protocol_version + , method + , user + , receiver + , fusion + , contracts_only + , second_side + , call_remains as remains + , any_value(explorer_link) as explorer_link + , any_value(if(src_native is null, src_token_address, {{true_native_address}})) filter(where contract_address = src_token_address) as src_token_address + , any_value(if(dst_native is null, dst_token_address, {{true_native_address}})) filter(where contract_address = dst_token_address) as dst_token_address + , max(amount) filter(where contract_address = src_token_address and amount <= src_amount) as src_amount + , max(amount) filter(where contract_address = dst_token_address and amount <= dst_amount) as dst_amount + , any_value(coalesce(src_native, src_token_symbol)) filter(where contract_address = src_token_address) as src_token_symbol + , any_value(coalesce(dst_native, dst_token_symbol)) filter(where contract_address = dst_token_address) as dst_token_symbol + , max(amount * price / pow(10, decimals)) filter(where contract_address = src_token_address and amount <= src_amount or contract_address = dst_token_address and amount <= dst_amount) as sources_amount_usd + , max(amount * price / pow(10, decimals)) as transfers_amount_usd + , count(*) as transfers + from ( + select + blockchain + , tx_hash + , call_trace_address + , block_time + , tx_from + , tx_to + , call_from + , call_to + , contract_address + , minute + , amount + , call_remains + from {{ ref('oneinch_calls_transfers_amounts') }} + {% if is_incremental() %} + where {{ incremental_predicate('block_time') }} + {% endif %} + ) + join calls using(blockchain, tx_hash, call_trace_address, minute) + left join prices using(blockchain, contract_address, minute) + group by 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 +) + + + +select + blockchain + , tx_hash + , call_trace_address + , block_time + , minute + , tx_from + , tx_to + , call_from + , call_to + , contract_name + , protocol + , protocol_version + , method + , user + , receiver + , fusion + , contracts_only + , second_side + , remains + , src_token_address + , dst_token_address + , src_amount + , dst_amount + , src_token_symbol + , dst_token_symbol + , coalesce(sources_amount_usd, transfers_amount_usd) as amount_usd + , sources_amount_usd + , transfers_amount_usd + , transfers + , explorer_link + , date(date_trunc('month', block_time)) as block_month +from swaps \ No newline at end of file diff --git a/models/oneinch/optimism/oneinch_optimism_schema.yml b/models/oneinch/optimism/oneinch_optimism_schema.yml index 2ca6488c60e..09ff0732d5b 100644 --- a/models/oneinch/optimism/oneinch_optimism_schema.yml +++ b/models/oneinch/optimism/oneinch_optimism_schema.yml @@ -93,26 +93,32 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -123,14 +129,10 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month - name: oneinch_optimism_ar meta: @@ -149,43 +151,47 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month + - name: remains + - name: minute + - name: block_month diff --git a/models/oneinch/polygon/oneinch_polygon_schema.yml b/models/oneinch/polygon/oneinch_polygon_schema.yml index 9a17702726b..6cb128f3ea6 100644 --- a/models/oneinch/polygon/oneinch_polygon_schema.yml +++ b/models/oneinch/polygon/oneinch_polygon_schema.yml @@ -93,26 +93,32 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -123,14 +129,10 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month - name: oneinch_polygon_ar meta: @@ -149,43 +151,47 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - *contract_name - - *protocol_version - - *method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - *call_trace_address_not_null - - *call_selector - - &src_token_address - name: src_token_address - - &dst_token_address - name: dst_token_address + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error - &src_receiver name: src_receiver - &dst_receiver name: dst_receiver - - &src_amount - name: src_amount - - &dst_amount - name: dst_amount + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount - &dst_amount_min name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min - &ordinary name: ordinary - &pools name: pools - &router_type name: router_type - - *call_success - - *call_gas_used - - &remains - name: remains - - *call_output - - *minute - - *block_month + - name: remains + - name: minute + - name: block_month diff --git a/models/oneinch/zksync/oneinch_zksync_ar.sql b/models/oneinch/zksync/oneinch_zksync_ar.sql new file mode 100644 index 00000000000..7646ef33af4 --- /dev/null +++ b/models/oneinch/zksync/oneinch_zksync_ar.sql @@ -0,0 +1,23 @@ +{% set blockchain = 'zksync' %} + + + +{{ + config( + schema = 'oneinch_' + blockchain, + alias = 'ar', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['blockchain', 'tx_hash', 'call_trace_address'] + ) +}} + + + +{{ + oneinch_ar_macro( + blockchain = blockchain + ) +}} \ No newline at end of file diff --git a/models/oneinch/zksync/oneinch_zksync_schema.yml b/models/oneinch/zksync/oneinch_zksync_schema.yml index 7bbbb100daf..ebb62ce3113 100644 --- a/models/oneinch/zksync/oneinch_zksync_schema.yml +++ b/models/oneinch/zksync/oneinch_zksync_schema.yml @@ -93,26 +93,32 @@ models: - call_trace_address columns: - *blockchain_not_null - - *block_time + - name: block_number + - name: block_time - *tx_hash_not_null - - *tx_from - - *tx_to - - *tx_success - - &contract_name - name: contract_name - - &protocol_version - name: protocol_version - - &method - name: method - - *call_from - - *call_to + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector - &call_trace_address_not_null name: call_trace_address tests: - not_null - - *call_selector - - &maker - name: maker + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - name: maker + - name: receiver - &maker_asset name: maker_asset - &making_amount @@ -123,12 +129,69 @@ models: name: taker_asset - &taking_amount name: taking_amount - - &order_hash - name: order_hash - - *call_success - - &call_gas_used - name: call_gas_used - - *call_output - - *minute - - *block_month + - name: order_hash + - name: remains + - name: minute + - name: block_month + + - name: oneinch_zksync_ar + meta: + blockchain: ['zksync'] + sector: oneinch + contributors: ['max-morrow', 'grkhr'] + config: + tags: ['oneinch', 'ar', 'calls'] + description: > + 1inch aggregation router calls + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - blockchain + - tx_hash + - call_trace_address + columns: + - *blockchain_not_null + - name: block_number + - name: block_time + - *tx_hash_not_null + - name: tx_from + - name: tx_to + - name: tx_success + - name: tx_nonce + - name: gas_price + - name: priority_fee_per_gas + - name: contract_name + - name: protocol + - name: protocol_version + - name: method + - name: call_selector + - *call_trace_address_not_null + - name: call_from + - name: call_to + - name: call_success + - name: call_gas_used + - name: call_output + - name: call_error + - &src_receiver + name: src_receiver + - &dst_receiver + name: dst_receiver + - name: src_token_address + - name: dst_token_address + - name: src_amount + - name: dst_amount + - &dst_amount_min + name: dst_amount_min + - name: src_token_amount + - name: dst_token_amount + - name: dst_token_amount_min + - &ordinary + name: ordinary + - &pools + name: pools + - &router_type + name: router_type + - name: remains + - name: minute + - name: block_month diff --git a/models/oneinch/zksync/oneinch_zksync_sources.yml b/models/oneinch/zksync/oneinch_zksync_sources.yml index d4176724805..79452e549d5 100644 --- a/models/oneinch/zksync/oneinch_zksync_sources.yml +++ b/models/oneinch/zksync/oneinch_zksync_sources.yml @@ -2,7 +2,7 @@ version: 2 sources: - name: oneinch_zksync - description: "decoded events and function calls for 1inch on zksync" + description: "decoded events and function calls for 1inch on ethereum" freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -11,6 +11,8 @@ sources: loaded_at_field: call_block_time - name: AggregationRouterV5_call_unoswap loaded_at_field: call_block_time + - name: AggregationRouterV5_call_unoswapTo + loaded_at_field: call_block_time - name: AggregationRouterV5_call_unoswapToWithPermit loaded_at_field: call_block_time - name: AggregationRouterV5_call_uniswapV3Swap diff --git a/models/op/op_chains/op_chains_optimism_chain_list.sql b/models/op/op_chains/op_chains_optimism_chain_list.sql index aebe674b99e..66d491ba1ec 100644 --- a/models/op/op_chains/op_chains_optimism_chain_list.sql +++ b/models/op/op_chains/op_chains_optimism_chain_list.sql @@ -2,23 +2,33 @@ schema = 'op_chains' , alias = 'chain_list' , unique_key = ['blockchain', 'chain_id'] - , post_hook='{{ expose_spells(\'["optimism"]\', + , post_hook='{{ expose_spells(\'["optimism","base","zora"]\', "project", "op_chains", \'["msilb7"]\') }}' ) }} -SELECT - lower(blockchain) AS blockchain, - blockchain_name, - chain_id, - cast(start_date AS date) AS start_date, - is_superchain +{% set op_chains = all_op_chains() %} --macro: all_op_chains.sql -FROM(values +WITH chain_names AS ( + {% for chain in op_chains %} + SELECT + '{{chain}}' AS chain_dune_name -- name of the chain's dune database + , 1 as is_superchain --op chains macro should only contain superchain chains (forks would be a different macro) + {% if not loop.last %} + UNION ALL + {% endif %} + {% endfor %} +) - ('optimism', 'Optimism Mainnet', 10, '2021-06-23', 1) - ,('base', 'Base Mainnet', NULL, NULL, 1) +SELECT + c.chain_dune_name as blockchain, + cast(i.name as varchar) as blockchain_name, + cast(i.chain_id as int) AS chain_id, + cast(i.first_block_time AS date) AS start_date, + c.is_superchain -) op (blockchain, blockchain_name, chain_id, start_date, is_superchain) \ No newline at end of file +FROM chain_names c + LEFT JOIN {{ ref('evms_info') }} i + ON i.blockchain = c.chain_dune_name \ No newline at end of file diff --git a/models/op/optimism/op_optimism_airdrop_1_claims.sql b/models/op/optimism/op_optimism_airdrop_1_claims.sql index c3a10251969..c34bddf6046 100644 --- a/models/op/optimism/op_optimism_airdrop_1_claims.sql +++ b/models/op/optimism/op_optimism_airdrop_1_claims.sql @@ -7,7 +7,7 @@ file_format = 'delta', incremental_strategy = 'merge', unique_key = ['recipient', 'tx_hash', 'evt_index'], - post_hook='{{ expose_spells(\'["optimsm"]\', + post_hook='{{ expose_spells(\'["optimism"]\', "project", "airdrop", \'["hildobby"]\') }}' diff --git a/models/orca_whirlpool/orca_whirlpool_trades.sql b/models/orca_whirlpool/orca_whirlpool_trades.sql index b9d20a1b019..57026cf1778 100644 --- a/models/orca_whirlpool/orca_whirlpool_trades.sql +++ b/models/orca_whirlpool/orca_whirlpool_trades.sql @@ -19,21 +19,51 @@ with whirlpools as ( - with - fee_updates as ( + with + fee_tiers_defaults as ( + --the fee tier has defaults that can be changed. Once the pool is initialized, the fee tier is set to the default fee tier. SELECT - ip.account_whirlpool as whirlpool_id - , ip.call_block_time as update_time - , fee.defaultFeeRate as fee_tier --https://docs.orca.so/reference/trading-fees, should track protocol fees too. and rewards. - FROM {{ source('whirlpool_solana', 'whirlpool_call_initializePool') }} ip - LEFT JOIN {{ source('whirlpool_solana', 'whirlpool_call_initializeFeeTier') }} fee ON ip.account_feeTier = fee.account_feeTier + account_feeTier as fee_tier + , defaultfeeRate as fee_rate + , call_block_time as fee_time + FROM {{ source('whirlpool_solana', 'whirlpool_call_initializeFeeTier') }} + + UNION ALL + + SELECT + account_feeTier as fee_tier + , defaultfeeRate as fee_rate + , call_block_time as fee_time + FROM {{ source('whirlpool_solana', 'whirlpool_call_setDefaultFeeRate') }} + ) + + --https://docs.orca.so/reference/trading-fees, should track protocol fees too. and rewards. + , fee_updates as ( + SELECT + whirlpool_id + , update_time + , fee_rate + FROM ( + --get defaultFeeRate at time of pool init based on account_feeTier + SELECT + fi.account_whirlpool as whirlpool_id + , fi.call_block_time as update_time + , fi.account_feeTier as fee_tier + , ftd.fee_time + , ftd.fee_rate + , row_number() over (partition by fi.account_whirlpool order by ftd.fee_time desc) as recent_update + FROM {{ source('whirlpool_solana', 'whirlpool_call_initializePool') }} fi + LEFT JOIN fee_tiers_defaults ftd ON ftd.fee_tier = account_feeTier AND ftd.fee_time <= fi.call_block_time + ) + WHERE recent_update = 1 UNION all - SELECT + --after being initialized, the fee rate can be set manually using setFeeRate on the pool (does not update with defaultFeeRate) + SELECT account_whirlpool as whirlpool_id , call_block_time as update_time - , feeRate as fee_tier + , feeRate as fee_rate FROM {{ source('whirlpool_solana', 'whirlpool_call_setFeeRate') }} ) @@ -49,7 +79,7 @@ with , ip.tickSpacing , ip.account_whirlpool as whirlpool_id , fu.update_time - , fu.fee_tier + , fu.fee_rate , ip.call_tx_id as init_tx FROM {{ source('whirlpool_solana', 'whirlpool_call_initializePool') }} ip LEFT JOIN fee_updates fu ON fu.whirlpool_id = ip.account_whirlpool @@ -112,7 +142,7 @@ with end as token_sold_symbol , tr_1.amount as token_sold_amount_raw , tr_1.amount/pow(10,case when tk_1.token_mint_address = wp.tokenA then wp.tokenA_decimals else tokenB_decimals end) as token_sold_amount - , wp.fee_tier + , wp.fee_rate , wp.whirlpool_id , sp.call_tx_signer as trader_id , sp.call_tx_id as tx_id @@ -190,9 +220,8 @@ with AND tr_2.call_block_time >= TIMESTAMP '{{project_start_date}}' {% endif %} LEFT JOIN {{ ref('solana_utils_token_accounts') }} tk_1 ON tk_1.address = tr_1.account_destination - ) - + SELECT tb.blockchain , tb.project @@ -208,8 +237,8 @@ SELECT , tb.token_sold_amount , tb.token_sold_amount_raw , COALESCE(tb.token_sold_amount * p_sold.price, tb.token_bought_amount * p_bought.price) as amount_usd - , cast(tb.fee_tier as double)/1000000 as fee_tier - , cast(tb.fee_tier as double)/1000000 * COALESCE(tb.token_sold_amount * p_sold.price, tb.token_bought_amount * p_bought.price) as fee_usd + , cast(tb.fee_rate as double)/1000000 as fee_tier + , cast(tb.fee_rate as double)/1000000 * COALESCE(tb.token_sold_amount * p_sold.price, tb.token_bought_amount * p_bought.price) as fee_usd , tb.token_sold_mint_address , tb.token_bought_mint_address , tb.token_sold_vault @@ -221,8 +250,7 @@ SELECT , tb.inner_instruction_index , tb.tx_index , recent_update -FROM - ( +FROM ( SELECT * , row_number() OVER (partition by tx_id, outer_instruction_index, inner_instruction_index, tx_index order by update_time desc) as recent_update diff --git a/models/orca_whirlpool/orca_whirlpool_trades_sources.yml b/models/orca_whirlpool/orca_whirlpool_trades_sources.yml index 3dddf256ad0..1f571724131 100644 --- a/models/orca_whirlpool/orca_whirlpool_trades_sources.yml +++ b/models/orca_whirlpool/orca_whirlpool_trades_sources.yml @@ -9,19 +9,13 @@ sources: tables: - name: whirlpool_call_initializePool loaded_at_field: call_block_time - - name: whirlpool_call_initializeFeeTier - loaded_at_field: call_block_time - name: whirlpool_call_setFeeRate loaded_at_field: call_block_time - name: whirlpool_call_swap loaded_at_field: call_block_time - name: whirlpool_call_twoHopSwap loaded_at_field: call_block_time - - name: spl_token_solana - description: "spl_token decoded tables" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: spl_token_call_transfer + - name: whirlpool_call_initializeFeeTier + loaded_at_field: call_block_time + - name: whirlpool_call_setDefaultFeeRate loaded_at_field: call_block_time \ No newline at end of file diff --git a/models/pancakeswap/arbitrum/pancakeswap_arbitrum_sources.yml b/models/pancakeswap/arbitrum/pancakeswap_arbitrum_sources.yml deleted file mode 100644 index 3b0b9724773..00000000000 --- a/models/pancakeswap/arbitrum/pancakeswap_arbitrum_sources.yml +++ /dev/null @@ -1,132 +0,0 @@ -version: 2 - -sources: - - name: pancakeswap_v2_arbitrum - description: > - arbitrum decoded tables related to Pancakeswap v2 contract - tables: - - name: PancakePair_evt_Swap - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: > - Pancake swap v2 trades event table - columns: - - &contract_address - name: contract_address - description: "arbitrum address for the liquidity pool used in transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - &sender - name: sender - - &to - name: to - - - name: PancakeFactory_evt_PairCreated - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: > - Pancake swap v2 trading pair created event table - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - description: "Pair contract address" - - &token0 - name: token0 - description: "Token0 contract address" - - &token1 - name: token1 - description: "Token1 contract address" - - - name: pancakeswap_v3_arbitrum - description: > - arbitrum decoded tables related to Pancakeswap v3 contract - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: PancakeV3Pool_evt_Swap - loaded_at_field: evt_block_time - description: > - Pancakeswap v3 pair swap events table - columns: - - &amount0 - name: amount0 - description: "The delta of the token0 balance of the pool" - - &amount1 - name: amount1 - description: "The delta of the token1 balance of the pool" - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &liquidity - name: liquidity - description: "The liquidity of the pool after the swap" - - &protocolFeesToken0 - name: protocolFeesToken0 - - &protocolFeesToken1 - name: protocolFeesToken1 - - &recipient - name: recipient - description: "The address that received the output of the swap" - - *sender - - &sqrtPriceX96 - name: sqrtPriceX96 - description: "the sqt(price) of the pool after the swap" - - &tick - name: tick - description: "the log base 1.0001 of price of the pool after the swap" - - - name: PancakeV3Factory_evt_PoolCreated - loaded_at_field: evt_block_time - description: > - Pancakeswap v3 Factory PoolCreated events table - columns: - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &fee - name: fee - description: "The pools fee in hundredths of a bip i.e. 1e-6" - - &pool - name: pool - description: "arbitrum address for the liquidity pool created" - - &tickSpacing - name: tickSpacing - description: "The pool tick spacing. Ticks can only be used at multiples of this value, minimum of 1 and always positive" - - *token0 - - *token1 - - - diff --git a/models/pancakeswap/base/pancakeswap_base_sources.yml b/models/pancakeswap/base/pancakeswap_base_sources.yml deleted file mode 100644 index 0f9f5201e43..00000000000 --- a/models/pancakeswap/base/pancakeswap_base_sources.yml +++ /dev/null @@ -1,132 +0,0 @@ -version: 2 - -sources: - - name: pancakeswap_v2_base - description: > - base decoded tables related to Pancakeswap v2 contract - tables: - - name: PancakePair_evt_Swap - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: > - Pancake swap v2 trades event table - columns: - - &contract_address - name: contract_address - description: "base address for the liquidity pool used in transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - &sender - name: sender - - &to - name: to - - - name: PancakeFactory_evt_PairCreated - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: > - Pancake swap v2 trading pair created event table - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - description: "Pair contract address" - - &token0 - name: token0 - description: "Token0 contract address" - - &token1 - name: token1 - description: "Token1 contract address" - - - name: pancakeswap_v3_base - description: > - base decoded tables related to Pancakeswap v3 contract - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: PancakeV3Pool_evt_Swap - loaded_at_field: evt_block_time - description: > - Pancakeswap v3 pair swap events table - columns: - - &amount0 - name: amount0 - description: "The delta of the token0 balance of the pool" - - &amount1 - name: amount1 - description: "The delta of the token1 balance of the pool" - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &liquidity - name: liquidity - description: "The liquidity of the pool after the swap" - - &protocolFeesToken0 - name: protocolFeesToken0 - - &protocolFeesToken1 - name: protocolFeesToken1 - - &recipient - name: recipient - description: "The address that received the output of the swap" - - *sender - - &sqrtPriceX96 - name: sqrtPriceX96 - description: "the sqt(price) of the pool after the swap" - - &tick - name: tick - description: "the log base 1.0001 of price of the pool after the swap" - - - name: PancakeV3Factory_evt_PoolCreated - loaded_at_field: evt_block_time - description: > - Pancakeswap v3 Factory PoolCreated events table - columns: - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &fee - name: fee - description: "The pools fee in hundredths of a bip i.e. 1e-6" - - &pool - name: pool - description: "base address for the liquidity pool created" - - &tickSpacing - name: tickSpacing - description: "The pool tick spacing. Ticks can only be used at multiples of this value, minimum of 1 and always positive" - - *token0 - - *token1 - - - diff --git a/models/pancakeswap/bnb/pancakeswap_bnb_sources.yml b/models/pancakeswap/bnb/pancakeswap_bnb_sources.yml deleted file mode 100644 index a2d37a1fc32..00000000000 --- a/models/pancakeswap/bnb/pancakeswap_bnb_sources.yml +++ /dev/null @@ -1,133 +0,0 @@ -version: 2 - -sources: - - name: pancakeswap_v2_bnb - description: > - BNB chain decoded tables related to Pancakeswap v2 contract - tables: - - name: PancakePair_evt_Swap - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: > - Pancakeswap v2 trades event table - columns: - - &contract_address - name: contract_address - description: "BNB smart chain address for the liquidity pool used in transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - &sender - name: sender - - &to - name: to - - - name: PancakeFactory_evt_PairCreated - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: > - Pancakeswap v2 trading pair created event table - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - description: "Pair contract address" - - &token0 - name: token0 - description: "Token0 contract address" - - &token1 - name: token1 - description: "Token1 contract address" - - name: PancakeSwapMMPool_evt_Swap - - name: PancakeStableSwap_evt_TokenExchange - - name: PancakeStableSwapTwoPool_evt_TokenExchange - - name: PancakeStableSwapFactory_evt_NewStableSwapPair - - - name: pancakeswap_v3_bnb - description: "BNB chain decoded tables related to Pancakeswap v3 contract" - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: PancakeV3Pool_evt_Swap - loaded_at_field: evt_block_time - description: > - Pancakeswap v3 pair swap events table - columns: - - &amount0 - name: amount0 - description: "The delta of the token0 balance of the pool" - - &amount1 - name: amount1 - description: "The delta of the token1 balance of the pool" - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &liquidity - name: liquidity - description: "The liquidity of the pool after the swap" - - &protocolFeesToken0 - name: protocolFeesToken0 - - &protocolFeesToken1 - name: protocolFeesToken1 - - &recipient - name: recipient - description: "The address that received the output of the swap" - - *sender - - &sqrtPriceX96 - name: sqrtPriceX96 - description: "the sqt(price) of the pool after the swap" - - &tick - name: tick - description: "the log base 1.0001 of price of the pool after the swap" - - - name: PancakeV3Factory_evt_PoolCreated - loaded_at_field: evt_block_time - description: > - Pancakeswap v3 Factory PoolCreated events table - columns: - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &fee - name: fee - description: "The pools fee in hundredths of a bip i.e. 1e-6" - - &pool - name: pool - description: "BNB chain address for the liquidity pool created" - - &tickSpacing - name: tickSpacing - description: "The pool tick spacing. Ticks can only be used at multiples of this value, minimum of 1 and always positive" - - *token0 - - *token1 - diff --git a/models/pancakeswap/ethereum/pancakeswap_ethereum_sources.yml b/models/pancakeswap/ethereum/pancakeswap_ethereum_sources.yml deleted file mode 100644 index 1325fe6bb73..00000000000 --- a/models/pancakeswap/ethereum/pancakeswap_ethereum_sources.yml +++ /dev/null @@ -1,133 +0,0 @@ -version: 2 - -sources: - - name: pancakeswap_v2_ethereum - description: > - Ethereum decoded tables related to Pancakeswap v2 contract - tables: - - name: PancakePair_evt_Swap - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: > - Pancake swap v2 trades event table - columns: - - &contract_address - name: contract_address - description: "ethereum address for the liquidity pool used in transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - &sender - name: sender - - &to - name: to - - - name: PancakeFactory_evt_PairCreated - freshness: - warn_after: { count: 12, period: hour } - loaded_at_field: evt_block_time - description: > - Pancake swap v2 trading pair created event table - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - description: "Pair contract address" - - &token0 - name: token0 - description: "Token0 contract address" - - &token1 - name: token1 - description: "Token1 contract address" - - name: PancakeSwapMMPool_evt_Swap - - - name: pancakeswap_v3_ethereum - description: > - Ethereum decoded tables related to Pancakeswap v3 contract - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: PancakeV3Pool_evt_Swap - loaded_at_field: evt_block_time - description: > - Pancakeswap v3 pair swap events table - columns: - - &amount0 - name: amount0 - description: "The delta of the token0 balance of the pool" - - &amount1 - name: amount1 - description: "The delta of the token1 balance of the pool" - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &liquidity - name: liquidity - description: "The liquidity of the pool after the swap" - - &protocolFeesToken0 - name: protocolFeesToken0 - - &protocolFeesToken1 - name: protocolFeesToken1 - - &recipient - name: recipient - description: "The address that received the output of the swap" - - *sender - - &sqrtPriceX96 - name: sqrtPriceX96 - description: "the sqt(price) of the pool after the swap" - - &tick - name: tick - description: "the log base 1.0001 of price of the pool after the swap" - - - name: PancakeV3Factory_evt_PoolCreated - loaded_at_field: evt_block_time - description: > - Pancakeswap v3 Factory PoolCreated events table - columns: - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &fee - name: fee - description: "The pools fee in hundredths of a bip i.e. 1e-6" - - &pool - name: pool - description: "Ethereum address for the liquidity pool created" - - &tickSpacing - name: tickSpacing - description: "The pool tick spacing. Ticks can only be used at multiples of this value, minimum of 1 and always positive" - - *token0 - - *token1 - - - diff --git a/models/prices/avalanche_c/prices_avalanche_c_tokens.sql b/models/prices/avalanche_c/prices_avalanche_c_tokens.sql index 87cb37530ad..9bf26cdd452 100644 --- a/models/prices/avalanche_c/prices_avalanche_c_tokens.sql +++ b/models/prices/avalanche_c/prices_avalanche_c_tokens.sql @@ -31,8 +31,8 @@ FROM ('weth-weth', 'avalanche_c', 'WETH.e', 0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab, 18), ('btcb-bitcoin-avalanche-bridged-btcb', 'avalanche_c', 'BTC.b', 0x152b9d0fdc40c096757f570a51e494bd4b943e50,8), ('woo-wootrade', 'avalanche_c', 'WOO.e', 0xabc9547b534519ff73921b1fba6e672b5f58d083, 18), - ('usdte-tether-usde', 'avalanche_c', 'USDT.e', 0xc7198437980c041c805a1edcba50c1ce5db95118, 6), - ('usdce-usd-coine', 'avalanche_c', 'USDC.e', 0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664, 6), + ('usdt-tether', 'avalanche_c', 'USDT.e', 0xc7198437980c041c805a1edcba50c1ce5db95118, 6), + ('usdc-usd-coin', 'avalanche_c', 'USDC.e', 0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664, 6), ('savax-benqi-liquid-staked-avax', 'avalanche_c', 'sAVAX', 0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be, 18), ('mimatic-mimatic', 'avalanche_c', 'MIMATIC', 0x3b55e45fd6bd7d4724f5c47e0d1bcaedd059263e, 18), ('mim-magic-internet-money','avalanche_c','MIM',0x130966628846bfd36ff31a822705796e8cb8c18d,18), diff --git a/models/prices/bnb/prices_bnb_tokens.sql b/models/prices/bnb/prices_bnb_tokens.sql index 57877518369..e0ca675c541 100644 --- a/models/prices/bnb/prices_bnb_tokens.sql +++ b/models/prices/bnb/prices_bnb_tokens.sql @@ -203,7 +203,8 @@ FROM ('ankrbnb-ankr-staked-bnb', 'bnb', 'ankrBNB', 0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827, 18), ('joyg-kismet-joy-gold', 'bnb', 'JOYG', 0xe63c37e50a045c247b5003e24ba066f1cc3f0ff3, 8), ('gft-galaxy-finance', 'bnb', 'GFT', 0xe77932b1216125848e82c3967e75698362168f99, 18), - ('snbnb-synclub-staked-bnb', 'bnb', 'SnBNB', 0xb0b84d294e0c75a6abe60171b70edeb2efd14a1b, 18) + ('snbnb-synclub-staked-bnb', 'bnb', 'SnBNB', 0xb0b84d294e0c75a6abe60171b70edeb2efd14a1b, 18), + ('gmt-stepn', 'bnb', 'GMT', 0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1, 8) ) as temp (token_id, blockchain, symbol, contract_address, decimals) where contract_address not in ( 0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e -- bXEN has bad price feed. diff --git a/models/prices/ethereum/prices_ethereum_tokens.sql b/models/prices/ethereum/prices_ethereum_tokens.sql index 637034d3ce3..0e0c5aefa20 100644 --- a/models/prices/ethereum/prices_ethereum_tokens.sql +++ b/models/prices/ethereum/prices_ethereum_tokens.sql @@ -257,7 +257,6 @@ FROM ('nkn-nkn', 'ethereum', 'NKN', 0x5cf04716ba20127f1e2297addcf4b5035000c9eb, 18), ('nmr-numeraire', 'ethereum', 'NMR', 0x1776e1f26f98b1a5df9cd347953a26dd3cb46671, 18), ('noah-noah-coin', 'ethereum', 'NOAH', 0x58a4884182d9e835597f405e5f258290e46ae7c2, 18), - ('npxs-pundi-x', 'ethereum', 'NPXS', 0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3, 18), ('nrg-energi', 'ethereum', 'NRG', 0x1416946162b1c2c871a73b07e932d2fb6c932069, 18), ('ntvrk-netvrk', 'ethereum', 'NTVRK', 0xfc0d6cf33e38bce7ca7d89c0e292274031b7157a, 18), ('ntx-nunet', 'ethereum', 'NTX', 0xf0d33beda4d734c72684b5f9abbebf715d0a7935, 6), @@ -1161,7 +1160,8 @@ FROM ('equad-quadrantprotocol', 'ethereum', 'EQUAD', 0xc28e931814725bbeb9e670676fabbcb694fe7df2, 18), ('fnk-fnkcom', 'ethereum', 'FNK', 0xb5fe099475d3030dde498c3bb6f3854f762a48ad, 18), ('fyz-fyooz', 'ethereum', 'FYZ', 0x6bff2fe249601ed0db3a87424a2e923118bb0312, 18), - ('gmt-gomining-token', 'ethereum', 'GMT', 0x7ddc52c4de30e94be3a6a0a2b259b2850f421989, 18), + ('gmt-gomining-token', 'ethereum', 'GMT', 0x7ddc52c4de30e94be3a6a0a2b259b2850f421989, 18), + ('gmt-stepn', 'ethereum', 'GMT', 0xe3c408bd53c31c085a1746af401a4042954ff740, 8), ('hbot-hummingbot', 'ethereum', 'HBOT', 0xe5097d9baeafb89f9bcb78c9290d545db5f9e9cb, 18), ('lead-lead', 'ethereum', 'LEAD', 0x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce, 18), ('mage-metabrands', 'ethereum', 'MAGE', 0xd52aae39a2b5cc7812f7b9450ebb61dfef702b15, 18), @@ -1271,7 +1271,6 @@ FROM ('ousd-origin-dollar', 'ethereum', 'OUSD', 0x2a8e1e676ec238d8a992307b495b45b3feaa5e86, 18), ('pin-public-index-network', 'ethereum', 'PIN', 0xc1f976b91217e240885536af8b63bc8b5269a9be, 18), ('quad-quadency', 'ethereum', 'QUAD', 0xab2a7b5876d707e0126b3a75ef7781c77c8877ee, 18), - ('ram-ramifi-protocol', 'ethereum', 'RAM', 0xac6fe9aa6b996d15f23e2e9a384fe64607bba7d5, 9), ('rem-remme', 'ethereum', 'REM', 0x83984d6142934bb535793a82adb0a46ef0f66b6d, 4), ('rice-daosquare', 'ethereum', 'RICE', 0xbd9908b0cdd50386f92efcc8e1d71766c2782df0, 18), ('roobee-roobee', 'ethereum', 'ROOBEE', 0xa31b1767e09f842ecfd4bc471fe44f830e3891aa, 18), @@ -1507,6 +1506,7 @@ FROM ('hachi-akita-dao', 'ethereum', 'HACHI', 0x967B0c95295ead8fAef70d26A7846AeCD349AAFf, 18), ('auscm-auric-network', 'ethereum', 'AUSCM', 0x1c7BBADc81E18F7177A95eb1593e5f5f35861B10, 18), ('gear-bitgear', 'ethereum', 'GEAR', 0x1b980e05943dE3dB3a459C72325338d327B6F5a9, 18), + ('gear-gearbox', 'ethereum', 'GEAR', 0xBa3335588D9403515223F109EdC4eB7269a9Ab5D, 18), ('myth-mythos', 'ethereum', 'MYTH', 0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003, 18), ('oddz-oddztoken-erc-20', 'ethereum', 'ODDZ', 0xCd2828fc4D8E8a0eDe91bB38CF64B1a81De65Bf6, 18), ('umbr-umbria-network', 'ethereum', 'UMBR', 0xa4bBE66f151B22B167127c770016b15fF97Dd35C, 18), @@ -1534,7 +1534,6 @@ FROM ('ldn-ludena-protocol', 'ethereum', 'LDN', 0xb29663Aa4E2e81e425294193616c1B102B70a158, 18), ('sdex-smardex', 'ethereum', 'SDEX', 0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF, 18), ('bzz-bzz', 'ethereum', 'BZZ', 0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb, 16), - ('dobe-dobermann', 'ethereum', 'DOBE', 0xe7aB45162f5979F09B0bDa1CC7DfC97C270EA3d5, 18), ('k9-k9', 'ethereum', 'K9', 0x2bD0FB740e403B505A3146F9aC02df883Fd5C3Fc, 18), ('mne-minereum', 'ethereum', 'MNE', 0x426CA1eA2406c07d75Db9585F22781c096e3d0E0, 8), ('ptoy-patientory', 'ethereum', 'PTOY', 0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06, 8), @@ -1646,4 +1645,7 @@ where contract_address not in ( ,0x22acaee85ddb83a3a33b7f0928a0e2c3bfdb6a4f -- PRXY ,0xe94b97b6b43639e238c851a7e693f50033efd75c -- RNBW ,0x6aa40d02115090d40dc33c7c5f3cf05112fa4f83 -- PWRC + ,0xe7ab45162f5979f09b0bda1cc7dfc97c270ea3d5 -- DOBE + ,0xac6fe9aa6b996d15f23e2e9a384fe64607bba7d5 -- RAM + ,0xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3 -- NPXS ) diff --git a/models/prices/optimism/prices_optimism_tokens_curated.sql b/models/prices/optimism/prices_optimism_tokens_curated.sql index 9621c35fa4a..bfad48b5acc 100644 --- a/models/prices/optimism/prices_optimism_tokens_curated.sql +++ b/models/prices/optimism/prices_optimism_tokens_curated.sql @@ -62,7 +62,7 @@ FROM -- ('socks-unisocks', 'SOCKS', 0x514832a97f0b440567055a73fe03aa160017b990,18), -- ('NULL', 'MAI', 0xdfa46478f9e5ea86d57387849598dbfb2e964b02,18), -- ('NULL', 'QI', 0x3f56e0c36d275367b8c502090edf38289b3dea0d,18), - -- ('NULL', 'VELO', 0x3c8b650257cfb5f272f799f5e2b4e65093a11a05,18), + ('velo-velodrome-finance', 'VELO', 0x9560e827af36c94d2ac33a39bce1fe78631088db,18), ('bal-balancer', 'BAL', 0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921,18), ('alusd-alchemixusd', 'alUSD', 0xcb8fa9a76b8e203d8c3797bf438d8fb81ea3326a,18), ('aleth-alchemix-eth', 'alETH', 0x3e29d3a9316dab217754d13b28646b76607c5f04,18), diff --git a/models/prices/polygon/prices_polygon_tokens.sql b/models/prices/polygon/prices_polygon_tokens.sql index e6919da3c7d..b10db6cfc5c 100644 --- a/models/prices/polygon/prices_polygon_tokens.sql +++ b/models/prices/polygon/prices_polygon_tokens.sql @@ -32,7 +32,7 @@ FROM ('wbtc-wrapped-bitcoin', 'polygon', 'WBTC', 0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6, 8), ('bets-betswirl', 'polygon', 'BETS', 0x9246a5f10a79a5a939b0c2a75a3ad196aafdb43b, 18), ('eth-ethereum', 'polygon', 'WETH', 0x7ceb23fd6bc0add59e62ac25578270cff1b9f619, 18), - ('wmatic-wrapped-matic-wormhole', 'polygon', 'WMATIC', 0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270, 18), + ('matic-polygon', 'polygon', 'WMATIC', 0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270, 18), ('link-chainlink', 'polygon', 'LINK', 0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39, 18), ('ghst-aavegotchi', 'polygon', 'GHST', 0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7, 18), ('gltr-gax-liquidity-token-reward', 'polygon', 'GLTR', 0x3801C3B3B5c98F88a9c9005966AA96aa440B9Afc, 18), @@ -84,5 +84,8 @@ FROM ('pla-playdapp','polygon','PLA',0x8765f05adce126d70bcdf1b0a48db573316662eb,18), ('comp-compoundd', 'polygon', 'COMP', 0x8505b9d2254a7ae468c0e9dd10ccea3a837aef5c,18), ('voxel-voxies','polygon','VOXEL',0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F,18), - ('gtc-gitcoin', 'polygon', 'GTC', 0x3d93f3bc2cb79c31b4df652cd332d84d16317889,18) + ('gtc-gitcoin', 'polygon', 'GTC', 0x3d93f3bc2cb79c31b4df652cd332d84d16317889,18), + ('gmt-stepn', 'polygon', 'GMT', 0x714db550b574b3e927af3d93e26127d15721d4c2,8), + ('tel-telcoin', 'polygon', 'TEL', 0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32,2), + ('mana-decentraland', 'polygon', 'MANA', 0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4,18) ) as temp (token_id, blockchain, symbol, contract_address, decimals) diff --git a/models/prices/solana/prices_solana_tokens.sql b/models/prices/solana/prices_solana_tokens.sql index ccbe6f70881..2f0edc8f69a 100644 --- a/models/prices/solana/prices_solana_tokens.sql +++ b/models/prices/solana/prices_solana_tokens.sql @@ -17,7 +17,7 @@ FROM VALUES ('ftt-ftx-token','solana','FTT','AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3',6), ('forge-blocksmith-labs-forge','solana','FORGE','FoRGERiW7odcCBGU1bztZi16osPBHjxharvDathL5eds',9), - ('gmt-stepn','solana','STEPN-GMT','7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx',9), + ('gmt-stepn','solana','GMT','7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx',9), ('bonk-bonk','solana','BONK','DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263',5), ('rlb-rollbit-coin','solana','RLB','RLBxxFkseAZ4RgJH3Sqn8jXxhmGoz9jWxDNJMh8pL7a',6), ('orca-orca','solana','ORCA','orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE',6), @@ -42,6 +42,7 @@ FROM ('sol-solana', 'solana', 'SOL', 'So11111111111111111111111111111111111111112', 9), ('ust-terrausd', 'solana', 'USTC', '9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i', 6), ('usdc-usd-coin', 'solana', 'USDC', 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v', 6), - ('usdt-tether', 'solana', 'USDT', 'Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB', 6) + ('usdt-tether', 'solana', 'USDT', 'Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB', 6), + ('pyth-pyth-network', 'solana', 'PYTH', 'HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3', 6) ) as temp (token_id, blockchain, symbol, contract_address, decimals) diff --git a/models/quickswap/polygon/quickswap_polygon_sources.yml b/models/quickswap/polygon/quickswap_polygon_sources.yml deleted file mode 100644 index 94eedb52a4b..00000000000 --- a/models/quickswap/polygon/quickswap_polygon_sources.yml +++ /dev/null @@ -1,110 +0,0 @@ -version: 2 - -sources: - - name: quickswap_v3_polygon - description: "Polygon decoded tables related to QuickSwap v3 contract" - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: AlgebraPool_evt_Swap - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &amount1 - name: amount1 - description: "The delta of the token1 balance of the pool" - - &amount0 - name: amount0 - description: "The delta of the token0 balance of the pool" - - &contract_address - name: contract_address - description: "Polygon address for the liquidity pool used in transaction" - - &evt_block_number - name: evt_block_number - description: "Block number which processed the unique transaction hash" - - &evt_block_time - name: evt_block_time - description: "Timestamp for block event time in UTC" - - &evt_index - name: evt_index - description: "Index value of the transaction" - - &evt_tx_hash - name: evt_tx_hash - description: "Primary key of the transaction" - tests: - - not_null - - &liquidity - name: liquidity - description: "The liquidity of the pool after the swap" - - &price - name: sqrtPriceX96 - description: the sqt(price) of the pool after the swap" - - &recipient - name: recipient - description: "The address that received the output of the swap" - - &sender - name: sender - description: "The address that initiated the swap call" - - &tick - name: tick - description: the log base 1.0001 of price of the pool after the swap" - - name: AlgebraFactory_evt_Pool - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - name: contract_address - description: "The contract that deployed the pool" - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &token0 - name: token0 - description: "The first of the two tokens in the pool" - - &token1 - name: token1 - description: "The second of the two tokens in the pool" - - &pool - name: pool - description: "Polygon address for the liquidity pool created" - - - name: quickswap_polygon - description: "Polygon decoded tables related to Quickswap v2 contract" - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: UniswapV2Pair_evt_Swap - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - *sender - - &to - name: to - - name: UniswapV2Factory_evt_PairCreated - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - - *token0 - - *token1 \ No newline at end of file diff --git a/models/rollup_economics/ethereum/l1_data_fees.sql b/models/rollup_economics/ethereum/l1_data_fees.sql index 618d1151f15..22ad2bcef92 100644 --- a/models/rollup_economics/ethereum/l1_data_fees.sql +++ b/models/rollup_economics/ethereum/l1_data_fees.sql @@ -19,7 +19,9 @@ with tx_batch_appends as ( t.hash, (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, - length(t.data) as data_length + length(t.data) as data_length, + gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM ( SELECT @@ -99,7 +101,9 @@ with tx_batch_appends as ( t.hash, (cast(t.gas_used as double) * (cast(t.gas_price as double) / 1e18)) as gas_spent, p.price * (cast(t.gas_used as double) * (cast(t.gas_price as double) / 1e18)) as gas_spent_usd, - length(t.data) as data_length + length(t.data) as data_length, + t.gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM {{ source('ethereum','transactions') }} as t INNER JOIN ( @@ -110,7 +114,7 @@ with tx_batch_appends as ( MAX(CASE WHEN submitter_type = 'L2OutputOracle' AND role_type = 'from_address' THEN address ELSE NULL END) AS "l2_output_oracle_from_address", MAX(CASE WHEN submitter_type = 'L2OutputOracle' AND role_type = 'to_address' THEN address ELSE NULL END) AS "l2_output_oracle_to_address" FROM {{ ref('addresses_ethereum_l2_batch_submitters') }} - WHERE protocol_name IN ('OP Mainnet', 'Base', 'Public Goods Network', 'Zora Network', 'Aevo') + WHERE protocol_name IN ('OP Mainnet', 'Base', 'Public Goods Network', 'Zora', 'Aevo', 'Mode', 'Lyra', 'Orderly Network') GROUP BY protocol_name ) as op ON ( t."from" = op.l1_batch_inbox_from_address @@ -135,7 +139,9 @@ with tx_batch_appends as ( t.hash, (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, - (length(t.data)) AS input_length + (length(t.data)) AS data_length, + gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM {{ source('ethereum','transactions') }} AS t INNER JOIN {{ source('prices','usd') }} p ON p.minute = date_trunc('minute', t.block_time) @@ -157,7 +163,9 @@ with tx_batch_appends as ( t.hash, (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, - (length(t.data)) AS input_length + (length(t.data)) AS data_length, + gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM {{ source('ethereum','transactions') }} AS t INNER JOIN {{ source('prices','usd') }} p ON p.minute = date_trunc('minute', t.block_time) @@ -179,7 +187,9 @@ with tx_batch_appends as ( t.hash, (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, - (length(t.data)) AS input_length + (length(t.data)) AS data_length, + gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM {{ source('ethereum','transactions') }} AS t INNER JOIN {{ source('prices','usd') }} p ON p.minute = date_trunc('minute', t.block_time) @@ -204,18 +214,30 @@ with tx_batch_appends as ( t.hash, (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, - (length(t.data)) AS input_length + (length(t.data)) AS data_length, + gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM {{ source('ethereum','transactions') }} AS t INNER JOIN {{ source('prices','usd') }} p ON p.minute = date_trunc('minute', t.block_time) AND p.blockchain is null AND p.symbol = 'ETH' - AND t.to = 0x3dB52cE065f728011Ac6732222270b3F2360d919 -- ValidatorTimelock - AND - ( - cast(t.data as varchar) LIKE '0x0c4dd81%' -- Commit Block + AND ( + -- L1 transactions settle here pre-Boojum + t.to = 0x3dB52cE065f728011Ac6732222270b3F2360d919 + -- L1 transactions settle here post-Boojum + OR t.to = 0xa0425d71cB1D6fb80E65a5361a04096E0672De03 + ) + AND ( + -- L1 transactions use these method ID's pre-Boojum + bytearray_substring(t.data, 1, 4) = 0x0c4dd810 -- Commit Block OR - cast(t.data as varchar) LIKE '0xce9dcf16%' -- Execute Block + bytearray_substring(t.data, 1, 4) = 0xce9dcf16 -- Execute Block + OR + -- L1 transactions use these method ID's post-Boojum + bytearray_substring(t.data, 1, 4) = 0x701f58c5 -- Commit Batches + OR + bytearray_substring(t.data, 1, 4) = 0xc3d93e7c -- Execute Batches ) AND t.block_time >= timestamp '2023-03-01' {% if is_incremental() %} @@ -228,7 +250,9 @@ with tx_batch_appends as ( t.hash, (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, - (length(t.data)) AS input_length + (length(t.data)) AS data_length, + gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM {{ source('ethereum','transactions') }} AS t INNER JOIN {{ source('prices','usd') }} p ON p.minute = date_trunc('minute', t.block_time) @@ -241,6 +265,48 @@ with tx_batch_appends as ( AND t.block_time >= date_trunc('day', now() - interval '7' day) {% endif %} + UNION ALL SELECT + 'linea' AS chain, + t.block_number, + t.hash, + (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, + p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, + length(t.data) as data_length, + gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used + FROM {{ source('ethereum','transactions') }} AS t + INNER JOIN {{ source('prices','usd') }} p + ON p.minute = date_trunc('minute', t.block_time) + AND p.blockchain is null + AND p.symbol = 'ETH' + AND t.to = 0xd19d4B5d358258f05D7B411E21A1460D11B0876F + AND cast(t.data as varchar) LIKE '0x4165d6dd%' -- Finalize Blocks (unfortunately here the ZK proofs are also included which should rather go into table l1_verification_fees) + AND t.block_time >= timestamp '2023-07-12' + {% if is_incremental() %} + AND t.block_time >= date_trunc('day', now() - interval '7' day) + {% endif %} + + UNION ALL SELECT + 'scroll' AS chain, + t.block_number, + t.hash, + (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, + p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, + length(t.data) as data_length, + gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used + FROM {{ source('ethereum','transactions') }} AS t + INNER JOIN {{ source('prices','usd') }} p + ON p.minute = date_trunc('minute', t.block_time) + AND p.blockchain is null + AND p.symbol = 'ETH' + AND t.to = 0xa13BAF47339d63B743e7Da8741db5456DAc1E556 + AND cast(t.data as varchar) LIKE '0x1325aca0%' -- Commit Batch + AND t.block_time >= timestamp '2023-10-07' + {% if is_incremental() %} + AND t.block_time >= date_trunc('day', now() - interval '7' day) + {% endif %} + ) ,block_basefees as ( @@ -257,9 +323,12 @@ SELECT txs.name, txs.hash, bxs.time as block_time, +txs.block_number, txs.data_length, gas_spent, -gas_spent_usd +gas_spent_usd, +gas_used, +calldata_gas_used FROM tx_batch_appends txs INNER JOIN block_basefees bxs ON txs.block_number = bxs.block_number diff --git a/models/rollup_economics/ethereum/l1_verification_fees.sql b/models/rollup_economics/ethereum/l1_verification_fees.sql index 2c9cbf96ed2..57d090ee244 100644 --- a/models/rollup_economics/ethereum/l1_verification_fees.sql +++ b/models/rollup_economics/ethereum/l1_verification_fees.sql @@ -19,12 +19,25 @@ with verify_txns as ( t.hash, (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, - 1408 / cast(1024 AS double) / cast(1024 AS double) AS proof_size_mb + 1408 / cast(1024 AS double) / cast(1024 AS double) AS proof_size_mb, + t.gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM {{ source('ethereum','transactions') }} AS t INNER JOIN {{ source('prices','usd') }} p ON p.minute = date_trunc('minute', t.block_time) - AND t.to = 0x3dB52cE065f728011Ac6732222270b3F2360d919 -- ValidatorTimelock - AND cast(t.data as varchar) LIKE '0x7739cbe7%' -- Prove Block + AND ( + -- L1 transactions settle here pre-Boojum + t.to = 0x3dB52cE065f728011Ac6732222270b3F2360d919 + -- L1 transactions settle here post-Boojum + OR t.to = 0xa0425d71cB1D6fb80E65a5361a04096E0672De03 + ) + AND ( + -- L1 transactions use these method ID's pre-Boojum + bytearray_substring(t.data, 1, 4) = 0x7739cbe7 -- Prove Block + OR + -- L1 transactions use these method ID's post-Boojum + bytearray_substring(t.data, 1, 4) = 0x7f61885c -- Prove Batches + ) AND t.block_time >= timestamp '2023-03-01' AND p.blockchain is null AND p.symbol = 'ETH' @@ -38,7 +51,9 @@ with verify_txns as ( t.hash, (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, - 768 / cast(1024 AS double) / cast(1024 AS double) AS proof_size_mb + 768 / cast(1024 AS double) / cast(1024 AS double) AS proof_size_mb, + t.gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM {{ source('ethereum','transactions') }} AS t INNER JOIN {{ source('prices','usd') }} p ON p.minute = date_trunc('minute', t.block_time) @@ -57,7 +72,9 @@ with verify_txns as ( t.hash, (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, - 768 / cast(1024 AS double) / cast(1024 AS double) AS proof_size_mb + 768 / cast(1024 AS double) / cast(1024 AS double) AS proof_size_mb, + t.gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used FROM {{ source('ethereum','transactions') }} AS t INNER JOIN {{ source('prices','usd') }} p ON p.minute = date_trunc('minute', t.block_time) @@ -69,6 +86,27 @@ with verify_txns as ( {% if is_incremental() %} AND t.block_time >= date_trunc('day', now() - interval '7' day) {% endif %} + + UNION ALL SELECT + 'scroll' AS name, + t.block_number, + t.hash, + (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent, + p.price * (cast(gas_used as double) * (cast(gas_price as double) / 1e18)) as gas_spent_usd, + 768 / cast(1024 AS double) / cast(1024 AS double) AS proof_size_mb, + t.gas_used, + {{ evm_get_calldata_gas_from_data('t.data') }} AS calldata_gas_used + FROM {{ source('ethereum','transactions') }} AS t + INNER JOIN {{ source('prices','usd') }} p + ON p.minute = date_trunc('minute', t.block_time) + AND t.to = 0xa13BAF47339d63B743e7Da8741db5456DAc1E556 + AND cast(t.data as varchar) LIKE '0x31fa742d%' -- finalizeBatchWithProof + AND t.block_time >= timestamp '2023-10-07' + AND p.blockchain is null + AND p.symbol = 'ETH' + {% if is_incremental() %} + AND t.block_time >= date_trunc('day', now() - interval '7' day) + {% endif %} ) ,block_basefees as ( @@ -84,6 +122,7 @@ with verify_txns as ( SELECT txs.name, txs.hash, +txs.block_number, bxs.time as block_time, txs.proof_size_mb, gas_spent, diff --git a/models/rollup_economics/ethereum/l2_revenue.sql b/models/rollup_economics/ethereum/l2_revenue.sql index 6e912bd0bdc..8e3d9a5f789 100644 --- a/models/rollup_economics/ethereum/l2_revenue.sql +++ b/models/rollup_economics/ethereum/l2_revenue.sql @@ -151,4 +151,37 @@ WHERE {% else %} AND t.block_time >= timestamp '2022-01-01' {% endif %} +GROUP BY 1,2 + +UNION ALL + +SELECT + date_trunc('day', t.block_time) AS day + , 'zora' AS name + , SUM( + CASE WHEN cast(t.gas_price as double) = cast(0 as double) THEN 0 + ELSE (l1_fee + (cast(t.gas_used as double) * cast(t.gas_price as double))) /POWER(10,18) + END + ) AS l2_rev + , SUM( + p.price * + (CASE WHEN cast(t.gas_price as double) = cast(0 as double) THEN 0 + ELSE (l1_fee + (cast(t.gas_used as double) * cast(t.gas_price as double))) /POWER(10,18) + END) + ) AS l2_rev_usd +FROM {{ source('zora','transactions') }} t +INNER JOIN {{ source('prices','usd') }} p + ON p.minute = date_trunc('minute', t.block_time) + AND p.blockchain is null + AND p.symbol = 'ETH' + {% if is_incremental() %} + AND {{incremental_predicate('p.minute')}} + {% endif %} +WHERE + 1 = 1 + {% if is_incremental() %} + AND {{incremental_predicate('t.block_time')}} + {% else %} + AND t.block_time >= timestamp '2023-06-12' --when zora network launched + {% endif %} GROUP BY 1,2 \ No newline at end of file diff --git a/models/rollup_economics/ethereum/rollup_economics_ethereum_schema.yml b/models/rollup_economics/ethereum/rollup_economics_ethereum_schema.yml index 0f938fce8da..89cff9acc0a 100644 --- a/models/rollup_economics/ethereum/rollup_economics_ethereum_schema.yml +++ b/models/rollup_economics/ethereum/rollup_economics_ethereum_schema.yml @@ -25,6 +25,9 @@ models: - &block_time name: block_time description: "UTC event block time of the transaction" + - &block_number + name: block_number + description: "Block number of the transaction" - &data_length name: data_length description: "byte length of the data posted to l1" @@ -34,6 +37,12 @@ models: - &gas_spent_usd name: gas_spent_usd description: "fee paid to post data on L1 in usd" + - &gas_used + name: gas_used + description: "Gas units used by L1 Transactions" + - &calldata_gas_used + name: calldata_gas_used + description: "Gas units used by calldata (input data) by L1 Transactions" - name: l1_verification_fees meta: @@ -53,11 +62,14 @@ models: - *name - *hash - *block_time + - *block_number - &proof_size_mb name: proof_size_mb description: "size of proofs posted to l1 in MBs" - *gas_spent - *gas_spent_usd + - *gas_used + - *calldata_gas_used - name: l2_revenue meta: diff --git a/models/safe/arbitrum/safe_arbitrum_schema.yml b/models/safe/arbitrum/safe_arbitrum_schema.yml index 16cd3729adf..9ac9a33d97b 100644 --- a/models/safe/arbitrum/safe_arbitrum_schema.yml +++ b/models/safe/arbitrum/safe_arbitrum_schema.yml @@ -53,7 +53,7 @@ models: meta: blockchain: arbitrum project: safe - contributors: tschubotz + contributors: tschubotz, danielpartida freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -80,11 +80,14 @@ models: name: value description: "Value of transaction" - &gas - name: gas + name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/arbitrum/safe_arbitrum_transactions.sql b/models/safe/arbitrum/safe_arbitrum_transactions.sql index 0315dbc7b82..542d26b7a95 100644 --- a/models/safe/arbitrum/safe_arbitrum_transactions.sql +++ b/models/safe/arbitrum/safe_arbitrum_transactions.sql @@ -10,7 +10,7 @@ post_hook='{{ expose_spells(\'["arbitrum"]\', "project", "safe", - \'["tschubotz", "hosuke"]\') }}' + \'["tschubotz", "hosuke", "danielpartida"]\') }}' ) }} @@ -25,7 +25,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +46,9 @@ join {{ ref('safe_arbitrum_safes') }} s on s.address = tr."from" join {{ ref('safe_arbitrum_singletons') }} ss on tr.to = ss.address +join {{ source('arbitrum', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/avalanche_c/safe_avalanche_c_schema.yml b/models/safe/avalanche_c/safe_avalanche_c_schema.yml index fe9480eb72d..fc634ab715f 100644 --- a/models/safe/avalanche_c/safe_avalanche_c_schema.yml +++ b/models/safe/avalanche_c/safe_avalanche_c_schema.yml @@ -53,7 +53,7 @@ models: meta: blockchain: avalanche_c project: safe - contributors: tschubotz + contributors: tschubotz, danielpartida freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -82,9 +82,12 @@ models: - &gas name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/avalanche_c/safe_avalanche_c_transactions.sql b/models/safe/avalanche_c/safe_avalanche_c_transactions.sql index 19c5e6008de..feb336bf32e 100644 --- a/models/safe/avalanche_c/safe_avalanche_c_transactions.sql +++ b/models/safe/avalanche_c/safe_avalanche_c_transactions.sql @@ -10,7 +10,7 @@ post_hook='{{ expose_spells(\'["avalanche_c"]\', "project", "safe", - \'["tschubotz", "hosuke"]\') }}' + \'["tschubotz", "hosuke", "danielpartida"]\') }}' ) }} @@ -25,7 +25,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +46,9 @@ join {{ ref('safe_avalanche_c_safes') }} s on s.address = tr."from" join {{ ref('safe_avalanche_c_singletons') }} ss on tr.to = ss.address +join {{ source('avalanche_c', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/base/safe_base_schema.yml b/models/safe/base/safe_base_schema.yml index 09fcbb2aad1..94720419b24 100644 --- a/models/safe/base/safe_base_schema.yml +++ b/models/safe/base/safe_base_schema.yml @@ -113,9 +113,12 @@ models: - &gas name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/base/safe_base_transactions.sql b/models/safe/base/safe_base_transactions.sql index e979d66bd30..b9f842df6a2 100644 --- a/models/safe/base/safe_base_transactions.sql +++ b/models/safe/base/safe_base_transactions.sql @@ -25,7 +25,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +46,9 @@ join {{ ref('safe_base_safes') }} s on s.address = tr."from" join {{ ref('safe_base_singletons') }} ss on tr.to = ss.address +join {{ source('base', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/bnb/safe_bnb_schema.yml b/models/safe/bnb/safe_bnb_schema.yml index f9e7fcc7a47..1d3b64e19ba 100644 --- a/models/safe/bnb/safe_bnb_schema.yml +++ b/models/safe/bnb/safe_bnb_schema.yml @@ -53,7 +53,7 @@ models: meta: blockchain: bnb project: safe - contributors: tschubotz + contributors: tschubotz, danielpartida freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -82,9 +82,12 @@ models: - &gas name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/bnb/safe_bnb_transactions.sql b/models/safe/bnb/safe_bnb_transactions.sql index b2b783e1458..32fbcc99a86 100644 --- a/models/safe/bnb/safe_bnb_transactions.sql +++ b/models/safe/bnb/safe_bnb_transactions.sql @@ -10,7 +10,7 @@ post_hook='{{ expose_spells(\'["bnb"]\', "project", "safe", - \'["tschubotz", "hosuke"]\') }}' + \'["tschubotz", "hosuke", "danielpartida"]\') }}' ) }} @@ -25,7 +25,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +46,9 @@ join {{ ref('safe_bnb_safes') }} s on s.address = tr."from" join {{ ref('safe_bnb_singletons') }} ss on tr.to = ss.address +join {{ source('bnb', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/celo/safe_celo_schema.yml b/models/safe/celo/safe_celo_schema.yml index a4bfb224860..20e482e7d8f 100644 --- a/models/safe/celo/safe_celo_schema.yml +++ b/models/safe/celo/safe_celo_schema.yml @@ -82,9 +82,12 @@ models: - &gas name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/celo/safe_celo_transactions.sql b/models/safe/celo/safe_celo_transactions.sql index ed36fcdbb59..e060dd855b5 100644 --- a/models/safe/celo/safe_celo_transactions.sql +++ b/models/safe/celo/safe_celo_transactions.sql @@ -26,7 +26,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -46,6 +47,9 @@ join {{ ref('safe_celo_safes') }} s on s.address = tr."from" join {{ ref('safe_celo_singletons') }} ss on tr.to = ss.address +join {{ source('ethereum', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/ethereum/safe_ethereum_schema.yml b/models/safe/ethereum/safe_ethereum_schema.yml index 6e7905d19fc..c5925f1c373 100644 --- a/models/safe/ethereum/safe_ethereum_schema.yml +++ b/models/safe/ethereum/safe_ethereum_schema.yml @@ -92,7 +92,7 @@ models: meta: blockchain: ethereum project: safe - contributors: tschubotz + contributors: tschubotz, danielpartida freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -119,9 +119,12 @@ models: - &gas name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/ethereum/safe_ethereum_transactions.sql b/models/safe/ethereum/safe_ethereum_transactions.sql index de63de0a934..b3ed5440647 100644 --- a/models/safe/ethereum/safe_ethereum_transactions.sql +++ b/models/safe/ethereum/safe_ethereum_transactions.sql @@ -10,7 +10,7 @@ post_hook='{{ expose_spells(\'["ethereum"]\', "project", "safe", - \'["tschubotz", "hosuke"]\') }}' + \'["tschubotz", "hosuke", "danielpartida"]\') }}' ) }} @@ -25,7 +25,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +46,9 @@ join {{ ref('safe_ethereum_safes') }} s on s.address = tr."from" join {{ ref('safe_ethereum_singletons') }} ss on tr.to = ss.address +join {{ source('ethereum', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/fantom/safe_fantom_schema.yml b/models/safe/fantom/safe_fantom_schema.yml index c258f09a8b1..6b542490468 100644 --- a/models/safe/fantom/safe_fantom_schema.yml +++ b/models/safe/fantom/safe_fantom_schema.yml @@ -53,7 +53,7 @@ models: meta: blockchain: fantom project: safe - contributors: tschubotz + contributors: tschubotz, danielpartida freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -82,9 +82,12 @@ models: - &gas name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/fantom/safe_fantom_transactions.sql b/models/safe/fantom/safe_fantom_transactions.sql index e4b7a2d073d..f3b3978cf7f 100644 --- a/models/safe/fantom/safe_fantom_transactions.sql +++ b/models/safe/fantom/safe_fantom_transactions.sql @@ -10,7 +10,7 @@ post_hook='{{ expose_spells(\'["fantom"]\', "project", "safe", - \'["tschubotz", "hosuke"]\') }}' + \'["tschubotz", "hosuke", "danielpartida"]\') }}' ) }} @@ -25,7 +25,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +46,9 @@ join {{ ref('safe_fantom_safes') }} s on s.address = tr."from" join {{ ref('safe_fantom_singletons') }} ss on tr.to = ss.address +join {{ source('fantom', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/gnosis/safe_gnosis_schema.yml b/models/safe/gnosis/safe_gnosis_schema.yml index 3727308f646..9e837781015 100644 --- a/models/safe/gnosis/safe_gnosis_schema.yml +++ b/models/safe/gnosis/safe_gnosis_schema.yml @@ -53,7 +53,7 @@ models: meta: blockchain: gnosis project: safe - contributors: tschubotz + contributors: tschubotz, danielpartida freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -82,9 +82,12 @@ models: - &gas name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/gnosis/safe_gnosis_transactions.sql b/models/safe/gnosis/safe_gnosis_transactions.sql index 93a4741398b..2bcdcf51198 100644 --- a/models/safe/gnosis/safe_gnosis_transactions.sql +++ b/models/safe/gnosis/safe_gnosis_transactions.sql @@ -10,7 +10,7 @@ post_hook='{{ expose_spells(\'["gnosis"]\', "project", "safe", - \'["tschubotz", "hosuke"]\') }}' + \'["tschubotz", "hosuke", "danielpartida"]\') }}' ) }} @@ -26,6 +26,8 @@ select tr.value, tr.gas, tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +47,9 @@ join {{ ref('safe_gnosis_safes') }} s on s.address = tr."from" join {{ ref('safe_gnosis_singletons') }} ss on tr.to = ss.address +join {{ source('gnosis', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/goerli/safe_goerli_schema.yml b/models/safe/goerli/safe_goerli_schema.yml index 23d88876361..7ecb4a395dc 100644 --- a/models/safe/goerli/safe_goerli_schema.yml +++ b/models/safe/goerli/safe_goerli_schema.yml @@ -53,7 +53,7 @@ models: meta: blockchain: goerli project: safe - contributors: tschubotz + contributors: tschubotz, danielpartida freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -82,9 +82,12 @@ models: - &gas name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/goerli/safe_goerli_transactions.sql b/models/safe/goerli/safe_goerli_transactions.sql index 02a0d3133d3..9e0fc49da46 100644 --- a/models/safe/goerli/safe_goerli_transactions.sql +++ b/models/safe/goerli/safe_goerli_transactions.sql @@ -10,7 +10,7 @@ post_hook='{{ expose_spells(\'["goerli"]\', "project", "safe", - \'["tschubotz", "hosuke"]\') }}' + \'["tschubotz", "hosuke", "danielpartida"]\') }}' ) }} @@ -25,7 +25,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +46,9 @@ join {{ ref('safe_goerli_safes') }} s on s.address = tr."from" join {{ ref('safe_goerli_singletons') }} ss on tr.to = ss.address +join {{ source('goerli', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/optimism/safe_optimism_schema.yml b/models/safe/optimism/safe_optimism_schema.yml index 63c749a804b..acd175cf7e1 100644 --- a/models/safe/optimism/safe_optimism_schema.yml +++ b/models/safe/optimism/safe_optimism_schema.yml @@ -53,7 +53,7 @@ models: meta: blockchain: optimism project: safe - contributors: tschubotz + contributors: tschubotz, danielpartida freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -79,9 +79,12 @@ models: - &value name: value description: "Value of transaction" - - &gas - name: gas - description: "Gas limit set for transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &gas_used name: gas_used description: "Gas used during transaction" diff --git a/models/safe/optimism/safe_optimism_transactions.sql b/models/safe/optimism/safe_optimism_transactions.sql index 7b5f140c45f..0ed8cc2c8ef 100644 --- a/models/safe/optimism/safe_optimism_transactions.sql +++ b/models/safe/optimism/safe_optimism_transactions.sql @@ -10,7 +10,7 @@ post_hook='{{ expose_spells(\'["optimism"]\', "project", "safe", - \'["tschubotz", "hosuke"]\') }}' + \'["tschubotz", "hosuke", "danielpartida"]\') }}' ) }} @@ -25,7 +25,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +46,9 @@ join {{ ref('safe_optimism_safes') }} s on s.address = tr."from" join {{ ref('safe_optimism_singletons') }} ss on tr.to = ss.address +join {{ source('optimism', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/polygon/safe_polygon_schema.yml b/models/safe/polygon/safe_polygon_schema.yml index 26f908481a3..90001c7e587 100644 --- a/models/safe/polygon/safe_polygon_schema.yml +++ b/models/safe/polygon/safe_polygon_schema.yml @@ -92,7 +92,7 @@ models: meta: blockchain: polygon project: safe - contributors: tschubotz + contributors: tschubotz, danielpartida freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } @@ -121,9 +121,12 @@ models: - &gas name: gas description: "Gas limit set for transaction" - - &gas_used - name: gas_used - description: "Gas used during transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" - &tx_index name: tx_index description: "Transaction index" diff --git a/models/safe/polygon/safe_polygon_transactions.sql b/models/safe/polygon/safe_polygon_transactions.sql index eebb679b370..e111e121f29 100644 --- a/models/safe/polygon/safe_polygon_transactions.sql +++ b/models/safe/polygon/safe_polygon_transactions.sql @@ -10,7 +10,7 @@ post_hook='{{ expose_spells(\'["polygon"]\', "project", "safe", - \'["tschubotz", "hosuke"]\') }}' + \'["tschubotz", "hosuke", "danielpartida"]\') }}' ) }} @@ -25,7 +25,8 @@ select tr.to, tr.value, tr.gas, - tr.gas_used, + tr.gas_used as execution_gas_used, + et.gas_used as total_gas_used, tr.tx_index, tr.sub_traces, tr.trace_address, @@ -45,6 +46,9 @@ join {{ ref('safe_polygon_safes') }} s on s.address = tr."from" join {{ ref('safe_polygon_singletons') }} ss on tr.to = ss.address +join {{ source('polygon', 'transactions') }} et + on tr.tx_hash = et.hash + and tr.block_number = et.block_number where bytearray_substring(tr.input, 1, 4) in ( 0x6a761202, -- execTransaction 0x468721a7, -- execTransactionFromModule diff --git a/models/safe/safe_schema.yml b/models/safe/safe_schema.yml index 4d2d85e29de..b89d4636666 100644 --- a/models/safe/safe_schema.yml +++ b/models/safe/safe_schema.yml @@ -32,14 +32,14 @@ models: - name: safe_transactions_all meta: - blockchain: arbitrum, avalanche_c, base, bnb, celo, ethereum, fantom, gnosis, goerli, optimism, polygon + blockchain: arbitrum, avalanche_c, base, bnb, celo, ethereum, fantom, gnosis, goerli, optimism, polygon, zksync project: safe contributors: kryptaki freshness: warn_after: { count: 12, period: hour } error_after: { count: 24, period: hour } config: - tags: ['arbitrum', 'avalanche_c', 'bnb', 'celo','ethereum', 'fantom', 'gnosis', 'goerli', 'optimism', 'polygon', 'safe'] + tags: ['arbitrum', 'avalanche_c', 'bnb', 'celo','ethereum', 'fantom', 'gnosis', 'goerli', 'optimism', 'polygon', 'safe', 'zksync'] description: "Safe transactions" columns: - *blockchain diff --git a/models/safe/safe_transactions_all.sql b/models/safe/safe_transactions_all.sql index 058c29ea829..2c7c95158ec 100644 --- a/models/safe/safe_transactions_all.sql +++ b/models/safe/safe_transactions_all.sql @@ -1,7 +1,7 @@ {{ config( schema = 'safe', alias = 'transactions_all', - post_hook='{{ expose_spells(\'["arbitrum","avalanche_c","base","bnb","celo","ethereum","fantom","gnosis","goerli","optimism","polygon"]\', + post_hook='{{ expose_spells(\'["arbitrum","avalanche_c","base","bnb","celo","ethereum","fantom","gnosis","goerli","optimism","polygon","zksync"]\', "project", "safe", \'["kryptaki", "danielpartida"]\') }}' @@ -20,6 +20,7 @@ ,ref('safe_goerli_transactions') ,ref('safe_optimism_transactions') ,ref('safe_polygon_transactions') +,ref('safe_zksync_transactions') ] %} @@ -37,7 +38,8 @@ FROM ( to, value, gas, - gas_used, + execution_gas_used, + total_gas_used, tx_index, sub_traces, trace_address, diff --git a/models/safe/zksync/safe_zksync_eth_transfers.sql b/models/safe/zksync/safe_zksync_eth_transfers.sql index 570c70d5d58..3877d1873b1 100644 --- a/models/safe/zksync/safe_zksync_eth_transfers.sql +++ b/models/safe/zksync/safe_zksync_eth_transfers.sql @@ -15,12 +15,13 @@ ) }} + select t.*, p.price * t.amount_raw / 1e18 AS amount_usd from ( - select + select distinct --distinct to deduplicate traces that appear to be duplicates, with same trace address (just one has an extra 0 at the end) 'zksync' as blockchain, 'ETH' as symbol, s.address, @@ -29,7 +30,7 @@ from ( et.block_time, -CAST(et.value AS INT256) as amount_raw, et.tx_hash as tx_hash, --different to the tx hash in block explorer and zksync.transactions - array_join(et.trace_address, ',') as trace_address + case when element_at(trace_address, -1) = 0 then array_join(trim_array(trace_address, 1), ',') else array_join(et.trace_address, ',') end as trace_address from {{ source('zksync', 'traces') }} et join {{ ref('safe_zksync_safes') }} s on et."from" = s.address and et."from" != et.to -- exclude calls to self to guarantee unique key property @@ -46,7 +47,7 @@ from ( union all - select + select distinct --distinct to deduplicate traces that appear to be duplicates, with same trace address (just one has an extra 0 at the end) 'zksync' as blockchain, 'ETH' as symbol, s.address, @@ -55,7 +56,7 @@ from ( et.block_time, CAST(et.value AS INT256) as amount_raw, et.tx_hash as tx_hash, --different to the tx hash in block explorer and zksync.transactions - array_join(et.trace_address, ',') as trace_address + case when element_at(trace_address, -1) = 0 then array_join(trim_array(trace_address, 1), ',') else array_join(et.trace_address, ',') end as trace_address from {{ source('zksync', 'traces') }} et join {{ ref('safe_zksync_safes') }} s on et.to = s.address and et."from" != et.to -- exclude calls to self to guarantee unique key property diff --git a/models/safe/zksync/safe_zksync_schema.yml b/models/safe/zksync/safe_zksync_schema.yml index 124fa2b7a03..dc023775385 100644 --- a/models/safe/zksync/safe_zksync_schema.yml +++ b/models/safe/zksync/safe_zksync_schema.yml @@ -93,4 +93,75 @@ models: description: "Safe contract address" tests: - unique - - not_null \ No newline at end of file + - not_null + + - name: safe_zksync_transactions + meta: + blockchain: zksync + project: safe + contributors: kryptaki + freshness: + warn_after: { count: 12, period: hour } + error_after: { count: 24, period: hour } + config: + tags: ['safe', 'zksync'] + description: "Safe transactions" + columns: + - *blockchain + - *block_date + - *block_month + - *block_time + - &block_number + name: block_number + description: "Number of block" + - *tx_hash + - name: address + description: "Safe contract address" + - &to + name: to + description: "Null - should be singleton address" + - &value + name: value + description: "Value of transaction" + - &gas + name: gas + description: "Gas limit set for transaction" + - &execution_gas_used + name: execution_gas_used + description: "Execution gas used during transaction, for more details see https://dune.com/docs/data-tables/raw/evm/traces/?h=traces#gas-used-in-traces" + - &total_gas_used + name: total_gas_used + description: "Total gas used during transaction" + - &tx_index + name: tx_index + description: "Transaction index" + - &sub_traces + name: sub_traces + description: "Null - retrievable in traces" + - *trace_address + - &success + name: success + description: "Success state of transaction" + - &error + name: error + description: "Error of transaction if any" + - &code + name: code + description: "Code" + - &input + name: input + description: "Input data" + - &output + name: output + description: "Output data" + - &method + name: method + description: "Function method" + - &trace_tx_hash + name: trace_tx_hash + description: "Tx hash to retrieve traces" + - &unique_key + name: unique_key + description: unique row identifier + tests: + - unique diff --git a/models/safe/zksync/safe_zksync_transactions.sql b/models/safe/zksync/safe_zksync_transactions.sql new file mode 100644 index 00000000000..c09c1105f4f --- /dev/null +++ b/models/safe/zksync/safe_zksync_transactions.sql @@ -0,0 +1,106 @@ +{{ + config( + materialized='incremental', + schema = 'safe_zksync', + alias = 'transactions', + partition_by = ['block_month'], + file_format ='delta', + incremental_strategy='merge', + unique_key = ['unique_key'], + post_hook='{{ expose_spells(\'["zksync"]\', + "project", + "safe", + \'["kryptaki"]\') }}' + ) +}} + +--add missing columns, remove unneeded columns from traces + +with transactions as ( + select + 'zksync' as blockchain, + try_cast(date_trunc('day', t.block_time) as date) as block_date, + CAST(date_trunc('month', t.block_time) as DATE) as block_month, + t.block_time, + t.block_number, + t.hash as tx_hash, + s.address, + null as "to", --for other chains, this is the singleton address but on zksync this is the recipient address. Leaving this blank for now for consistency. + t.gas_used as total_gas_used, + t.index as tx_index, + t.success, + t.data as input, + null as "output", + case + when bytearray_substring(t.data, 1, 4) = 0x6a761202 then 'execTransaction' + else 'unknown' + end as method + from {{ source('zksync', 'transactions') }} t + join {{ ref('safe_zksync_safes') }} s + on s.address = t.to --zksync execTransactions recorded as tx "to" the Safe, not "from" + where + bytearray_substring(t.data, 1, 4) = 0x6a761202 -- execTransaction + and t.success = true + {% if not is_incremental() %} + and t.block_time > TIMESTAMP '2023-09-01' -- for initial query optimisation + {% endif %} + {% if is_incremental() %} + and t.block_time > date_trunc('day', now() - interval '7' day) + {% endif %} +), + +traces as ( +select + tr.block_number, + tr.tx_hash, + s.address, + tr.value, + tr.sub_traces, --may introduce some duplicates, not sure (there are duplicates for ETH transfers to Safes) + tr.trace_address, --see above + tr.error, + tr.code, + tr.gas, + tr.gas_used AS execution_gas_used, + tr.success +from {{ source('zksync', 'traces') }} tr +join {{ ref('safe_zksync_safes') }} s + on s.address = tr."from" +where + bytearray_length(bytearray_ltrim(tr.to)) > 4 AND + {% if not is_incremental() %} + tr.block_time > TIMESTAMP '2023-09-01' -- for initial query optimisation + {% endif %} + {% if is_incremental() %} + tr.block_time > date_trunc('day', now() - interval '7' day) + {% endif %} +) + +select + t.blockchain, + t.block_date, + t.block_month, + t.block_time, + t.block_number, + t.tx_hash, + t.address, + cast(t.to as varbinary) as "to", --for other chains, this is the singleton address, but not available in zksync.transactions or zksync.traces so keeping as null for consistency + tr.value, --get value from traces (0 in transactions table) + tr.gas, + tr.execution_gas_used, + t.total_gas_used, + t.tx_index, + tr.sub_traces, + tr.trace_address, + t.success, + tr.error, + tr.code, + t.input, --get input from transactions (because contains the methodID) + cast(t.output as varbinary) as "output", + t.method, + tr.tx_hash as trace_tx_hash, --save the trace_tx_hash to match back on + {{dbt_utils.generate_surrogate_key(["t.tx_hash", "array_join(tr.trace_address, ',')", "gas"])}} as unique_key + from transactions t + inner join traces tr ON + tr.block_number = t.block_number + AND tr.success = t.success + AND tr.address = t.address --matching on safe address diff --git a/models/shibaswap/ethereum/shibaswap_ethereum_sources.yml b/models/shibaswap/ethereum/shibaswap_ethereum_sources.yml deleted file mode 100644 index 485fb24bb86..00000000000 --- a/models/shibaswap/ethereum/shibaswap_ethereum_sources.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: 2 - -sources: - - name: shibaswap_ethereum - description: "Ethereum decoded tables related to Shibaswap DEX trades" - freshness: # default freshness - warn_after: { count: 12, period: hour } - error_after: { count: 24, period: hour } - tables: - - name: UniswapV2Pair_evt_Swap - loaded_at_field: evt_block_time - - name: UniswapV2Factory_evt_PairCreated - loaded_at_field: evt_block_time diff --git a/models/solana_utils/solana_utils_schema.yml b/models/solana_utils/solana_utils_schema.yml index 60613de369a..0e2f083effa 100644 --- a/models/solana_utils/solana_utils_schema.yml +++ b/models/solana_utils/solana_utils_schema.yml @@ -84,6 +84,4 @@ models: - &favorite_domain name: favorite_domain - &owned_domains - name: owned_domains - - + name: owned_domains \ No newline at end of file diff --git a/models/solana_utils/solana_utils_token_accounts.sql b/models/solana_utils/solana_utils_token_accounts.sql index a83b555089c..3cb45c9c39b 100644 --- a/models/solana_utils/solana_utils_token_accounts.sql +++ b/models/solana_utils/solana_utils_token_accounts.sql @@ -5,7 +5,7 @@ materialized = 'incremental', file_format = 'delta', incremental_strategy = 'merge', - unique_key = ['token_mint_address','address'], + unique_key = ['address'], post_hook='{{ expose_spells(\'["solana"]\', "sector", "solana_utils", @@ -15,16 +15,15 @@ WITH distinct_accounts as ( SELECT - aa.token_mint_address - , aa.address - , max_by(aa.token_balance_owner, aa.block_time) as token_balance_owner --some account created before and then again after token owner schema change, so then it created dupes. - , min(aa.block_time) as created_at + aa.address + , max_by(aa.token_balance_owner, aa.block_time) as token_balance_owner + , max_by(aa.token_mint_address, aa.block_time) as token_mint_address FROM {{ source('solana','account_activity') }} aa WHERE aa.token_mint_address is not null {% if is_incremental() %} AND {{incremental_predicate('aa.block_time')}} {% endif %} - group by 1,2 + group by 1 ) SELECT * FROM distinct_accounts \ No newline at end of file diff --git a/models/spiritswap/fantom/spiritswap_fantom_sources.yml b/models/spiritswap/fantom/spiritswap_fantom_sources.yml deleted file mode 100644 index 9d856578193..00000000000 --- a/models/spiritswap/fantom/spiritswap_fantom_sources.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: 2 - -sources: - - name: spiritswap_fantom - freshness: - warn_after: { count: 12, period: hour } - description: > - Decoded event table for swaps & pairs created on spiritswap - tables: - - name: Pair_evt_Swap - loaded_at_field: evt_block_time - - name: Factory_evt_PairCreated - loaded_at_field: evt_block_time \ No newline at end of file diff --git a/models/spookyswap/fantom/spookyswap_fantom_source.yml b/models/spookyswap/fantom/spookyswap_fantom_source.yml deleted file mode 100644 index 36da0c75726..00000000000 --- a/models/spookyswap/fantom/spookyswap_fantom_source.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: 2 - -sources: - - name: spookyswap_fantom - freshness: - warn_after: { count: 12, period: hour } - description: > - Decoded event table for swaps & pairs created on spookyswap - tables: - - name: Pair_evt_Swap - loaded_at_field: evt_block_time - - name: UniswapV2Factory_evt_PairCreated - loaded_at_field: evt_block_time \ No newline at end of file diff --git a/models/tokenlon/ethereum/tokenlon_ethereum_schema.yml b/models/tokenlon/ethereum/tokenlon_ethereum_schema.yml index bc9fdc4d7d4..9da92a0c311 100644 --- a/models/tokenlon/ethereum/tokenlon_ethereum_schema.yml +++ b/models/tokenlon/ethereum/tokenlon_ethereum_schema.yml @@ -275,6 +275,74 @@ models: - name: evt_index description: 'Index of the corresponding trade event' + - name: tokenlon_v5_ethereum_rfq_v2_trades + meta: + blockchain: ethereum + sector: dex + project: tokenlon + contributors: keen + config: + tags: [ 'ethereum', 'dex', 'trades', 'tokenlon', 'aggregator', 'keen' ] + description: > + Tokenlon RFQ v2 trades + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_date + - blockchain + - project + - version + - tx_hash + - evt_index + - trace_address + columns: + - name: blockchain + description: 'Blockchain which the DEX is deployed' + - name: project + description: 'Project name of the DEX' + - name: version + description: 'Version of the contract built and deployed by the DEX project' + - name: block_date + description: 'UTC event block date of each DEX trade' + - name: block_time + description: 'UTC event block time of each DEX trade' + - name: token_bought_symbol + description: 'Token symbol for token bought in the transaction' + - name: token_sold_symbol + description: 'Token symbol for token sold in the transaction' + - name: token_pair + description: 'Token symbol pair for each token involved in the transaction' + - name: token_bought_amount + description: 'Value of the token bought at time of execution in the original currency' + - name: token_sold_amount + description: 'Value of the token sold at time of execution in the original currency' + - name: token_bought_amount_raw + description: 'Raw value of the token bought at time of execution in the original currency' + - name: token_sold_amount_raw + description: 'Raw value of the token sold at time of execution in the original currency' + - name: amount_usd + description: 'USD value of the trade at time of execution' + - name: token_bought_address + description: 'Contract address of the token bought' + - name: token_sold_address + description: 'Contract address of the token sold' + - name: taker + description: 'Address of trader who purchased a token' + - name: maker + description: 'Address of trader who sold a token' + - name: project_contract_address + description: 'Project contract address which executed the trade on the blockchain' + - name: tx_hash + description: 'Unique transaction hash value tied to each transaction on the DEX' + - name: tx_from + description: 'Address which initiated the transaction' + - name: tx_to + description: 'Address which received the transaction' + - name: trace_address + description: '' + - name: evt_index + description: 'Index of the corresponding trade event' + - name: tokenlon_ethereum_trades meta: blockchain: ethereum diff --git a/models/tokenlon/ethereum/tokenlon_ethereum_sources.yml b/models/tokenlon/ethereum/tokenlon_ethereum_sources.yml index 10a259137db..44d00a57e0d 100644 --- a/models/tokenlon/ethereum/tokenlon_ethereum_sources.yml +++ b/models/tokenlon/ethereum/tokenlon_ethereum_sources.yml @@ -22,3 +22,7 @@ sources: - name: RFQv1_evt_FillOrder loaded_at_field: evt_block_time description: 'Tokenlon V5 RFQv1 swapped Event' + + - name: RFQv2_evt_FilledRFQ + loaded_at_field: evt_block_time + description: 'Tokenlon V5 RFQv2 swapped Event' diff --git a/models/tokenlon/ethereum/tokenlon_ethereum_trades.sql b/models/tokenlon/ethereum/tokenlon_ethereum_trades.sql index adb0057c05e..8f0d950c9f6 100644 --- a/models/tokenlon/ethereum/tokenlon_ethereum_trades.sql +++ b/models/tokenlon/ethereum/tokenlon_ethereum_trades.sql @@ -14,6 +14,7 @@ ref('tokenlon_v5_ethereum_amm_v2_trades'), ref('tokenlon_v5_ethereum_pmm_v5_trades'), ref('tokenlon_v5_ethereum_rfq_v1_trades'), + ref('tokenlon_v5_ethereum_rfq_v2_trades'), ] %} diff --git a/models/tokenlon/ethereum/tokenlon_v5_ethereum_rfq_v2_trades.sql b/models/tokenlon/ethereum/tokenlon_v5_ethereum_rfq_v2_trades.sql new file mode 100644 index 00000000000..d2290cd02e0 --- /dev/null +++ b/models/tokenlon/ethereum/tokenlon_v5_ethereum_rfq_v2_trades.sql @@ -0,0 +1,115 @@ +{{ config( + schema = 'tokenlon_v5_ethereum', + alias = 'rfq_v2_trades', + + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index', 'trace_address'], + post_hook = '{{ expose_spells(\'["ethereum"]\', + "project", + "tokenlon", + \'["keen"]\') }}' + ) +}} +{% set blockchain = 'ethereum' %} +{% set project = 'tokenlon' %} +{% set project_version = '5' %} +-- block +{% set project_start_date = "timestamp '2023-09-12'" %} + +WITH dexs AS ( + SELECT + evt_block_time AS block_time, + user AS taker, + "maker" AS maker, + "takerTokenAmount" AS token_sold_amount_raw, + "makerTokenAmount" AS token_bought_amount_raw, + cast(NULL as double) AS amount_usd, + "takerToken" AS token_sold_address, + "makerToken" AS token_bought_address, + contract_address AS project_contract_address, + evt_tx_hash AS tx_hash, + CAST(ARRAY[-1] as array) as trace_address, + evt_index + FROM + {{ source('tokenlon_v5_ethereum', 'RFQv2_evt_FilledRFQ') }} + {% if is_incremental() %} + WHERE {{ incremental_predicate('evt_block_time') }} + {% endif %} +) + +SELECT + '{{blockchain}}' AS blockchain, + '{{project}}' AS project, + '{{project_version}}' AS version, + TRY_CAST(date_trunc('DAY', dexs.block_time) AS date) AS block_date, + CAST(date_trunc('month', dexs.block_time) AS date) AS block_month, + dexs.block_time, + erc20a.symbol AS token_bought_symbol, + CASE + WHEN dexs.token_sold_address = 0x0000000000000000000000000000000000000000 THEN 'ETH' + ELSE erc20b.symbol + END AS token_sold_symbol, + CASE + WHEN dexs.token_sold_address = 0x0000000000000000000000000000000000000000 THEN concat(erc20a.symbol, '-', 'ETH') + ELSE concat(erc20a.symbol, '-', erc20b.symbol) + END AS token_pair, + dexs.token_bought_amount_raw / power(10, erc20a.decimals) AS token_bought_amount, + CASE + WHEN dexs.token_sold_address = 0x0000000000000000000000000000000000000000 THEN dexs.token_sold_amount_raw / power(10, 18) + ELSE dexs.token_sold_amount_raw / power(10, erc20b.decimals) + END AS token_sold_amount, + CAST(dexs.token_bought_amount_raw AS UINT256) AS token_bought_amount_raw, + CAST(dexs.token_sold_amount_raw AS UINT256) AS token_sold_amount_raw, + coalesce(dexs. + amount_usd, + (dexs.token_bought_amount_raw / power(10, p_bought.decimals)) * p_bought.price, + (dexs.token_sold_amount_raw / power(10, p_sold.decimals)) * p_sold.price + ) AS amount_usd, + dexs.token_bought_address, + dexs.token_sold_address, + coalesce(dexs.taker, tx."from") AS taker, + dexs.maker, + dexs.project_contract_address, + dexs.tx_hash, + tx."from" AS tx_from, + tx.to AS tx_to, + dexs.trace_address, + dexs.evt_index +FROM dexs +INNER JOIN {{ source('ethereum', 'transactions') }} tx + ON tx.hash = dexs.tx_hash + {% if not is_incremental() %} + AND tx.block_time >= {{project_start_date}} + {% endif %} + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '7' day) + {% endif %} +LEFT JOIN {{ ref('tokens_erc20') }} erc20a + ON erc20a.contract_address = dexs.token_bought_address + AND erc20a.blockchain = 'ethereum' +LEFT JOIN {{ ref('tokens_erc20') }} erc20b + ON erc20b.contract_address = dexs.token_sold_address + AND erc20b.blockchain = 'ethereum' +LEFT JOIN {{ source('prices', 'usd') }} p_bought + ON p_bought.minute = date_trunc('minute', dexs.block_time) + AND p_bought.contract_address = dexs.token_bought_address + AND p_bought.blockchain = 'ethereum' + {% if not is_incremental() %} + AND p_bought.minute >= {{project_start_date}} + {% endif %} + {% if is_incremental() %} + AND p_bought.minute >= date_trunc('day', now() - interval '7' day) + {% endif %} +LEFT JOIN {{ source('prices', 'usd') }} p_sold + ON p_sold.minute = date_trunc('minute', dexs.block_time) + AND p_sold.contract_address = dexs.token_sold_address + AND p_sold.blockchain = 'ethereum' + {% if not is_incremental() %} + AND p_sold.minute >= {{project_start_date}} + {% endif %} + {% if is_incremental() %} + AND p_sold.minute >= date_trunc('day', now() - interval '7' day) + {% endif %} \ No newline at end of file diff --git a/models/tokens/arbitrum/tokens_arbitrum_erc20.sql b/models/tokens/arbitrum/tokens_arbitrum_erc20.sql index 66e5a40d6c8..092f6884416 100644 --- a/models/tokens/arbitrum/tokens_arbitrum_erc20.sql +++ b/models/tokens/arbitrum/tokens_arbitrum_erc20.sql @@ -1,4 +1,11 @@ -{{ config( alias = 'erc20', tags=['static'])}} +{{ + config( + schema = 'tokens_arbitrum', + alias = 'erc20', + tags = ['static'], + materialized = 'table' + ) +}} SELECT contract_address, symbol, decimals FROM (VALUES diff --git a/models/tokens/arbitrum/tokens_arbitrum_nft_curated.sql b/models/tokens/arbitrum/tokens_arbitrum_nft_curated.sql index 8522d676cff..456b0c158ae 100644 --- a/models/tokens/arbitrum/tokens_arbitrum_nft_curated.sql +++ b/models/tokens/arbitrum/tokens_arbitrum_nft_curated.sql @@ -1,4 +1,11 @@ -{{ config( alias = 'nft_curated', tags=['static']) }} +{{ + config( + schema = 'tokens_arbitrum', + alias = 'nft_curated', + tags = ['static'], + materialized = 'table' + ) +}} SELECT contract_address, name, symbol FROM (VALUES @@ -47,5 +54,1122 @@ FROM (VALUES (0x619F1f68a9a3cF939327801012E12f95B0312bB9, 'Bro Kwon`s Booty', 'Bro Kwon`s Booty'), (0xAEbFb9431964c2c661faC9e99Be0C230D20C0C95, 'Battlefly Items', 'Battlefly ITEM'), (0xfF3aFb7d847AeD8f2540f7b5042F693242e01ebD, 'SuperPositions', 'SP'), - (0x5e01c1889085B528EefF5e1bEe64Bfe94f454703, 'SamuRiseItems', 'SAMURISE_ITEMS') + (0x5e01c1889085B528EefF5e1bEe64Bfe94f454703, 'SamuRiseItems', 'SAMURISE_ITEMS'), + (0x00136aa7f14e229f41df6ac3faf4249b8ccb54b8, 'Brinc.fi NFT 04', 'BRC'), + (0x00e3dcb7fd5946dde80d627b0723af78249d7d49, 'FederalFrens', 'FF'), + (0x00f72a4bb99e20ba479d3f84e5660cc5c0b7aaed, 'FRENCH PIRATE', 'FPRT'), + (0x00fabc4ac3339a1acd853d8d2e941f540372c29d, 'colorfulAIs', 'CD'), + (0x015d3c4f5c9bd162e57dda71abacce6c857e171a, 'TPTG Tools', 'Tools'), + (0x02030d968558fd429eafa6e5b0c7a95a4903233b, 'Starlight Edition', 'Starlight Edition'), + (0x028395b0aaaf6076b03c6c52575a34d2b4487184, 'Camelot staking position NFT', 'spNFT'), + (0x02ab812e7a0fa027632e410ca05940b1045605ee, 'Arbitrum Birds', 'ARBD'), + (0x02af1843fc0b301a398792e64a50c1927fae9958, 'Super Dinos🪂🪂🪂', 'SD'), + (0x02bb77b22edc0e28c877b5105aa12b484468d655, 'Camelot staking position NFT', 'spNFT'), + (0x02e31c5bfd58230280f01fbf70a47221068edc58, 'Green planet', 'GP'), + (0x0319902b6b75301b06109b4a73be65919afc9683, 'TainoPass', 'TP'), + (0x03567820d5f98ae26e2dd22a2e676d580726fa5c, 'PufDAO Specials', 'PUF'), + (0x04084ee24b7fe973cd42b8bfc335a4dd5c69f334, 'Walking Coggies', 'WACO'), + (0x04b0ac348ca15158a0a8241d78db650b4892b8ab, 'ETHStation 1677597170686', 'ETHStation 1677597170686'), + (0x04fa04f76cbb0ae55884be37f84c7340a4ee7e6b, 'The Prodigies', 'PRO'), + (0x050e296d39fbdaae84a53a7fe9a44ae94505159f, 'dino', 'din'), + (0x050f28e70a9afd1e214d997040fae79d9f2f4bdd, 'Legend Of Eros', 'LOE'), + (0x051081f18611c5de462464dd96fe1d2f4ee2a50b, 'Perpi Staking Positions', 'Perpi-SP'), + (0x051380434abc1e82fce8220135e89a7f09ebd96d, 'Camelot staking position NFT', 'spNFT'), + (0x0541fa16bdf411dba6662371cf227b7cf21b62fd, 'Dreamzuki', 'DZKI'), + (0x05ceff1a5ed616b9284e860ada5a05ec195160cb, '888 Proseco', '888 Proseco'), + (0x05e7aced3b7727f9129e6d302b488cd8a1e0c817, 'DPX MONTHLY CALLS SSOV V3 3', 'DPX-MONTHLY-CALLS-SSOV-V3-3'), + (0x06415ba24f76fc22a06cf684cc20f3b7e6777810, 'DavidMonique', 'Dav'), + (0x066c273c0bfd6e7f4f68f64ecca23c93a4e37aac, 'Camelot staking position NFT', 'spNFT'), + (0x06a0b5e632a166152679ce2a5db2c06a60acb1fb, 'Arbitrum Ape Yacth Club', 'AAYC'), + (0x06a12e974c809ecb22a8930bdf4b3dda41a86251, 'Mqoru', 'Mqo'), + (0x06ad288301e8897efb5831dbb156af927bcdd671, 'prePO News Telegram', 'prePO'), + (0x06ce0c5759fad39088a6b428c45755c0f256c9b0, 'Arbinaut', 'ARBN'), + (0x06f7fba90af28c6a23e3e5b50994e675cc9b41d1, 'HKH', 'HKH'), + (0x072867354977e0e99545a7b929e9181d63c2cfbd, 'BART', 'Brt'), + (0x073cd770d1c8e3b6ec437044c25d08801f27c721, 'Camelot staking position NFT', 'spNFT'), + (0x07c3112b6f62e06b0d68bee33519453e91e33f63, 'FRENCH PIRATE', 'FPRT'), + (0x08a99d23e09194e730cab307b92d8625963e7bd7, 'Invocatio Ad Deum', 'IAD'), + (0x09092e63f4ffe3f46efa1099b4c0f6a7563b6cf3, 'Collectify Playground', 'NFT'), + (0x091d3231cf8a2234df4c9781b057b850d67d6ded, 'Zetas Assassins', 'ZetasAssassins'), + (0x098ec02240e6d90eec9723f630f777cc0f8008aa, 'leo', 'leo'), + (0x09b87039b783428c1880fab45cf92075578e1206, 'Camelot staking position NFT', 'spNFT'), + (0x09c94dbc3c96b017b4a40c5cb65c210bf575236e, 'Camelot staking position NFT', 'spNFT'), + (0x09caa278f77b8de1600b0dc654a19223d07ae03b, 'The Flame', 'TFL'), + (0x09d74999e5315044956ad15d5f2aeb8d393e85ed, 'Tigris Position NFT', 'Tigris Position NFT'), + (0x0a239437cdf474da8316adbd9ffcefd5d655641f, 'ansahost', 'ans'), + (0x0a5327bb9661142870e1ba12227031ad219af99e, 'web3topia freemint', 'web'), + (0x0a9b1af0148e6acde45c918e8714933879a64729, 'GracePerry', 'Gra'), + (0x0aaf1106aa2fb2aeef30cca206be445f3aab3b7a, 'Good Morning', 'GMs'), + (0x0adf13ac4b79e6f581ca3ba5ef4b96ab127f52a8, 'Apestronaut', 'Apestronaut'), + (0x0aefc9b23c215742bfac483baefbc762fc64cfe6, 'Camelot staking position NFT', 'spNFT'), + (0x0af3c9b1f16262a225a3f0277b1a601c1c899435, 'Camelot staking position NFT', 'spNFT'), + (0x0b2460ae258aa131ada073644de8c3d18d05b499, 'Camelot staking position NFT', 'spNFT'), + (0x0be222867c8dc571323e7fa2d10b4983a1730fe8, 'EmrTrade_Position', 'EmrTrade_POS'), + (0x0c95685c13f43a81b57498812232b8e8dbe50cfd, 'My Mintplex Project', 'MINTPLEX'), + (0x0d039878e926ca6421651f19d1ed5639e527414f, 'Bapeliens', 'BAPE'), + (0x0d5dbfc97f51ff73370dc607cfccfc7e2fb07eb5, 'chason', 'cha'), + (0x0d5e05a25fc5f02c3aba970dd9a6a47daa81aab2, 'Camelot staking position NFT', 'spNFT'), + (0x0d833ae44a9f1c42737af380d920906c57fd732f, '0xfAe39eC09730CA0F14262A636D2d7C5539353752', 'Arbitrum Odyssey NFT'), + (0x0dccab3f2fc587b67bfdc66ffd2c87a567b21394, 'Smolizards', 'LIZARD'), + (0x0de7a17815e3c0701c8d4e13cb40683eafa0368d, 'ArbiSocks ZK Edition', 'ZKSOCKS'), + (0x0df0034414b16d64d4959c02431472454704a63d, 'Duck', 'Duc'), + (0x0e3757a05ef53faa06e5547417dbe64fbfb41d5d, 'Women Ape Yacht Club', 'WAYC'), + (0x0e4953c2152e75b1d44c24f05d25740ea3e262c5, 'Arbitrum Adventure Fan 💙🧡', 'Arbitrum Adventure Fan 💙🧡'), + (0x0e97498f3d91756ec7f2d244ac97f6ea9f4ebbc3, 'Lyra wBTC market Option Token', 'Ly-wBTC-ot'), + (0x0f07c3d5dcadc6194a5ec2f9c4106ff5b0db3c18, 'Camelot staking position NFT', 'spNFT'), + (0x0f44eaac6b802be1a4b01df9352aa9370c957f5a, 'Ice Cream NFT', 'LICK'), + (0x0f4b6e7b437f85b80ae92523c93bff5583eac5e5, 'Presale Preacher Program (Gold)', 'prePO'), + (0x0f5e523142bdc06149fb26ebf4d0067cc0988821, 'Rotten Anti Social Club', 'RASC'), + (0x0f73e0c62e1e293c063721ded9743075e09b776a, 'Camelot staking position NFT', 'spNFT'), + (0x0f77afbc8172931c9b207a495880ad3bfdd557e9, 'My MetaTrader Nft5', 'MMTNFT5'), + (0x0f8026d5b9a1468be0d24d469242cfa3c610d5fe, 'LAZO - Agreements', 'agreement_300022'), + (0x101194b4f55ee1967a05ea088dc52709029c284f, 'openfi', 'openfi1'), + (0x103b2c204968d3216c3016b7b05c90afd57e7a9e, 'Ghost Coin', 'GHOST'), + (0x10c67db7876306fd4dc246184611625a77c7440c, 'Vest <> Arbitrum AMA', 'VESTARB'), + (0x10df81252069c1095f541faca61646cb9ae76703, 'veNFT', 'veNFT'), + (0x10fd85ec522c245a63239b9fc64434f58520bd1f, 'DPX WEEKLY CALLS SSOV V3', 'DPX-WEEKLY-CALLS-SSOV-V3'), + (0x1132275a3cd033ae536d5275d441e6686ec75dbe, 'Airdrop zone', 'KEY'), + (0x118b230fb9076c06b275554fce58ca6a19b4cfe1, 'Web3Drop Randombox', 'WR'), + (0x1224f42330adee58c151dd09bbc162d6ec42b39e, 'Camelot staking position NFT', 'spNFT'), + (0x12600db819c9867e382b2467cc3ecb21e2e3d9e5, 'Camelot staking position NFT', 'spNFT'), + (0x1267ad79c25666e26d3e8436fcfb016af3c640f4, 'ArbitrumChecks', 'AC'), + (0x126be6a9ec71a1fea19d2288ba2ce4cdc0facb68, 'Hyphen Liquidity Token', 'Hyphen-LP'), + (0x127030c3cc899d735a859101a75294fba50644d0, 'GerardViau', 'Ger'), + (0x129105111238bae24ec04fabe614edaef0310d0a, 'AstroSpaces AI NFTs', 'SpacesAI'), + (0x12c7dd1f373b11309e0c1b910867705a0561b968, 'Camelot staking position NFT', 'spNFT'), + (0x12d1e91e7d252fe058e2873aaeeac8a93c74b528, 'Camelot staking position NFT', 'spNFT'), + (0x131824311bf63124dfc199873d5152cf46c314b9, 'Arbi Checks (69,69)💙🧡', 'ACK'), + (0x1326b6c47c6bc497213da1b703d48286f2f025dc, 'Camelot staking position NFT', 'spNFT'), + (0x133caeeca096ca54889db71956c7f75862ead7a0, 'Fiat24 Account', 'Fiat24'), + (0x134aced1c9a5e2d7a4f03ee31d08c0b104d1ae27, 'OP-ScalpPosition', 'OPSP'), + (0x135bb634bcbf6ea2f90a80a96c161c0e360dc633, 'Camelot staking position NFT', 'spNFT'), + (0x137582d32dccaa65e85794da1d989b2c754902fe, 'Camelot staking position NFT', 'spNFT'), + (0x1398c326c622674a6185670595c31b82c13bc6e6, 'afirmentismo', 'afi'), + (0x13ad9359f09817c172f1e40b813b7b41d03766ed, 'Camelot staking position NFT', 'spNFT'), + (0x14642e9abfba12cf8c48a12901212e4b9f4654d5, 'L2D4 DeFi On Arbitrum', 'L2D4'), + (0x14663990600164c08f48153fae8a3c8e07b0f05a, 'Camelot staking position NFT', 'spNFT'), + (0x148be78c36e02e370ab41c3b922e4c16e22cb3e7, 'Arbitrum x Tally Ho DOGyssey Yield Protocol', 'TallyHo_Yield'), + (0x14d5bc8f03cc53bff4fbe5438ac097b3a91816e0, 'Camelot staking position NFT', 'spNFT'), + (0x14f8a2b3eb9cd70ff446a56ea0c8b660b7895e68, 'NFT Garden', 'NFTG'), + (0x1517b8c89e6eea1f4c5e4a683f18bbaeb2ad2dac, 'Camelot staking position NFT', 'spNFT'), + (0x15dfa0e4e81743667975bc13bad05351c2c12e5b, 'Web3youth', 'Web3Y'), + (0x15e9b18ddcab6f1093662ce98fec5a4cd4fad246, 'My Meta Trader Box', 'MMB'), + (0x164dcc5bcdcf6004ffc47a9e39e96da88041a585, 'ArbEmptyNFT', 'AEN'), + (0x165ef0647e084e6e2f4fd2dcc22518fec80b807e, 'Genesis Artemis Apes', 'GAA'), + (0x16fe894b141958974c2c0d0a8546c8b851010dda, 'cancer', 'can'), + (0x1763c8f337f71f068b997cc0969fe989d74b9690, 'Daophinz', 'EEEE'), + (0x177464642dac220bbe45357a78d17bc60336ee73, 'Falgene', 'FG'), + (0x17798ba794ad94dad0b7d3f4b9bc2e9f6486d4b9, 'Tour de Berance', 'DROM'), + (0x177bc276ad9afb0e60f78d7632acef0d10b24876, 'Proseco', 'Proseco'), + (0x17a476a8c4868f083f520f732be284dcf68a1a22, 'NFT Ticket', 'NFT'), + (0x1825bcc440f347d33e3c6b66c56b760e4032e75d, 'Arbi Shib Nfts', 'Ashib Nfts'), + (0x18553d7445c673d30cbb3514df4e46b5eae41a4d, 'Ape Into Arbitrum NFT Contract', 'AIA'), + (0x186268560d20714c62342f54cd7d04d14f0a9a39, 'Camelot staking position NFT', 'spNFT'), + (0x18d21428028da417da0fade13b8ca63b41da5520, 'PPO Token Public Sale Participant', 'prePO'), + (0x194446f8cf1a576b9ab1a968b8deb178a0271141, 'Camelot staking position NFT', 'spNFT'), + (0x196e7130ff4e3510d9ffecd2b6360dd38f4950e5, 'Camelot staking position NFT', 'spNFT'), + (0x19ddc92a9d9e00a3e2b5f852928ea67701633e0a, 'Shrimp', 'Shr'), + (0x19e5c2b444569872caeedb02a19609195cbd880f, 'POAPlace Quest3 Genesis Collection', 'POAPlace Quest3 Genesis Collection'), + (0x19eb5460dece5ec4e7dc515814ab7bdba71fbdf3, 'Beings', 'BET'), + (0x19f302c1310925b5965326208965e22ab2927436, 'SUMER GOD SPACECRAFT', 'GSPC'), + (0x19fd63c83a2a7c42e9aea73015c157dc56012e2c, 'Pet Game', 'PG'), + (0x1a84c545d37eb9513c92e2a2ab61f5e3d8dfbdd5, 'Unbroken despite appearances', 'UNB'), + (0x1aa937a5faa050d5e9b824064de87ebbac5184bc, 'Virtual Raver Logo', 'VRL'), + (0x1aaec0fa487a979a3f6b46dccf0ac2648167a61e, 'CryptoGenerals', 'CRYPTOGENERALS'), + (0x1ac7a2fc7f66fa4edf2713a88cd4bad24220c86c, 'ArbiDudesGenOne', 'DUDE'), + (0x1ae38835bf3afbec178e8a59ca82aa383dc3df57, 'DPX MONTHLY CALLS SSOV V3 2', 'DPX-MONTHLY-CALLS-SSOV-V3-2'), + (0x1b28c2a17ec6dcfee28a7f8c1b824e92b491ffa8, 'Camelot staking position NFT', 'spNFT'), + (0x1b3e11e78d082ef0aca690d0b918aebb216e20e5, 'OxFox Arbitrum', 'OXARB'), + (0x1b4e783b196895570688d8babd058cba5e7007b7, 'GalaxyArt', 'GART'), + (0x1bdf511a10e01909709835d6364fc7d0a7426587, 'Camelot staking position NFT', 'spNFT'), + (0x1c02bf85f7809fce3bef19dbf8bbe9a9df1269dd, 'ABCQNFT', 'ABCQNFT'), + (0x1c32f52d170a5829f15fe7f4b76f49917e031423, 'Degen Town', 'DT'), + (0x1c36e665ca9bc89cfeaecad1404383854143d5b3, 'Camelot staking position NFT', 'spNFT'), + (0x1c5fe3976e8e0908352250b5e563a5afd7c6b83b, 'Camelot staking position NFT', 'spNFT'), + (0x1cb467658deaeb97cd2ea6e51af9e20508463c3c, 'TIMES Genesis Badge', 'TIMES Genesis Badge'), + (0x1d1210028161d3e26bdfcea58c59d4a5a0e24fde, 'Pet Game', 'PG'), + (0x1d730dc5de41f6710708dee13fbad3fc0cd51884, 'Mint Your CHIKIN', 'CHIKIN'), + (0x1da59c5bada5e80d49f93bd02fa872e6d6f4ada0, 'Camelot staking position NFT', 'spNFT'), + (0x1dbd85352b487bf138b3c045226b61e3739af6c3, 'voltGNS Volta Vault', 'voltGNS-VOLT'), + (0x1dfd553ff9f79e0246114a3bffcb429e42d86fdc, 'z', 'Z'), + (0x1e527dc9b55dd46de058239ff33907a5b6e396d1, 'Camelot staking position NFT', 'spNFT'), + (0x1ec62d201989402c6350d5a3dc51bc2fe3449049, 'Nezuko', 'Nez'), + (0x1ed0a95a237b63d55128dd53d3877b50cb97b9a0, 'Helping Hand', 'HH'), + (0x1ed23d3a04957909b494c4cb579e41a4f5385fb2, 'FunnyCows', 'Cow'), + (0x1f245e83fb88a1e85b4a1c3e4b3c16660d54319a, 'Wrapped SMOL', 'wSMOL'), + (0x1f536caf329e95ab5292dd4e853ca66179aabbed, 'Kings of Arbitrum', 'ARKINGS'), + (0x1f8e3a8d3860a8aeb44345929f297a57621a76e2, 'Camelot staking position NFT', 'spNFT'), + (0x1fbe3b905e4aed12402b571e2ee336c4119948ff, 'Gogoogo', 'Gog'), + (0x1ff3e98b0be96bade4f70c28e44f0537586edf51, 'BlindBox', 'BB'), + (0x205910facd957fdc16468f1a692e84f0227fec4b, 'NFT Garden', 'NFTG'), + (0x209bdccfbd8f8c5715b026f20637a40aeb3515bd, 'Marie-LaureLecompte', 'Mar'), + (0x20c0d981b23645defd18f2a7dcd3f8297621ed8b, 'Arbitrum Angry Ape', 'ANGRYAPE'), + (0x211e278bc28dc9d452ee0fd86bddb4bc849cdc5d, 'MuMuKoiFish', 'MuMuKoiFish'), + (0x2144c01030559d540799664c9bcb55275d312b47, 'Arbitrum x Tally Ho DOGyssey Dopex', 'TallyHo_Dopex'), + (0x21563764f5641ffcb89f25560644e39947b21be0, 'veSTERLING', 'veSTERLING'), + (0x2188de101121f4ee1a7800d24bc9234a7ceae81b, 'MessageInABottle', 'MIAB'), + (0x21b70a4be0aa7d495bef62e09205a1843ad3eb0c, 'JAPANESE PIRATE', 'JPRT'), + (0x21cb4a6247e2ee59c65b4f9931489a77baa32028, 'Camelot staking position NFT', 'spNFT'), + (0x2222222287b9476dec2285b7160fd6427b01c5ee, 'NFAUST2222 GEN 1', 'NFA1'), + (0x2271a2ac1c7ef1ffc9415e64762ed92d7ca120ca, 'ArbiZeroNft #1', 'AON'), + (0x229cbe7e3dad080cd288a6c2a8517eaf7bac03f3, 'Arbi2Dog Quest', 'Arbi2DogQ'), + (0x22da63a74cf1bb897f2fa8b28086ed3dd916e159, 'BlocKombat', 'BlocKombat'), + (0x22fc4de6727a43c6426148933bb0a5139c079031, 'HOMELAND PIRATE', 'HPRT'), + (0x232406f2be256aed62d65d75aef35be7e5699fb4, '(yiume.first)', 'Ψ'), + (0x23e7447bc843a2ab2c425ee0eb2897b5352d7441, 'Camelot staking position NFT', 'spNFT'), + (0x24021ca99b11850eba84cd27e5201a159ba7386f, 'Camelot staking position NFT', 'spNFT'), + (0x243ab66f4bf64e3c1729880228249ed54bb0b23e, 'Start bear', 'SBR'), + (0x249bb0b4024221f09d70622444e67114259eb7e8, 'Nitro Frens Army', 'NFA'), + (0x24be1210b374bbb364455d2c2d22985af7368ea9, 'LYNKNFT', 'LYNKNFT'), + (0x24c0d1e4cf81384031907e8cf965494662e5bf45, 'PIRATE TREASURE', 'PRTTRS'), + (0x24e95176f7b1776feeed616153951300ed39b85d, 'The Nebula', 'TBNA'), + (0x252449d4f514d59ffacd5526542d4b4a94932969, 'PIRATES UNITED', 'PUTD'), + (0x253d870834e80d62bb1bf7f32f49c6137ea61da0, 'ARBITRUM SPACE ODYSSEY 2022 PIRATES', 'SPRT'), + (0x25427b8f6d12aecfcf47f6a52c70001f3901ef2e, 'Camelot staking position NFT', 'spNFT'), + (0x25a7139c7a3b5124eabe20bd756d30f3d43fbeb9, 'Perpy-TradingVaultOwner', 'PTV'), + (0x261fcb673db8efce03b698a6fe41f41eabfa3871, 'CNY 2023 - Tokenlon', 'TLCNY2023'), + (0x267448dab24e49658517dc4e0e6fc2e0e3a399af, 'Unibot VIP Exclusive NFT', 'unibotvip'), + (0x2715c326fc62a8ee6c4af5b3191bd85e05ed75f0, 'The High Roulers', 'ROULER'), + (0x2773b595f4e78cb3c10dfaca6b7112d1cdefc5a3, '0xMiaWong', 'MIA'), + (0x27757e76e48ed3110e7c01e26064e8b98d76018a, 'Legend Of Eros', 'LOE'), + (0x277d6d533e00b9076121e4c6986967244b45fdfb, 'FRENCH PIRATE', 'FPRT'), + (0x2798cc1576bacfa41cecab94db6d171f81016660, 'Gembot by Evergem', 'GEMBOT'), + (0x280202355eb43eb68ece0181653cc46d42df7d9c, 'Arbitrum Ape Yacht Club Banners', 'AAYCB'), + (0x2817f045d6a0c94af2ac1964a548bd3f79e33aad, 'Relic', 'RELIC'), + (0x28d4e9bdfcb221916511229c39a9ca93490161bb, 'Papaya', 'Pap'), + (0x28e1679b0b5cabd4f494278171cedcb7134d5df2, 'ETH Man', 'EMAN'), + (0x29aabd0bce39a570f4fa10f76af687d6b9a612f1, 'Camelot staking position NFT', 'spNFT'), + (0x29d3622c78615a1e7459e4be434d816b7de293e4, 'veSLIZ', 'veSLIZ'), + (0x29f0b865a0ead1a43e92cb2006443754e896d1d8, 'ArbiDogs Nft', 'ARBIDOGS'), + (0x2a4730b0bd1bb9e06f365c15403fa264119d9a51, 'Robonaut', 'ROBONAUT'), + (0x2a661f81a1212e103ddb2c5130d6a8d5dc921867, 'Camelot staking position NFT', 'spNFT'), + (0x2aa5d15eb36e5960d056e8fea6e7bb3e2a06a351, 'Hedgeys', 'HDGY'), + (0x2aa77cbf6ce6f08f086bdc1f68c846d0c7b5d3cc, 'Zetas Warriors', 'ZetasWarriors'), + (0x2ab1399dd3f243d258d992eec70d38021ffcbf47, 'AIDEGO', 'AIDEGO'), + (0x2ac5f050f5323cfd262d5ba9267cc3416102777b, 'Preacher Program Q4 22 (Gold)', 'prePO'), + (0x2b3d12a3b3a8f3f6e97ece0590a3f05880f8360d, 'Earndrop Optimism Airdrop', 'ED OP AIRDROP'), + (0x2b6ecb55e46b087d5e4d42d445790cf882ec8004, '888 Proseco', '888 Proseco'), + (0x2c00c6813af0da5d8e59f36092ac3f4c9c060365, 'MaryGray', 'Mar'), + (0x2ccb4a23f341c0ae13c71e92e3e0588f83bb0796, 'Moonshot!', 'Moonshot'), + (0x2ccd5492ca86ff3cf3b8bbd12e0e1deef6e4db77, 'Party Silver Genesis Mint', 'pSILVER'), + (0x2ce7019b949d52083b6d97bbdf677df850177570, 'Pride Cats', 'PC'), + (0x2d65ddac370a33e4aaed0975ba7116a3ff293bb9, 'Brinc.fi NFT', 'BRC'), + (0x2d92a8501a9764d3976c461646948c2dc1218161, 'Just Panda', 'JUSTPANDA'), + (0x2db80f43ec4cac4758876cc2c671c1e5fb89c3b2, 'Horny Hyenas', 'HORNY'), + (0x2dc9a47124e15619a07934d14ab497a085c2c918, 'ImpishCrystal', 'Crystal'), + (0x2df93f88e56c93087b998f01b73eedd010ba037f, 'Camelot staking position NFT', 'spNFT'), + (0x2e286a8d3f2455aeb3ba57ba545fc7ba221fa18b, 'OP-ScalpPosition', 'OPSP'), + (0x2e64fe4fb766a3a4ca2dc5d62f9bde84ead47ba1, 'Camelot staking position NFT', 'spNFT'), + (0x2e875e2c7251baee2a8fd6d50c6c08c178542bbc, 'Camelot staking position NFT', 'spNFT'), + (0x2e8c8b031dc236e11af09c4ec4826bc6593bf5ad, 'LYNKNFT', 'LYNKNFT'), + (0x2f2712d81e7f5a5455a5c5b013238363b1650212, 'best of best', 'bes'), + (0x2f9011ad7dc770678f00a7b8e84b45ef68bc27b9, 'Bresk Jagged', 'BJAG'), + (0x2fd7efa2e9237d2c357ce7b3f4325e6b9630a449, 'Camelot staking position NFT', 'spNFT'), + (0x30009b910e6e91cd8bbc6a3c3c5e8dee3c1f3739, 'EmrTradeOrder_Order', 'EmrTradeOrder_ORD'), + (0x300363158692a752589ac6189c9153a1dc5e1349, 'Camelot staking position NFT', 'spNFT'), + (0x3007e0eb44222ac69e1d3c93a9e50f9ca73f53a1, 'autumn', 'AT'), + (0x302469d609072195fead5145b7c0675c86b7438d, 'Odessey NFT - The Blueberry Nebula', 'NebulaNFT'), + (0x303c470c0e0342a1ccdd70b0a17a14b599ff1474, 'Tigris Governance NFT', 'Tigris Gov NFT'), + (0x30a4d2a5843e45ce92c10cb49d409da1714c2a40, 'Yieldification OTC', 'otcYDF'), + (0x30a7b44abcf252967a5235d53133ffa3d26dcee5, 'ParaSpace Explorer', 'EXPLORER'), + (0x30b83080dfbd5b9c97fe215e8f03ad560adb7cb3, 'VASCO DA GAMA', '1000'), + (0x30cbcbbd793501690d9ca6f78fc798ce987af7d9, 'Camelot staking position NFT', 'spNFT'), + (0x3131a8e8f12a6c0ab8620de53fe6476b24bde280, 'BROCC', 'BROCC von EGGFAM'), + (0x3146d40d047a099c2bdbfb5c7c1678f4662ebcec, 'Merk', 'Mer'), + (0x31949446395e16a294108a25bfcc4937799fa8ef, 'City Clash', 'City Clash is a P2E, social strate'), + (0x319a5195b4495c72cf25873781949002517681e8, 'SapTradeOrder_Order', 'SapTradeOrder_ORD'), + (0x31d2678ed8ea62fc63d5ecff713920f75167d062, 'The Flip Project', 'FLIP'), + (0x31e06a414f5e89106b5071014fa5769f571fb07a, 'EGG', 'EGG von EGGFAM'), + (0x3232ea5fa2b91e99008a74efe05edae99c82a7c3, 'CharpentierHel', 'Cha'), + (0x32449df9c617c59f576dfc461d03f261f617ad5a, 'ETH WEEKLY PUTS SSOV V3 3', 'ETH-WEEKLY-PUTS-SSOV-V3-3'), + (0x3244ed247fbce147eb65f2d3c4f2ea3ad7b4bf69, 'KOREAN PIRATE LADY', 'KPL'), + (0x32b18b8ccd84983c7ddc14c215a42cac098ba714, 'Camelot staking position NFT', 'spNFT'), + (0x32ec84eac1ced59d1d57f594c6e1dd512df2d26a, 'Hall of EGG', 'EGG⭑'), + (0x33317b13631b303f207419bde77f9ab58a263333, 'vocus and friends', 'VAF'), + (0x334fff14a8ce3378b0379188b5ca6ca5b351b2e9, 'LAZO - Board', 'board_300022'), + (0x337eb5061943ecd247649d58d35dbab0b40d67e0, '.arbitrum', '.ARBITRUM'), + (0x348fdfe2c35934a96c1353185f09d0f9efbada86, 'NitroCartelPassport', 'NITRO'), + (0x34ca5c4fb04f2e61f2b71cfc0b7e6e9581bacb1d, 'BlindBox', 'BB'), + (0x34ced9a27008004b25723a86aad3eec9b5886244, 'PPP', 'PPP'), + (0x357f6d11f168db1532c51ef64db117bf14a2837d, 'RANDOMNFT', 'RDFT'), + (0x3597e21bfcda0325b60bed75033ccb6eb94baab4, 'ArbiClown', 'ACW'), + (0x35d917b0c3f2b2905b12c51af1ccfabb1588d299, 'Camelot staking position NFT', 'spNFT'), + (0x35f98d577bbe18c9d54c9bcaf897d226b9cb202a, 'Camelot staking position NFT', 'spNFT'), + (0x3612a25fdabe31684751988c2b9d46c2b495d2e9, 'LandNFT', 'LandNFT'), + (0x36535ec384b94342558e37282527b5052587af6a, 'ALONE PIRATE', 'APRT'), + (0x365a4c60cd09dfafee1203323ec8523524cc4d74, 'Holdstation New Year Poster', 'HNYP'), + (0x3666f01950273766e5f277c8a2a261ea59d583c3, 'HonorWorld Souldrop NFT', 'HWSOULDROP'), + (0x36909a43921a3420af6e94926f9382bcf938700f, 'Monorepo Stargazer', 'prePO'), + (0x36ce89c9ed0ec401305cf34b590dc2a24978fa68, 'ShprdKYC', 'SHPKYC'), + (0x36d7b9907caedd2a9acd761ae51fce5f6a03774e, 'Tigris Bond NFT', 'tigBond'), + (0x36edb2a4f6dc93dd507d37d64433967706e7f048, 'FRENCH PIRAT', 'FPRT'), + (0x37054b85df522d457ca1a9d217a7ed516586c402, 'Jacked into EGGTRIX', 'EGGTRIX'), + (0x374c1dfce583d57b7a93a0051418a6f44cc50056, '))!one', ')'), + (0x3755541a5da753dd775983ec5d94844fe11dd19a, 'Bond Protocol - v1 NFT Collection', 'BPV1 (BPV1)'), + (0x378a1f07fb177a2d59d7d97f0ec51c59ad62afbc, 'CNY 2023 - GMX', 'GMXCNY2023'), + (0x37f81ff34689e3a6883922889c181dfb819ee14f, 'Camelot staking position NFT', 'spNFT'), + (0x381abca90fe435b4a5e71190daca81b7e1120722, 'Camelot staking position NFT', 'spNFT'), + (0x387f85afe91bd5a35d11ed8f659a52215a7e0038, 'Publicex Blind Box', 'PBB'), + (0x388731767b088ef6ee815a5797d48b6186bcc09f, 'LEGO PIRATE CAPTAIN', 'LPRT'), + (0x39005733e50f01b100078dd27bc51ca7f56f8ba1, 'SeidelSylvia', 'Sei'), + (0x392972e2b90862b8aed9a8f2dffdea64c9cf01dd, 'Camelot staking position NFT', 'spNFT'), + (0x3970a959dae2353eeafb691a0999c77af5807a1b, 'PoorCards', 'POORCARDS'), + (0x3a06719b82cda88a61e657d0b609e8a7290d8b7f, 'Konywic', 'Kon'), + (0x3ae0e75519b9af79c74ca55e6fe51cc064396226, 'a', 'a'), + (0x3af89653530b8f0b6d1e0f55400b58b6896c47db, 'Camelot staking position NFT', 'spNFT'), + (0x3b5e8aacef11f1b987c6760b9a3bbfeab86b68ac, 'Darwin Armory', 'ARMS'), + (0x3b7a4687857ec2db13c9b764668d98e1d5afcd69, 'Camelot staking position NFT', 'spNFT'), + (0x3c6e468542550b10e7fd1e88be51f6944a3cb308, 'TRIBUTE TO COLOMBUS', 'CLMB'), + (0x3cba09bab50f7fe321064ec1be9dfcda6382217f, 'Tele', 'Tel'), + (0x3d418f58162bcb0dafc3f5cc1acdead0e4c47e2f, 'Camelot staking position NFT', 'spNFT'), + (0x3d48c48b00bbe07ee050e4e49b6eed41a1b6c2bf, 'Airdrop Official Gemmis', 'AOGem'), + (0x3d9e490fab6117c719e5b6a788e14f985989575e, 'BART', 'Brt'), + (0x3de3179a436decde5d3e44e1bd14844a257c616e, 'COPPER PIRATE COIN', 'CPC'), + (0x3df48446834c699f8cef03572391b97ed275e437, 'ZAlupaaa', 'ZAl'), + (0x3e5e01290f2148305db3dfcb2395b52d96b5871f, 'Nitro Mandalas', 'NITRO'), + (0x3e7d9ef4c4355c2501161f08492e74ef57cf2ad4, 'Camelot staking position NFT', 'spNFT'), + (0x3ecbfa2d19991a997af45ed5f964f0a323740507, 'Corini', 'Cor'), + (0x3efc7ff5a85e6bfa11ebf9e073923d163d84801a, 'Enriched Nasalis', 'NSL'), + (0x3f3a9be3dd5a7fbb89045e9071e71d45dc2045f9, 'Sculpture', 'Scu'), + (0x3fa3a7929e821ffa80ace2adc9cacfad4aac9047, 'Robonaut TY', 'ROBOTY'), + (0x3fbd54f0cc17b7ae649008deea12ed7d2622b23f, 'Subgraph', 'SG'), + (0x40a0c191f1fc375de129a65422649e0948469f3a, 'WagmiPets', 'WagmiPets'), + (0x40d999931f7055f670511860e24624939e71a96a, 'Dev Protocol sTokens V1', 'DEV-STOKENS-V1'), + (0x40e7afd0c3d09d5a3123cf84b5452fee88093c3b, 'Camelot staking position NFT', 'spNFT'), + (0x40eb5590318b50b89d46668d85885aeeb90de12f, 'DIPXGenesisPass', 'DGP'), + (0x40f0aeab6383be2f254ce40b79089070fa1a21a1, 'Gains Network NFT 4', 'GNSNFT4'), + (0x4108832d29e82c5e5a5e7615a50079e0ff751429, 'degamozyg', 'deg'), + (0x414f4b01431efce22b6afd333aeda8a8f2aaf28d, 'FRENCH PIRATE', 'FPRT'), + (0x41ae86f5f6889102c17322aac603de6f7f3e03d7, 'IdeamarketPost', 'IMPOST'), + (0x4269af9076586230bf5fa3655144a5fe9cb877fd, 'gOHM WEEKLY PUTS SSOV V3 3', 'gOHM-WEEKLY-PUTS-SSOV-V3-3'), + (0x42a92f092386f3cabcaef82cdd8eb57e4d8fb63c, 'Camelot staking position NFT', 'spNFT'), + (0x42bffa50bdb999f45b42b8cbb56bc81850a05c11, 'Blackcat', 'BCat'), + (0x42f1efeb776806a96b4bb6ae095dce6e433294b3, 'kkk', 'kkk'), + (0x43111161dc2eb245a0f51bb79310c1e80d0129b4, 'OpenOcean Cross-Chain Adventure - Summons of Hesione', 'OpenOcean Hesione'), + (0x435fcb4d6476af10ba2c4a0ca5bad6135c601cb2, 'wierd ape', 'WA'), + (0x43789c8dc71dd260e83c360e081fab313bdb24b8, 'Stacks Investment Card', 'STACKS'), + (0x43ea7672e6126966eb466b33df5edd74d37d90df, 'FLAIR_ARBITRUM', 'FLAIR_ARBITRUM'), + (0x43f0ff6c41b6eb0478de4f122babac5964fe538c, 'Camelot staking position NFT', 'spNFT'), + (0x44030df2621a2c1d824bfb87f16e0c357eb56bca, 'Olympian 🔱', 'OLYMP'), + (0x441151fa130e200254f6a99fb1ec85932f0ad47a, 'Bordello', 'Bordello'), + (0x4424493577bd21b1f13e023af3745bf076fdac6c, 'HEIDAO', 'HEI'), + (0x4447d2437d1f12a39125ab69c761862edd85f95c, 'further', 'KEY'), + (0x4455e94057165d3c999efd0cca8d21c08c2dee96, 'Musse NFT', 'MusseNFT'), + (0x44b63c46e3e8c1edafd2f9229421ef8321a59886, 'VIKING PIRATE', 'VPRT'), + (0x4547fe46508b03c60dbaaba0ddcc8af831e6f9e1, 'Camelot staking position NFT', 'spNFT'), + (0x45ab58c73484640313ecfc1591f05f7b1df01511, 'Uniq VOXAs', 'UQVX'), + (0x463e8dca06802af251d48edaed2bb45b86313401, 'Weed', 'Wee'), + (0x4677f7688bfcd131f198992cd67bd627c6a7d4f4, 'V2X Genesis Crew', 'V2X'), + (0x469e4209886c0bedfe8b7fde574fd836cea222ad, 'Camelot staking position NFT', 'spNFT'), + (0x4725eabf41bbf43ad0557c7ba4406f8376285c7b, 'SapTradeOrder_Order', 'SapTradeOrder_ORD'), + (0x475a5a712b741b9ab992e6af0b9e5adee3d1851b, 'stETH MONTHLY CALLS SSOV V3', 'stETH-MONTHLY-CALLS-SSOV-V3'), + (0x4766d8244d68874ed6499f085e194be3dc4152aa, 'the Wall', 'WALL'), + (0x4772fb92e6606c87f7cddccdb880f7677768815c, 'ArbiPunks', 'APUNKS'), + (0x47b4ee9b46e606cdd9e5390a18219b44f1d4eb57, 'ODOS.xyz NFT Campaign', 'ODOS.xyz'), + (0x47f0a65ae31ebe813d833acaeebb150f0f2ba27b, 'Camelot staking position NFT', 'spNFT'), + (0x480862a25beb810e0f6b432c39260a2109cbc64f, 'AAYC', 'AAY'), + (0x481bad077abaee7de87f9593ac7889e87fec127c, 'Jakobs Burger', 'JBL'), + (0x486c0b5eacbf40f5d6ac1a52b64b44ee035dbb5b, 'len''s daily life', 'LDL'), + (0x48d45129b58f0d464bdd5023e013fffc40512c30, 'Camelot staking position NFT', 'spNFT'), + (0x48d7d6f65884f5b81dc62ef7e5f847f964688080, '2PAWDAO', '2PAWDAO'), + (0x493e5c09312420d45c32d7bab0ab6a206d253c37, 'MirandaAdolfo', 'Mir'), + (0x49cfe0f81f00d5fd50750d2fa6db175f1a5fcb7f, 'O MUNDO DAS FERAS', 'BEAST'), + (0x49e9ae29905d5fadef91f4d8fc7790a32d6e22b9, 'Camelot staking position NFT', 'spNFT'), + (0x49ef1780194f7cd7b4b6779c0b92d67a5b6fffc6, 'Arbi Frens', 'ARBF'), + (0x49f32e1f58c90c48b318d0bdf18c488df21bf74f, 'Camelot staking position NFT', 'spNFT'), + (0x4a22273b7468a2e5af718a943f4e08df45e14a26, 'EcecutionLens', 'Ece'), + (0x4a229e50ba6b6a71e1acb4c3be893270218a9dfb, 'Camelot staking position NFT', 'spNFT'), + (0x4a561031b0795cb0894e1f2fc116a4b7b6ae10e5, 'NFT修了者', 'COMP'), + (0x4ab8546a71db35038fe54c06e607915ef9ec5b3a, 'Devcon&imToken', 'L&E at imToken VII'), + (0x4b0da478ca366c1900c83238a88241b024c127cf, 'Arbitrum Brothel', 'BROTHEL'), + (0x4b0fbc52bda61357996f73572924aef242af0529, 'Annual membership paid on Arbitrum', 'KEY'), + (0x4b4ac2b5b00ee279b16eac07c034cdefb897a2c1, 'Camelot staking position NFT', 'spNFT'), + (0x4b7c17d6bbfc0ab8e505f7ff431d81155bbfbb8e, 'Dog', 'Dog'), + (0x4c0154f136dfc49a4fbc6b7e02fa8404227f3e5b, 'モデレーター', 'MOD'), + (0x4c1054dff878614a30164222625b1d1bfd819873, 'BirdsnBlades', 'AVES'), + (0x4c577a47f756e85b91cf3cb9e3c31cb41cd31475, 'REDACTED JPEGS', 'REDACT'), + (0x4c615ae86fe09ac6b71ce4e10c06c011a427eebb, 'Arbinauts', 'ARBINAUTS'), + (0x4c96226495e28ae2772cd5134608ba6efbf88169, 'FootyNouns', 'FN'), + (0x4ca65e1d4ad321c15bdce6ad0321349bbb9d8917, 'New 2023 Crypto Year', 'NEY'), + (0x4cc21a94b0ab9ce1fb22b693ee867e6cd15894d1, 'Military', 'Mil'), + (0x4d2d51c5d1936143b0ee118e6313c6f75bee9054, 'EmrTrade_Position', 'EmrTrade_POS'), + (0x4d3d7f3c9eb288c440cb07e63ec79ed27e89fb41, 'Camelot staking position NFT', 'spNFT'), + (0x4d8d58d1168abd99522159ab8bc9a0d295d4204f, 'Camelot staking position NFT', 'spNFT'), + (0x4dc4d0d57be169587c1d276322142c577685c218, 'BlindBox', 'BB'), + (0x4de95c1e202102e22e801590c51d7b979f167fbb, 'Realm', 'REALM'), + (0x4ee9fe9500e7c4fe849add9b14beec5ec5b7d955, 'Dopex Bridgoor NFT', 'DPX_BRIDGOOR_NFT'), + (0x4f43e0dea5733bdcfcf0533400ee5e1c204d1970, 'Girl In Happiness', 'GIH'), + (0x4f7d1c8b6893303023d672c5a6c8e99e1a2afe0d, 'BitByte', 'BitByte Genesis NFT'), + (0x4f8e82a3e1f0c7ef722132004653ea27ddf83158, 'imKey Chinese New Year', 'ICNY'), + (0x4fed070303348dc569c8cc0a5141ee62d4181a00, 'Buy me a Streak', 'Streak'), + (0x501ed18a8706da98f4f0779b91c9a13ff55d3836, 'ShibaFNFT', 'ShibaFNFT'), + (0x5032a11e98d996dc2db63f26e9f1e2535a43e578, 'Camelot staking position NFT', 'spNFT'), + (0x506c8f8f8c95997dfe984d8b8d94aec3bae2d3dd, 'barbie', 'babie'), + (0x508b91e672e74ae96f74b4881a790e8df62b3c6b, 'Degen Guys', 'DG'), + (0x50a96720b679cb4834e6bff8a69c347544704b7e, 'Catverse Journey', 'CATJ'), + (0x50aaced9396405d1410dcb8974a6c30b9757a4f7, 'veNFT', 'veNFT'), + (0x5118605ff2a8f19fb7b974897359c659e642cd3e, 'Smol Ring', 'SmolRing'), + (0x51219d8e3c35ca121abd1954db38aefaddb236c4, 'Tally Ho Arbitrum', 'Tally Ho Arbitrum'), + (0x517d1f2118ee57e568408f67a344b28b1641f898, 'DAILYNFT', 'DAILYNFT'), + (0x518b13616c6546e5c91c03c453e2e1d4b7e54988, 'Fire', 'Fir'), + (0x519be81e24404afe3745ab4c8675aabdb2ea1282, 'Tickets for EGGSGIVING', 'TICKEGG'), + (0x520bea2c1c58000aebb8289bd9e65045a4b03adc, 'Camelot staking position NFT', 'spNFT'), + (0x522810e92bfb808fef392650feeb2cc33ce52815, 'Volmex NFT', 'Volmex'), + (0x525c3e931188e202be09fb683855631d5fffba45, 'Camelot staking position NFT', 'spNFT'), + (0x52fca5de001c7f606a448a0778fb88de954a898e, 'Hero', 'HERO'), + (0x533042b9dfbcf4d12cc4661ac7f5f557089ed8f3, 'USDC Rain Black Edition', 'USDCRAINBLACK'), + (0x5339a4bc1c99624b07ae865c7c5f157996c49e4f, 'Bart Collection', 'BRT'), + (0x53930807383be7139e1da1a758370cd64469ee43, 'YAY Bears', 'YBEAR'), + (0x53c3a8460a6d8336226c3e4123b0f35ba77b4912, 'SapTrade_Position', 'SapTrade_POS'), + (0x53d5970524a5fc1bac54a5de713750160ea54215, 'ArbiTiger', 'ARBTGR'), + (0x54260eb4c15df60db09c123525d9b947d9cb1749, 'ArbipolyNFT', 'ARBPOL'), + (0x54697b027fe014bbdd28ab76973aa94e4cf42c8a, 'SapTradeOrder_Order', 'SapTradeOrder_ORD'), + (0x546cd36f761f1d984eee1dbe67cc4f86e75caf0c, 'gOHM WEEKLY CALLS SSOV V3', 'gOHM-WEEKLY-CALLS-SSOV-V3'), + (0x5497da030f647cc3ae4e2aff7fd45bd2069b3dae, 'Camelot staking position NFT', 'spNFT'), + (0x54ad43915c7db323c0a5d52df370a37410134f7c, 'Somnio', 'SMNIO'), + (0x5561f0264102e16b1ccb0ae1db9f8e13c49e7a37, 'STARCHILD 001', 'STA'), + (0x55df058c5934ba3f1ffcf6c726e75659009f0983, 'Arbitrum Babus', 'BABU'), + (0x55f0d62171bc440e756c557c3ef562502d80feaf, 'Dabiz Punks', 'DP'), + (0x55fd6e7665617321c6b66c3d0279f8132ada527f, 'Deri Festival on Arbitrum', 'Deri Festival NFT'), + (0x5692055d92d889e1208bc589489b5871a56dc385, 'Uemyu', 'Uem'), + (0x56d4094f8fa31d45dbbb17b304e71631422d653d, '1912', 'MGMB'), + (0x56dba83e4e86fc0d02c7099a3e9b72375385d139, 'Legendary Member', 'LEGEND'), + (0x57529eaad7551afe8263a68cc5a86eb128482661, 'MinotaurNFT', 'MinotaurNFT'), + (0x57676de03bf476ec80cc78c7dd6947b188e343ac, 'SapTrade_Position', 'SapTrade_POS'), + (0x5798bf1d3f534d99dffdcad64c8eb1350832af0b, 'Join /r/prepo_io Subreddit', 'prePO'), + (0x579942f9cce581ee83fae0b51cb40fc01391a169, 'Camelot staking position NFT', 'spNFT'), + (0x57d8123b36d095dcea167f79663a57089a05dd50, 'Camelot staking position NFT', 'spNFT'), + (0x57ff7d284f996e66daa83265f8b113921c93d984, 'BudXFestivalHead-AccessPass', 'FHP'), + (0x583209e342581f2db2401815ea7520c75fc316b0, 'ArbipolyNFT', 'ARBPOL'), + (0x58a162a1920534d35ff8c0b98ac1a5e913babd3b, 'ToolNFT', 'ToolNFT'), + (0x58e25b782d1935af844b1dff45824ad0451b2bbd, 'Meat', 'Mea'), + (0x59280e1b92930c6ac4701c290a6b091cf143bc68, 'STELLAR_NODES', 'STN'), + (0x5941df46b28110dfe9064ea328c7e5be944b1ec6, 'Camelot staking position NFT', 'spNFT'), + (0x598242e9b7148144243e8d8fb267ada178ce9f5a, 'Starlight Edition', 'Starlight Edition'), + (0x5982ed0145eefbbce61740589c7c6796d36275de, 'Camel', 'MetaCamel'), + (0x59d8f36cd872db8c76c771ed0609fdf4fbdba121, 'Camelot staking position NFT', 'spNFT'), + (0x5a1fc7fb1fce098721365edbb34b9cda4409b8c9, 'BlackGary', 'Bla'), + (0x5a39174e7f2b669a51ec179ef49b3eca7ddb96ab, 'Cryptids', 'CRYPTID'), + (0x5a3fdc0704103313090aefcc912151468a65fb18, 'Camelot staking position NFT', 'spNFT'), + (0x5a418ed2280e74d7df1053120b38a0d1fcc322c8, 'Role NFT', 'Role'), + (0x5a794d808ad9f4763e2d07811ccef175bd4db510, 'Pixel Mushrohm', 'PixelMushrohm'), + (0x5ace5590a02dd073fcd4a7e1a369d3d5f85f1136, 'Antibots', 'ANTIBOTS'), + (0x5b28a877206b8d1ae977271314e47c9cfcff4774, 'Shit NFT', 'STNFT'), + (0x5b3e3ff612fcaf9876256bae0553f244856e8b79, 'FRENCH PIRATE', 'FPRT'), + (0x5b90ad1390468c61f0ed82a5ca26e241afa6573b, 'LandNFT', 'LandNFT'), + (0x5c22524c5f7f8dd6d90602a20cbbf4c00a5ce2f4, 'PROJECTA', 'JKR'), + (0x5c7fe49314496a4ce296a935e00281c5ab412179, 'veSTERLING', 'veSTERLING'), + (0x5c8fdfe4da1b6a43fc5dd6584ec51584519d47ee, 'List LYNK', 'lLYNK'), + (0x5cc05f1d98fa65e3de125da9006579e991905ab2, 'Camelot staking position NFT', 'spNFT'), + (0x5d482d501b369f5ba034dec5c5fb7a50d2d6ca20, 'SPACE ID .arb Name', 'SIDARB'), + (0x5e3b541ad6acc4381c110247946c863e05ffc9be, 'Gains Network NFT 5', 'GNSNFT5'), + (0x5e41ccc3599785aa5f66dfc3da6cd1f9c8e64d63, 'Blockfiles', 'BFL'), + (0x5e497fcd23b77b2fc0a2039523ad8252b8d16f9b, 'ApeCity', 'APC'), + (0x5e6644cf62f5f1cfa6d77f12d179b8b53b85c7df, 'Camelot staking position NFT', 'spNFT'), + (0x5e8ddadac436fb79242a41a40f66b9866612a61c, 'WILD PIRATE LADY', 'WPLD'), + (0x5edae647a1234e3655fa857f4d7409a729e38bbb, 'ARBOSHIS', 'ANNOY'), + (0x5ede8a802f9b46afcc6865a3c1136bd8857a46e0, 'Surf Platform', 'SURF'), + (0x5ef2ff8e6ba2396af7e1dc7f7b5cfcb42a781a90, 'REKT VOXA', 'RKVX'), + (0x5f2790dcca34701218823b1943e6028274bcf441, 'Survivor', 'SURVIVOR'), + (0x5f4b118ac30ae45fafd4e2e448fb8247c44e2dc9, 'Ark Pass', 'aPASS'), + (0x60aebf0ca4854360c2927ad09e43c545a47ec16e, 'Moon Touch', 'MT'), + (0x60b57275f9da98c48396d415034cbc1e00e0a36c, 'SteakHut Arbitrum Launch!', 'Arb Launch'), + (0x60b6cc0666e3ddd8559a8a964e43225e651a6e28, 'Camelot staking position NFT', 'spNFT'), + (0x611575ee1fbd4f7915d0eabcc518ed396ff78f0c, 'iZiSwap Liquidity NFT', 'IZISWAP-LIQUIDITY-NFT'), + (0x611badc836661329f19e7dcbc2f120040b2cf15d, 'AceCattura', 'ACA'), + (0x619bfd934b11a1ec5de1ce77d6f237c258ed7024, 'ARBITRUM FAN BADGE', 'ARBITRUM'), + (0x619f68969bfdf690e4e0201a23e1777d648d92e8, 'Kraken', 'Kra'), + (0x621b48c4051e4c55da18f4e74c0c2d15402215d1, 'Apehade King Club', 'AKC'), + (0x622e5f305a797f844230b81c55cd8ac139ca4f81, 'Yieldification OTC', 'otcYDF'), + (0x623e0d493fd4b6aea21b21d9b2f7eb4dcd481e71, 'Baby Sharbi NFTs', 'BabySharbiNFT'), + (0x62a2d75972adbaafa9cf7db4421b0d1ac7a05a3d, 'Exit and Utility', 'X'), + (0x6302b9cbeb7de2e2083fccc5fc569271fba47529, 'MendozaMarion', 'Men'), + (0x6334e42eac252baadb12d590427a64e25fcc8ebb, 'Hunch Flippening Ticket', 'HUNCH-FLIP'), + (0x63355b657bd9fe0fde9894177f5ad3d5b2111c71, 'Camelot staking position NFT', 'spNFT'), + (0x63ad2e9cf5579100fad5bb7687c11efc394acde0, 'Camelot staking position NFT', 'spNFT'), + (0x63af6d6ab363fd06c7117e3ee5bca4db4fde5a54, 'W3POKER PASS', 'W3POKER-PASS'), + (0x63d86aec51a43e23f767431059ceca9820ede9e3, 'DP NFT', 'dNFT'), + (0x63fd916eea7855bfd0a78e0042f9cdb942a37764, 'Perpy-TradingVaultOwner', 'PTV'), + (0x6494f81699af60847224f03404993241caea1054, 'Paper', 'Pap'), + (0x64b34ad4c1bb4bfbf4c43b9b82ab245c3d58a1bf, '3xcalibur Holy Grail', 'XCAL-HG'), + (0x64cff2e42ea7f2283c31ba6d108a4038454168b5, 'Staked Yieldification Liquidity', 'slYDF'), + (0x64dc7298624cee864826392e4ff557e3e8e3f152, 'OP-ScalpPosition', 'OPSP'), + (0x64df89019bd55e8bc2f1ce5759fbc8c06b616688, 'COPPER PIRATE COIN', 'CPC'), + (0x65044cc982f355f6cc801e7df125bb38b2c1414e, 'FarmerNFT', 'FarmerNFT'), + (0x652d66fe218a7c33808b7d6a7db6a54e2f9f4a51, 'Punks on Arbitrum', 'APUNK'), + (0x659584f8fc12126dbef377a4d2db0533cb265358, 'Emoticons', 'EMO'), + (0x65adfb30e1a712573644d52b9c9629388811ea26, 'imToken & EtherPOAP Community AMA', 'imToken & EtherPOAP'), + (0x663e9b620b816438062c50eb7edbdfef8576ef9c, 'Tigers', 'TGR'), + (0x66723cf1aa847e9a4eceed920651da28473e131e, 'Camelot staking position NFT', 'spNFT'), + (0x66b8ed40800958c808b3b402515e105ed6229996, 'Ape War', 'Apewar'), + (0x671d6659c292e1100726a2353a6b1227e2e2bb28, 'Camelot staking position NFT', 'spNFT'), + (0x673cf5ab7b44caac43c80de5b99a37ed5b3e4cc6, 'gNFT: Locked gDAI', 'gNFT-DAI'), + (0x67a8e0ca63a7942d36144058fde61aa942a97784, 'Camelot staking position NFT', 'spNFT'), + (0x67bb954aab438af6111a9cec45c1b4ecd6765083, 'Zetas Cubes', 'ZetasCubes'), + (0x67dd2524e54f4565811175f4fd21dd6082ebbb83, 'Camelot staking position NFT', 'spNFT'), + (0x68ada3070ec804f91531d242725f5d50d58bbfc4, 'Camelot staking position NFT', 'spNFT'), + (0x68de7e4ad8712253b2c54f9dfdd01c3498e5d47e, 'Diligent Swan', 'Diligent Swan'), + (0x69002964e49c1e7c641390ef500803917c3eddb8, 'Banana', 'Ban'), + (0x6938463e91a9f5397cc76a902496739b5398940e, 'Camelot staking position NFT', 'spNFT'), + (0x69956d61d8229fc96175d40035ad0fbe81723acb, 'Camelot staking position NFT', 'spNFT'), + (0x69a9ee64cf740899e4a826733b22cde131777a48, 'Magic potions - Alchemists', 'MPALC'), + (0x69e896e4a435fa1e882630e37aa3553c9e23f2c1, 'ToolNFT', 'ToolNFT'), + (0x6a0959cd80fc9e2c1be958df1f8207c5b03f2a84, 'LiquiCats', 'MEOW'), + (0x6a1100e69aa98ddfcdd22503caebe4ca9b4bdbd9, 'GILGAMESH', 'GGMSH'), + (0x6a5a8ed5672828d01424a8eda5e16c6b9702f559, 'Vital Biosciences Inc. - Agreements', 'agreement_300017'), + (0x6a93de15672979c514cb959ad61dd894d95277c0, 'Lil Mutant Ape Club', 'APE'), + (0x6aad8b8485c8d559b1d6cb83f1eaa885f6336c94, 'Yieldification OTC', 'otcYDF'), + (0x6af2f91576e627c2273dce68be62c1f5c7da55f9, 'Custodian', 'cusNFT'), + (0x6af7db48b0e8bf4029ae84db255e569b7b8a3a35, 'TIMES Genesis Badge', 'TIMES Genesis Badge'), + (0x6b413dc56081e8db6a35d843b49d74714d9e2706, 'Oxbull Year 2 NFT', 'OXBY2'), + (0x6bc938aba940fb828d39daa23a94dfc522120c11, 'Camelot staking position NFT', 'spNFT'), + (0x6c25c2c42928ee8d65d2c3b0a29571bd4549a96b, 'Gregs (ARB)', 'GREG'), + (0x6c34076d8dc575cc2266711f278579ccf46bcd55, 'SoundOnShape.com', 'eth'), + (0x6c5f8a0288fefe767a361144b76e0a41beda51b4, 'Dopex NFT', 'DopexNFT'), + (0x6ce7e177d4b328e122c5ff7d439729bb88c7c32d, 'prePO Intern Twitter Follower', 'prePO'), + (0x6d5b94024fb5f2dcc56dedca6acbb2765464814a, 'Camelot staking position NFT', 'spNFT'), + (0x6d6ee54c2df10b5c68d7d329a1c4edcb68abba5c, 'Laretraite', 'Lar'), + (0x6e50ef59b003e03483690b9f5791135930b45614, 'GILGAMESH', 'GGMS'), + (0x6e8a1f2467251dcd486fccc99316682bc3bd7bc3, 'Camelot staking position NFT', 'spNFT'), + (0x6ea3cd6bd90a18fb528b39f53d5450bc36d2cfe8, 'NFTCLUB', 'NFTCLUB'), + (0x6fcb2ae015583e7e5ef27915e4ec6a9ccdbe5937, 'Camelot staking position NFT', 'spNFT'), + (0x7000b3b5e4e126610a7b7d1af2d2de8685c7c4f7, 'X7 DEX Maxi (Arbitrum)', 'aX7DMAXI'), + (0x7000cae2c1016e7de45ec9b54f1835b966bca4f7, 'X7 Ecosystem Maxi (Arbitrum)', 'aX7EMAXI'), + (0x7000d5d7707bf86b317dec635e459e47b9abd4f7, 'X7 Borrowing Maxi (Arbitrum)', 'aX7BMAXI'), + (0x7000f8270b955377e047da8202ae3c408186b4f7, 'X7 Liquidity Maxi (Arbitrum)', 'aX7LMAXI'), + (0x70a03d847bece11fd78e2a835c1050806369643f, 'UCL Blockchain - Core Team', 'UCLB'), + (0x70c6062100b09af2ec63345cda372d52423be4ac, 'SpacePepeARBITRUM', 'SPARB'), + (0x70d8405a29e8b2f42fbe10426c5ec50137570d5f, 'Arbitrum Creator Pass', 'ARBITRUM'), + (0x70e30da6a4212584c0adec5911caf4d05efba416, 'PRONFT', 'PFT'), + (0x71121bcf7a64f4be29fc5e99f21c98243468ed9d, 'Odos.xyz NFT Campaign v2.0', 'Odos.xyz'), + (0x71398a0d6ba7e33ef288aa49188298e6434cb7a2, 'Camelot staking position NFT', 'spNFT'), + (0x71b1eff7b94301e6127cb9dab1c01d5328613164, 'Early Access Credential', 'Early Access'), + (0x71bacac90bbf9a258bf86fc0288183db3ebb3924, 'zkHoldem_Flop_Round_#2', 'FR2'), + (0x71bd1562f7e0f182f8be472151befdfb824e26be, 'SAMURISELAND', 'SamuRiseLand'), + (0x71f5c328241fc3e03a8c79edcd510037802d369c, 'CastlesArbiGenOne', 'CastlesArbiGenOne'), + (0x721ed9dc73b97aee58794225ba2823c8adaf67bc, 'Camelot staking position NFT', 'spNFT'), + (0x7265209b90130820c3dbd2e2e252c44d87b9edd7, 'Full Moon Talisman', 'TALISMAN'), + (0x72c3205acf3eb2b37b0082240bf0b909a46c0993, 'Primapes', 'PRIMAPES'), + (0x72c546ffaba89b269c4290698d8f106f05e090fe, 'CUDL Pets', 'CUDLPets'), + (0x7308a054f7adb93c286529adc954976377eb0cf0, 'Credit NFT', 'cNFT'), + (0x734ac0534dda77a6bc776588d77e9a89447674a1, 'Decoder Bot', 'BOT'), + (0x736dee98bf861d2de0d697be04377ee6fc3333c1, 'ETHDubai 2023', 'EDB23'), + (0x73c58334f1f167d8a36aa88d4baa162c7a586aed, 'RyzenDao', 'RZD'), + (0x73cdbab97106eb850d7206fe8a98ca8ffc5ba886, 'Camelot staking position NFT', 'spNFT'), + (0x73f26ea6c853d49dbc7246b5a0c01de3bef4e917, 'Little BUG', 'BUG'), + (0x73f7f765b69130dea676542075a6bffb064d2fe8, 'LAUNCHER³ Early Adopter 🌱', 'LAUNCHER3'), + (0x7400199bba0274242f47e3b573aa5e775a0090b1, 'X7 Borrowing Incentive (Arbitrum)', 'aX7BINCENTIVE'), + (0x7406af4fec0d09020a679b09fdbf24d911e280f7, 'Camelot staking position NFT', 'spNFT'), + (0x74b8e48823658af4296814a8ec6baf271bcfa1e0, 'Nitro Shibas Family', 'NitroShibas'), + (0x750a7163d06c1ca47c595ad3fcd0908cc2fdcbb9, 'ToblinTown', 'TBT'), + (0x755a1bb394cedabaf31b1d627ebb188ed1c231a2, 'Commonopoly', 'COM'), + (0x75cbcc5414c539c2b302a5fa60e30b949d2d6f89, 'Gains Network NFT 1', 'GNSNFT1'), + (0x762dba1e9efa01b37cc2ad97ed7d9b1491290be1, 'RiceDAOPass', 'RICE'), + (0x768827d201ee951c28aff3e5b12451f12379e0b6, 'Camelot staking position NFT', 'spNFT'), + (0x76b671887d078c8e6dd6aed70ea3b2993c21874f, 'Magic Axe by Evergem', 'MAGICAXE'), + (0x76df335a42313ecc000aca7aabe69e73a16fec57, 'Moon Touch', 'MT'), + (0x7774a0df035513a31a9e975f45b803c99bc75e8c, 'vocuverse Adventure 000', 'VADV0'), + (0x77be472f1661fd77b9f71c7bc2bf89cf00db1b7e, 'FarmerNFT', 'FarmerNFT'), + (0x77f155bab80fc4941010f0dc758db7613e9e2d91, 'Helping Hand', 'HH'), + (0x7818f952ad69045343287627baf0dea9e1a4b8c3, 'LeonNolet', 'Leo'), + (0x78877918a7f9508452ff35c2babe7bac89b68177, 'Mystic Pyramide', 'APWine'), + (0x78cb1dbdff1a7878954e8c95513d363c3b16bc5c, 'GYPSY PIRATE LADY', 'GYPSY'), + (0x78fee44317ee6a0bb30b4d34f14d70bb8e3d025a, 'LuckyBirds', 'LCB'), + (0x79335c7da67e6d49a3048cfc01b026b3b587f538, 'Brinc.fi NFT 05', 'BRC'), + (0x79653bd1d8dfd611b95048b8886a4b3c46d5a345, 'Flappy Seals', 'SEALS'), + (0x7987b2e2f0aa9e47743d9443a9998e884d63272b, 'ONEAPES', 'ONEAPES'), + (0x799091bc25ae09d03edaa2af39e387a9f273f9b2, 'xiaozhuzhu', 'bv'), + (0x79d63a147a03dc7cf089e07e5ef43cebf996614c, 'Camelot staking position NFT', 'spNFT'), + (0x79fcc944ec64d8e1e64ca438934043ae737f2339, 'window', 'win'), + (0x7a106c17dc228d6729d1b0fef1f89bf4db9a4cea, 'ArbZeroNft', 'AZO'), + (0x7aa5bfaf2a817db2040eaa8db5cb4a440b126eeb, 'Vali', 'vl'), + (0x7af6399e4dd8c1d5b7c53dc2c6ad04b39049c83e, 'ETH MONTHLY CALLS SSOV V3', 'ETH-MONTHLY-CALLS-SSOV-V3'), + (0x7b23e55bd1b6157dd844818a6715da08dfb42f33, 'PAWDAO', 'PAWDAO'), + (0x7b61dfe7eb9cb9f50afc6ba5ed94bf59acd912ec, 'WENARB', 'WENARB'), + (0x7bce0f9e4dfa3f76eaac3ba415feeb216e5ca50a, 'Miracle Box', 'MRB'), + (0x7c4ba0fd433d6cce82f96d671e9ceee2f16d0d5f, 'Smol Kongz Reborn', 'SKR'), + (0x7c5ac7e4e352b733cf65721d9fe28a17da890159, 'CRV WEEKLY PUTS SSOV V3 3', 'CRV-WEEKLY-PUTS-SSOV-V3-3'), + (0x7c971b7b84f4501acf59b781fc5f0e928a3751af, 'TeresaSalerno', 'Ter'), + (0x7cd322b4f34271f0ec345a468c257861b2c462f4, 'LionsoulCard: Welcome to the club', 'LSC-W'), + (0x7d23017b5d9aa926ff4ecc31d9eed98d6b737086, 'Camelot staking position NFT', 'spNFT'), + (0x7d3868827e1ed67e8cb9e5e58a09754a619d7723, 'CelerNetwork x DeriProtocol Giveaway: $1000', 'Carnival RebateNFT'), + (0x7da0bb55e4097fc2d78a1822105057f36c5f360d, 'X7 Magister (Arbitrum)', 'aX7MAGISTER'), + (0x7e22b05668a2d6fe7a3e78615e1c2c461d4fb794, 'Kui Club First Course', 'FIRST'), + (0x7e275e7cf6f6ad873af7dbfd78fde9b556cdf027, 'ZOONFT', 'ZN'), + (0x7e7996be262958e4de63f4d61c7ec41fa5f21630, 'BrownStella', 'Bro'), + (0x7e86983cb0d21d81a22f186212740f7d91a9c5a5, 'Socks', 'Soc'), + (0x7f0d95b57dbef135c16f3ef9765633d93c1de621, 'BitKeep Airdrop', 'BitKeep Airdrop'), + (0x7f194bb268b2ffff5e9a5f1666eda30ae8c3fe7e, 'Camelot staking position NFT', 'spNFT'), + (0x7f3d524ef0833ba2f03286502cd323b04cce4269, 'Soul of Collectify''s Friend', 'SCF'), + (0x7f71d05587d1e65d94b1a51918726b5f517a304d, 'Arbimonster', 'Arbimonster'), + (0x7fb88c7fd0bcf7b07ad8970394abc3879779deff, 'Zeeverse: Lammas Eggs', 'ZeeverseEggs'), + (0x802a3009d53c5df2a21f008f39a0d8322840f16b, 'ReadON Catto', 'Catto'), + (0x806de131b9a2efd510fe8ac61202bb62618abc2f, 'NYALA XMAS NFT Collection', 'NYALA'), + (0x8076fae394e4567d77d2d80e1a37b6d1d95dcf8b, 'Camelot staking position NFT', 'spNFT'), + (0x80f7cb797678fd31350c597e5ba394b16dcd1bff, 'Power Plins Genesis Recipes', 'PPGR'), + (0x8133827ad7ed974747d94d018755ee09aff20b56, 'Donuts Protocol', 'DONUTS'), + (0x814bb8af9a9c8e65a59695a3040c6ac8489d6741, 'HNY2023', 'HNY2023'), + (0x815bc5859ed9db90f34dda04d53f128954e432ae, 'FarmerNFT', 'FarmerNFT'), + (0x8184b2db77126397d2baa1787216aa2af058f05d, 'Bresk Inception', 'BINC'), + (0x81d799d0cff6220efbc459e193954bd5c8958918, 'SPACE_TRAVELERS', 'STLS'), + (0x81df30f70da7a6cbbb1d6f61097ff371b51a206f, 'NaranjoSusana', 'Nar'), + (0x81e925d6a89fdc5ae2df3a2f0995ed8a8bd43277, 'voltGNS Volta Vault', 'voltGNS-VOLT'), + (0x8203b4e79b5bb2e8087f393320a068ccf680e282, 'ArbipolyNFT', 'ARBPOL'), + (0x82d676da3311da75db7acbf7d46a8c877aef1ca8, 'Mortal Portals', 'MORTAL'), + (0x8332717a53b73adb5897f473f54384956787a978, 'Staked Yieldification', 'sYDF'), + (0x8361c0fdc6c1a72b1db9da1c702d4903838d1bed, 'Skynet Nodes', 'SNode'), + (0x83a8c61eea079b98e70b7eff16c9508bb7064b63, 'DP NFT', 'dNFT'), + (0x8406f8d5fe3869588d5f895878745078122941e9, 'Adv3nturers', 'aADV'), + (0x841510bc6a75d5da866ee86bd7a84c86626265cc, 'Darwin Character', 'ROLE'), + (0x843309cabd5b4b43b298b856364dd27bb4f5d43f, 'The Obsidian Council', 'OC'), + (0x84a4c1771a209358259d621f70714d712a2fa90f, 'whataboutit', 'wha'), + (0x84a88d542aeba04a05b30701c89639bff077ba47, 'Scribbles', 'Scribbles'), + (0x84d7c3e61d1fb8a8379480201c71865cbabe60a6, 'Lufroloc Dishes', 'DISH'), + (0x85054ed5a0722117deee9411f2f1ef780cc97056, 'Camelot staking position NFT', 'spNFT'), + (0x8528fd1c6945e9291912ed2a568b280eb5196429, 'Mint Your BROCC', 'BROCC'), + (0x8580264236569dbe1523817ca22bd14c6752d195, 'Hooters', 'HOOT'), + (0x85b98d5b3ed74afabc09bc022ae107b709034714, 'otherdood', 'OTH'), + (0x86ae127bdc44c2c18c77a878075618ffbdab5ead, 'Arbitrum x Shake Shack', 'KEY'), + (0x87a4c5496dda17238a6d269598f167ad64e2c4d7, 'ArbOkayBears', 'AOB'), + (0x87b99a20f37a418430997a0e467703293bb4d812, 'SapTrade_Position', 'SapTrade_POS'), + (0x87baf6b3ed8025af01aef968ad0a0d4f6f327826, 'Bubble Bunny', 'BUB'), + (0x87dd1d680d210098629185e829a715a405cce8f2, 'Camelot staking position NFT', 'spNFT'), + (0x87df595db9aa01147acacddcdaa558c32e084354, 'Hiozsii', 'Hio'), + (0x885a7e0762a2b174212d3280dced6061f33b272e, '668fafafa', 'FA'), + (0x88c77f3bdac2ef5aa60603c21bf674259f9fc52c, 'yabbiedabbies.com', 'YDS'), + (0x89310c02315abd7c59820e24450586851deacf6e, 'babyarbi', 'baby'), + (0x893947337178410e511ed225c193178d1a71bd7b, 'prePO x Galxe Twitter AMA #2', 'prePO'), + (0x8940ae5d8c1a252889747cbe16def2bbe7d65bd0, 'Nova Pengvin', 'NPENG'), + (0x895a6f444be4ba9d124f61df736605792b35d66b, 'RandomWalkNFT', 'RWLK'), + (0x89658928bbd254ba57817d6ed7a501ea92f5a55e, 'Camelot staking position NFT', 'spNFT'), + (0x8a0dd3203a9f1cf66c7201e4a8ab4762d09f0b3a, 'ETH QUARTERLY PUTS SSOV V3', 'ETH-QUARTERLY-PUTS-SSOV-V3'), + (0x8ab83b68170d353b96050e252f5b0b14bf780acd, 'DAONFT', 'DAONFT'), + (0x8aed60744d7e557c6fe31de767a7c0e1d5b5f840, 'PotterOliver', 'Pot'), + (0x8afd5b7f41e5af9fedf91acb0bbd03f77274333e, 'Intro to prePO Mini-Course', 'prePO'), + (0x8b2535e61cba533db86c3e92d37bdbc3c94e2d7a, 'ParaSpace Settler', 'SETTLER'), + (0x8b4b670028a6c47c2e0e446c404c6f5ac00f644b, 'Poser Fork', 'PFK'), + (0x8b81043ac0fe5676b31005b772bec79d4aa19fe4, 'imTokenArbitrum', 'imToken'), + (0x8b959a000b7c20557e5d9e8af352a2a5589005bd, 'Pepe Football', 'BALL'), + (0x8ba8beae8308fd41bed3febfa7212267f600341c, 'xxx', 'xxx'), + (0x8bb61d92293fca873f5a716ff7a62be7b9f6bc07, 'Camelot staking position NFT', 'spNFT'), + (0x8bf1a0eea991f2183340960fce479279c26ad150, 'Connect to Arbitrum', 'Connect to Arbitrum'), + (0x8c28f229f3d661c86cdbf306675f8bc6fc01e72e, 'dreamWoman', 'SEX'), + (0x8c3531710a00ffeca5b9bd5b75fb73e2385062e5, 'NitroPunks', 'NitroPunks'), + (0x8c42b68c5411878e7e3ebe15b8d9a4d375c46c4c, 'L2DAO Meets Mark Cuban', 'LDAOMC'), + (0x8c44c0ab9a15bacad7a4b663a89593c406c6b4ea, 'DPX BONDS', 'DPX-BONDS'), + (0x8c63ac147be1d83dfc20fc3536fb94231828646d, '2nd Anniversary Mystery Box Giveaway', 'DeriTurns2 RebateNFT'), + (0x8cbaaf3ec012883bcbb96a81fc4ae76deb1e164a, 'Goodness', 'Goo'), + (0x8ccba09870e6756391c10963a78c139e6d5a835a, 'The Village', 'TVNFT'), + (0x8d4d7c0f28c7ae096e785e4bf4d7e77890c52b9f, 'Camelot staking position NFT', 'spNFT'), + (0x8ddd1c5be68f01d750f0b263bc30a64ef306d290, 'Camelot staking position NFT', 'spNFT'), + (0x8e5fc173da3557cc9fc12fd1e92952eab96f35b4, 'Camelot staking position NFT', 'spNFT'), + (0x8ec68f970e1c61b44b6d81c3b78ca931c6ffc92d, 'Reactor', 'REACTOR'), + (0x8ec75bc963181489d7fc1d892f687b8b0987d9ec, 'DefiHeroes', 'DEFIHEROES'), + (0x8ed29615c8bd41cd6339af0d019c9accb7dfc359, 'EROS Warriors Christmas Collection', 'LOEXMAS'), + (0x8ee05d0b43d98f3e236bdb8b6c87aafd79c74719, 'LandNFT', 'LandNFT'), + (0x8eecefe36f158f5c1363474c74e54c142090ac63, 'Camelot staking position NFT', 'spNFT'), + (0x8f18b769f0f3bcbd1c7628af067e9f6008f56b4a, 'Camelot staking position NFT', 'spNFT'), + (0x8f3761c1ca825680bd59b2ebb884ecaa2f0b3493, 'prePO Community Call #2', 'prePO'), + (0x8f4cbc81589ba28b67c371eab3d696ad67b25c24, 'Deevy', 'DEEVY'), + (0x8f7cce1068cf22cc86aeefaa1363beefe37e81b2, 'LuckyBirds', 'LCB'), + (0x8fc203c0702cfbe54b544aece64cfb2514130469, 'Camelot staking position NFT', 'spNFT'), + (0x8ff072c84ab7480f1ebcbd1338699e4ef01c9a2f, 'EPIC of GILGAMESH', 'EoG'), + (0x8ff552d18a33e7ea67033b971b495bb2f4dce0a0, 'Xor', 'XOR'), + (0x902da73c4b84c0b683985516be76dc286567ae89, 'My MetaTrader Nft3', 'MMTNFT3'), + (0x909a4d1575bce44e5fd041480551d4829ee20ecc, 'Jakobs Burger', 'JBL'), + (0x90c1b7ff2c37468894ef55317edfce3d9e1a474d, 'mystical animals', 'MLA'), + (0x90da65d8ca0256a809602bd7a7112d95d5ca8055, 'BFR-Deed', 'SuperDeed'), + (0x91204285a1406e12b1a44ee7161f2fd8e9b5cb20, 't1', 't1'), + (0x912140b8ea2d022d3a6e859dc1db9c3c60cf404a, 'SummaSwap V3 Positions NFT-V1', 'SUM-V3-POS'), + (0x916700a9b1bfc0ec43e205a0078b124dad5626c1, 'Smolizard', 'LIZARD'), + (0x9192afe66326a70ca91f78212fbb33dce8386453, 'Early Odysseys', 'EO'), + (0x91aa116c25a369417f7eb42b24964f6772baca8e, 'Bresk Cities', 'BCITY'), + (0x925f6348cfd83d3cc0e77830f7a176a33b550111, 'ParaSpace Traveler', 'TRAVELER'), + (0x92683de87f906121dc5f89ab85329c0fc4c41367, 'One Round Only', 'ORO'), + (0x92872a093c06f24a11072ad700ba88d4690aa527, 'My MetaTrader Nft1', 'MMTNFT1'), + (0x929987d33a29b5d7a137ad1a4812c8c15361d7e0, 'Vault Key', 'VK'), + (0x92999965cfcd00ae41a79c5013026c2830ec05bb, 'Camelot staking position NFT', 'spNFT'), + (0x92b0df6f40e29d1de3eb011f70edc5e7f173db80, 'bone', 'bon'), + (0x92c57948aa7714b5f05c74d6fd2ed4854b87d96d, 'CrossChainERC721', 'CrossChainERC721'), + (0x92c6f750a3d05790e5ea7efac5783fdfc811f515, 'Orbitrum', 'Orb'), + (0x92d291cabcc0fb767141174d5df22e036f48cf7b, 'Join The Resurgence', 'JTR'), + (0x933bf22534ef7deff2721b36718ebbdcd387abda, 'Bored Buddies Quest', 'BBQ'), + (0x93f3fb31bc58788c361fdd6046a29e03b0ca16e0, 'imToken Campaign NFT', 'imToken Campaign'), + (0x940cec525ac173291c356339a5e7fb01ba3dcf06, 'ARB ID .arb Name', 'ARBID'), + (0x94546e31a8eca3da6143eff3a0012be3af1ba7b8, 'Arbitrum Airdrop', 'Arbitrum Airdrop'), + (0x945a02155022bb55958a44186e612d2a566b989a, 'SAITARB Wolf Pack', 'SAITARB'), + (0x9476f6d3f802d7e24adca3366543c96c1a823ee1, 'Ark Pass', 'aPASS'), + (0x94d8b13b63ff056e572af3c84aa3a87b79b17746, 'Arbi Astronaut', 'AA'), + (0x95060c48c7eab59bad994d2fdcb3c0a05cf2fdcb, 'Huwomm', 'Huw'), + (0x955cb77aaae0f25fe0d5b3a7d4b718be557b9288, 'Toad Housez', 'TDHSZ'), + (0x955fdf4b0cc5283a313965d5860695c2dbcff22f, 'NFT Ticket', 'TIC'), + (0x959f0a0faedd571e3dd079832a584f03aebd643b, 'Woman Life Freedom Revolution', 'MAHSA'), + (0x95a688f1e6a52b7b16a40490a80d9e389eb0ac4e, 'OP-ScalpPosition', 'OPSP'), + (0x96b238a34ce4a53f5489d6af4ba0e86a7de1484a, 'Birblan', 'BIRB'), + (0x972e554612bd4b5f91d9b21fb794f28109091777, 'Blesssed Zombies', 'BZ'), + (0x977e8dca9ec69c33780c21a60f9681cd769f15d1, 'Camelot staking position NFT', 'spNFT'), + (0x978318cb2339b93fc3e177529f7f78c48f87541f, 'Name', 'Symbol'), + (0x978e469e8242cd18af5926a1b60b8d93a550a391, 'Camelot staking position NFT', 'spNFT'), + (0x978fb702bce7ab97825543b5dbc040a493836e97, 'OpenSea Arbitrum by Layer2DAO', 'OPENSEAARB'), + (0x97af4694c4b880b8cf9ce189df7785757ec5949f, 'gDAI Volta Vault', 'gDAI-VOLT'), + (0x9834159eaf9811cf4c568294d5c7c9158f84b384, 'Gains Network NFT 3', 'GNSNFT3'), + (0x985e0077ba25d231e9fcb7a2caa316e5b6156b3d, 'Preacher Program Q4 22 (Bronze)', 'prePO'), + (0x9896aa71dc0a33a3fe07c27378ed0f3a098d5248, 'Camelot staking position NFT', 'spNFT'), + (0x991ddb35454e79fcbc0a8ceea1b8feba9bddfd74, 'ArbitrumNewsDAO x DeriProtocol', 'Carnival RebateNFT'), + (0x9942f7d890e979f1b76f22844975eb914bb4f118, 'EasyToTrade Apes', 'ETTA'), + (0x994acdd69270f401e992749f799726bb6ae6f45d, 'Camelot staking position NFT', 'spNFT'), + (0x9965eaa20911c20cfde24ba58e297f9aac400f74, 'Dreamzuki', 'DZKI'), + (0x996d54aef8a3332150eb57bfec6c50ec4ffb1894, 'MythNode', 'MNode'), + (0x9972158b1456bd22cf4d2436831942a135492369, 'Learn and Earn at imToken VI', 'The Ethereum Merge'), + (0x999c1bf6371899117aaa5ede425fbb707454caac, 'AmpliFi OG Genesis', 'AOG'), + (0x99f9fd36d420d9945d426fbc79d4722dfc75c7e3, 'Bard Final', 'BF'), + (0x9a4d7bce1f11a2779e533bc65c191b637e2f046b, 'Bluedot', 'BUEDOT'), + (0x9a54927d5adf3150ecc0fa604153446331b32e37, 'Camelot staking position NFT', 'spNFT'), + (0x9abd75e8640871a5a20d3b4ee6330a04c962affd, 'Tableland Tables', 'TABLE'), + (0x9b058b461d31978c7acda80cf328024dbbb94625, 'Add PPO to CoinMarketCap Watchlist', 'prePO'), + (0x9b061999f31c58e7cb3d2eedd7d3c745c347a3d4, 'Lufroloc Dishes #2', 'DISH2'), + (0x9b7723244b62b49b57092aa8003fe8f49e0fd91e, 'Smol Sharks', 'SMOLSHARKS'), + (0x9b926245cdfe2a24ec46d1e9a643d6520609782f, 'Camelot staking position NFT', 'spNFT'), + (0x9bb4e839be0feccdf317641c59af843bc2259765, 'Space Apes', 'SAPE'), + (0x9bf58e1c4b588c1718425a2a5e3bdbc392878420, 'NFT Notes', 'NOTES'), + (0x9c2d1651824f88878bbbbad82bad5533a226a151, 'Vela Beta Core - Official NFT', 'VELABETACORE'), + (0x9c7f5225b9fea79e264cc3ef5b8fb21a973afd21, 'Camelot staking position NFT', 'spNFT'), + (0x9cab1070e60a76c1f096de4b8a0273d3c2c5d7fb, 'Brinc.fi NFT 03', 'BRC'), + (0x9cb2f70c8360461ab35e31a07ae9e94b26ca8a86, 'Camelot staking position NFT', 'spNFT'), + (0x9cc9beffe64868cb4b97890a19219449890e6ea0, 'ETH WEEKLY CALLS SSOV V3 4', 'ETH-WEEKLY-CALLS-SSOV-V3-4'), + (0x9cd0df67d36b8489ae55cad1336c770a355b62d4, 'OMT Finance', 'OMT'), + (0x9d5d23e22fb63202499b1801354dd2d79194860b, 'Shogun War', 'Shogun'), + (0x9dabdde40f8bbe0252c5cdf01c76b5045639ccb3, 'Crystal world', 'Crystal'), + (0x9e22a752c4ed3d6c5dab0123ed6a1c7ecf575200, 'Arbitrum x Tally Ho Bridge Weeks', 'TallyHo_Arbitrum'), + (0x9e3e3fe12897264e6982e36797a60911cc0aa238, '3xcalibur Camelite', 'XCAL-CAMELITE'), + (0x9e61414e6cf992b2aeaf2158c6c0138c19970115, 'Lucky KEY', 'LKEY'), + (0x9e722e233646e1edea4a913489a75262a181c911, 'ETH CALLS SSOV V3', 'ETH-CALLS-SSOV-V3'), + (0x9eb256fb590d6262c3770a43872f0ed96afc676e, 'whatdouknow', 'wha'), + (0x9ef89a01dac10f71fafebc38abf001925b0fbe3e, 'ARB Odessey NFT - The Blueberry Nebula', 'The Nebula'), + (0x9f287bea8ba890827ca1d462ffb2a539a7e05879, 'prePO Follower on Galxe', 'prePO'), + (0x9f62326848ffed6452c70f47957c375c13d5dbda, 'Kalpha', 'KAL'), + (0x9f6e3b842ca94f91593d4a8d21dd5d36e4fc8e9c, 'LandNFT', 'LandNFT'), + (0x9f7ebc1b240d0f5062b5d9823133297ccd3796f8, 'Proseco', 'Proseco'), + (0x9f9b9f6756f83cac80b90d87aaca5d42f1d9d532, 'Camelot staking position NFT', 'spNFT'), + (0x9f9cb610acdfcf2d4ace55889cb3d5f784b5d354, 'Camelot staking position NFT', 'spNFT'), + (0x9fd5b98251becfbf66bead6035fd5c95afdb8bb1, 'HAPPY PIRATE', 'HPRT'), + (0x9fe6688e7d4bfbc69fe2727f578b1f1b8c75b930, 'CastleDAOBallot', 'CASTLEBALLOT'), + (0x9feb90d810865227650be99f32ffd6b748032568, 'BitKeep Airdrop', 'BitKeep Airdrop'), + (0x9ffa357f8d1f8e7d87ca8b76889a159762dc95a0, 'Sandcastle', 'SANDCASTLE'), + (0xa00d00fabed32b9489ac0e9a5b7687bafee88c32, 'NEWTWO', 'NEW'), + (0xa0582ee72078149ff3f71339978a67a05aaa6b26, 'join', 'joi'), + (0xa068eda6d8044f8c35c5c2fbe3cc0676743322ef, 'Camelot staking position NFT', 'spNFT'), + (0xa0dc9e505373e92ede773de021444ae251f9c171, 'Mint Your EGG', 'EGG'), + (0xa1199006634821a8861709e9db370e32c3579d96, 'ToolNFT', 'ToolNFT'), + (0xa1c4f23e8b07d3caf6c7164e66c47a738367f1eb, 'Bad Apes', 'BAD'), + (0xa208c9212fa6c3dab4cb8eef61c999136d61ebe0, 'Xmultiverse open-up 3D', 'XM'), + (0xa219a21fcd9a9e3bad80b2c893ad7d174014823b, 'ART of PIRATES', 'APRT'), + (0xa227c77aba2945631071c8c9667ee5aea9c4fed1, 'Waterfall Lottery Ticket', 'WLT'), + (0xa264559b1fa1acf74d878a1a7103b39c12f424fa, 'Camelot staking position NFT', 'spNFT'), + (0xa2a483f57a7c8a9e4e43ca3f695135b87ab1c2b0, 'Poser Fork', 'PFK'), + (0xa2adf5ef43226a4a6a7c6b360f486bdaf2712bc8, 'Algebra Farming NFT-V2', 'ALGB-FARM'), + (0xa2d505cca794ecf17d68defd939d55b10c095f87, 'Camelot staking position NFT', 'spNFT'), + (0xa2fa3d5fab2010ec55e6dee5349d60a704aa8c63, 'Duball69', 'DUBALL'), + (0xa33d7ae00ed880870ded662edde96235f6cd5b9c, 'OpenBlox', 'BLOX'), + (0xa3aacc343614b71f6e5fd12bd9a5b17587f0daad, 'Crypto Whale Sharks', 'CWS'), + (0xa3af894bdb8c55728af978cffeccb6202362f1bb, 'Camelot staking position NFT', 'spNFT'), + (0xa3c08233000129883ba92ae710c3d47cd7d49e3a, 'Rain USDC', 'RAINUSDCNFT'), + (0xa3cf3b16f468807363a49390efbb97b1e39b94b3, 'ARBPUNK', 'APUNK'), + (0xa4200de56d000ea6e6a2704379509bb16b69158f, 'Rainbow Element', 'RAINBOW'), + (0xa4734bf76f511357d4353d88b84204957972ac84, 'AI Arena Mint Pass', 'AAMP'), + (0xa4a3458a76e42795106b74d10fa2648b39074385, 'Galactic Gan Quest', 'GALAXY'), + (0xa4a64b95f8d40b5ec47957449b532f2c404282fd, 'why', 'KEY'), + (0xa4b3da37ec0327ed3fa69374330c8cac5e1d7c47, 'NFT Garden', 'NFTG'), + (0xa4b574404cac02536910bb03982e078c2ba5cae5, 'Presale Preacher Program (Bronze)', 'prePO'), + (0xa52193ad3809a06eaa1884ce846780a575999172, 'Camelot staking position NFT', 'spNFT'), + (0xa5732abd1ffc6c3864c84461c275bb75e81ea9ec, 'NFTToken', 'NFT'), + (0xa601cf73b78a5a57ddc368e77747a8479dd4ea69, 'GO-FUND-THAT', 'GFT'), + (0xa64287480b25169453047e8a9471d0deaae26986, 'DeFi Toads', 'TOAD'), + (0xa6fd67176f8249b3bb9ddc1bcf8e8037d4989d94, 'BART', 'Brt'), + (0xa7507c48d78345475b85bc27b9ce9b84b354caf7, 'BTC WEEKLY PUTS SSOV V3 3', 'BTC-WEEKLY-PUTS-SSOV-V3-3'), + (0xa779007bd199f429f8d44a6660f26b0d979b8b62, 'Sidboy', 'SD'), + (0xa8224b1553fbc0860f496a4a023311c81e6451ef, 'Diamond_Holiday_Campaign', 'diamondprotocol'), + (0xa946f2a0ec19996cc34c2715f8700103a45a90ce, 'PIRATE WAR BONNET', 'WARB'), + (0xa99ac6bedcf61299480b29813929860b9ab5b5cb, 'ShibaFNFT', 'ShibaFNFT'), + (0xa9de8801a49521a18a4a7fc270005c418dd63743, 'EmrTradeOrder_Order', 'EmrTradeOrder_ORD'), + (0xaa3b961346abcabaa94c6c4838f7eb0021c7dcaa, 'ChainBuds Arbitrum', 'ChainBuds Arbitrum'), + (0xaa5a687f726deb7f45e67dbc29d746efc502e957, 'APE', 'APE'), + (0xaa7e9b8736d6375371d72fb4c4fe9ffe19b7d4a0, 'Robot on the moon', 'Rob'), + (0xaa8c588e8acd1849c04159b492e622a8d6b85b1c, 'pVault-v3-ETH', 'PVAULT'), + (0xaab8cf2f584ce824ecc040f2e08da45791c028f4, 'Lamp', 'Lam'), + (0xaabe8ae58d48cde32c558af6dd4a60a082a86f8a, 'rainbow', 'rai'), + (0xaac44af5a2b9585ddab3948a06ad9b34fa9f818e, 'AgueroJulian', 'Agu'), + (0xaae12f8ed52d7dc886b7fe056cda62c02285ccf5, 'Swing', 'Swi'), + (0xab400a888870bda0724d8ab13b991c27598ec261, '2022', '202'), + (0xab5dd930f38bb2323ddf5239042b82c09a7f1777, 'Dopex Genesis NFT', 'DopexNFTGen'), + (0xabad90f6bc71c7363e8cfa7db19d689bc36bdb67, 'Add PPO to CoinGecko Watchlist', 'prePO'), + (0xac025c9f9b54c1cd0562df721e3db309dff08c9d, 'Camelot staking position NFT', 'spNFT'), + (0xac4cb0e5640711938bf87956a671bdaffd0d1d43, 'Samurai', 'Sam'), + (0xac707999d05c4048844b78c737d9512dfdff524d, 'Ape Treasury Bill V2', 'APE-BILL-V2'), + (0xacd99b3890cf4ebc8a8d7da117c857882f840ed2, 'Camelot staking position NFT', 'spNFT'), + (0xad31fffdbef7006a36aee6bd20aa1705242122aa, 'MinotaurNFT', 'MinotaurNFT'), + (0xad5bea036b676a89d353a20f824d51dd040e45f3, 'Bored In Borderland', 'BIB'), + (0xad6ba50a4e3517fedc7553300b2f93a667715d7b, 'FrankWright', 'Fra'), + (0xada0d7b37c7032dd97d829be6c9fe934205f372a, 'RubyDex Community Missions S1M1-Women''s Power', 'RubyDex Community Missions S1M1-Wo'), + (0xadacf2f965aca683f112200ec71587cc4ca069b3, 'Tales Of The Birds', 'TOTB'), + (0xadbd2f81d8446dca88c2cee6438a958ddb9235eb, 'Camelot staking position NFT', 'spNFT'), + (0xadd88cf1ac8b622bb1af6e8dd8c01cbf160b9eb0, 'Name', 'Symbol'), + (0xae089fc1519ade22696057afc52682cd7c619f16, 'CNY 2023 - Dopex', 'DopexCNY2023'), + (0xae0d0c4cc3335fd49402781e406adf3f02d41bca, 'Smol Bodies Pets', 'BODYPETS'), + (0xae3e1a35161a4e4fae664797ea376b1c8c9efbab, 'BART', 'Brt'), + (0xae96b172b07c9b5c9d5c3aacc522c88916e40f86, 'BoredOG', 'BOG'), + (0xaea623be503f229e1cde9daefabe428239b8bd25, 'Camelot staking position NFT', 'spNFT'), + (0xaef63250c3191281e1ce52b66c0d04e7b4f53dec, 'Beautiful Pirates', 'BPRT'), + (0xaf093f9ffc7bda161b5288494dad30bf6cea7338, 'Vault Key', 'VK'), + (0xaf266a3134680742ac39bd136feb550660a73276, 'zkHoldem_Hole_Card_#1', 'HCARD1'), + (0xaf3cf1fed0b045d7c25aae6625e6c7d2993edb56, 'MessageInABottle', 'MIAB'), + (0xaf730246e5d2c32985f47425aeecc46f5b0a94a5, 'ArbiApeClub', 'AAPE'), + (0xaf855e4ca3ce723ff92f78dd3a076d669700fc5b, 'SmileNFT', 'SNFT'), + (0xaf98aa19d7d7e32fa8e80e39444c360d4973e379, 'Camelot staking position NFT', 'spNFT'), + (0xb03a572ee91aecbdfa8cef8196bf140a1e7410df, 'Boxer', 'Boxer'), + (0xb07b371bf4f4634cf816051d2ee741164d4203fc, 'Learn and Earn at imToken V', 'L&E 5 NFT - imToken'), + (0xb0b789c1ac1330973183a1849657003c9ec99948, 'PIRATE CAPTAIN', 'PRT'), + (0xb107a576873530c8a3af749101de06089c919735, 'Smoothie Upvoter (Public Sale)', 'prePO'), + (0xb11148c8b2f1ca609520fa6476fd0ac037b72312, 'Camelot staking position NFT', 'spNFT'), + (0xb1194d560ba9f59ed89330509df228bc4216475f, 'LiquiBinary Bones', 'BONES'), + (0xb16966dad2b5a5282b99846b23dcdf8c47b6132c, 'Smol Car', 'VROOM'), + (0xb20b04f3611d14a88f55a333a5a4f09e01cf9804, 'Camelot staking position NFT', 'spNFT'), + (0xb20b4d45640fe8a71ca2329f6c7ec415a2a26b51, 'OOCrazySnails', 'OOCS'), + (0xb20e1fd79f27d1e50b096ac7b4c46f65a7dbdb2d, 'GirlsDrawn', 'GRLD'), + (0xb237f4264938f0903f5ec120bb1aa4bee3562fff, 'Wrapped Bitcoin Arbitrum MAI Vault', 'WBAMVT'), + (0xb2949a1455269b83c3971d0e932fc9bb95f79c42, 'Camelot staking position NFT', 'spNFT'), + (0xb331b9d7beee761ba9fa127d91fe39ba961b76a5, 'Arbi Chickens', 'Arbi Chickens'), + (0xb337a0b7fa5254d90f239c410b06b2340095ed35, 'Overnight x Ramses AMA NFT', 'OVN RAM AMA'), + (0xb383114e754ee9c5c492ec8f686d702c05fd8fd0, 'Relic', 'RELIC'), + (0xb3963985de1b174462dde56418ce7d419caa4c12, 'Aboard Exchange Space Puzzle Campagin', 'Aboard Space Puzzle'), + (0xb3aa877eaf97233b3ca892288800bee8c77cba79, 'Camelot staking position NFT', 'spNFT'), + (0xb43c35c8147ec47d0e2ed3b67396dcf895ef72a5, 'PPO Token Presale Participant', 'prePO'), + (0xb44b459b145c496ef59f9ab3f8fc7521a07ff6ed, 'Camelot staking position NFT', 'spNFT'), + (0xb46de59852305a93b47a089293d6be166476ebd1, 'Camelot staking position NFT', 'spNFT'), + (0xb47135cf54252291d14c5d9910763f7863e13442, 'Camelot staking position NFT', 'spNFT'), + (0xb4e27c54fa5de9ab00e4c5f13bd4686428080e79, 'ArbiSocks', 'ZKSOCKS'), + (0xb4e3da833e9dd85aab1379062d72e523f77c07bf, 'AI Arena - Mint Pass', 'AIARENAPASS'), + (0xb4ec6b4ec9e42a42b0b8cdd3d6df8867546cf11d, 'rDPX WEEKLY PUTS SSOV V3 3', 'rDPX-WEEKLY-PUTS-SSOV-V3-3'), + (0xb4ff7e61f825a5b80e20f6070fcc959ea136ed88, 'gDAI Volta Vault', 'gDAI-VOLT'), + (0xb50be11a92462697c63ac087c7a39070723b6b47, 'Algebra Farming NFT-V2', 'ALGB-FARM'), + (0xb5108062de111f61e0dd585f4225ae18d1bb21d9, 'Camelot staking position NFT', 'spNFT'), + (0xb54d2a68fc250eed644ea0774110179276d307d2, 'Ski', 'Ski'), + (0xb585ec206c92661935c5201eeee8127e183f5749, 'fake veSOLID', 'fake veSOLID'), + (0xb59221cfd729d5e59fe618ed636c89bd0ad88503, 'Catverse Pass', 'CVP'), + (0xb5e89dc549b070cdd51fc18f1072ae9ec6e7a7c2, '6th Anniversary NFT', 'imToken'), + (0xb63ed96f2be17d7c5e4445ce99c36a0f30852494, '1K PPO Discord Role', 'prePO'), + (0xb6945b73ed554df8d52ecdf1ab08f17564386e0f, 'ImpishSpiral', 'SPIRAL'), + (0xb7e2c4fcd2c5c59528c5cdd8562b8c2e0e3e8bf3, 'Camelot staking position NFT', 'spNFT'), + (0xb7f5a2ae35b23663412b5adc563a6e19c80e694e, 'Doodle Forks', 'FORK'), + (0xb7fb494acf668dd0e61c98d67ca3aaa98d6f1abe, 'Camelot staking position NFT', 'spNFT'), + (0xb89b0fd63b879aea48040bd74eb94ad7b9f517e0, 'Camelot staking position NFT', 'spNFT'), + (0xb8c465243b405a5908dc2a664535025b5ba5bac0, 'Wastelands', 'WSTLND'), + (0xb8ef95466d7f3cfab6d6fee7351b2e3bf9eb7a00, 'ArbiMistic Bunny', 'ARMBUNNY'), + (0xb90e41e9638aeba12208ebaef949391ecbfb8a08, 'time', 'tim'), + (0xb9ffb7edd27861c45bd456f2e3aea3f18ecf0cb2, 'FarmerNFT', 'FarmerNFT'), + (0xba01c19de12e66afa6eaf803b90add7d46e6629a, 'Arbi Hearts', 'ARBIHEARTS'), + (0xbab9e5b2e0286dff931a44b3d72ed2b4bd98db2d, 'asdfghjklklkjh', 'asdfghjklklkjh'), + (0xbb5e6438336187ef87e21798dcda8fc98fcfa65a, 'PeekABoo', 'PAB'), + (0xbc4f9abf75d1fe49ed297f114b0768975823b0af, 'CAPTAIN AXE', 'CAXE'), + (0xbca4ce9c5e9db0387076b792fa517cfe0c8627ce, 'prePO Guild Member', 'prePO'), + (0xbd1ddae749293ab1d3b79ba9cc4a88e8e021c8d8, 'Camelot staking position NFT', 'spNFT'), + (0xbd6bad55f53a0d738021de2edb54c4ee08ff0549, '100 PPO Discord Role', 'prePO'), + (0xbde81caa49920e37fb8bb887304e78139afc5070, 'The Fitting Room Canada Inc. - Board', 'board_300021'), + (0xbe36472d32ced4a4db7a887536751a1231dc8adb, 'AI Card Render NFT', 'ACN'), + (0xbe769b9a7be3590059b2104bf6b3f7f4e47230ce, 'Zetas Solderas', 'ZetasSolderas'), + (0xbf23ae09cb539c810394d7f7dc7c3d8ee89e6eb2, 'Shogun War Talisman', 'Talisman'), + (0xbf433eb2d0f6c4f07e562e9180083898819b4b35, 'Vault Key', 'VK'), + (0xbf737f1114ae67fabcda606a0a8ac1ecbd4c3214, 'Yieldification Perpetual Futures', 'pfYDF'), + (0xbf8ccb53f070d85cf7a388dd42c2a5a9a1a1c357, 'MetaLine NFT Mestery Box', 'MetaLineBox'), + (0xbf8de2544cbbad46c5ac2aa631180fb808f2a5f2, 'Camelot staking position NFT', 'spNFT'), + (0xc072704f8d70332e3c7e3133f699b79f49820a19, 'Camelot staking position NFT', 'spNFT'), + (0xc08ca1fffdecfcf1e18cc1c4bd632d65f9ee49f6, 'Camelot staking position NFT', 'spNFT'), + (0xc0f63bfddf0594ec8173a5231c4ed60098d502c5, 'Cosmic Warriors', 'COSMIC'), + (0xc1556802a2576647f60d2e51550e07c147ec2d3b, 'Camelot staking position NFT', 'spNFT'), + (0xc1b8448793f47b42fbe9468df35e93e053042387, 'Arbi SoudCAT', 'ASC'), + (0xc1d0ad3cbaff4959d5d2e5675b601411f090c150, 'Camelot staking position NFT', 'spNFT'), + (0xc1fcf330b4b4c773fa7e6835f681e8f798e9ebff, 'Arbibots', 'BOT'), + (0xc2907944849d2793bcbd2ad24f55893092bed151, 'Apebitrum', 'APEBITRUM'), + (0xc2b5ee9872dda654b9345d91787182c90bc30a1d, 'ARBI PIRATE 2022', 'A2023'), + (0xc2b8b47bb2d576a6538794671e8eeb7e2324d3bd, 'NelsonKaylee', 'Nel'), + (0xc334cdd1a0f3c2e9be619fa17f1183605b806396, 'TRIBUTE TO MAGELLAN', 'MGLN'), + (0xc33958d518aa8625374bacde8f903c2042f3c0cd, 'Mutant Smulips', 'MSMULIP'), + (0xc34c4c95ae27939ca7d19a358fe8742bebc82d12, 'Aabitrum music', 'Aabitrum music'), + (0xc363e2e59b6aadd0378df9435513e8f667878f9e, 'EmrTradeOrder_Order', 'EmrTradeOrder_ORD'), + (0xc3a7213b769dcc75e43659efb70d49246f35bcdd, 'Len''s Friends', 'LenF'), + (0xc43104775bd9f6076808b5f8df6cbdbeac96d7de, 'Battlefly Special NFTs', 'BattleflySNFT'), + (0xc43152b368d0be17771eefad8d26353feb49cbcc, 'ligo', 'lig'), + (0xc45c63b5991201fcb67920f7b74eea25042e5957, 'Arbigans', 'ARBIGANS'), + (0xc466888e3570f293b762c22f819f94bc241f4146, 'Flood Beta Pass', 'FB'), + (0xc4b3c85fc6fd97ec85a942e489308708edc021d1, 'deBridge', 'deBridge'), + (0xc4e5a53a65ce54f317ae2a6ef14ebe57534e95e6, 'Presale Commitment Keeper (Bronze)', 'prePO'), + (0xc55bfcc26f9dbd3e0277ca85721de8f5e4a3f7da, 'Circle of Life', 'COL'), + (0xc56406a490774b7c1c523b77ab8c2513ce826726, 'Camelot staking position NFT', 'spNFT'), + (0xc59836fec63cfb2e48b0aa00515056436d74dc03, 'ETH MONTHLY CALLS SSOV V3 3', 'ETH-MONTHLY-CALLS-SSOV-V3-3'), + (0xc5c84adac65970fb4bb969a30e01e567ee3558bb, 'Infinity Wallet Community', 'Infinity Wallet'), + (0xc5dd088da84fddd927d64e457cbf53164b3d436a, 'GILGAMESH', 'GGM'), + (0xc60dcc711882ffefc103955962b0cf880f68f2c7, 'phone', 'pho'), + (0xc63a3bb152128fe67ad630f47ce6a415c86a37f6, 'EmrTrade_Position', 'EmrTrade_POS'), + (0xc6b5e2af84ecd52c8c58c7178b98d27e5e380db2, 'Camelot staking position NFT', 'spNFT'), + (0xc6c0b644e1aacf40745413f0404940488be74fcb, 'ARBI PIRATE GAME', 'APGAME'), + (0xc7044561328be256a37b2aaf44b42d0e4c86efed, 'Camelot staking position NFT', 'spNFT'), + (0xc741bf2cdcda007e76027348b39f9fff67ac885a, 'ETHTaipei2023', 'KEY'), + (0xc76a3cbefe490ae4450b2fcc2c38666aa99f7aa0, 'Wrapped Ethereum Arbitrum MAI Vault', 'WEAMVT'), + (0xc7763b3d6c84a70f6fc917025cb17c43c9785f36, 'Preacher Program Q4 22 (Silver)', 'prePO'), + (0xc7def043483762d09c8ccb9502010c6b733a0fe0, 'Yieldification OTC', 'otcYDF'), + (0xc7fde0254a40b978802a3d78c97193fd7c381be0, 'Welcome to Web3 0.01', 'WtW'), + (0xc81ae40cce93d7b5e11996f7af4d00b2267fdb5c, 'DeFiTank', 'DFT'), + (0xc8219a335dce41d64b40d3d3d64beee31b9a7991, 'Exhibitio', 'EXH'), + (0xc827be4d5462871fcccddd7c828fe3ab06c64258, 'CHIKIN', 'CHIKIN von EGGFAM'), + (0xc83fad1be05261de4e4e0b7da7df2a11b039c6fe, 'Wizard Alatar', 'WIZALATAR'), + (0xc8509e1aac39e7b6244f843c68935ef70e531f02, 'ARBI PIRATOFU', 'ARPI'), + (0xc85666b8c042028ac9d2bcbfdc1477ec4dce1455, 'My MetaTrader Nft2', 'MMTNFT2'), + (0xc86583a20286956d057cd9ec3939ac388245a782, 'zkHoldem_Flop_Round_#1', 'FR1'), + (0xc8b3a1147776c0cc43572105737d1c736022457f, 'Camelot staking position NFT', 'spNFT'), + (0xc8df044feb89002e1a75d41415122c3775298bef, 'prePO x Galxe Twitter AMA', 'prePO'), + (0xc8f005a95865f6ff22f432816b4c38d98eaca0be, 'The Fitting Room Canada Inc. - Agreements', 'agreement_300021'), + (0xc92f5f74a9783b686552bf772827708fa5c236a9, 'Lynk Me - Board', 'board_300018'), + (0xc967ac145e7ad2ad1ad5dbc26e3aa012f078e290, 'History DAO', 'HISTORY'), + (0xc9b45da95b0545f3c675950a7d422b33f9d44a2d, 'DroEats', 'DROE'), + (0xcae375cfd3a058293bb7cbe0a28fd2b7fab3765a, 'Robo Punks', 'RP'), + (0xcb0347cc2c07f827fdd49ed86ee867a754b647dc, 'Algebra Positions NFT-V1', 'ALGB-POS'), + (0xcb2924ab556cdfc7d9ec01c401162f1020f93c5e, 'Bardt Collection', 'BRT'), + (0xcb9acea905c36554a7f60ed645a89034ca7ee250, 'Snap Racing', 'Snap'), + (0xcb9e34b5532e961728791b77635d9fbfdc6810b3, 'Litter Kittens', 'CAT'), + (0xcba66a42e59a06df801ae29d467bfa8e49421eec, 'MinotaurNFT', 'MinotaurNFT'), + (0xcc45376822731f902e88e8a6c6203868aba04445, 'imKey Community Event', 'iCE'), + (0xcc4ce41a654e560a28f6cbe7b255c1fcf45f10d3, 'YEAH', 'YES'), + (0xcc5f69fed81eef024bca4bdace99c38b0c358286, 'Crypto Robo', 'CRB'), + (0xcc6678bda42c9a9aa29dc3fdd7a6362df1ff5e68, 'RED PIRATE', 'RPRT'), + (0xcc737e05a6b5d94cafa523e55c5689631c8e97a4, 'Axolittles', 'AXOLITTLE'), + (0xcc9f28dad9b85117ab5237df63a5ee6fc50b02b7, 'Camelot staking position NFT', 'spNFT'), + (0xcd08e285253e5c0ae0910fea6dff3843882e82f7, 'Dentist', 'Den'), + (0xcd72ab1909c64917900ed6955e715eb12d2e5a4e, 'SmolPlanets', 'SP'), + (0xcd80ca3e72851c80cdd0e2618f43015c05b85e08, 'Arbitrum Airdrop', 'KEY'), + (0xcdaacf37726bf1017821b5169e22eb34734b28a8, 'rDPX WEEKLY CALLS SSOV V3', 'rDPX-WEEKLY-CALLS-SSOV-V3'), + (0xce3cc005516c9e969838b5c59900174350648e83, 'Think:EXP', 'TEXP'), + (0xce78e6eab451bd382aafa4aa72017efdb23cdbcc, 'PetroleumPlot', 'Plot'), + (0xce8590b8bb5d0b83ecf4919390fe58071bc2eecd, 'Tokenlon - Limit Order on Arbitrum', 'TokenlonLOARB'), + (0xce91c23b5565cc43ff4e288d48aef9e4b337deb1, 'UniV3 Guide First 100 Pre-order 🚀', 'KEY'), + (0xced1b6be835167dfd2d42e862e8971b60cd89bb4, 'Birds', 'BRD'), + (0xcf42de2a184d3c3edc05cfd6a836854fb2700f2f, 'ultrasound money', 'USM'), + (0xcf72978cf3f17a6194a394888a1d7a4e6effa405, 'Mycelium OGs Arbitrum', 'AMOGs'), + (0xcf7df5f338815fc7e64f5a652aabe255f71f30d9, 'Camelot staking position NFT', 'spNFT'), + (0xcf9b60350f54776812a1a3b20ec0dd99e61a5ef0, 'prePO x Code4rena Twitter AMA', 'prePO'), + (0xcfc7600f90e63ecde36c175b2b36760b1b51b598, 'Staking LYNK', 'sLYNK'), + (0xd022370db61af86e676303f61b332c49f56c2752, 'Camelot staking position NFT', 'spNFT'), + (0xd026a53de654d0ebb294ac1123fd4dc8a0b505fd, 'Dotties Merry Christmas Event', 'DOTI Merry Christmas'), + (0xd03203838258189f854dd7c00593782c11cc1c8b, 'MyFlowers', 'FLR'), + (0xd04492ca3b977f7e23f413bc4cc05ec6ef9f97e0, 'Sobta ARBI Genesis', 'STAG'), + (0xd07f016229abad933215d2873f4e582409de460c, 'GreenPowerN✖️Arbitrum', 'GreenPowerN✖️Arb'), + (0xd08fdaafcc941cec4f5632d970e0de778d899256, 'Camelot staking position NFT', 'spNFT'), + (0xd09556ece9783f9aabba43e1df6a04a8218e7ca1, 'Farmland Mercenaries', 'MERCENARIES'), + (0xd0bf1dbcae726f60f320cecec8837c95280e3541, 'Liquidifty Collection', 'LQT'), + (0xd0c694348bb43a9ba295f4f73e65e54a4394588c, 'ArbMoon', 'ArbMoon'), + (0xd0d0d144eb63f8fffeede0f7a81353f65b287fbd, 'Virtual Ravers', 'VRS'), + (0xd0e8dd25ac338e9383b4c6b62200a10ed3d5f2a1, 'Camelot staking position NFT', 'spNFT'), + (0xd0f2c1589cd0a030bd11f21595d268f7b32937c0, 'Ark Pass', 'aPASS'), + (0xd11fc506b2321c5fa3fd171dca9caa0750a5e994, 'ArBAYC', 'ABAYC'), + (0xd1cac4d7c9c7afc9ca4b699d4ff2ba5f21df75b0, 'Arbi Olien', 'AOLIEN'), + (0xd1f024ba4dbb1593b486cb5031b3ac5ac28e8a4e, 'Gains Network NFT 2', 'GNSNFT2'), + (0xd1f22f4fe5566c7aee5eb08497254bb1fba2ff06, 'Tern', 'TERN'), + (0xd235f88a4a4068f6dacc5ca3446c47b58bdbfcf6, 'SPACE_TRAVELERS', 'STLS'), + (0xd24e7da03316d557bce442fbc12f4a3c0e59a9b3, 'Flappy Seals', 'SEALS'), + (0xd28bf99e73a3b2b86027425e42e1a8b682d3d76b, 'BianchiniValeria', 'Bia'), + (0xd2ece239edd00f87d0e1014b3d26a7505f005ea8, 'Pet Game', 'PG'), + (0xd312c1e723961164916ef2ebb767e53fbdff4094, 'Ape Town', 'ApeArb'), + (0xd3286048126d41162c82786ca3f6a1857678cc7d, 'ARB ID', 'ARBID'), + (0xd32f43a3b4796ab55c5dc0865c8a6bbe0d592bcd, 'Camelot staking position NFT', 'spNFT'), + (0xd33080030df4a257c5cfe4292e6e57a4081d0204, 'Name', 'Symbol'), + (0xd352a1549668dc3b9a38f817174a55660d864758, 'Superpower Squad Mystery Box Starter Arb One', 'SSMBStarterArb1'), + (0xd36b21af63a30d78f5cf4fc335db1968fd4c95ff, 'OpenOcean Swap on Arbitrum - Hunt Jacques', 'Hunt Jacques'), + (0xd371281896f2f5f7a2c65f49d23a2b6ecfd594f3, 'Gains DAI MAI Vault', 'GDMVT'), + (0xd3976f93ac8bfc32568fbfcaedaffc3f96e67d5c, 'MITHICAL', 'MITH'), + (0xd3ca1da428037aa7694ea3a816077d60990ae4d5, 'SAMURISE', 'SamuRise'), + (0xd43e17f2a2a35d9848fa77c3a0e463ba40903555, 'PIXELART', 'PXA'), + (0xd49223ee9bafe6e91b8c69cfa8bfafc9eff300cb, 'ArbiCyberHappyNewY2023', 'ACNY23'), + (0xd4ac24f5d506109c45e01937d9a0ab6d6f438828, 'Camelot staking position NFT', 'spNFT'), + (0xd5ebcf8e6b22e5cf0f7c886399328f57f9f9ea80, 'aaa', 'aaa'), + (0xd64154d74fe700957d60fcdc1068188c25308810, 'Camelot staking position NFT', 'spNFT'), + (0xd651c621d84e112a51f31a421a09d96d2024c472, 'Bard', 'B'), + (0xd66166564aef4314aa364ae23cd400076bb5c034, 'Camelot staking position NFT', 'spNFT'), + (0xd666d1cc3102cd03e07794a61e5f4333b4239f53, 'Smol Brain Land', 'SmolBrainLand'), + (0xd694913af87292b2a664f4478ac390638b371d25, 'Camelot staking position NFT', 'spNFT'), + (0xd6e5e55e342236d4044fd071e710b7545d9e45de, 'SoulCard: ReadON Soul Bound NFT', 'RSC'), + (0xd71c6ce2a078a096537659cc098bec5659ad307c, 'Omni Cheli', 'Omn'), + (0xd741605bf4e5419aaaf7f48412e37eebb61b18d5, 'Retarded Penguins', 'rtrddpngn'), + (0xd74c61ca8917be73377d74a007e6f002c25efb4e, 'rDPX MONTHLY CALLS SSOV V3 3', 'rDPX-MONTHLY-CALLS-SSOV-V3-3'), + (0xd7648602bbd6d5287a0588e80d3e2ea1c6caf3af, 'imToken & ECN Community AMA', 'imToken & ECN'), + (0xd7928a69d97aad7269cadea42952e00b3278bd84, 'Camelot staking position NFT', 'spNFT'), + (0xd7cf618592fca01db4999fdc6f7b127a5a6aafd5, 'ArbiSocks', 'ZKSOKCS'), + (0xd8ba501a606ebacb0314d3ee27eb6249933209b3, 'Bond Buyer', 'prePO'), + (0xd915a0a83346be95da8635ae931fdd2f3de08a2a, 'MyCryptoLawyer DAO', 'MCL DAO'), + (0xd93749aaf5e549a92f3b8793d8d085fcac82fbdc, 'Bresk Inception', 'BINC'), + (0xd946605c946579d95783a1ed15e207a52f7ee669, 'MinotaurNFT', 'MinotaurNFT'), + (0xd9cd39e383f8c8a70aceeb3bac34d25509f2ab87, 'HOLEYALIENS', 'HOLEYALIENS'), + (0xd9d1f8e3928edd8e0f5b8e7adff067bfbc89364c, 'Camelot staking position NFT', 'spNFT'), + (0xd9f028a5b511627e450e547a6db470df6a76d339, 'Camelot staking position NFT', 'spNFT'), + (0xdaa9ef8c2f3643ce62da0ee4c8d25b91a639909e, 'dGenesis Prime', 'DGNP'), + (0xdabf2de52037b517097fd999c173c447784806b2, 'Smulips', 'SMUL'), + (0xdaf1809ceeb07cc7e8cd65993427a29e1048a166, 'ArbiBoys', 'ARBB'), + (0xdb53b52c438084edfbd24e4937e940cd237a05c6, 'Camelot staking position NFT', 'spNFT'), + (0xdb59012e13fdd8cae2d93f54d52ce584417df56b, 'ADVENTURER PIRATE LADY', 'APL'), + (0xdb83f9e4a1830b939c5f9efdc4c86bf5dbc4450c, 'Presale Preacher Program (Silver)', 'prePO'), + (0xdb8d89390360e7ef04c3ed2fbbcc06257bd29b37, 'Cats', 'Cat'), + (0xdb9d8b0b5fcef6923dd49e9531d196320c61e19f, 'prepo.lens Follower', 'prePO'), + (0xdbd148dd1b4188f7af8c92c127d3f5f95264ccee, 'Metaverse', '1'), + (0xdc0e5b49ef529332240a2d6636429a4aab4d7df2, 'Camelot staking position NFT', 'spNFT'), + (0xdc17bc20d63e3e88cc4b18c9ac7ae3fdc31c0df1, 'wanwan', 'KEY'), + (0xdc5987831c8c70b2b56fe024be0c0ed1e147816a, 'NFT Midjourney AI', 'NFTAI'), + (0xdc9754ade26f11a08775bdfa2b76af3d67334217, 'Itazurakko', 'ITZRK'), + (0xdd3da8cdac7673d45367974dda7f0cc108a5486c, 'Shogun War Harness', 'Harness'), + (0xde40ec6bc0077c70087d7c45d9bc221f9a30312c, 'Camelot staking position NFT', 'spNFT'), + (0xde9344ae2edab1c66839acb5c4e00170dfc1a0e2, 'HAPPY 2022', 'HAPPY 2022'), + (0xdeb2523862983da6e8e164a6784e171fd16bc009, 'ToolNFT', 'ToolNFT'), + (0xdeb5bb4d01fc6a2432b29a03e26ea51824b104d0, 'Camelot staking position NFT', 'spNFT'), + (0xded6b26c5fe511d051e4453cbd8046aa954cb87a, 'Camelot staking position NFT', 'spNFT'), + (0xdeedaad9168955041b60be0e762203a1d953b3c9, 'SAEAH-NFT', 'SA NFT'), + (0xdf32aed1eb841a174cb637eaa1707026319fb563, 'Swolercycle', 'VROOOM'), + (0xdf33ae70b6ec9dd3873d5f221c8786b0c1597ce8, 'GIVnaut by GiveStation', 'GIVnaut'), + (0xdf8ac21a9c82b2e6d1e82207c918bc3b8e424e62, 'ArbiSocks ZK Edition', 'ZKSOCKS'), + (0xdfaa5a0fdd7a32f5e666ef68a3236f9ced036148, 'Arbinauts Quest', 'ARBINAUTS'), + (0xdfbd37ef42adb66944c86c0ed036f3895bc32107, 'ArbiCases', 'CASE'), + (0xdfcdd67ee3fe744b1c5a341bb2e327dffb00d734, 'Jakobs Burger', 'JBL'), + (0xdfdce1536ec39bcde453f66d73b5754a0df73524, 'Camelot staking position NFT', 'spNFT'), + (0xdff59a5d03ebb64a3251ec90f505354ac6beaf02, 'Monthly membership paid on Arbitrum', 'KEY'), + (0xe00cc435fff6331963bfc2d984009be524c282c8, 'ARBI PIRATE', 'APRT'), + (0xe0bbeb2afa96d3b9a8de5abacad5e64c138d1541, 'Camelot staking position NFT', 'spNFT'), + (0xe0d7ac862a60c081ccf4015deb07efcb2fb0979a, 'Stop Violence Army Collection', 'SVPArmy'), + (0xe0d972817e94c5ff9bdc49a63d8927a0ba833e4f, '.smol', '.SMOL'), + (0xe0fdf6770ed596327e5e34ee94a6815b04c55024, 'veSTERLING', 'veSTERLING'), + (0xe15314691e916087028a6bf4b8bd1ced1fd41996, 'Flashstake NFT', 'FLASHNFT'), + (0xe16321aae3a6333033d96fa02785813ea2412334, 'Farmland Characters', 'CHARACTERS'), + (0xe16b0d88a3a0670873ff07aac695217eb2c95eff, 'Apollo VOXAs', 'APVX'), + (0xe178439a14adce83302eb1229b9c3f71cd82e76d, 'Retarded Penguins', 'rtrdpngn'), + (0xe1fdaa9efd1bd5bb714c6aa3933ea41932fbace7, 'Bresk Bau', 'BBAU'), + (0xe20ce7d800934ec568fe94e135e84b1e919abb2a, 'Camelot staking position NFT', 'spNFT'), + (0xe227c24f79df7f8c99b243f82c485f98e20bdb30, 'Priceless', 'PCL'), + (0xe24934f227bb91f503d22f231680ca2187462a6d, 'Camelot staking position NFT', 'spNFT'), + (0xe28d7a0ac3ca2ad522f6482bb94623665078b95d, 'Camelot staking position NFT', 'spNFT'), + (0xe336bfcf7a3884c70bdfdd15b9cc6690e0e06537, 'completed a course of study', 'completed a course of study'), + (0xe38fbdb057684c90dbb16e52b7773b2fcc0bb792, 'artGPT', 'artGPT'), + (0xe3ff1ee6bd4534644bbfc0eb87709780384c17e7, 'Arbitrum Opensea Voyage', 'VOYAGE'), + (0xe43cf497ab8ba6f363befd712c445838957ec754, 'Camelot staking position NFT', 'spNFT'), + (0xe47ca047cb7e6a9ade9405ca68077d63424f34ec, 'Kyber Network Crystal MAI Vault', 'KMMVT'), + (0xe4834d4bd2539fc0d4c313edfb6067ac78d558cc, 'Festive Lantern NFT', 'doNFT'), + (0xe485155ce647157624c5e2a41db45a9cc88098c3, 'Lyra wETH market Option Token', 'Ly-wETH-ot'), + (0xe49e425cb368bf2662d43a62bde07245c8949f34, 'Sword of Throne', 'STT'), + (0xe4d69e9edaf89cc0cdfc108d0a9763afb9f835eb, 'Nails', 'Nai'), + (0xe4ead31e0e73354cd868ebfcbfb52db24396546d, 'Crypto-School & Arbitrum', 'CRS'), + (0xe4f73447c50a042a8eb7cf48d4696c9402be153f, 'ArbitrumToday x DeriProtocol Giveaway', 'Carnival RebateNFT'), + (0xe502e9bf0932b5eadd8b7e6a363c1328434f5e9c, 'aibingo', 'KEY'), + (0xe55915b505c6d85b08f7983d9dc3ee9b6e631adf, 'Arbking', 'ARBK'), + (0xe5848ad2f9b481f40ea48b74561c0b9f942065a2, 'Fuego SquaresZ', 'FUEGO_SQUARE'), + (0xe5953cd5c1046c5428aba3a1e8797218e5156e5d, 'Dopex Santas NFT', 'DPX_SANTAS_NFT'), + (0xe61a1061f2179337a3abc969e9e89b1d3597b9c2, 'MaskApe', 'MA'), + (0xe63a90682faf78620f994633d50b381f2804bbbf, 'Camelot staking position NFT', 'spNFT'), + (0xe65ebdcc7eff43107390a8983e3f178feae5de30, 'minimal', 'min'), + (0xe67c419271331605f2a554f82c43df4eee1b8a6c, 'Elements Node', 'EN'), + (0xe67cd98e76cd93f194f9a6fafeef129489184c0a, 'Bordello', 'Bordello'), + (0xe6ab103194103960a0bdb2fbd6a9b9d494cbdfc0, 'Bryh', 'Bry'), + (0xe71726ed76cb92c2103f4e0e443d57cc5f527cfa, 'Genesis Nasalis', 'NSL'), + (0xe80085082eac44a2ef34e07e028eef9e6c41e9f6, 'CultOfLaughter', 'COL'), + (0xe8c67ac1435611c3e507e5f7bd6013439602a7a7, 'ArbMaster', 'ArbMaster'), + (0xe8eb14c1b9cf09266c4c1e9d57201dc50d24ef19, 'Doge Degens', 'dDegens'), + (0xe8ec1a3a637c47d2a17378eb199b523bc2742272, 'NestedNFT', 'NESTED'), + (0xe928394faf0c4af1b9601c147e4962ebe21cdc5f, 'ARBIJET', 'ABJET'), + (0xe92ef124f136f2968027cca3d873bb5c0ae5b5aa, 'Camelot staking position NFT', 'spNFT'), + (0xe97456e0fb121f65422f43ccbd4a07a0e269b534, '.arbi', '.ARBI'), + (0xea08412881727c61f9e134f6e65c250b98c36ca2, 'Camelot staking position NFT', 'spNFT'), + (0xea46e7590c7a45201704fe0623740c9c4af93694, 'Camelot staking position NFT', 'spNFT'), + (0xea521f642d1ee05aca25979b7b6d7c83b24aa901, 'Arbitrum Genesis NFT', 'ARBGEN'), + (0xea66b7d94dea53c4f20e88ab317c08c6bb2d64dd, 'Bordello', 'Bordello'), + (0xea94485321066f57c0e7f5a2664d403055396751, 'Camelot staking position NFT', 'spNFT'), + (0xeab2d1a8c98d1858dcc906e4b4b2294f135ced6f, 'NFT Garden', 'NFTG'), + (0xeac5083ac54ac30d60bfe06605feb988f57c0a51, 'The Village', 'TVNFT'), + (0xeb22a6c58dab32825dbf43da8af308f84d0b9514, 'Earndrop Monitor Credential', 'ED MONITOR'), + (0xeb7a7274aaf9274db73f3b1e3b18c8f6e21d68e4, 'Brinc.fi NFT 02', 'BRC'), + (0xebfd7babc5db1ec60783fa6085791a7782ee6077, 'OreoChads', 'OCHAD'), + (0xec6d93420f1a3dbda6a9b49caf6ca99edb82e175, 'Donuts Protocol', 'DONUTS'), + (0xed13a3945c5281297e2de7581b837bb681c9edee, '996', '996'), + (0xed3df357e90b0ccaac6737dd6e7d743f67cd65f0, 'Lufroloc Dishes #3', 'DISH3'), + (0xed811566a41ae47a0d09ffae40c188fd94c6d7dd, 'UJJWALNFT', 'UJCOLLECT'), + (0xede855ced3e5a59aaa267abdddb0db21ccfe5072, 'Diamond Pepes', 'DP'), + (0xeeb83945867351ed79e64c950f6c04f74d7c6446, 'Ruwo', 'Ruw'), + (0xeee19cef5778398bcaacd7595f3c849bdfe1f45d, 'Camelot staking position NFT', 'spNFT'), + (0xeeea715ef7229f0c1b47fb8c0d4bd4480a612e7a, 'ONUS Chain goes Arbitrum', 'OAT'), + (0xef851bf9d04812d133e5bb54310390b265e7f6dd, 'Camelot staking position NFT', 'spNFT'), + (0xefcd1cf1d6badde21f3cc9df8fc0903412f55371, 'EmpireDAO Intersection Symposium', 'KEY'), + (0xf018213dba78c18c6225bd86232697bf9f13d5d4, 'Merge NFT', 'MRG NFT'), + (0xf043725e015e198040bcad64f893644eaeebc5fb, 'Camelot staking position NFT', 'spNFT'), + (0xf047761b7bfe505af04e222aa31bf8a61a8f9429, 'Camelot staking position NFT', 'spNFT'), + (0xf071f0c56543a2671a2dfc5ff51d5d858be91514, 'GMX WEEKLY PUTS SSOV V3 3', 'GMX-WEEKLY-PUTS-SSOV-V3-3'), + (0xf076bc6f6a1cdb355e8221721d010c97f21880ac, 'Uwnuyn', 'Uwn'), + (0xf0a7aa688b5bc25371c480fe7bcd37472b238777, 'Fortune sticks', 'FORSTI'), + (0xf106daf05b450d805796560f1f6f6d434ec2a893, 'PufDAO', 'PUF'), + (0xf12c43e7171793ff727571264bc720d14f67a7e8, 'Camelot staking position NFT', 'spNFT'), + (0xf12f386414f3a58f893a4ce4a54f332535a835df, 'cydou', 'KEY'), + (0xf13f0520fe03ea1135666cb48d3da305b97f7102, 'KARBOSU INU', 'KARB'), + (0xf170f7861cb8db070491047161632fd2e97409bc, 'AlphaWalletOGPass', 'AlphaWalletOGPass'), + (0xf1d27b86016e7154cb80cba205ee6c981f4dcbd4, 'TIPSY PIRATE', 'TPS'), + (0xf33acad4513dc35399d6d12aff331f2a7f4c8306, 'InesAranda', 'Ine'), + (0xf360cab55aabe40b5ec772ab258bb2ae85a60610, 'ArbiworldPirateShipsNFT', 'WHEAT'), + (0xf3705b17b59de05c5a48af4a3888e603afeeb7b3, 'Camelot staking position NFT', 'spNFT'), + (0xf377d9f65be908545ea877887eec55a53d4cc37b, 'Zorro''s DeFi Squad', 'Zorro''s DeFi Squad Member'), + (0xf3ba0ef58f5574d6231f0c896b623a81fe3079bb, 'Twoge NFTs', 'Twoge'), + (0xf3dc804f51e37cc1a05b9ca3fa7e9912cc7be8b8, 'Bard', 'B'), + (0xf3e32f8a7723d5f284206f28885615dd32e1354d, 'Camelot staking position NFT', 'spNFT'), + (0xf4f82f9a54fb960cd649aa83bc327cf0ad09242b, 'Camelot staking position NFT', 'spNFT'), + (0xf55befbcd963ff323e1bcce3a455bf8c03e92737, 'Shogun War Sword', 'Sword'), + (0xf5a0eb528d6d63ee2c9529df2254b0cd6a316539, 'Camelot staking position NFT', 'spNFT'), + (0xf5b2f191817cbadc9ecd0c61718309fba0fdf99f, 'Layer Zero Punks', 'LZP'), + (0xf5c4753a716f8b9f2a817f5c376ef2c29601639c, 'NovaNauts', 'NOVANAUT'), + (0xf63035ef5c2187c7bc2d11655b92812390fae8d4, 'Mihtical PFP', 'MITHPFP'), + (0xf698f45534092813a57523422fa5fec4932dc9cc, 'DegenTreasuryPass', 'DTP'), + (0xf6a6b1c92be37d6e93ee0689c19e8e7181666bb7, 'Neywi', 'Ney'), + (0xf6a74a4a5f4ca80b3636f9eabc1121b23efea5a4, 'Camelot staking position NFT', 'spNFT'), + (0xf6b9b5e0d436e796219fee1427e705542556231d, 'Pet Game', 'PG'), + (0xf6be3502538de1a88089a795cbbf457ce52357ca, 'Kyuniwch', 'Kyu'), + (0xf6cc57c45ce730496b4d3df36b9a4e4c3a1b9754, 'Smol Brains Pets', 'BRAINPETS'), + (0xf71b2b6fe3c1d94863e751d6b455f750e714163c, 'DPX WEEKLY PUTS SSOV V3 3', 'DPX-WEEKLY-PUTS-SSOV-V3-3'), + (0xf7805523df290ff8b585ac73410dfeed8a15d49f, 'Overnight on Arbitrum', 'OVN ON ARB'), + (0xf7abeac1e7c4b85e33b51ed02c39f3b8d6c75809, 'ArbiApes', 'AAPE'), + (0xf7b7d23b79e6ea2cdb2de53b668cc27c6b14569f, 'Degen Millionaires Club', 'DEGEN'), + (0xf7da42e74b68c2e655dc6d1d1f0e656bc3a2d5c5, 'EXPLORER CAPTAIN LADY', 'ECPL'), + (0xf7e2ef838eddef4654a1d0cfd118b817d79c20c7, 'Camelot staking position NFT', 'spNFT'), + (0xf7f832a3081458aef7f6f54a8019b5d47e9cb0b7, 'NFT Garden', 'NFTG'), + (0xf7fbe8eec9063aa518d11639565b018468bb4abb, 'KOTESQUIRES', 'KOTESQUIRES'), + (0xf857a6d9a2b69810e18a3837ca27a015806d2f48, 'ASIAN PIRATE', 'APRT'), + (0xf8efc42de2f6e7b1a3930a3febbd8f3c4c82633e, 'Bored Apes On Arbitrum', 'Bored Arb Apes'), + (0xf9b93e3d112f2a9cdee0e9357c5eb9fe83c50e7a, 'Staking LYNK', 'sLYNK'), + (0xf9c4e7e36a0738972aacaf6a9814cd7fedefcc5d, 'Helping Hand', 'HH'), + (0xf9cc3bf39bff674dbdeeb0879a3494f4bac08c2b, 'Arbitrum F1 Dog Saturn', 'FDS'), + (0xf9d0e6fb575dc991847166bc110311bba08038a8, 'Camelot staking position NFT', 'spNFT'), + (0xfa8f313f978e0b8f53267cfe533e9bedd6e2ea52, 'My MetaTrader Nft4', 'MMTNFT4'), + (0xfabc2f95da751f390fee6b12ee4e943367913f78, 'Hot Goblins', 'HOT'), + (0xfac2ea37e716bf93fe73fcaabe14baa25a3a871d, 'Camelot staking position NFT', 'spNFT'), + (0xfaeb0399ab3bff970d9c0698abf0eda65460ec97, '11yao', '11y'), + (0xfafced474fdd032fc1d2b188608eb0974d31e611, 'BlindBox', 'BB'), + (0xfba71b30e97183d38a774c581dc5d834fafeb415, 'VICTORIOUS PIRATE', 'VPRT'), + (0xfbd51b853353d047581ba6fee673b08cb5a23d50, 'Hero', 'HERO'), + (0xfc6e399c19f72f5c67bef1fe956e077c92941209, 'Camelot staking position NFT', 'spNFT'), + (0xfca61e79f38a7a82c62f469f55a9df54cb8df678, 'stETH WEEKLY CALLS SSOV V3', 'stETH-WEEKLY-CALLS-SSOV-V3'), + (0xfcf6bef0579d4e6da537b8154fa3b28102a574ab, 'Arbi Odyssey Penguins', 'AOP'), + (0xfcf9eb5979bed6a6aee15f9d59eded247e0e9b74, 'DANGEROUS PIRATE', 'DPRT'), + (0xfd3ccd8c893d23c404516d7b9f1bc8e192e3c36e, 'Xmultiverse open-up', 'XM'), + (0xfd601e93206f632f9a041579a1452f7d541901e9, 'TedescoSofia', 'Ted'), + (0xfda7a15164d0c09efcc4b2d9ad14af422fe6f065, 'Yieldification OTC', 'otcYDF'), + (0xfdca5f7204f58436d5c03b5552823c97f12da6ef, 'Camelot staking position NFT', 'spNFT'), + (0xfe05bb01f1ae1030c8d8348a0b6aa6f5349b6aa2, 'Shiba Cartel Genesis Shibes', 'SHIBES'), + (0xfe33dba1d521e534683d9f6512af7be0e0604c2c, 'Dabiz Punks', 'DP'), + (0xfe7891ae8951b702a59e70da44447bd9d7efefcd, 'SUMERIAN', 'GSMR'), + (0xfe90576c0bfb3792c171aaa4c83cd11263fab912, 'Camelot staking position NFT', 'spNFT'), + (0xfe907875d802056555e4b53aa03be50dab748788, 'Camelot staking position NFT', 'spNFT'), + (0xff0fca908e9107694627d8ab06532786c02b18e6, 'Avault NFT', 'Avault'), + (0xff3010e3355b592bdb0642f9c4e9bf41a011afe5, 'Sassy Walrus', 'SASSY'), + (0xff692462c6064c30937de6a5c89847480a73fde0, 'Layer2DAO xL2DAO OG', 'xL2DAONFT'), + (0xff6f59d8ece9238d6968f00420e8031857c2709a, 'Camelot staking position NFT', 'spNFT'), + (0xff7fe747aa96c80c1ab5f120a5478a8b84e60532, 'TroveStreetPunks', 'TSP'), + (0xffa2b0b7f612e2c3325d1c0070380e5c187dc629, 'Camelot staking position NFT', 'spNFT'), + (0xffeeade7d2d28ace7f4691c690bc149a1fc06453, 'CHEERFUL PIRATE', 'CPRT') ) AS temp_table (contract_address, name, symbol) diff --git a/models/tokens/arbitrum/tokens_arbitrum_schema.yml b/models/tokens/arbitrum/tokens_arbitrum_schema.yml index 40fa13732d3..ba434a0417d 100644 --- a/models/tokens/arbitrum/tokens_arbitrum_schema.yml +++ b/models/tokens/arbitrum/tokens_arbitrum_schema.yml @@ -62,10 +62,10 @@ models: - accepted_values: values: [ 'erc721', 'erc1155'] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. If you are adding a token with a new standard, remember to add it the accepted values list. - + - name: tokens_arbitrum_nft_standards meta: @@ -82,4 +82,4 @@ models: tests: - unique - name: standard - description: "The NFT standard erc721/erc1155/..." + description: "The NFT standard erc721/erc1155/..." \ No newline at end of file diff --git a/models/tokens/avalanche_c/tokens_avalanche_c_nft_curated.sql b/models/tokens/avalanche_c/tokens_avalanche_c_nft_curated.sql index 48bbc9f980f..f0febe1ca2d 100644 --- a/models/tokens/avalanche_c/tokens_avalanche_c_nft_curated.sql +++ b/models/tokens/avalanche_c/tokens_avalanche_c_nft_curated.sql @@ -1,4 +1,11 @@ -{{ config( alias = 'nft_curated', tags=['static']) }} +{{ + config( + schema = 'tokens_avalanche_c', + alias = 'nft_curated', + tags = ['static'], + materialized = 'table' + ) +}} SELECT contract_address, name, symbol FROM (VALUES @@ -190,7 +197,7 @@ FROM (VALUES (0xf7b6c94837d9fa6162eda75f0909b21ee54534bb, 'HC MayinHara', 'HCMH'), (0xe04b3ec711d52147036d1704090e9e0d9062ced2, 'PixelPenguinz', 'PPZ'), (0x7fef2139b84eecea4088307b2c6d4689d9dbd130, 'Neko Friends', 'NKF'), - (0x1e7f5cd7030b92ec217c27ba0c3781bdbae2e208, '25% CryptoNodes booster NFT ', 'CNNFT'), + (0x1e7f5cd7030b92ec217c27ba0c3781bdbae2e208, '25% CryptoNodes booster NFT', 'CNNFT'), (0x794dd7adfd4508057ab4c182bcb3c0231c55345d, 'Acid Cats', 'ACDC'), (0x6cc4cc814c7154fb67965c8044cc803b3199ec53, 'Pizza Game Chef Tools', 'PIZZA-GAME-CHEF-TOOL'), (0xb42d0f524564cafe2a47ca3331221903eda83b3c, 'MONKEEZ', 'MONKEEZ'), @@ -272,7 +279,7 @@ FROM (VALUES (0x09be62ccca8d6815fbab477a953a0935176262cf, 'Metaderby', 'Derby'), (0xbcac8ac442697e5845682eb18d4763492b9d8734, 'Sushi Game Chefs', 'SUSHI-GAME-CHEF'), (0x5906a9814be8285f367f91bbc54b1476da9a2cb5, 'Snowbirds DAO', 'SBDAO'), - (0xe764606963e14ea26305199e2823a36c741d9d47, '100 Heures ', '100H'), + (0xe764606963e14ea26305199e2823a36c741d9d47, '100 Heures', '100H'), (0x05c777ab4e4aa3b48fd6fde9d391e1ea2bd92887, 'Yobi Samurais', 'Yobi'), (0x071a502262ee303157192a51f48c0dc54fa935dd, 'Mad Veggies', 'MVG'), (0x696d76a03442b661ecdf0dd510089ba078232d7c, 'Feelings NFTs by Cem Güventürk', 'FEELINGS'), @@ -730,7 +737,7 @@ FROM (VALUES (0xd1fb560415bf8c0ac6bab5c198795e1e82e2857e, 'WM Chain Wars Comics', 'WMCWC'), (0xfd3eb527a1def4b15b68108aeb67a4b5c0dcd85c, 'DigiscapeX', 'DSX'), (0xec17bf5cd958c4e93c5e71ed55f48cd6fd52ff67, 'Psysmurf NRG', 'PSYNRG'), - (0x2865ad4fdcfa2d8b469af3f32379f63dceb14969, 'Sis Art NFT ', 'SSAN'), + (0x2865ad4fdcfa2d8b469af3f32379f63dceb14969, 'Sis Art NFT', 'SSAN'), (0x930d2c7b1ce4e6e5b56171641617142a10669076, 'Lava Financial Alpha Beans', 'LBEAN'), (0x3ec7138f8d51d1a4074d14601dfe92efefeb126b, 'WL FlashNodes', 'WLFN'), (0x48428ce49c6b7653d68153d5cd0d86aa27642afe, 'Art Brazil', 'ARTBR'), @@ -1047,7 +1054,7 @@ FROM (VALUES (0xcbe23662f72053d2919751bd1592b74dfdf9b722, 'Pop Islands', 'POPI'), (0xbfe4851c9a2b5ecbfbb69229f681ff3fd848761a, 'Jazzy Beanz', 'JAZZY'), (0x3bd08a37526d9d23d71e869697162b6d3e5baaa8, 'Smol Monkeys', 'SMON'), - (0xfbdc72fa3ac56fab5c1e39b04bf2bd0ba6b674d2, 'Avalanche PDX Art ', 'APDX'), + (0xfbdc72fa3ac56fab5c1e39b04bf2bd0ba6b674d2, 'Avalanche PDX Art', 'APDX'), (0x3a7cf509f3334e4a6670e24457199102a7dc4039, 'Smol Geese', 'GOOS'), (0xf8bbdb71bd764e27c54e53c3dddde09896ebcfee, 'Window seal', 'AH5'), (0xa205a17e25bdd80085f0bd8ec8dc9ecdd21f050c, 'videoPainting', 'VDP'), @@ -1153,7 +1160,7 @@ FROM (VALUES (0xbef231d0138547c77807aa9145a91d09e99a2667, 'NekroDemonz', 'NKDZ'), (0x8c20204be201eb956096c25e77f1c9f5d7913bc9, 'CrazyBirds', 'CrazyBirds'), (0x50adeaf86f248f320aa497f84f9e528bde6eeb48, 'How I Survived My 40 Years Old Thing', 'HIS'), - (0xc11c68c8da25f8d432f0b3eb129742ec821c0516, 'From Da Root ', '0xKG'), + (0xc11c68c8da25f8d432f0b3eb129742ec821c0516, 'From Da Root', '0xKG'), (0x61cf0d0a26e8e2d42b8f737a186e984b917e60a3, 'Ghoulish Divas', 'GSDV'), (0x762e808dce72d3d214bfaec240f85d01e752c125, 'Robots Punk_V2', 'RPUNKS'), (0xeaeb24981b865dd7e816002b0b0b319cbfb36165, 'funnyFKRZ', 'FKRZ'), @@ -1498,5 +1505,10527 @@ FROM (VALUES (0x36801f736362bbe4bf7e39058ca03c21b15759f6, 'AvaBots', 'AVB'), (0xa86a6e8531e9abe98db00dd1f2a90d2efbca2cbd, 'H', 'H0'), (0x3d6def4b0417614b22abac43dea1a81f31bb8cc2, 'ljljl', 'lkjlk'), - (0x66b5543c25424574a3b9a8e07c310db2362e99ca, 'Animated Feelings', 'AFEEL') + (0x66b5543c25424574a3b9a8e07c310db2362e99ca, 'Animated Feelings', 'AFEEL'), + (0x0000000000771a79d0fc7f3b7fe270eb4498f20b, 'MCT-XENFT', 'MCT-XENFT'), + (0x000001305c66d83b790b4e27db4ef614b060cc72, 'Togg Digital Attendance Certificate', 'Togg DAC'), + (0x000088a9b22162d4ba96558e1a55aafce0d3f6e7, 'Flip POOR', 'FLIP'), + (0x000ad9b3f9665c7cfb58a273dff752a261f34dd4, 'New York Mets® Edwin Diaz P Base Motion Vintage Stock 498 Super Rare', 'MLB-S221-S-B498-VS'), + (0x000b9a715122a2c91513f38f9322ef47dc97294a, 'Jerry''s Ink/Paper Images', 'PAPER'), + (0x000bae1383e5753128348757b5015405a699eebb, 'Angels® Shohei Ohtani Facsimile Signature Red 1 Rare', 'MLB-22S1-R-FS1-S-RED'), + (0x0013b068417a70523027a68105037a8628aa680e, 'Konstantinos Mavropanos VFB Color Splash White TK-63 Uncommon', 'BUND-22TK-U-CSTK-63-S-WHI'), + (0x0016a1fbe2ca4288c11ac1746e8453b98d689c74, 'Stacks', 'STACKS'), + (0x001965d8c842111849d3951ca36b6e240d43b950, 'Ai CENTAURIANS', 'AIC'), + (0x00215e4b76fe938ee54bf2a7575cdb7d829de6d8, 'VaporNodes', 'VNODE'), + (0x0031b35761eac5b6ca8bcdcdd328055755446446, 'New York Mets® James McCann Base White 256 Common', 'MLB-22S1-C-B253-S-WHI'), + (0x0031d80b31f08930f59d38e396bd2afadf02b9d4, 'New York Yankees® Jordan Montgomery Postseason Base Red 80 Rare', 'MLB-21POST-R-B80-M-RED'), + (0x00392fe61944c61c5a0b362aa5b3ae705fbff189, 'Washington Nationals® Stephen Strasburg Inception Base Blue 99 Uncommon', 'MLB-INC21-U-IB99-BLU'), + (0x003e980d5549de6c514e647764c6a7d5d6107c7e, 'Cleveland Indians® Franmil Reyes DH Base Motion Rainbow 341 Rare', 'MLB-S221-R-B341-RAI'), + (0x00458e9c8b428f3dfacec29be7882aa333904c72, 'Atlanta Braves™ William Contreras Second Place Beach 13 Epic', 'MLB-22ASG-E-SEC13-M-BCH'), + (0x004f2c160dce4373dc01cf42c18a6e8ab86154e5, 'Atlanta Braves™ Eddie Rosario Topps NOW White 1025 Rare', 'MLB-21NOW-R-TN1025-WHI'), + (0x0051b78fd863b76636126724059eae8ac54209ea, 'Detroit Tigers® Miguel Cabrera 1987 35th Anniversary Wood T87-83 Common', 'MLB-22S1-C-1987A61-M-WD'), + (0x0052daa53c745192354b9f4576db3379712cf01a, 'Los Angeles Dodgers® Dustin May P Base Motion Platinum 355 Epic', 'MLB-S221-E-B355-PLA'), + (0x00568ec7888c96ea16d331da1f6d32458d8450b5, 'Houston Astros® Jose Altuve Base Blue 1112 Common', 'MLB-22PRI-C-B9-M-BLU'), + (0x005ca6ae917578402d553b2444bf03678bc0e9da, 'My WitchNFT Token', 'WNT'), + (0x005d71c0321199af80c1bb8422be316bd59b7c27, 'Cleveland Guardians™ Oscar Gonzalez Wild Card Newspaper BW 1043 Common', 'MLB-22TNP-C-WCN1-M-BW'), + (0x005e1638b8cab22d7ce1db9312966f7e7a7e768d, 'Avalanche Friends Collectible', 'AFC'), + (0x006c05fe649165d420a65bacfb57c815939d5188, 'Cincinnati Reds® Jose Garcia SS Base Static White 374 Common', 'MLB-S221-C-B374-WHI'), + (0x006d36dfb318ec1b3a87b2cad4210698090717dd, 'Plague Game', 'Plague Doctor'), + (0x007ae5b1fd20d739773ad6d2335a913e574352f5, 'Texas Rangers® Jose Leclerc P Base Static Gold 396 Uncommon', 'MLB-S221-U-B396-GOL'), + (0x009050968f459c0e0953a6671b7b41d9ea2fda6a, 'Cincinnati Reds® Jose Garcia SS Base Motion Vintage Stock 374 Super Rare', 'MLB-S221-S-B374-VS'), + (0x009cf899e8b3a6fb0a137b5bc182084074d5dd10, 'Milwaukee Brewers™ Drew Rasmussen P Base Static Gold 377 Uncommon', 'MLB-S221-U-B377-GOL'), + (0x009d389fd7bf909cfdee739019bfeb4638db4acc, 'Oakland Athletics™ Chris Bassitt P Base Motion Platinum 626 Epic', 'MLB-S221-E-B626-PLA'), + (0x009efb46dba89ad55bb90ab0c32e1c084ae1da30, 'Ai TZukimi', 'TZ'), + (0x009fab2fdf69d874615b76c80951285b0814d408, 'Colorado Rockies™ Raimel Tapia OF Base Motion Platinum 359 Epic', 'MLB-S221-E-B359-PLA'), + (0x00a9a820611613860d2ca4b0988167df947696e1, 'Branimir Hrgota SGF Base White S4-50 Common', 'BUND-21TS4-C-BS4-50-S-WHI'), + (0x00b00d68549c91820822f74af499d12d13b072d9, 'Godzilla RAT Page 15 Comic Page Color 13 Super Rare', 'GDZ-RAT21-S-CP13-A-COL'), + (0x00bc4db78e79a67df77f091a15d81b51a2e51b8d, 'Houston Astros® Jake Meyers Base Independence Day RWB 295 Rare', 'MLB-22S1-R-B292-M-RWB'), + (0x00c966f6fcc5d5659a295cd12a555171e36f2597, 'RB Leipzig Marcel Sabitzer Top Players Gold 97 Super Rare', 'BUND-SC21-S-TP97-GLD'), + (0x00cbd951c3ad60b659c314a054c42fa53f4db908, 'St. Louis Cardinals® Giovanny Gallegos Postseason Base White 48 Common', 'MLB-21POST-C-B48-S-WHI'), + (0x00d21e4a24210d2467130cf234b2b7d144d720c2, 'Niakhaté-Saint_Juste M05 Animation Duos TSC-06 Epic', 'BUND-21TSC-E-RATSC-06-A-DUO'), + (0x00d62fab70935ff52c1fe18c0af8942b07ce35b3, 'LUNA-Tic Facsimile Signature Color 13 Uncommon', 'GPK-NFT22-U-FS13-S-COL'), + (0x00df41c634cb61e769a016ce3dcc2260fc99a9e0, 'Houston Astros® Ronnie Dawson Base Glitch 231 Uncommon', 'MLB-22S1-U-B228-M-GLI'), + (0x00e107e9f20a8beacac49ba7d21a9b4626224f05, 'Toronto Blue Jays® Bo Bichette Facsimile Signature Blue 126 Uncommon', 'MLB-22S1-U-FS8-S-BLU'), + (0x00f317e02faa95945c50e7512fdcd90e12074ee1, 'TSG Hoffenheim Pavel Kaderábek Base Players Team Color 28 Static Facsimile Signature Rare', 'BUND-SC21-R-BP28-SFS-TMC'), + (0x00f4a77b84286a7c580195bfe780d00484bf1ebf, 'Philadelphia Phillies® Bryce Harper National League Base Blue 11 Rare', 'MLB-22ASG-R-B11-M-BLU'), + (0x00f94b80070619c118a67997e67e101e6101a731, 'Toronto Blue Jays® Jose Berrios Base Pink 1095 Uncommon', 'MLB-22PRI-U-B105-M-PNK'), + (0x00fac2c9799e5791c4da0049da7eb4df097a56f7, 'New York Yankees® Giancarlo Stanton DH/OF Super Short Print Motion White 642 Epic', 'MLB-S221-E-SSP642-WHI'), + (0x00fe626923fff384b2176109288c600d1f0886d3, '2021 Year End Celebration NFT Gift Pack', 'TOP-GFT21-PACK-S'), + (0x01009eac2994b8af2332b28a3c285cdf4b036bbf, 'National League™ 2021 Strikeout Leaders Base Glitch 127 Uncommon', 'MLB-22S1-U-B126-M-GLI'), + (0x010ba89ede37e943c24586b090d36296412766ec, 'Panda Rollers', 'PND'), + (0x01277273dd66a20b6f64c15394789d6bc0643e4b, 'Wataru Endō VFB Animation Gold Refractor S1-09 Legendary', 'BUND-21TS1-L-AS1-09-V-GOL'), + (0x012c467b32e9c326bc5ca172d9631e4d094a2b02, 'Joe Newell HIB Base White SP-09 Common', 'SPFL-21SPSS-C-BSP-09-A-WHI'), + (0x012dada70f0b1eca1c6717f64df778c8bab7b151, 'Atlanta Braves™ Dansby Swanson National League Base Golden 10 Super Rare', 'MLB-22ASG-S-B10-M-GLD'), + (0x013eaa5a155ab4ab428ed24cba020918fe1a6399, 'Super Rare Comic 6 1-6 Bazooka Joe 2021 NFT', 'BZK-S-6C'), + (0x015f2d701114f803bb972c9c1f3eb33553992b82, 'Minnesota Twins® Mitch Garver C Base Static Gold 470 Uncommon', 'MLB-S221-U-B470-GOL'), + (0x0161aa38d429029c2e05aa0aab1083571425f3c2, 'National League™ Jesse Winker Base Pink 1290 Uncommon', 'MLB-22PRI-U-B219-M-PNK'), + (0x0168479fc350c41504a4167f54426fddf95eaeb4, 'Arizona Diamondbacks® Luke Weaver Base Vintage Stock 273 Super Rare', 'MLB-22S1-S-B270-M-VS'), + (0x0168d7894321254a45ac334086136459c08e433d, 'Charactooors', 'CHARACT'), + (0x016f6c16d8658ce0615ddc6b6d6f42cd0b5ff026, 'Chicago Cubs® Nick Madrigal Fresh Faces Facsimile Signature Reward White 3412 Legendary', 'MLB-22PRIASG-L-FFR7-M-WHI'), + (0x0171b46c1cb8da875b39ab29550629d262480095, 'Christopher Trimmel FCU Base White S4-47 Common', 'BUND-21TS4-C-BS4-47-S-WHI'), + (0x01738216be7a4eabbb3937945d830b0e90430b6c, 'Tampa Bay Rays™ Tyler Glasnow P Base Static Gold 629 Uncommon', 'MLB-S221-U-B629-GOL'), + (0x0174a6757a71161afa1c00f4b6e295581e64faa4, 'New York Yankees® Deivi Garcia Inception Base Blue 66 Uncommon', 'MLB-INC21-U-IB66-BLU'), + (0x017dce43e673d314b8c49044e6429a751674f387, '8-bit recast', '8BITRCST'), + (0x017f688d3157755681852f89377ab84c86583313, 'Miloš Pantović BOC Base Red S3-21 Uncommon', 'BUND-21TS3-U-BS3-21-S-RED'), + (0x0189bf4492b2649fbd7c553490ca85f6e59c6465, 'Fief Knights', 'FIEFKNIGHTS'), + (0x018bb96d00309236e6d56046bbd8e9e083cc8ce9, 'Gregs (AVAX)', 'GREG'), + (0x018cfd46e36d97c873697a5e1adb0f3eeb15dc0e, 'Houston Astros® Alex Bregman Championship Series Silver 11 Epic', 'MLB-21POST-E-CS11-M-SIL'), + (0x0190e70e3c7aedf265aca74778d7b5d5c2c998de, 'The Blue', 'TB'), + (0x0198ecc640cff3f85d4c3b6a2bb6ee03ee0705d8, 'Chicago White Sox® Jake Burger Base Independence Day RWB 186 Rare', 'MLB-22S1-R-B185-M-RWB'), + (0x01a3c5b04856c1d9649f7a70762770ea44572f07, 'Pixel Ponys', 'PP'), + (0x01a7f7933ee19a85b2392365e9dea6f718b6429f, 'San Diego Padres™ Austin Nola C/1B Base Motion Vintage Stock 448 Super Rare', 'MLB-S221-S-B448-VS'), + (0x01b40f48677462725b3cce0b67aa074b55e16b25, 'San Diego Padres™ Ha-Seong Kim Base Glitch 188 Uncommon', 'MLB-22S1-U-B187-M-GLI'), + (0x01b505b8f597c2d70d4377d5f9dce5d4cb805a3c, 'Patrik Schick B04 Top Players Team Color TK-08 Rare', 'BUND-22TK-R-TPTK-08-S-TMC'), + (0x01b615209ea060f534092ca65a4be37d3d3310ea, 'Chicago Cubs® Jason Kipnis 2B Base Static White 494 Common', 'MLB-S221-C-B494-WHI'), + (0x01bb3e918243ae3a537a07d1ac266272f41310d5, 'ShitClub', 'STCB'), + (0x01cd5bd259a9bb34c533c6aae2093999ed634e21, 'San Francisco Giants® Anthony DeSclafani P Base Motion Vintage Stock 614 Super Rare', 'MLB-S221-S-B614-VS'), + (0x01d61f735bff1a0ab8cdffcffc99776cffed498a, 'Jean-Paul Boëtius M05 Animation Gold Refractor S4-51 Legendary', 'BUND-21TS4-L-AS4-51-V-GOL'), + (0x01e0353bc75d812ea4609f25325879b83cc536aa, 'Seattle Mariners™ Jake Fraley OF Base Motion Vintage Stock 402 Super Rare', 'MLB-S221-S-B402-VS'), + (0x01e5c49e4922bb8c1f18b69b871bcead68738fef, 'Souls of Whiskey Wednesday', 'WW'), + (0x01e89919b1cd7840f6edd496fe74553416c6e55a, 'FC Bayern Munich Leon Goretzka Base Players White 3 Common', 'BUND-SC21-C-BP3-WHT'), + (0x01e989c463dd831d6131d50d91de199b13a56677, 'Philadelphia Phillies® Aaron Nola P Base Motion Platinum 537 Epic', 'MLB-S221-E-B537-PLA'), + (0x01eda8d96b1ddce7bb7f4f6de94bbf635c7f9a65, 'Mechagodzilla Minka Traditional Art Color 1 Legendary', 'GDZ-RAT21-L-RTA1-A-COL'), + (0x01f3fece3782ceb16c3e8426474f496b479d7688, 'Chicago White Sox® Steve Cishek P Base Motion Platinum 407 Epic', 'MLB-S221-E-B407-PLA'), + (0x01fddbc7c337ceb0ee5eb193959da7c55173a7c0, 'San Diego Padres™ Jake Cronenworth Rookie and Future Phenoms Facsimile Signature Blue 66 Super Rare', 'MLB-INC21-S-RC66-BLU'), + (0x01fe3df77415e5b14acc2451016aa016b9fddc1e, 'PrizeBondAvax', 'PBA'), + (0x020fb584d9cd321f53dedadf5d3707a268190244, 'Hooks of Horror Moment Color 4 Uncommon', 'GDZ-GVG22-U-M4-V-COL'), + (0x02154345e4401d70faedf858ad3991a821973106, 'FC Schalke 04 Frederik Riis Rønnow Top Saves Team Color TS-12 Epic', 'BUND-SC21-E-TSTS-12-TMC'), + (0x0217485eb50bbd886b14f7ba5ecd0f03d3069779, 'Polar Node', 'PN'), + (0x021b312fb58673a059d2cc8aafc3bc8aa31ad4fe, 'Tampa Bay Rays™ Vidal Brujan 1987 35th Anniversary Chrome T87C-17 Super Rare', 'MLB-22S1-S-1987AC14-M-CHR'), + (0x021b9e5320555eb771dec477b23f41540c82a5d5, 'Atlanta Braves™ Ozzie Albies National League Base Blue 6 Rare', 'MLB-22ASG-R-B6-M-BLU'), + (0x021f2471a976c881fe0168e5d9249533c2287abc, 'Rare Baseball Card 2 Mort Batter Bazooka Joe 2021 NFT', 'BZK-R-2B'), + (0x022299d4df7ae9ecdb0d138dfa77430353bcfb17, 'SV Werder Bremen Ömer Toprak Base Players White 80 Common', 'BUND-SC21-C-BP80-WHT'), + (0x02239f53526497595d68006090b13d6f79d17ae7, 'Los Angeles Dodgers® Trea Turner National League Base Blue 9 Rare', 'MLB-22ASG-R-B9-M-BLU'), + (0x023884e3b99937d11dcdcd206b7a857609ea82b1, 'National League™ Justin Turner Base Blue 1300 Common', 'MLB-22PRI-C-B204-M-BLU'), + (0x023f33ff1c80fc1f1c6795b2b38704936b734dd6, 'Vee Fiend Golden Animation Color 5 Epic', 'GPK-NFT22-E-GA5-A-COL'), + (0x024aae2a80e99396fdc09e7c8adbba603aa4538c, 'Houston Astros® Jeremy Peña Championship Series Newspaper BW 1128 Common', 'MLB-22TNP-C-CSN1-M-BW'), + (0x024ac5842cec3b2c27a1a5ad2a3be0f79bb36616, 'Cleveland Indians® Josh Naylor OF Base Static White 419 Common', 'MLB-S221-C-B419-WHI'), + (0x024d911835af66eccd41e6ce2488a6f414c88e78, 'Alfredo Morelos RFC Base Aqua SP-03 Uncommon', 'SPFL-21SPSS-U-BSP-03-A-AQU'), + (0x024d917678532ca588bc56db3285127e713228fe, 'Boston Red Sox® Xander Bogaerts Base Glitch 8 Uncommon', 'MLB-22S1-U-B8-M-GLI'), + (0x0254f39e100d277a83c682843f799ce82ea2bf32, 'Octane Renders PT2', 'OCTRP2'), + (0x025bb8744c28a0d57b2cfaa594b89b4d6fc098db, 'Borussia Dortmund Erling Haaland Top Players Gold 94 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP94-AFS-GLD'), + (0x025dbd48193718107bb212a7f1d1765205b412e9, 'Miami Marlins® Bryan De La Cruz 2022 Inception Gold 8 Legendary', 'MLB-22LEG-L-22INC8-M-GLD'), + (0x025ff0fbb813b574b5f61b22ff99076a2e022bdc, 'Chicago Cubs® Base Static Gold 529 Uncommon', 'MLB-S221-U-B529-GOL'), + (0x0263d846d7dcc37d25cb3ccffcbb5ebb07fd46db, 'THE DARK PP', 'THEDARKPP'), + (0x026ef8f7324b839f9ec06875ff8378ece2a2c173, 'New York Mets® James McCann C Base Static White 410 Common', 'MLB-S221-C-B410-WHI'), + (0x027b346fc286ca5efe30d06313698cba4a97be99, 'Space Monkes', 'SM'), + (0x028ad816dae158c113c3255f43e35feeddfccdb1, 'Houston Astros® Yuli Gurriel Championship Series Silver 14 Epic', 'MLB-21POST-E-CS14-M-SIL'), + (0x028bba577f6057c626ebbe3cc2305a483c147759, 'St. Louis Cardinals® Yadier Molina Base Pink 1026 Uncommon', 'MLB-22PRI-U-B39-M-PNK'), + (0x028dcf47d8d735c203122229847f64a0ef618b57, 'Cleveland Guardians™ Oscar Gonzalez Divison Series Broadcast RWB 1087 Rare', 'MLB-22TNP-R-DSA1-M-RWB'), + (0x0298070251287bd78fe41bbd3def3aa0d5894563, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Gigan Poster Child', 'GDZ-GVG22-PACK-R9'), + (0x029a5c860df606763a830b3b780eb2c05d0abab3, 'Cleveland Guardians™ Jose Ramirez Base White 269 Common', 'MLB-22S1-C-B266-S-WHI'), + (0x02a1b4f4dfc1e8fcadaafd7595d60ed7090f7e87, 'VfB Stuttgart Darko Churlinov Base Players Team Color 88 Uncommon', 'BUND-SC21-U-BP88-TMC'), + (0x02a43e46d1946d0a76484e623fa0951908b8e941, 'Gnabry-Kimmich BAY Animation Duos TSC-02 Epic', 'BUND-21TSC-E-RATSC-02-A-DUO'), + (0x02a491835bacba5751f9fb085ee22a0b0299d086, 'New York Yankees® Aaron Judge 1987 35th Anniversary Chrome T87C-37 Super Rare', 'MLB-22S1-S-1987AC28-M-CHR'), + (0x02b03f9bd1e832556b917bad18edf9178176268e, 'Silk Road 2050 - Galip Dede Caddesi', 'gLW'), + (0x02b3a25c7915f0385efa4ee8eb7b1ba33cf1364a, 'New York Mets® Kevin Pillar Base Glitch 170 Uncommon', 'MLB-22S1-U-B169-M-GLI'), + (0x02beaa3547d025d9b2282d26c845ecc29279b393, 'Tampa Bay Rays™ Joey Wendle Base Glitch 145 Uncommon', 'MLB-22S1-U-B144-M-GLI'), + (0x02bf6ff95498ab700950444d99ef80415b720fd0, '111 Amazing Art', 'ArtNFT'), + (0x02c070661449bf99c30eeac66bdd50a89d4a6895, 'American League™ Shohei Ohtani Base Pink 1268 Uncommon', 'MLB-22PRI-U-B188-M-PNK'), + (0x02c33e196d63d993f1150c62ceda356c9c89b1f8, 'Detroit Tigers® Beau Burrows Rookie and Future Phenoms Facsimile Signature Blue 22 Super Rare', 'MLB-INC21-S-RC22-BLU'), + (0x02c740c06ef580d9af696df533f34d2009c0009c, 'San Diego Padres™ Eric Hosmer 1B Base Static Gold 639 Uncommon', 'MLB-S221-U-B639-GOL'), + (0x02cc9db84b7a7468b6c4a7392aa338f9b36a64a0, 'Miami Marlins® Pablo Lopez P Base Motion Vintage Stock 634 Super Rare', 'MLB-S221-S-B634-VS'), + (0x02ccf320c9fcd320eb8235278a23e0ce0ac20cb3, 'PG Wendex Badges', 'WNDX'), + (0x02cd8f7a01cb00b5662ad16d0ebbcdf929942ada, 'Miami Marlins® Edward Cabrera 1987 35th Anniversary Wood T87-60 Common', 'MLB-22S1-C-1987A41-M-WD'), + (0x02cfeca3f237b44b4f66446e680563e409bc8c65, 'CryptoVikings', 'VIKING'), + (0x02d2ee6c6dee776c6952ef6e7dc90ad85c7c4d45, 'Atlanta Braves™ Nick Markakis OF Base Static White 641 Common', 'MLB-S221-C-B641-WHI'), + (0x02d812b9c73937e54c91afc7dc9a36bf6fc99c65, 'Uncommon Comic 93 2-45 Bazooka Joe 2021 NFT', 'BZK-U-93C'), + (0x02da1652577b18827fcee66cbb306b9a5dd33a2f, 'Miami Marlins® Trevor Rogers Base Blue 1198 Common', 'MLB-22PRI-C-B84-M-BLU'), + (0x02e73bde8fe487317daa5809f1ad4171c15dbdb5, 'Dodi Lukébakio BSC Color Splash Facsimile Signature Team Color TK-65 Legendary', 'BUND-22TK-L-CSTK-65-S-TMC'), + (0x02e7d827a04c55701e6075fe9ab5207f78c63a1e, 'Racon Collection', 'RCN'), + (0x02eb44d805387f420f4c26dbdecddd14ef5f16b1, 'Bored Adam Yuck Club Golden Animation Color 1 Epic', 'GPK-NFT22-E-GA1-A-COL'), + (0x02ecd24a8be81bba542b2d604f1b3a50c38f1368, 'Chicago Cubs® Willson Contreras Facsimile Signature Slab Gold 3023 Epic', 'MLB-22PRI-E-FS54-M-GLD'), + (0x02f42ca35c3322c8afd85f1e61c95e7f51ee2f51, 'Pittsburgh Pirates® Jacob Stallings Base Independence Day RWB 286 Rare', 'MLB-22S1-R-B283-M-RWB'), + (0x02f6d4f9ce6f4df9aab237a410a895d92a5edb17, 'Boston Red Sox® Chris Sale Inception Base White 11 Common', 'MLB-INC21-C-IB11-WHT'), + (0x0313476785e8d052293b36d19b26dfb577dd61c0, 'Texas Rangers® Khris Davis DH Base Motion Rainbow 584 Rare', 'MLB-S221-R-B584-RAI'), + (0x031b6b64c68269fa94729175d697ba77dbf20245, 'Florian Wirtz B04 Animation Gold Refractor S2-11 Legendary', 'BUND-21TS2-L-AS2-11-V-GOL'), + (0x032f3c7a8d963bed54299f52ef8f2ea326cc0d01, 'St. Louis Cardinals® Yadier Molina Facsimile Signature Blue 205 Uncommon', 'MLB-22S1-U-FS12-S-BLU'), + (0x0335e877531cef38ddd52d6be7c07c4cb2e32d0f, 'Jeromies Token', 'JMYt'), + (0x03407c7d7cbce89ad67f3d9f2910cdb43e374aec, 'Dean Cornelius MOT Young Stars Red SPYS-09 Epic', 'SPFL-21SPSS-E-YSSPYS-09-A-RED'), + (0x0347bc3441f30222a8e41728276a1837ae879bc8, 'Rare Comic 81 2-33 Bazooka Joe 2021 NFT', 'BZK-R-81C'), + (0x0347c61c68dda6d6c6866662dafe58600f694767, 'HANNYA MASKS', 'HANNYAMASKS'), + (0x034aadd3cc2c0dafcc649f939141ccec0494ffb9, 'FC Koln Benno Schmitz Base Players Team Color 66 Uncommon', 'BUND-SC21-U-BP66-TMC'), + (0x034f8b9507be75c09259ef0a081e17f9cb122d93, 'New York Mets® Jeff McNeil 2B/OF Facsimile Signature Static Red 489 Epic', 'MLB-S221-E-FS489-RED'), + (0x03518ad0aaad97142262c57f0a07a1220e99805c, 'Quest3NFT', 'Quest3'), + (0x035cf07f68d42893daa43df9ccca710d77fa3537, 'FC Augsburg Rani Khedira Base Players Gold 75 Rare', 'BUND-SC21-R-BP75-GLD'), + (0x035e4a4f218ab7309bc5917808db8daab648f9a8, 'Godzilla RAT Page 8 Comic Page Black and White 7 Uncommon', 'GDZ-RAT21-U-CP7-S-BW'), + (0x035fdc1d7db021d5d72fb4bb797d75dfebd98468, 'Pittsburgh Pirates® Rodolfo Castro 1987 35th Anniversary Wood T87-26 Common', 'MLB-22S1-C-1987A21-M-WD'), + (0x036453ab73771f087c8879cda57bf2526f4886a7, 'Reece Oxford FCA Top Players Black TK-25 Common', 'BUND-22TK-C-TPTK-25-S-BLA'), + (0x0371fd9c0f835138382eb884286b7d990ff4b123, 'RB Leipzig Emil Forsberg Base Players Team Color 12 Static Facsimile Signature Rare', 'BUND-SC21-R-BP12-SFS-TMC'), + (0x037994c7730a1f2435e7a5717e9fc7aba1d7ebb1, 'Boston Red Sox® Connor Wong 1987 35th Anniversary Chrome T87C-12 Super Rare', 'MLB-22S1-S-1987AC10-M-CHR'), + (0x037b5a9e9ecc18b8c9729a0c0452511b917eadb2, 'MarketingKangroos', 'MAK'), + (0x0386a59bddea7e9e4b3f95da83cc065d230b3d43, 'Snake Hero', 'SNAKE'), + (0x03876b95e10001f9905d07773258db6537f44db4, 'San Francisco Giants® Brandon Belt 1B Base Static White 405 Common', 'MLB-S221-C-B405-WHI'), + (0x038bc03b1807dd4070e15cf0be84d7dd52f5de59, 'Arizona Diamondbacks® Ketel Marte Base Pink 1002 Uncommon', 'MLB-22PRI-U-B66-M-PNK'), + (0x0390e6f3a9e951ba18d092bd5a6bbe5622e0e87d, 'Tampa Bay Rays™ Nelson Cruz Base Independence Day RWB 104 Rare', 'MLB-22S1-R-B103-M-RWB'), + (0x0393fe55c31fc8be5a11d451280be63054811011, 'Milwaukee Brewers™ Christian Yelich Inception Base Blue 54 Uncommon', 'MLB-INC21-U-IB54-BLU'), + (0x039b20e6d12c007f03ab859871da184969feab52, 'Monster X Base Collectible Blue 15 Common', 'GDZ-RAT21-C-B15-S-BLU'), + (0x039f28c4bee569a74abbcd8b7ddd0978244d6041, 'Washington Nationals® Mason Thompson Base Independence Day RWB 38 Rare', 'MLB-22S1-R-B38-M-RWB'), + (0x03a0957d53c3cf706aa9bd18844cab135924a245, 'Milwaukee Brewers™ Eduardo Escobar Base Pink 1181 Uncommon', 'MLB-22PRI-U-B21-M-PNK'), + (0x03a497838c17c0878ea90e7d711dff93ef54e895, 'Houston Astros® Michael Brantley Base Vintage Stock 199 Super Rare', 'MLB-22S1-S-B198-M-VS'), + (0x03ac3a15aa29da34cf696d9b3492fc304951a5cb, 'Detroit Tigers® Spencer Turnbull Base Independence Day RWB 228 Rare', 'MLB-22S1-R-B225-M-RWB'), + (0x03bf57618e539f17ed748be9ef001261db6cba1f, 'Texas Rangers® Adolis Garcia Pure Power Facsimile Signature Reward White 3328 Legendary', 'MLB-22PRICR-L-PPR11-M-WHI'), + (0x03ccc95698d554516909ded5ca7894e16c8064bf, 'Colorado Rockies™ Trevor Story SS Facsimile Signature Static Blue 475 Super Rare', 'MLB-S221-S-FS475-BLU'), + (0x03ce85bf221d04bee7a569bf12a4b552bf9c308d, 'Washington Nationals® Victor Robles OF Base Static White 343 Common', 'MLB-S221-C-B343-WHI'), + (0x03f32693ead45bdf19edfe3e79d394c799e53dbf, 'JuneShine Membership Can', 'JMC'), + (0x0401c2525c74686b297ef0edbffcf90b6c7ffb73, 'Tampa Bay Rays™ Mike Brosseau 2B/3B Base Static White 427 Common', 'MLB-S221-C-B427-WHI'), + (0x0401cf5ad4725990b7d8f9831f2fd65d46021cbc, 'Minnesota Twins® Brent Rooker OF Base Static Gold 480 Uncommon', 'MLB-S221-U-B480-GOL'), + (0x04114a2f60dd31ee74fd0da64c2db308f3b18996, 'Tampa Bay Rays™ Wander Franco Base Pink 1204 Uncommon', 'MLB-22PRI-U-B136-M-PNK'), + (0x0414f223e2bcef53dbdda250fe4d5cd5bb79ddc1, 'Washington Nationals® Stephen Strasburg Base Pink 1060 Uncommon', 'MLB-22PRI-U-B29-M-PNK'), + (0x041fc7df0a2f7ba8ebfd93787186e3cc11600277, 'Milwaukee Brewers™ Devin Williams P Base Static White 485 Common', 'MLB-S221-C-B485-WHI'), + (0x04234bf5d67054bc0071e8596c8b15f24efbd3f2, 'Rytell Wood Elf', 'RWE'), + (0x0431f270121ba5ffdf50d55976ab52580a900bdb, 'Detroit Tigers® Daz Cameron OF Base Motion Platinum 441 Epic', 'MLB-S221-E-B441-PLA'), + (0x04341f7e7852cd06e3858f7ce1bd7adbc3fb7af7, 'Eamonn Brophy SMI Top Plays Gold SPTPL-10 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-10-V-GOL'), + (0x044c24377853442157f18f2f3517c943b18eaddb, '2021 Topps MLB Inception NFT Collection Standard Pack', 'MLB-INC21-PACK-S'), + (0x044dfe89463854361d93425546a6fbe1b65f6ef2, 'Milwaukee Brewers™ Omar Narvaez Base Independence Day RWB 139 Rare', 'MLB-22S1-R-B138-M-RWB'), + (0x044e177cc278fcd6da362f8c6a4c597eaddb74f4, 'St. Louis Cardinals® Kodi Whitley Rookie and Future Phenoms Facsimile Signature White 71 Rare', 'MLB-INC21-R-RC71-WHT'), + (0x04527541cd0f00daed5f3ad3b426f53e3fb2c78c, 'St. Louis Cardinals® Dakota Hudson P Base Motion Vintage Stock 455 Super Rare', 'MLB-S221-S-B455-VS'), + (0x045352d95f299b9d3586fa382b6e5b478503bbf5, 'Dragonz DAO', 'DRAGONZ'), + (0x0453ecf6cf2419b5750e7c2a5c49e2ebc6ff7382, 'Common Comic 92 2-44 Bazooka Joe 2021 NFT', 'BZK-C-92C'), + (0x045820fe9c7b2cd965b920b7610a2b17f5a86e28, 'Chicago White Sox® Eloy Jimenez Rookie and Future Phenoms Facsimile Signature White 18 Rare', 'MLB-INC21-R-RC18-WHT'), + (0x045fee3767c5bd3a905b1e924202b2f359147d18, 'New York Mets® Pete Alonso National League Base Golden 4 Super Rare', 'MLB-22ASG-S-B4-M-GLD'), + (0x04749e3428d84fd268fca1bc3b29bb3d8908fcb8, 'nnxyz index collection', 'nnxyzic'), + (0x0478ea0637acf224114ccc5ac8f7db3b59fc9639, 'Colorado Rockies™ Antonio Senzatela P Base Motion Platinum 420 Epic', 'MLB-S221-E-B420-PLA'), + (0x0483e378bd64e00751e87b51aaaa430cab8950f4, 'Atlanta Braves™ Adam Duvall OF Base Static Gold 601 Uncommon', 'MLB-S221-U-B601-GOL'), + (0x048c44f83303fabb95c7765e116818c0118b7e12, 'Super Rare Comic 87 2-39 Bazooka Joe 2021 NFT', 'BZK-S-87C'), + (0x048c939bea33c5df4d2c69414b9385d55b3ba62e, 'Painight', 'PAINIGHT'), + (0x048e6848327e81848d021dd234bf1b4f95f6787a, 'Uncommon Comic 97 2-49 Bazooka Joe 2021 NFT', 'BZK-U-97C'), + (0x04921484e1eae7a103fea469391bff79b93c9187, 'Chicago White Sox® Nick Madrigal Rookie and Future Phenoms Facsimile Signature White 21 Rare', 'MLB-INC21-R-RC21-WHT'), + (0x0499bf8b302f594b4ac5deb2022d19f8534c9216, 'Joseph Hungbo RSC Young Stars Red SPYS-12 Epic', 'SPFL-21SPSS-E-YSSPYS-12-A-RED'), + (0x049a5df3286677c165a6cce918392fc1fe9266fc, 'Houston Astros® Carlos Correa Inception Base White 34 Common', 'MLB-INC21-C-IB34-WHT'), + (0x04a9d951a9e5d1cfebbe3b08d21bfc37d29c17cc, 'TGoat', 'TESTG'), + (0x04afcde71625174f356f4c979d6c4b75f4979b5c, 'City of Dreams', 'CODMZ'), + (0x04b1eefacad22c2cb5e7ea0fb80cd9743867cca4, 'Toronto Blue Jays® Randal Grichuk OF Base Static Gold 352 Uncommon', 'MLB-S221-U-B352-GOL'), + (0x04c1d086a6312cf34593406fbede3bafe8958855, 'Super Rare Comic 103 2-55 Bazooka Joe 2021 NFT', 'BZK-S-103C'), + (0x04c49fb7d452c50a736c2506d493c127ff014e2b, 'Ebirah Base Collectible Magenta 1 Common', 'GDZ-RAT21-C-B1-S-MAG'), + (0x04c6636cf0c3ef3a1cc26fa525125e1c75befebd, 'FC Union Berlin Christopher Lenz Base Players Gold 51 Rare', 'BUND-SC21-R-BP51-GLD'), + (0x04ca6cbebb36341f15e903ddf88bbbda40a4ba90, 'FSV Mainz 05 Jean-Paul Boëtius Base Players Team Color 62 Uncommon', 'BUND-SC21-U-BP62-TMC'), + (0x04d3cc0e13f278b7d40a73e3768e7e2f16c64c6d, 'Super Rare Baseball Card 4 Jane Catcher Bazooka Joe 2021 NFT', 'BZK-S-4B'), + (0x04d944f2aafe6d827566fbabfa5ccc31c009a18d, 'Chicago White Sox® Zack Burdi P Base Motion Platinum 483 Epic', 'MLB-S221-E-B483-PLA'), + (0x04d9eb88a7d1fdb2598bb1892c24863908ef8c84, 'Jamal Musiala BAY Motion Aqua Refractor S3-32 Rare', 'BUND-21TS3-R-MS3-32-V-AQU'), + (0x04dea08feec6c92dd69b10c47117a9041f28341a, 'Color x Music Theory', 'mmoon'), + (0x04e60c9bc56466bd2ada96398523561bd09610e4, 'Chicago White Sox® Luis Robert Base Blue 1007 Common', 'MLB-22PRI-C-B121-M-BLU'), + (0x04ee2704e7da107572b7119277ed65beb94056b0, 'Borussia Dortmund Emre Can Base Players White 7 Common', 'BUND-SC21-C-BP7-WHT'), + (0x04f6de625c49de43155be227678b88c37c3d2cad, 'Houston Astros® Yordan Alvarez 2022 Definitive Gold 12 Legendary', 'MLB-22LEG-L-22DEF12-M-GLD'), + (0x04fea25310831aca4b8530b115f73e2fee8d5d27, 'Rare Comic 29 1-29 Bazooka Joe 2021 NFT', 'BZK-R-29C'), + (0x05028f8f47d2e0e62266ca60ec2725f5f5ad71e7, 'Minnesota Twins® Alex Kirilloff Rookie and Future Phenoms Facsimile Signature Blue 49 Super Rare', 'MLB-INC21-S-RC49-BLU'), + (0x0513a0cc8a690aa8feb1fdcb363b1a1b243ca11c, 'Houston Astros® Michael Brantley Base Independence Day RWB 199 Rare', 'MLB-22S1-R-B198-M-RWB'), + (0x0516430a929e3a8c7c5c4f56915c7a0a69b016b6, 'Boston Red Sox® Xander Bogaerts Base Pink 1005 Uncommon', 'MLB-22PRI-U-B80-M-PNK'), + (0x0517cf1dbbd9378dca72844542acf9eb2445f63a, 'Colorado Rockies™ Daniel Bard Base Independence Day RWB 167 Rare', 'MLB-22S1-R-B166-M-RWB'), + (0x051a3272cca400f95f56c72291a7cf6eaedf60da, 'Bayer 04 Leverkusen Florian Wirtz Young Stars Team Color 153 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS153-SFS-TMC'), + (0x0520c4e325db497cabdafe5a21749b1d9f533cb0, 'Avalanche Armory', 'GUNS'), + (0x0521070c18ac599ee75269ca8421a174e44781c6, 'Post Apocalyptic', 'PACP'), + (0x052fd80c4f8403ada1c4e28f67ceaf5470d0a1d9, 'Seattle Mariners™ J.P. Crawford SS Base Static Gold 506 Uncommon', 'MLB-S221-U-B506-GOL'), + (0x0530405f199f8ca5d81deae367175f3f1ca9ad9a, 'Autumnal Eldritch', 'AutumnEldritch'), + (0x0537ead742f9992d476bc3f6220580957af55b1a, 'Pittsburgh Pirates® Ke''Bryan Hayes Fresh Faces White 2208 Rare', 'MLB-22PRI-R-FF1-M-WHI'), + (0x053aaf6a731c43f6937443e7761d52e1b82641aa, 'San Diego Padres™ Base Static Gold 604 Uncommon', 'MLB-S221-U-B604-GOL'), + (0x05446078dee83328933551b0579cb1a500cdaa89, 'San Diego Padres™ Ivan Castillo Base Independence Day RWB 140 Rare', 'MLB-22S1-R-B139-M-RWB'), + (0x054d96689eb8c3065bf2e1c84475a198e9e6c0a0, 'Cleveland Indians® Franmil Reyes DH Base Motion Platinum 341 Epic', 'MLB-S221-E-B341-PLA'), + (0x054de2df122972b9430cc874975bc08c2fc5f4a4, 'Washington Nationals® Juan Soto 1987 35th Anniversary Wood T87-79 Common', 'MLB-22S1-C-1987A57-M-WD'), + (0x054f01337ad0e0e220686d8648d0fbaeb5421700, 'Borussia Monchengladbach Florian Neuhaus Young Stars Gold 151 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS151-AFS-GLD'), + (0x0555c4a6a64d85ce8b1ef5d4dedf591f70c6c551, 'Toronto Blue Jays® George Springer OF Base Static White 633 Common', 'MLB-S221-C-B633-WHI'), + (0x0555e7f8ee8b5f344c312e0baa64ed4ae49fc06e, 'Toronto Blue Jays® Teoscar Hernandez Base Pink 1089 Uncommon', 'MLB-22PRI-U-B70-M-PNK'), + (0x05599eadba8c40e1e4dbc9bc7505afeba4f150d8, 'St-Wolfgang Train', 'GZSW'), + (0x055fd07797d4042bfb59a736e92d3a60e47c258f, 'Chicago White Sox® Yoan Moncada 1987 35th Anniversary Chrome T87C-30 Super Rare', 'MLB-22S1-S-1987AC25-M-CHR'), + (0x056a59e79721e7df5258de5471691ca34358fbfa, 'musikINSPO', 'MUZK'), + (0x057764a3ea6304fdb7b51913da3dda0c7d38a039, 'Dejan Ljubicic KOE Motion Aqua Refractor S4-69 Rare', 'BUND-21TS4-R-MS4-69-V-AQU'), + (0x057780c8228c3a0b4a85dfbd56a5c9d053adcc70, 'Cincinnati Reds® Sonny Gray Base White 45 Common', 'MLB-22S1-C-B45-S-WHI'), + (0x05808fd876b5e34cf76074ff9d6a1da006617610, 'Kansas City Royals® Brad Keller P Base Static Gold 544 Uncommon', 'MLB-S221-U-B544-GOL'), + (0x0586791a9fac332e2b69558fbd1a84b3e7915e64, 'DØP3 Punks', 'DP'), + (0x058e8eedd0fe08c7404ab77b33156a740006dff5, 'Super Rare Comic 99 2-51 Bazooka Joe 2021 NFT', 'BZK-S-99C'), + (0x058f648f31cbc1f44220435c3a2e78efd97c2de7, 'Chicago White Sox® Gavin Sheets Facsimile Signature Slab Gold 3112 Epic', 'MLB-22PRI-E-FS13-M-GLD'), + (0x05966cd01c492e6e1cdd845b74a2a35083568efa, 'Florian Neuhaus BMG Top Players Team Color TK-15 Rare', 'BUND-22TK-R-TPTK-15-S-TMC'), + (0x059ba2f8ae5eff5ac9fcdc19367a938523dd70af, 'Toronto Blue Jays® Hyun-Jin Ryu P Base Motion Vintage Stock 379 Super Rare', 'MLB-S221-S-B379-VS'), + (0x05c146f59cd58ee1bef2190833096e4fe512f953, 'Battra Base Collectible Magenta 16 Common', 'GDZ-RAT21-C-B16-S-MAG'), + (0x05c9da8ca1cd336234cbdf5de7a074dff1eaea2e, 'Limited addition dead owls', 'LEDO'), + (0x05e10fef2d8b9bc9b42ec34ea9863e9764723f95, 'Aikonic NFTs', 'QMBOND'), + (0x05ef46ff51c3d88a4033aedb69bf5846d19f46b4, 'Los Angeles Dodgers® Dustin May P Base Motion Rainbow 355 Rare', 'MLB-S221-R-B355-RAI'), + (0x0601a89e093b84df3e4e596a313889d6388e96b6, 'Topps NOW World Series Game 1 Ticket Redemption Pack', 'MLB-21NOW-PACK-TR-GM1'), + (0x0615b0cace3344162b8d3b91fcc1e346aedb2bf6, 'Milwaukee Brewers™ Eduardo Escobar Base Vintage Stock 207 Super Rare', 'MLB-22S1-S-B206-M-VS'), + (0x062d127e3de15dafd95c541c13ce1ea897fd16d8, 'Oakland Athletics™ Matt Chapman Popular Demand Facsimile Signature Teal 3515 Legendary', 'MLB-22PRI-L-PDFS11-M-TEA'), + (0x063140299dca442c816a6e3dc7db3619ab39c272, 'Boston Red Sox® Enrique Hernandez OF/2B Base Static Gold 465 Uncommon', 'MLB-S221-U-B465-GOL'), + (0x0631b7fb53a15affe4d86d556d8a6966cd373358, 'Atlanta Braves™ Ender Inciarte OF Base Static Gold 515 Uncommon', 'MLB-S221-U-B515-GOL'), + (0x0639dc2e6851bdd2f577e5b281b729ada172018a, 'Toronto Blue Jays® Lourdes Gurriel Jr. Base White 54 Common', 'MLB-22S1-C-B54-S-WHI'), + (0x063a5bcecbfb3d77c99d2a35a727eca6a217a817, 'San Francisco Giants® Austin Slater OF Base Static White 378 Common', 'MLB-S221-C-B378-WHI'), + (0x063d76a8d094fafad03e7539a8c88bc3fc049423, 'Child’s Play', 'CHILDSPLAY'), + (0x06422d934f1214fd433b1cef60ccff739a75028e, 'Godzilla RAT Page 9 Comic Page Color 8 Super Rare', 'GDZ-RAT21-S-CP8-A-COL'), + (0x06444bef24e993122b151f29bc24ea314bae9317, 'Milwaukee Brewers™ Christian Yelich Inception Base White 54 Common', 'MLB-INC21-C-IB54-WHT'), + (0x064957bccfc06a04071429984be3ef2252d9398b, 'Colorado Rockies™ Ryan McMahon 2B Base Motion Platinum 445 Epic', 'MLB-S221-E-B445-PLA'), + (0x0654639a8d060129613e2ce557eae28392634adf, 'Atlanta Braves™ Joc Pederson World Series Gold 13 Epic', 'MLB-21POST-E-WS13-M-GOL'), + (0x065756bc412d5f994255f6fd88aaf06e9026f103, 'CryptoClowns', 'CC'), + (0x065d9dd95cc8a73b698385df05609c6480bcf06b, 'RUG TICKET1', 'RUGT1'), + (0x0665ddf7f84cdeb6590199d2ddb9fde5988c1a9c, 'Takuma Asano BOC Motion Aqua Refractor S4-65 Rare', 'BUND-21TS4-R-MS4-65-V-AQU'), + (0x0675da24664a37932748348789c13ab6d6c90e9e, 'Boston Red Sox® Travis Shaw Base White 88 Common', 'MLB-22S1-C-B88-S-WHI'), + (0x0678aba77a2bc592d7c3ec77566f90095fe80eb5, 'NN Colors', 'NNC'), + (0x067f60b24d9b22d436cbc48f2601a07d030d7958, 'FC Koln Florian Kainz Base Players Team Color 67 Static Facsimile Signature Rare', 'BUND-SC21-R-BP67-SFS-TMC'), + (0x06843d564c6cce4d85de1e788f3486777005c852, 'St. Louis Cardinals® Harrison Bader Postseason Base White 46 Common', 'MLB-21POST-C-B46-S-WHI'), + (0x068452357234c01e52a3479a0f8ddd8cde09fc63, 'Oakland Athletics™ Matt Olson Base Blue 1050 Common', 'MLB-22PRI-C-B118-M-BLU'), + (0x068bef92987d16ef682ff017b822ca1211401eaf, 'GHOST', 'GHOST'), + (0x0694ec4c8064f86e5ca2c7a9141fbcd92416f99d, 'Minnesota Twins® Luis Arraez 2B Facsimile Signature Static Blue 649 Super Rare', 'MLB-S221-S-FS649-BLU'), + (0x069f164105cc9de47a8cebd3c51ca5dc5b39320b, 'Oakland Athletics™ Jordan Weems P Base Static White 570 Common', 'MLB-S221-C-B570-WHI'), + (0x06adf6063dacce3415dfd01bef7498655733e2db, '2021 Topps Series 2 Baseball Set Completion Reward Pack', 'MLB-21S2-COMPLETE-PACK'), + (0x06b4d2c6e63b3c3e87154ea85d8e2e0eb673f52d, 'AVAX BEARS', 'AVAXBEARS'), + (0x06b4ecd85417a3fb1d28d83b58b53aeb4e4f86c0, 'St. Louis Cardinals® Tyler O''Neill Postseason Base White 43 Common', 'MLB-21POST-C-B43-S-WHI'), + (0x06ba020a729d59c27ee06c167dc486602f9e29db, 'Philadelphia Phillies® Vince Velasquez P Base Motion Vintage Stock 653 Super Rare', 'MLB-S221-S-B653-VS'), + (0x06beb686d2fef416e4cbc0f112c927a7f315798e, 'Miami Marlins® Jazz Chisholm Jr. Stars of MLB Chrome Night SMLBC-10 Legendary', 'MLB-22S1-L-SMLBC10-M-NIT'), + (0x06c171f766b8b8a5e0722cd268c9df4223881186, 'African Hippos', 'AH'), + (0x06c1f5bb3428e866ede11cf9da7bfbc373017b1d, 'Los Angeles Dodgers® Walker Buehler Base Blue 1114 Common', 'MLB-22PRI-C-B86-M-BLU'), + (0x06cf0ce8e98aeb1030a39fc7ecb4daafb302201a, 'Toronto Blue Jays® Tom Hatch P Base Motion Rainbow 556 Rare', 'MLB-S221-R-B556-RAI'), + (0x06cf7040fa5ad0597e915ce528232e8fba92bad5, 'Washington Nationals® Juan Soto OF 1986 Anniversary Facsimile Signature Motion Chrome 86TC-73 Legendary', 'MLB-S221-L-1986AFS86TC-73-CHR'), + (0x06d04e572f58262dac71a08a967a65e267720e46, 'Cincinnati Reds® Base Glitch 96 Uncommon', 'MLB-22S1-U-B95-M-GLI'), + (0x06dbf86b7c421a7ca280b15c8ab545fb0fedac67, 'New York Mets® Pete Alonso Pure Power Facsimile Signature Reward White 3306 Legendary', 'MLB-22PRICR-L-PPR2-M-WHI'), + (0x06dc21f89f01409e7ed0e4c80eae1430962ae52c, 'Core NFT', '3KT'), + (0x06e4d18e3c302ed5817215a8d4e9fb6abf11553d, 'Toronto Blue Jays® Ken Giles P Base Motion Platinum 422 Epic', 'MLB-S221-E-B422-PLA'), + (0x06eecd9d5776b406d99827c2197e620da0344ba2, 'Boston Red Sox® Travis Shaw Base Glitch 88 Uncommon', 'MLB-22S1-U-B88-M-GLI'), + (0x06f49fddd02ed8eafc6933c0cdf2866f98c49658, 'Robots', 'ROBO'), + (0x06ff2c063ed493ea888512b9b22cb22fc6816060, 'Miami Marlins® Starling Marte Inception Base Red 53 Rare', 'MLB-INC21-R-IB53-RED'), + (0x07003c8dd646f529776ef847961ee13a2c0b681c, 'Washington Nationals® Alex Avila C Base Motion Rainbow 446 Rare', 'MLB-S221-R-B446-RAI'), + (0x07036ae451c46bddaebc3fb0698da0685b28883e, 'American League™ Salvador Perez Base Pink 1261 Uncommon', 'MLB-22PRI-U-B213-M-PNK'), + (0x07101a34cb909f4f15df99024162a2bb7863eab6, 'Epic Animated Comic 3 Groundhog Day Bazooka Joe 2021 NFT', 'BZK-E-3A'), + (0x07118752543f978cc1cf1d9817263c1e7d4b96ec, 'Colorado Rockies™ Raimel Tapia OF Base Static White 359 Common', 'MLB-S221-C-B359-WHI'), + (0x0716780a075fd7c8878b44448d0d8c06dc67fe7c, 'Smolr Doomers', 'SMOLRDOOM'), + (0x0722e94aace9e0c7731485fda1bafbed524fd4e7, 'Alien World', 'AlienWorld'), + (0x072dd831eaccadb1372d74d445b8d70e790572c0, 'Philadelphia Phillies® Rafael Marchan C Base Motion Rainbow 622 Rare', 'MLB-S221-R-B622-RAI'), + (0x072dff8de1dcefc687854c2c17f440b5e95d4d69, 'Minnesota Twins® Miguel Sano Base White 123 Common', 'MLB-22S1-C-B122-S-WHI'), + (0x073483b0ed9c70433d39e9318370e90cdfd5fe09, 'St. Louis Cardinals® Harrison Bader Postseason Base Red 46 Rare', 'MLB-21POST-R-B46-M-RED'), + (0x0735dd26ad913049e29e3a1f8e93b2dfe3ebb215, 'Philadelphia Phillies® Spencer Howard Silver Signings Facsimile Signature Silver 32 Super Rare', 'MLB-INC21-S-SS32-SLV'), + (0x07422a54f9f6a9036983e46e6c373efa090196a7, 'Philadelphia Phillies® Spencer Howard Inception Base White 76 Common', 'MLB-INC21-C-IB76-WHT'), + (0x07440fbadc2903e48eee2a5ca9a80566242ac770, 'Titans of Flesh', 'TITANS'), + (0x0745d619f9f286fa9528ab87e6e68b2f7257e08c, 'Galactic Punks', 'GalacticPun'), + (0x074dcb029621173ab6066f4e13c2720f8ede3cf7, 'WolfyAngels', 'WOAN'), + (0x074fb6603dae9af95c2bb38fdfcb775fc558897a, 'Jonas Wind WOB Motion Aqua Refractor S4-52 Rare', 'BUND-21TS4-R-MS4-52-V-AQU'), + (0x07550e693fd7172fb8d284049cba98195182a7a0, 'Texas Rangers® Derek Dietrich 2B Base Motion Rainbow 452 Rare', 'MLB-S221-R-B452-RAI'), + (0x0756cdce2402340cf67409c93cb8c0148a143cc6, 'Patrik Schick B04 Base Red S1-05 Uncommon', 'BUND-21TS1-U-BS1-05-S-RED'), + (0x076472eb7325d8b157fdadc5d6512b729a57c5db, 'Tampa Bay Rays™ Randy Arozarena OF Base Static Gold 600 Uncommon', 'MLB-S221-U-B600-GOL'), + (0x0764ed4a1acd44e65f9c6bb96426ef13b5682679, 'adde', 'adde'), + (0x076e03d19c75a1fcd9a82f8f524ab49440acf57c, 'Common Comic 39 1-39 Bazooka Joe 2021 NFT', 'BZK-C-39C'), + (0x077e6150e221db4e9ef9bb744414870ae7206593, 'Arizona Diamondbacks® Tyler Gilbert Base Glitch 130 Uncommon', 'MLB-22S1-U-B129-M-GLI'), + (0x078a50f7dd542a0843437267ff939d21facd06a5, 'Cleveland Guardians™ Austin Hedges Base Independence Day RWB 65 Rare', 'MLB-22S1-R-B65-M-RWB'), + (0x078c452db22c68dc2e085dceed3cc714f3ca1d2e, 'Evan Ndicka SGE Motion Rainbow Refractor S3-29 Super Rare', 'BUND-21TS3-S-MS3-29-V-RAI'), + (0x078efb656e64653f3a6b0d444055684b92a1c972, 'Borussia Monchengladbach Ramy Bensebaini Base Players Gold 20 Rare', 'BUND-SC21-R-BP20-GLD'), + (0x078f7a120aeecc198551f906d241f3087af79764, 'FC Augsburg André Hahn Base Players Gold 71 Rare', 'BUND-SC21-R-BP71-GLD'), + (0x0792e04b83275b902a0c676232ac7629ee18a803, 'San Diego Padres™ Wil Myers OF Base Motion Vintage Stock 332 Super Rare', 'MLB-S221-S-B332-VS'), + (0x0794991b4c54daa28b3961c5f842c66672e2027f, 'American League™ 2021 Home Run Leaders Base Glitch 48 Uncommon', 'MLB-22S1-U-B48-M-GLI'), + (0x079512c37b8e773aad546b9a5e978fbd129597a5, 'Edmond Tapsoba B04 Limitless Gold Parallel TLC-03 Legendary', 'BUND-22TLC-L-RLSSTLC-03-A-GOL'), + (0x079a03fd78cf8c1dcda1bf9bb270441f0c7ae42b, 'New York Mets® Pete Alonso Inception Base Blue 64 Uncommon', 'MLB-INC21-U-IB64-BLU'), + (0x079ddb23d58d46dc9751dc5e8589a1c98472dec3, 'New York Yankees® Gary Sanchez C Base Motion Platinum 525 Epic', 'MLB-S221-E-B525-PLA'), + (0x07a8cd1e8880c25d39d3a11eb52c2bd2f5005b64, 'LUNA-Tic Golden Animation Facsimile Signature Color 13 Legendary', 'GPK-NFT22-L-GAFS13-A-COL'), + (0x07a8e598af588e92ce0b61d7876b282118d7512e, 'Cleveland Guardians™ Ernie Clement Base Independence Day RWB 71 Rare', 'MLB-22S1-R-B71-M-RWB'), + (0x07b315c974efe0708e21d0c58ae7419e39c42039, 'Celtic F.C. CEL Club Crest Card Gold SPCCC-02 Epic', 'SPFL-21SPSS-E-CCCSPCCC-02-A-GOL'), + (0x07b57e9b078c3a87f07de0bb1e2b93c88b782333, 'Maximilian Arnold WOB Base Red S4-67 Uncommon', 'BUND-21TS4-U-BS4-67-S-RED'), + (0x07ba2fd10e98742191a0da6b933c5e63ee95d755, 'WAXy William Animation Facsimile Signature Color 7 Super Rare', 'GPK-NFT22-S-AFS7-A-COL'), + (0x07bd0d76347ba943d162f278ddfcb844c359b20d, 'This Tartan Does Not Exist', 'TARTAN'), + (0x07bde52ce846842f7d60bed31e02530bd1b41010, 'San Francisco Giants® Joey Bart Gold Signings Facsimile Signature Gold 36 Epic', 'MLB-INC21-E-SS36-GLD'), + (0x07bee62169a5ddb9f353fab371ab13880e5c6957, 'New York Yankees® Aaron Judge Vote Leader Retrowave 1 Legendary', 'MLB-22ASG-L-VL1-M-RTRO'), + (0x07cd598a28216bf5bd24ae987e2a4df89d17fa4f, '2021 Godzilla Rage Across Time Collection Event Exclusive (Saturday) Pack', 'GDZ-PACK-CCE-SAT'), + (0x07cf9ea343e3abcb6cefb5e35461b941296c43a8, 'Los Angeles Dodgers® Mookie Betts National League Base Blue 14 Rare', 'MLB-22ASG-R-B14-M-BLU'), + (0x07d0f82b2f296a56c0854e927985f6cc2e5345bd, 'Chicago White Sox® Gavin Sheets Facsimile Signature Gold 3112 Super Rare', 'MLB-22PRI-S-FS13-M-GLD'), + (0x07d4d391df0a13702a11eb8ba75185b85543c013, 'EdgyEggs', 'EDGYEGG'), + (0x07d9da0c6cb6745cb23624bda07f258be86df4db, 'Tampa Bay Rays™ Shane McClanahan Division Series Bronze 8 Super Rare', 'MLB-21POST-S-D8-M-BRO'), + (0x07e741cf962ef140cba9b15b7e6af7f31f3ed04d, 'Love Monster', 'LM'), + (0x07edb989869d2cbdad71422257abbaf87cbfd619, 'Washington Nationals® Josiah Gray Base Pink 1219 Uncommon', 'MLB-22PRI-U-B144-M-PNK'), + (0x07ee97ea7c85769fe31cb727dd787aefe30ac4c5, 'Colorado Rockies™ Charlie Blackmon Inception Base Red 22 Rare', 'MLB-INC21-R-IB22-RED'), + (0x07f3460767982212a319d6054e8d8c63c3609426, 'St. Louis Cardinals® Andrew Miller Base Vintage Stock 39 Super Rare', 'MLB-22S1-S-B39-M-VS'), + (0x07fff1d06e158019f006f152cd2fc66ab9f6ffee, 'San Francisco Giants® Base Motion Platinum 603 Epic', 'MLB-S221-E-B603-PLA'), + (0x0800355982541cef23b76a9916b14a08c92f12a2, 'ROOMS', 'ROOMS'), + (0x08005b59eeb36265040ec9f7826d376a5fb3092e, 'Atlanta Braves™ Ian Anderson Postseason Base Navy 64 Uncommon', 'MLB-21POST-U-B64-M-NVY'), + (0x08065ae2cc88f0c4ca61469759712e88890317f2, 'NexusCards', 'NEXC'), + (0x0807c04b93cfebf6bf5a288e48dde577fc2b58ff, 'Mimesis Particles', 'MIMEP'), + (0x0808b2e2afc8599e3702ff205c9d3605bbfa1091, 'Jude Bellingham DOR Animation Black Refractor S2-17 Epic', 'BUND-21TS2-E-AS2-17-V-BLA'), + (0x080a0a44fbb8948e18017de8ad24d36ffbe04f86, 'Chicago White Sox® Eloy Jimenez Generation NOW Team Colors GN-30 Epic', 'MLB-22S1-E-GN30-M-TMC'), + (0x080b3f464f656b25157b6a4c37c1c27d85949373, 'Philadelphia Phillies® Bryce Harper Base Glitch 250 Uncommon', 'MLB-22S1-U-B247-M-GLI'), + (0x080b74c2b58f6a3f064593ce151a4722bbfb1613, 'Texas Rangers® Khris Davis DH Base Motion Vintage Stock 584 Super Rare', 'MLB-S221-S-B584-VS'), + (0x081616ae4d949a4163ec1896b9b38efa0b0e39e6, 'Boston Red Sox® Martin Perez Base Vintage Stock 212 Super Rare', 'MLB-22S1-S-B210-M-VS'), + (0x081749869ce2377a5bdc4d66216d4ae3517a006d, 'Boston Red Sox® Bobby Dalbec Base Vintage Stock 7 Super Rare', 'MLB-22S1-S-B7-M-VS'), + (0x081c1e2a0d9e3dfca304b14c9ec87657e3203198, 'Cleveland Indians® Josh Naylor OF Base Motion Vintage Stock 419 Super Rare', 'MLB-S221-S-B419-VS'), + (0x0820542f2022c6855f9a265c630eb7538711a165, 'Philadelphia Phillies® Archie Bradley Base White 10 Common', 'MLB-22S1-C-B10-S-WHI'), + (0x0823bfc1c7642218b032841b860bd15049daef28, 'Seattle Mariners™ Cal Raleigh Base Independence Day RWB 277 Rare', 'MLB-22S1-R-B274-M-RWB'), + (0x08286ff7bac499269e6a270d89b271c3f14a5c44, 'Cincinnati Reds® Tejay Antone P Base Static White 333 Common', 'MLB-S221-C-B333-WHI'), + (0x082fada7ac68dd034bb370b518f47b49c30c4a61, 'Arizona Diamondbacks® Stefan Crichton P Base Static White 469 Common', 'MLB-S221-C-B469-WHI'), + (0x08301d5471210ad4dcfff548e7c9748ce3b2a822, 'Maya Mask Golden Animation Color 15 Epic', 'GPK-NFT22-E-GA15-A-COL'), + (0x0830997677d0a0d1832322868325639623e45135, 'Milwaukee Brewers™ Josh Hader Postseason Base Navy 24 Uncommon', 'MLB-21POST-U-B24-M-NVY'), + (0x0830b74062e88581b2e0a68fcbc5f57d5318ddca, 'City Badges', 'CTBADGE'), + (0x083364702b292e1952eed3c939380760cdc9f724, 'Uncommon Comic 10 1-10 Bazooka Joe 2021 NFT', 'BZK-U-10C'), + (0x083b87c5b856c3a4316f43d5c53c5ecd3c4b7de3, 'MUSIC LEGENDS', 'LEGENDARY'), + (0x084c3311ab8dddf54c7c9a5affaae63f3646a88d, 'Miami Marlins® Brian Anderson 3B/OF Base Motion Platinum 439 Epic', 'MLB-S221-E-B439-PLA'), + (0x084d43d36a12f8f475dcb6fa958232883170169f, 'Oakland Athletics™ Matt Chapman Facsimile Signature Slab Gold 3031 Epic', 'MLB-22PRI-E-FS28-M-GLD'), + (0x084dd41b582520982d64a163ff01cfc254fbd13c, 'Craig Gordon HEA Top Saves Purple SPTS-01 Rare', 'SPFL-21SPSS-R-TSSPTS-01-V-PUR'), + (0x0850a170c4308ef657cf9b536349a1f866c89167, 'Marcus Thuram BMG Base White S4-57 Common', 'BUND-21TS4-C-BS4-57-S-WHI'), + (0x08557d584c4a49c123d5ae35b55380c93941a98a, 'Rodan Base Collectible Magenta 18 Common', 'GDZ-RAT21-C-B18-S-MAG'), + (0x086019cbb3eed3014a1308a9dcd5ba877a03bbc3, 'New York Yankees® Kyle Higashioka Base Glitch 292 Uncommon', 'MLB-22S1-U-B289-M-GLI'), + (0x0860f5e8b3c21b7b61f393cbe081e26e0178d264, 'Atlanta Braves™ Huascar Ynoa Base Independence Day RWB 3 Rare', 'MLB-22S1-R-B3-M-RWB'), + (0x0867e4eb36fa25364d30cf66ce363c7088c03743, 'Colorado Rockies™ Garrett Hampson Base Independence Day RWB 234 Rare', 'MLB-22S1-R-B231-M-RWB'), + (0x086b9b316321c985a4f1f37ab24434638935be73, 'National League™ 2021 Wins Leaders Base Vintage Stock 105 Super Rare', 'MLB-22S1-S-B104-M-VS'), + (0x086d7d60271db5882f573b045fe28bb83ee0b67d, 'Super Rare Comic 21 1-21 Bazooka Joe 2021 NFT', 'BZK-S-21C'), + (0x086f5ddf74aeca866dd051d0bee3ae066fd9ce91, 'TSG Hoffenheim Munas Dabbur Base Players Gold 27 Rare', 'BUND-SC21-R-BP27-GLD'), + (0x087994f146e9fe0a0a41c4d2fb0e237baa24e34b, 'Pittsburgh Pirates® Ke''Bryan Hayes 3B Facsimile Signature Static Red 644 Epic', 'MLB-S221-E-FS644-RED'), + (0x087c3d0b901d3c651fb014fd6545c911e69d87ac, 'JuneShine NY Tasting Room', 'JNY'), + (0x087df76ed06ebf340d22e7927c23b893a0f8e4ee, 'Milwaukee Brewers™ Corbin Burnes Facsimile Signature Glitch 240 Epic', 'MLB-22S1-E-FS15-M-GLI'), + (0x0885e00b1e3701032e424ed68bff82a3bc4390dc, 'St. Louis Cardinals® Jordan Hicks P Base Motion Platinum 536 Epic', 'MLB-S221-E-B536-PLA'), + (0x088606ec1aba8c2dce8d77102d4dd95cc87f0579, '2021 Topps NOW World Series Game 3 Pack', 'MLB-21NOW-PACK-TN-GM3'), + (0x088e7fb0aa56092ba818fe5e3ad3a16e9940c1cf, 'Minnesota Twins® Byron Buxton 1987 35th Anniversary Wood T87-22 Common', 'MLB-22S1-C-1987A17-M-WD'), + (0x0896695a494dabf3deda5b51a4593f9a72e1f4e1, 'Marcus Thuram BMG Animation Gold Refractor S4-57 Legendary', 'BUND-21TS4-L-AS4-57-V-GOL'), + (0x089a42ea19b8f27e5424b98292266743d04fc0f8, 'Miami Marlins® Jazz Chisholm SS Base Static White 538 Common', 'MLB-S221-C-B538-WHI'), + (0x08b4ceb15e9a6e8ba568d20fbd7d5386eb8f4222, 'Texas Rangers® Leody Taveras Silver Signings Facsimile Signature Silver 39 Super Rare', 'MLB-INC21-S-SS39-SLV'), + (0x08ba81315ccaed809616c6eb1d0812b11ce967e5, 'TheCrypticWolf', 'WOLF'), + (0x08bac004a3ced6f48832e699f82b3ca17d2e1fed, 'Iago FCA Motion Aqua Refractor S4-66 Rare', 'BUND-21TS4-R-MS4-66-V-AQU'), + (0x08bb7ac16159d9233fca94d2d1a61fca927f67ca, 'Pittsburgh Pirates® Rodolfo Castro Base Blue 1227 Common', 'MLB-22PRI-C-B150-M-BLU'), + (0x08c4b85c432e925ca6a180fc7085bb52591d7291, 'Los Angeles Dodgers® Julio Urias Base Blue 1245 Common', 'MLB-22PRI-C-B178-M-BLU'), + (0x08cbecd3af9bb02582f1a5a8886cf2cc0b95c520, 'Symbiosis', 'SYMB'), + (0x08cd53e0d61362936415eb92851bd1b6b71cb043, 'Oakland Athletics™ Sean Murphy C 70th Anniversary Facsimile Signature Motion Platinum 349 Legendary', 'MLB-S221-L-70AFS349-PLA'), + (0x08d44c443d7d8129d54a1d351e50a5137980397a, 'Gassie Infinity Golden Animation Facsimile Signature Color 2 Legendary', 'GPK-NFT22-L-GAFS2-A-COL'), + (0x08d828ef645d558b3e18b277b8c9a2895a469aaa, 'Tampa Bay Rays™ Josh Fleming Postseason Base Red 7 Rare', 'MLB-21POST-R-B7-M-RED'), + (0x08d84e972c7f8ce18ccdc4c8647604d8401772f6, 'Detroit Tigers® Jonathan Schoop 2B Base Static Gold 595 Uncommon', 'MLB-S221-U-B595-GOL'), + (0x08e287adcf9bf6773a87e1a278aa9042bef44b60, 'Stratosphere', 'STRAT'), + (0x08e695bcdaac9abde561bb27bee95db70cfda34e, 'Minnesota Twins® Eddie Rosario Inception Base White 58 Common', 'MLB-INC21-C-IB58-WHT'), + (0x08ec97d7c49b611f1446da52e8802b9407bbdb17, 'Washington Nationals® Luis Garcia Inception Base Blue 97 Uncommon', 'MLB-INC21-U-IB97-BLU'), + (0x08f169a7c29f925ae863dd0958baa07d565a6429, 'Histograph Events', 'HistE'), + (0x08f484b41523fc725f93bb980e352430d62f1e23, 'Minnesota Twins® Michael Pineda P Base Static White 354 Common', 'MLB-S221-C-B354-WHI'), + (0x08fdc99afa2b7871951493f827a099021e9f9377, 'Hertha Berlin Dodi Lukébakio Top Players Gold 120 Super Rare', 'BUND-SC21-S-TP120-GLD'), + (0x090628f52f960e55d6175d811428519be4862497, 'Marcus Thuram BMG Base Red S4-57 Uncommon', 'BUND-21TS4-U-BS4-57-S-RED'), + (0x09075dcfa48249a6a766f8791dbf5d57f2c1c68b, 'Kansas City Royals® Brady Singer Facsimile Signature Letter Booklet Team Color 7 Legendary', 'MLB-INC21-L-LB7-TMC'), + (0x0913f3e5e28590fec2e257297d12f5964f5b6f19, 'New York Yankees® Aaron Judge Pure Power White 2115 Rare', 'MLB-22PRI-R-PP9-M-WHI'), + (0x091b1bf88671a348046c7060625d6088a9d8004a, 'MorlianShark', 'Mory'), + (0x091d80badfe1ef447eac3908fbf1816a9cbeb4d2, 'Uncommon Comic 8 1-8 Bazooka Joe 2021 NFT', 'BZK-U-8C'), + (0x091efdf8bc9657f2e8500f18937f054ed534ba57, 'FC Koln Ondrej Duda Top Players Gold 131 Super Rare', 'BUND-SC21-S-TP131-GLD'), + (0x09283c8e9c3edb4baa28ad67640545c2d301a86a, 'Minnesota Twins® Byron Buxton OF 1986 Anniversary Static Team Colors 86B-15 Super Rare', 'MLB-S221-S-1986A86B-15-TMC'), + (0x0928bca9f73b75d64265787be20c8fa2625a9fa7, 'Atlanta Braves™ Travis d''Arnaud National League Base Blue 2 Rare', 'MLB-22ASG-R-B2-M-BLU'), + (0x093021e10480c62e9b4983f3c01e794ed004fd3a, 'nocode_nft', 'Rand'), + (0x0936eed655f4e13882af2711301b698aa2ab91e0, 'New York Yankees® DJ LeMahieu 2B Base Static White 350 Common', 'MLB-S221-C-B350-WHI'), + (0x093bdbefa49f24f4fc232f2b21306f8882b23b63, 'Pittsburgh Pirates® Gregory Polanco OF Base Static Gold 412 Uncommon', 'MLB-S221-U-B412-GOL'), + (0x09450459040308db0c73d5220130c4fea1641eef, 'Cincinnati Reds® Joey Votto Inception Base White 19 Common', 'MLB-INC21-C-IB19-WHT'), + (0x09466943fdd11286d55e6ee33fdb1476dd455d82, 'Angels® Brandon Marsh 1987 35th Anniversary Wood T87-67 Common', 'MLB-22S1-C-1987A48-M-WD'), + (0x0946e18c5070475c2cd06f348f9ee057dbb90896, 'American League™ 2021 RBI Leaders Base White 202 Common', 'MLB-22S1-C-B201-S-WHI'), + (0x094c3623155fc6ddbf67a9f620b43f37d3dc0e1a, '@usagiyojimbo Collection', 'NPC020'), + (0x094e50ddce5319a8732433d5bf4f602c3948b0be, 'Blorky man2', 'BLM2'), + (0x09503d0a355b309491606a3d98982b478a0bff2a, 'SoDead', 'sd'), + (0x0960f22641d8d32075e80d1b0bbc387de3f1c055, 'MT ATM', 'MTATM'), + (0x09682f283e46c3d14177e071a3b0fe62fe6021e5, 'Minnesota Twins® Twins® Up The Middle Base Motion Vintage Stock 553 Super Rare', 'MLB-S221-S-B553-VS'), + (0x096c629b0ec8d8cc14c5dacf3531e33094b8ee6f, 'Chicago Cubs® Javier Baez Inception Base Red 15 Rare', 'MLB-INC21-R-IB15-RED'), + (0x09744d43cfa6347fe9e8f4f04f411d83a87f092d, 'Atlanta Braves™ Freddie Freeman Postseason Base Red 57 Rare', 'MLB-21POST-R-B57-M-RED'), + (0x0978149e050d3223b88be6a6d38e1b2d16769776, 'Toronto Blue Jays® Tom Hatch P Base Static Gold 556 Uncommon', 'MLB-S221-U-B556-GOL'), + (0x097a630051110b5704aef32b98736345514ceef8, 'VfL Wolfsburg Maximilian Philipp Base Players Team Color 35 Uncommon', 'BUND-SC21-U-BP35-TMC'), + (0x097be8a1b7e6dd2480e198eff7882edb4bab6bd6, 'Hassan', 'HASS'), + (0x0982bf152cce77dca163bde75f46390cb0efe92f, 'Seattle Mariners™ Kendall Graveman P Base Static White 340 Common', 'MLB-S221-C-B340-WHI'), + (0x09848f27bebb4e89e5860580851efc1fc74f2000, 'DSC Arminia Bielefeld Manuel Prietl Base Players Team Color 81 Uncommon', 'BUND-SC21-U-BP81-TMC'), + (0x098c6ae9aafc0dafec6dd9af430f1487446ebf01, 'Detroit Tigers® Bryan Garcia Rookie and Future Phenoms Facsimile Signature Black 23 Legendary', 'MLB-INC21-L-RC23-BLK'), + (0x098cc9b29c47e50e8bd8b344f36720a41f2191e9, 'Baltimore Orioles® Pedro Severino Inception Base Red 8 Rare', 'MLB-INC21-R-IB8-RED'), + (0x09aa4255017b9bc6ffc73258a1c07631f2f9a857, 'Philadelphia Phillies® Didi Gregorius Base Vintage Stock 44 Super Rare', 'MLB-22S1-S-B44-M-VS'), + (0x09b784697449db7491e89004b3c4ca432728f585, 'Toronto Blue Jays® Randal Grichuk OF Base Static White 352 Common', 'MLB-S221-C-B352-WHI'), + (0x09b8c08c16c29458900a6fcc547a5597e11c391d, 'Cleveland Indians® Zach Plesac P 70th Anniversary Facsimile Signature Motion Platinum 403 Legendary', 'MLB-S221-L-70AFS403-PLA'), + (0x09be3703c9c1846ba824a56516f3d1d0ab06c07b, 'St. Louis Cardinals® Lars Nootbaar Base Glitch 58 Uncommon', 'MLB-22S1-U-B58-M-GLI'), + (0x09be6185840564ac4bcd5e94318ba1c624809cf1, 'Eintracht Frankfurt Filip Kostic Top Players Gold 117 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP117-AFS-GLD'), + (0x09c33c2c9f90150b400278331bcd740bf202fe05, 'Arizona Diamondbacks® Luke Weaver Base Glitch 273 Uncommon', 'MLB-22S1-U-B270-M-GLI'), + (0x09e8fe761c16c6150cd7dcce5516f46f6309a6a0, 'Pittsburgh Pirates® Keone Kela P Base Static White 351 Common', 'MLB-S221-C-B351-WHI'), + (0x09e9e77b9d8d383be7c4c34468885875e57b4ed5, 'Milwaukee Brewers™ Drew Rasmussen P Base Motion Vintage Stock 377 Super Rare', 'MLB-S221-S-B377-VS'), + (0x09eda300408eccba7ba595b47f669af4ccfb985b, 'Welcome to SteakHut', 'Welcome'), + (0x09f24e3a0908779c0fc169ffe3d95c55647cf708, 'LegendaryActors', 'LEAC'), + (0x09f5f21bffa82b6b768e4cfbdade52266c330416, 'Super Rare Comic 58 2-10 Bazooka Joe 2021 NFT', 'BZK-S-58C'), + (0x09f7d25b60f1fea19d10aac5d62fc5b250405b38, 'FC Bayern Munich Alphonso Davies Young Stars Team Color 145 Super Rare', 'BUND-SC21-S-YS145-TMC'), + (0x09f9df5305c5916d4770b6325d810f3a68094a69, 'smol whatever', 'sw'), + (0x0a0c32977140d234cae793e13da54f1068a5f6e1, 'Ava Army', 'AvaArmy'), + (0x0a1528ff988679080ec37bb289c87ddc4ea44d8c, 'Yona''s Dream', 'YONA'), + (0x0a1c2abecef0474e7f6c217ac037404372ecf801, 'PEPAX', 'PEPAX'), + (0x0a21967d284ba5ef0a865028bb74e18c38b587df, 'Sport-Club Freiburg Christian Günter Base Players Gold 36 Rare', 'BUND-SC21-R-BP36-GLD'), + (0x0a2840eb1db58f88b0f27a9e444ecd79bdc68015, 'Toronto Blue Jays® Alejandro Kirk C 1986 Anniversary Facsimile Signature Motion Chrome 86TC-83 Legendary', 'MLB-S221-L-1986AFS86TC-83-CHR'), + (0x0a2888f4d14603bc5dcaa02844ae093c10e41354, 'Chicago Cubs® Adbert Alzolay P Base Motion Rainbow 658 Rare', 'MLB-S221-R-B658-RAI'), + (0x0a28e12e079eaac81963b92dcdcbca129e991195, 'Oakland Athletics™ Chad Pinder Base White 95 Common', 'MLB-22S1-C-B94-S-WHI'), + (0x0a2db041bf6813409ce97645ad63d927294146f1, 'Chicago White Sox® Gavin Sheets Short Print White 12 Rare', 'MLB-22S1-R-SP4-M-WHI'), + (0x0a307b703f2ef6974b931088d390115d03a7914e, 'Atlanta Braves™ Cristian Pache Inception Base White 2 Common', 'MLB-INC21-C-IB2-WHT'), + (0x0a3139094c8a7aca223ae922deab2a2be875e862, 'Atlanta Braves™ Nick Markakis OF Base Motion Platinum 641 Epic', 'MLB-S221-E-B641-PLA'), + (0x0a35bf6b025f8a8223decc49247e913087d15a55, 'Gassie Infinity Golden Animation Color 2 Epic', 'GPK-NFT22-E-GA2-A-COL'), + (0x0a436e27c3a1bad14ea90bf949840fcb28fb2df9, 'New York Yankees® Corey Kluber P Base Static White 567 Common', 'MLB-S221-C-B567-WHI'), + (0x0a49ed6027f194f7b209304494dc40074ac6048f, 'Aberdeen F.C. ABE Club Crest Card Gold SPCCC-04 Epic', 'SPFL-21SPSS-E-CCCSPCCC-04-A-GOL'), + (0x0a4b16767cbfe9e586f39cbc3f12a0d695be0a42, 'The Spot Awards', 'SPOTAWARD'), + (0x0a4c4e15aa68413268f39cd87d54229323be2eb7, 'Kansas City Royals® Brad Keller P Base Motion Platinum 544 Epic', 'MLB-S221-E-B544-PLA'), + (0x0a50ee15688665c4bb98c802f5ee11fec3df0b80, 'The Great Mint Race', 'TGMR'), + (0x0a51161048fced93ce287ede890ba144b7c29c7e, 'New York Mets® Edwin Diaz Base Vintage Stock 267 Super Rare', 'MLB-22S1-S-B264-M-VS'), + (0x0a57ef00734da01c5c5187d1a1c66ab7afb9082e, '$SOB Early Adopter', '$SOBea'), + (0x0a59ca01a0ba6f474b8e7259032f5bf7a42cb616, 'Reece Oxford FCA Club Phemons Gold S4CPH-02 Legendary', 'BUND-21TS4-L-CPHS4CPH-02-V-GOL'), + (0x0a6132a3b45594e7fde01791c6682dc8b71939e7, 'Bundesliga 2020-2021 Season Celebration NFT Collection Premium Pack', 'BUND-SC21-PACK-P'), + (0x0a6c301ce24c73f0c842ceed2d41862e3671c9e1, 'DSC Arminia Bielefeld Amos Pieper Young Stars Team Color 178 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS178-SFS-TMC'), + (0x0a74faa6d99c13a0c3104a2d5bab6c4473c14174, 'Benjamin Siegrist DDU Top Saves Gold SPTS-09 Legendary', 'SPFL-21SPSS-L-TSSPTS-09-V-GOL'), + (0x0a7d91cbebffb0294b70ceb02deffdf5f1d752bf, 'happy bears', 'HB'), + (0x0a846e0aa879c19f9c849e851c9be7e44a236ff9, 'Chicago White Sox® Lucas Giolito Facsimile Signature Blue 291 Uncommon', 'MLB-22S1-U-FS22-S-BLU'), + (0x0a8865b95045ab193abd38c838aa53b3168fec7f, 'Los Angeles Dodgers® Gavin Lux Rookie and Future Phenoms Facsimile Signature Blue 36 Super Rare', 'MLB-INC21-S-RC36-BLU'), + (0x0a8bc5fcfc277c91ab69857c96b1b75301488f2c, 'Kevin Nisbet HIB Base Purple SP-08 Super Rare', 'SPFL-21SPSS-S-BSP-08-A-PUR'), + (0x0a97d3f45ad3b2528841a56b2b6372c7b1f7b947, 'Pittsburgh Pirates® JT Brubaker P Base Motion Rainbow 560 Rare', 'MLB-S221-R-B560-RAI'), + (0x0a9c9b99b82468a15298ee8edc00bf3bfe2c458f, 'Taiwo Awoniyi FCU Base White S1-10 Common', 'BUND-21TS1-C-BS1-10-S-WHI'), + (0x0a9df3770b0f572b60a7854c53567ff4ce0f3a92, 'Cleveland Indians® Triston McKenzie Silver Signings Facsimile Signature Silver 9 Super Rare', 'MLB-INC21-S-SS9-SLV'), + (0x0ab6885aa60dd762e1d0f237216a1bf521a483ee, 'Monster EGG', 'MOE'), + (0x0ab69309d9bd231614ede148d9e95a057215174b, 'Vladimír Darida BSC Motion Rainbow Refractor S4-37 Super Rare', 'BUND-21TS4-S-MS4-37-V-RAI'), + (0x0abe9606754933c506f9c3b63419e6af8db99ee8, 'Toronto Blue Jays® Alejandro Kirk Top 5 Cinema 5 Legendary', 'MLB-22ASG-L-T55-M-CIN'), + (0x0acf43514e61640f1bf406a0c54c9a589502e682, 'Atlanta Braves™ William Contreras C Base Static White 390 Common', 'MLB-S221-C-B390-WHI'), + (0x0ad9b010ff23523ba547390532d42b1bcedf1abc, 'Kansas City Royals® Jackson Kowar Short Print White 264 Rare', 'MLB-22S1-R-SP54-M-WHI'), + (0x0ae53077dcd854280fd850a0a2a4c936aeb299bf, 'Chicago Cubs® Austin Romine C Base Static Gold 342 Uncommon', 'MLB-S221-U-B342-GOL'), + (0x0ae7f144a86abd16ff26131e33cc67226e4aa671, 'New York Mets® Pete Alonso Rookie and Future Phenoms Facsimile Signature Red 55 Epic', 'MLB-INC21-E-RC55-RED'), + (0x0aeb383d61cd95f356646b6be39c8e9cb013b0a8, 'San Francisco Giants® Alex Dickerson OF Base Static White 616 Common', 'MLB-S221-C-B616-WHI'), + (0x0afae36299804f0c8d39a3c6ae00caca14445c3e, 'Atlanta Braves™ Ian Anderson Topps NOW White 1019 Rare', 'MLB-21NOW-R-TN1019-WHI'), + (0x0afef2d93af6d90186c292506a78235f9865bfdd, 'Angels® Mike Trout Facsimile Signature Glitch 27 Epic', 'MLB-22S1-E-FS2-M-GLI'), + (0x0b0267faa0c86fa9c15c3a1e7d6fdb159ee59a08, 'St. Louis Cardinals® Harrison Bader Wild Card Contenders Blue 30 Common', 'MLB-21POST-C-W30-M-BLU'), + (0x0b089c439143e3561b0104ccbdc6bc06562ae952, 'Kansas City Royals® Andrew Benintendi Base Pink 1043 Uncommon', 'MLB-22PRI-U-B78-M-PNK'), + (0x0b09ff0fbc2d9a0a697591778cb73f6076550868, 'Los Angeles Dodgers® Mitch White Rookie and Future Phenoms Facsimile Signature White 37 Rare', 'MLB-INC21-R-RC37-WHT'), + (0x0b17d29ffc0b5d4691a395e423d2a15f6767139e, 'Boston Red Sox® Connor Wong Base Glitch 66 Uncommon', 'MLB-22S1-U-B66-M-GLI'), + (0x0b18120e895880b5c39768013680d39e156ca0db, 'Chicago White Sox® Zack Burdi P Base Static Gold 483 Uncommon', 'MLB-S221-U-B483-GOL'), + (0x0b188c848bbf48e9abd2771a39f6de36e93068e8, 'Arizona Diamondbacks® Alex Young P Base Motion Vintage Stock 532 Super Rare', 'MLB-S221-S-B532-VS'), + (0x0b22ed2cd658a29c776b8e37ebc921818b1a44bf, 'There Is No Cow', 'FIEFCOW'), + (0x0b2ee47394795cab0cc2238524196baad1b76321, 'New York Yankees® Brett Gardner Base Glitch 49 Uncommon', 'MLB-22S1-U-B49-M-GLI'), + (0x0b32a6fe899d6f680f4b3ba44cd68de9da64f0fe, 'Boston Red Sox® Jarren Duran Base Glitch 187 Uncommon', 'MLB-22S1-U-B186-M-GLI'), + (0x0b37667bd7b75b6060139e246f7ba8084cb38303, 'Pittsburgh Pirates® Ke''Bryan Hayes 3B 1986 Anniversary Facsimile Signature Motion Chrome 86TC-24 Legendary', 'MLB-S221-L-1986AFS86TC-24-CHR'), + (0x0b38fc98f8f8469d09b339b6b8d114716042c644, 'Breel Embolo BMG Base Red S2-13 Uncommon', 'BUND-21TS2-U-BS2-13-S-RED'), + (0x0b3d616ca7da0c6e9be1a8bc05fbbee3bae9f73c, 'Los Angeles Dodgers® Walker Buehler Wild Card Contenders Blue 23 Common', 'MLB-21POST-C-W23-M-BLU'), + (0x0b403d08ceddd6bd9c63e14f251a60b755564f80, 'St. Louis Cardinals® Dakota Hudson P Base Static White 455 Common', 'MLB-S221-C-B455-WHI'), + (0x0b4143bc8b22e4f33e156769af8ec4c1736a8ac8, 'Angels® Kurt Suzuki C Base Static White 571 Common', 'MLB-S221-C-B571-WHI'), + (0x0b49920631647c16845d255653efb92d5f698f6e, 'Hertha Berlin Dedryck Boyata Base Players White 46 Common', 'BUND-SC21-C-BP46-WHT'), + (0x0b4b47c14787c1961399d439ccb5f0bfde46dd0a, 'American League™ Xander Bogaerts Base Blue 1265 Common', 'MLB-22PRI-C-B224-M-BLU'), + (0x0b5109ddd733fae3b351f84902b4cc9fcec46d7d, 'Milwaukee Brewers™ Josh Hader P Base Motion Rainbow 596 Rare', 'MLB-S221-R-B596-RAI'), + (0x0b637920f19c68ffec028c391c6aa56b74357277, 'New York Mets® Jose Martinez 1B/OF Base Motion Platinum 625 Epic', 'MLB-S221-E-B625-PLA'), + (0x0b6b75a79158f13822ed01b4b0b56349243bd43d, 'Detroit Tigers® Gregory Soto Base Vintage Stock 17 Super Rare', 'MLB-22S1-S-B17-M-VS'), + (0x0b6f5b4ee41ff1b5579873883de32128a5f08f28, 'Angels® Justin Upton OF Base Motion Vintage Stock 527 Super Rare', 'MLB-S221-S-B527-VS'), + (0x0b79833d287f205ed5b7a5bce992513b26fa40b2, 'New York Yankees® Aaron Judge American League Base Golden 13 Super Rare', 'MLB-22ASG-S-B13-M-GLD'), + (0x0b84092c5f974e15353d6f663e455c158002a2cc, 'Common Comic 27 1-27 Bazooka Joe 2021 NFT', 'BZK-C-27C'), + (0x0b8d7f1e7178092f3ead493ae46dfc9097f5dcb9, 'Boston Red Sox® Hunter Renfroe Base Independence Day RWB 174 Rare', 'MLB-22S1-R-B173-M-RWB'), + (0x0b93d64601f2d532b3dfb2380cff58abb69c6036, 'Ben Woodburn HEA Young Stars Red SPYS-05 Epic', 'SPFL-21SPSS-E-YSSPYS-05-A-RED'), + (0x0b961b2043158954d8225051f7b9efc3d3a983fc, 'Uncommon Comic 90 2-42 Bazooka Joe 2021 NFT', 'BZK-U-90C'), + (0x0b96b9770019c15491919cd55886a57cceb8f9b8, 'Angels® Shohei Ohtani Base Pink 1031 Uncommon', 'MLB-22PRI-U-B125-M-PNK'), + (0x0b9e393c4a738f9e1701d81ba0e0d111b9294714, 'Bad Weather Generation - Series 01', 'BWG01'), + (0x0ba0e16344374051beb866c7cde1cbbfa46dcb4e, 'New York Mets® Jacob deGrom Inception Base White 63 Common', 'MLB-INC21-C-IB63-WHT'), + (0x0ba52d760bb1e3b6ac5b406b6f4f3372d1c4e3be, 'Meta Gold', 'MGOLD'), + (0x0ba5b5ed3322ed54739adb9d24541a65930fcbc0, 'Ryan Edwards DDU Top Plays Gold SPTPL-04 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-04-V-GOL'), + (0x0bad170082f4a51af49ce9292e0b44aab1a2960c, 'St. Louis Cardinals® Tyler O''Neill Postseason Base Red 43 Rare', 'MLB-21POST-R-B43-M-RED'), + (0x0bb0e29df891365237284aa3f3768d91e0849461, 'Macadelic', 'MACD'), + (0x0bb3a4724a0fd1abe42f7cf04f6ab9fe65470a5e, 'Toronto Blue Jays® Alek Manoah Base Vintage Stock 248 Super Rare', 'MLB-22S1-S-B245-M-VS'), + (0x0bbc118d545ec4a757192e9ee38be2eaf8cf9a49, 'Super C-orrupted Cromlins', 'SCCC'), + (0x0bc791cdcd335a4240e6addcbfb48f8dfb9d32eb, 'New York Yankees® Joey Gallo Base Glitch 322 Uncommon', 'MLB-22S1-U-B318-M-GLI'), + (0x0bcc314dc79173ac277b87fb744649b1ddca52bc, 'Minnesota Twins® Alex Kirilloff OF Base Motion Vintage Stock 413 Super Rare', 'MLB-S221-S-B413-VS'), + (0x0bce4be4092b2adb4ca26c831e7d57b89db4f050, 'Miami Marlins® Alex Vesia Rookie and Future Phenoms Facsimile Signature Red 39 Epic', 'MLB-INC21-E-RC39-RED'), + (0x0bd5cd0a094c56397ed1319ff06d4ff24e622d64, 'Washington Nationals® Juan Soto Rookie and Future Phenoms Facsimile Signature Red 81 Epic', 'MLB-INC21-E-RC81-RED'), + (0x0bd6a8f1dfb056ddbb6a60d6273adf0194ba39f2, 'Godzilla Offshore Traditional Art Color 1 Epic', 'GDZ-RAT21-E-TA1-A-COL'), + (0x0be6b91b87a34c585554800e6c80a016beaddcee, 'Bazooki', 'BZK'), + (0x0bee1a73e015689a8ac83966ef31912784ff270d, 'Miami Marlins® Jesus Luzardo Base White 11 Common', 'MLB-22S1-C-B11-S-WHI'), + (0x0bf2aac19cb90a2327cfe65caa3f1f5abc06db92, 'National League™ 2021 Home Run Leaders Base Vintage Stock 146 Super Rare', 'MLB-22S1-S-B145-M-VS'), + (0x0bf85d4831faa3d99c0e7b920ffb106b65bbe539, 'American League™ Liam Hendriks Base Pink 1280 Uncommon', 'MLB-22PRI-U-B199-M-PNK'), + (0x0bfaa901d4a7ce386a5e3d7412eefa3f47a0d7b9, 'Los Angeles Dodgers® Mookie Betts Wild Card Contenders Blue 17 Common', 'MLB-21POST-C-W17-M-BLU'), + (0x0bfb703ce83094f4b39abb253f45ded84b367a57, 'Chicago White Sox® Matt Foster P Base Static Gold 426 Uncommon', 'MLB-S221-U-B426-GOL'), + (0x0bff6a5245ec73d4ef615ccf2cbde1349482fdcb, 'Guinapolize', 'GUIN'), + (0x0c01348097f95eaa37bdd1729b11950f2a42119c, 'Christoph Baumgartner TSG Top Players Black TK-14 Common', 'BUND-22TK-C-TPTK-14-S-BLA'), + (0x0c1aed8bcb38238c43c76a3240480d9aa552af43, 'Minnesota Twins® Max Kepler Base Glitch 221 Uncommon', 'MLB-22S1-U-B218-M-GLI'), + (0x0c1c2b2c472bbbb1d9c5ff1f73567d5378cfe752, 'Non-Binary Punks', 'NBP'), + (0x0c1f0d2a12e84048ca619c5ef5fbe2f6a14dfeea, 'Legendary Baseball Card 1 Joe Profile Bazooka Joe 2021 NFT', 'BZK-L-1B'), + (0x0c22c02a396d68702ff9a4566b9bc9c3e68790a8, 'Toronto Blue Jays® Bo Bichette 1987 35th Anniversary Wood T87-56 Common', 'MLB-22S1-C-1987A39-M-WD'), + (0x0c2cad62c6ff41cfdcdbfd3ee5031d5b52fe1549, 'Knights', 'KNIGHTS'), + (0x0c2e17e96e0ceeee2c308c95cfc5eafa88382cad, 'Experience Growth', 'GROW'), + (0x0c2e48339356dcd49a03fc1c5cf18428afc1f746, 'Philadelphia Phillies® J.T. Realmuto Base Glitch 180 Uncommon', 'MLB-22S1-U-B179-M-GLI'), + (0x0c2f038ad3646f14fcffa3bc42be9224488fc745, 'Toronto Blue Jays® 2021 Topps MLB Inception Set Completion Reward Team Colors 29 Epic', 'MLB-21INCSC-E-21INCSCR29-M-TC'), + (0x0c314a3d0aa61883ba2c82b6a65e603966d2fe16, 'Colorado Rockies™ Ryan McMahon Base Vintage Stock 132 Super Rare', 'MLB-22S1-S-B131-M-VS'), + (0x0c3adfad0f138bcfcc72358ee494e34fc9eb8b3c, 'Miami Marlins® Trevor Rogers P Short Print Motion White 563 Super Rare', 'MLB-S221-S-SP563-WHI'), + (0x0c426dbbb48853a93c51db28b8f1648f7e5d314b, 'Tampa Bay Rays™ Baseball is Fun! Base Motion Rainbow 353 Rare', 'MLB-S221-R-B353-RAI'), + (0x0c4c0aa20d7dc4743c0b113f2f4ab8d56ef4d300, 'San Diego Padres™ Ryan Weathers Base White 70 Common', 'MLB-22S1-C-B70-S-WHI'), + (0x0c51fd110977ca866c4f82a52f27603dd8c9f05b, 'New York Yankees® Gerrit Cole Base Pink 1049 Uncommon', 'MLB-22PRI-U-B103-M-PNK'), + (0x0c56f92d0232d7216f4755910b77d5e131754399, 'cs', 'cs'), + (0x0c59948062754bff6b9aece96a85d1b8d7852513, 'Iago FCA Animation Black Refractor S4-66 Epic', 'BUND-21TS4-E-AS4-66-V-BLA'), + (0x0c63d87b9503b817862d1d91fa794baf7b370c69, 'Chicago White Sox® Andrew Vaughn Base Blue 1197 Common', 'MLB-22PRI-C-B92-M-BLU'), + (0x0c65c0c4aade84fcbf9ec4354902ee576e24e8dc, 'Smol Galactic Warriors', 'SGW'), + (0x0c66319561ecbf4d0bf26bec2f078deac8201d9f, 'FC Koln Rafael Czichos Base Players Gold 69 Rare', 'BUND-SC21-R-BP69-GLD'), + (0x0c6852aaebc21ba5bd20f4289f3ce16a750571b0, 'Joshua Kimmich BAY Top Players Facsimile Signature Team Color TK-02 Epic', 'BUND-22TK-E-TPTK-02-S-TMC'), + (0x0c71e167548074cf71163fc3837cd0480378266d, 'DSC Arminia Bielefeld Cebio Soukou Base Players Gold 82 Rare', 'BUND-SC21-R-BP82-GLD'), + (0x0c7cb7d9bbc1c2c9adc5406e9633d5e1fef2e883, 'Ai Whisky Uniques', 'AIWU'), + (0x0c834f57ce8572048704fe4dbe69197cf4c5d906, 'Oakland Athletics™ Sean Murphy Rookie and Future Phenoms Facsimile Signature Red 59 Epic', 'MLB-INC21-E-RC59-RED'), + (0x0c8c5822a5e5e8cc8687c5fe79df17ee2fdcb1ee, 'FUD Token Apes', 'FTA'), + (0x0c9010219f49d3ecd54034c0a6811fb33ecbf049, 'Uncommon Comic 75 2-27 Bazooka Joe 2021 NFT', 'BZK-U-75C'), + (0x0c9e5f65bddb6b0253055c64e94c2918eedc5329, 'St. Louis Cardinals® Johan Oviedo P Base Static Gold 535 Uncommon', 'MLB-S221-U-B535-GOL'), + (0x0ca99445972956b00ae1c162c53d908bccff13e5, 'Non Fungible Minutes', 'NFM'), + (0x0cace7a6009bab7d1256a849401114547db714a6, 'Midnight Motion', 'MDMO'), + (0x0cb07aa7fbceb398041c68d107a6067da696e2b4, 'Seattle Mariners™ Cal Raleigh 1987 35th Anniversary Wood T87-72 Common', 'MLB-22S1-C-1987A51-M-WD'), + (0x0cb86a87d139ca4065b375e184a0f6a22b7132ba, 'sidboybox', 'sbx'), + (0x0cbf45e1e093f03a67524ad2adef6b5a4121b104, 'Texas Rangers® Isiah Kiner-Falefa Base White 93 Common', 'MLB-22S1-C-B92-S-WHI'), + (0x0cc3f1412bf475f7d9b752e20765c2d0a3cd8de6, 'American League™ Nathan Eovaldi Base Pink 1302 Uncommon', 'MLB-22PRI-U-B225-M-PNK'), + (0x0ccf5270231c9c6ffc1a1c1c8502d24de3d3db91, 'Pittsburgh Pirates® Kevin Newman SS Base Motion Platinum 502 Epic', 'MLB-S221-E-B502-PLA'), + (0x0cd2b65ea83c392901a6be5e8a2d5cab084fb165, 'Angels® Jared Walsh Base Blue 1235 Common', 'MLB-22PRI-C-B166-M-BLU'), + (0x0cde3185e32ec89c0d37601b953853b6e396c5e0, 'Boston Red Sox® Tanner Houck P Base Static White 635 Common', 'MLB-S221-C-B635-WHI'), + (0x0cf7c1c386749c71cf15b88fd1eba84bb5d7ccb4, 'Thugz Crew', 'THGZ'), + (0x0cfc4549d649737e4e251e2a05ca415fb06bd6b9, 'Pact of the Scribble', 'PACTS'), + (0x0d15b1ec338ad76622c8f00748391351734b78bb, 'Cincinnati Reds® Jose Garcia SS 1986 Anniversary Static Team Colors 86B-3 Super Rare', 'MLB-S221-S-1986A86B-3-TMC'), + (0x0d1d88f89e70d05623fbb22b175c07c4e18d17a6, 'ELYT', 'ELYT'), + (0x0d2432545c0e0359847cdd97dd8f70fd53948ace, 'Fight Night Poster #6 Lobby Card Black and White 1 Super Rare', 'GDZ-GVG22-S-RLC1-S-BW'), + (0x0d2afb08d6c0d62697e729d96e8b4005538db12a, 'San Francisco Giants® Buster Posey Inception Base Red 84 Rare', 'MLB-INC21-R-IB84-RED'), + (0x0d2ea01af3ffba1f63df474753914c1abeb39179, 'Atlanta Braves™ Mark Melancon P Base Static Gold 574 Uncommon', 'MLB-S221-U-B574-GOL'), + (0x0d321db67e0e48b8a6c2d8b79909724bb9cdfd61, 'Milwaukee Brewers™ Josh Hader Postseason Base Red 24 Rare', 'MLB-21POST-R-B24-M-RED'), + (0x0d376741a952b966fef6a2cf944c554c0ada96c8, 'San Diego Padres™ Eric Hosmer 1B Base Static White 639 Common', 'MLB-S221-C-B639-WHI'), + (0x0d37c1874128212cbdaa388dffbef085af571172, 'Detroit Tigers® Michael Fulmer P Base Static White 373 Common', 'MLB-S221-C-B373-WHI'), + (0x0d3a739089e321d1ba29c673ccd4cc5c5c801971, 'Oakland Athletics™ Yan Gomes Base Glitch 294 Uncommon', 'MLB-22S1-U-B291-M-GLI'), + (0x0d3b4ef540a9a665a39862a3e940073e56699acb, 'San Francisco Giants® Brandon Crawford Division Series Bronze 34 Super Rare', 'MLB-21POST-S-D34-M-BRO'), + (0x0d41c70e20587c2ec1cea9c4a3d394ec63c4bfbe, 'Snow Penguin', 'Penguin'), + (0x0d43c7e470c6bfa1f0d568eaede6d95ae9ae6304, 'Crop Game Farmer Tools', 'CROP-GAME-FARMER-TOOL'), + (0x0d4c5e8e9909444ae96b60675034081926a85234, 'Atlanta Braves™ Charlie Morton Postseason Base Red 63 Rare', 'MLB-21POST-R-B63-M-RED'), + (0x0d5346755c5e84956e0e4a60c43fb02fae04f76e, 'Angels® Kurt Suzuki C Base Motion Platinum 571 Epic', 'MLB-S221-E-B571-PLA'), + (0x0d568ee3c32c3ee02cc98f7809fe7c3381d83b60, 'Mambo Names', 'MAMBONAME'), + (0x0d577d4acc170f589e82d17c803cca88ce3fd50f, 'Cleveland Guardians™ Jose Ramirez First Place Skyline 4 Legendary', 'MLB-22ASG-L-FIR4-M-SKY'), + (0x0d58fabc15bc32d5865791cd316a954642196076, 'Atlanta Braves™ Ronald Acuña Jr. Inception Base White 6 Common', 'MLB-INC21-C-IB6-WHT'), + (0x0d64fec0d5c8a4c03259509a6ac1491b8f883104, 'Milwaukee Brewers™ Devin Williams Rookie and Future Phenoms Facsimile Signature Red 47 Epic', 'MLB-INC21-E-RC47-RED'), + (0x0d67ea540b447b72b8d991ee841bdba796b87a0c, 'Los Angeles Dodgers® Mookie Betts National League Base Golden 14 Super Rare', 'MLB-22ASG-S-B14-M-GLD'), + (0x0d6b02ee40bc88dc3e7f1a0810039fcc3d87a0c4, 'WhatISMoney', 'ISM'), + (0x0d73f8f00e0df8820bd14e564befde08c9a038c9, 'St. Louis Cardinals® Kwang-Hyun Kim Base Independence Day RWB 151 Rare', 'MLB-22S1-R-B150-M-RWB'), + (0x0d762b806e4330f22ec54ef3cb3bd46bcf6a8d75, 'Houston Astros® Jose Altuve Postseason Base Navy 49 Uncommon', 'MLB-21POST-U-B49-M-NVY'), + (0x0d776222f11708fca9d8daa20ecd64af75dd1fc9, 'San Diego Padres™ Yu Darvish Base Pink 1097 Uncommon', 'MLB-22PRI-U-B11-M-PNK'), + (0x0d77c26460e335bfdc90802d0f793686ca7277e5, 'FC Union Berlin Taiwo Awoniyi Young Stars Team Color 166 Super Rare', 'BUND-SC21-S-YS166-TMC'), + (0x0d7a6f1a380f3c74a2fe1b4db597dfc23be0d15d, 'Bayer 04 Leverkusen Jonathan Tah Base Players White 21 Common', 'BUND-SC21-C-BP21-WHT'), + (0x0d87378cd853d11d95ad6b3df19d6f98184087d2, 'Common Comic 94 2-46 Bazooka Joe 2021 NFT', 'BZK-C-94C'), + (0x0d9fb24f985622cb70d41b07bd095d81fb5ae4b5, 'Degen Gamepiece Deux', 'DEUX'), + (0x0dac846624e17b8fae019647f5e1be553f0b4763, 'Boston Red Sox® Xander Bogaerts Popular Demand Facsimile Signature Teal 3522 Legendary', 'MLB-22PRI-L-PDFS17-M-TEA'), + (0x0db8fbabc835095bf3f780a2a4cbfb90c64a22bc, 'Skydive $JUMPS 2021', 'JUMPS1'), + (0x0dc389ff4a080395c341304a8e3f2b0f68a05858, 'New York Mets® Marcus Stroman P Base Static White 549 Common', 'MLB-S221-C-B549-WHI'), + (0x0dcbacdc792048f41882848c23bad71f58e62dcb, 'Lukas Nmecha WOB Top Players Black TK-09 Common', 'BUND-22TK-C-TPTK-09-S-BLA'), + (0x0dcbc97f569291977a1aec65457ee6f9feb27476, 'NFT Garden', 'NFTG'), + (0x0dcfa17fe6d7c113aa97eea17e97de970d2a038f, 'Simon Terodde S04 Top Players Facsimile Signature Team Color TK-32 Epic', 'BUND-22TK-E-TPTK-32-S-TMC'), + (0x0dd8cc692fcf01da00072b1d984c664cc5ee2244, 'Washington Nationals® Max Scherzer Inception Base Red 98 Rare', 'MLB-INC21-R-IB98-RED'), + (0x0de43de1ddbe66bb9595e494c855f6ebb8d41c34, 'Uncommon Comic 39 1-39 Bazooka Joe 2021 NFT', 'BZK-U-39C'), + (0x0dea7e8b0b38d20b2807d657e121430fd55789b0, 'One Hand Cleans The Other', 'Onehandcleans'), + (0x0ded1f97fb521d9267f6914ab887bad54cd09727, 'CryptoPunks', 'CPS'), + (0x0defb6b852a5c5e1468a7fcd3c0310db3816d850, 'Minnesota Twins® Jorge Polanco Inception Base Red 59 Rare', 'MLB-INC21-R-IB59-RED'), + (0x0df177c8d982329b31c7230c0ef7014bdabbfd1e, 'Detroit Tigers® Matt Manning Base Glitch 31 Uncommon', 'MLB-22S1-U-B31-M-GLI'), + (0x0dfbf5aa2fb957e17619809d4b7e40799952aaa2, 'FarmersOfAvax', 'FAO'), + (0x0dfda53af835a8d9db49d4ae5a75e86c06512237, 'Miami Marlins® Lewin Diaz 1B Short Print Motion White 417 Super Rare', 'MLB-S221-S-SP417-WHI'), + (0x0e03490b490a09e51040b457b6c4d5def37725a5, 'BADGE', 'BADGE'), + (0x0e190673511ac4d401d85e0b4f763f8731df81af, 'St. Louis Cardinals® Base Glitch 247 Uncommon', 'MLB-22S1-U-B244-M-GLI'), + (0x0e1a31a042740ed1474962e18b157f34f1fa2bf2, 'New York Mets® Jeff McNeil 2B/OF Base Static White 489 Common', 'MLB-S221-C-B489-WHI'), + (0x0e1e514812bc2c920f246ff81e7cf19957978e65, 'Angels® Ty Buttrey P Base Static Gold 363 Uncommon', 'MLB-S221-U-B363-GOL'), + (0x0e212c8a4289ff8287b1ac9b9e7e09d91597505e, 'Golden Celebration 2021 Year End Celebration Commemorative Snow Globe 3 Epic', 'TOP-GFT21-E-SG3-A-GLD'), + (0x0e218a1d1c6870b619257ed84ff64ef514ab7a69, 'Los Angeles Dodgers® Edwin Rios 1B/3B Base Motion Vintage Stock 393 Super Rare', 'MLB-S221-S-B393-VS'), + (0x0e23a702027608fd7fcd040635a554ead94c1045, 'Battle of the Blockchains OG', 'BotBOG'), + (0x0e2934711ca591857eb9fcaa0440c62dcc0e3c17, 'Colorado Rockies™ Brendan Rodgers 2B Base Motion Platinum 591 Epic', 'MLB-S221-E-B591-PLA'), + (0x0e2dea18fa1e1d062544a064ab1bb1cf9cf03a7f, 'Tampa Bay Rays™ Randy Arozarena Base White 196 Common', 'MLB-22S1-C-B195-S-WHI'), + (0x0e404dc84644e3c07198640642da529257b5fee0, 'Atlanta Braves™ Joc Pederson Postseason Base Navy 61 Uncommon', 'MLB-21POST-U-B61-M-NVY'), + (0x0e41dee800563cd581906f2a138b07dd279343bf, 'VITRUVIAN X THEORY', 'VTRV'), + (0x0e4341f1559d10369303a5ba6b2251ba95a3edd6, 'Toronto Blue Jays® Vladimir Guerrero Jr. Facsimile Signature Red 300 Rare', 'MLB-22S1-R-FS23-S-RED'), + (0x0e475e6cd5bcb829a402a3547020a6c70ed52144, 'Chicago White Sox® Lucas Giolito Base White 291 Common', 'MLB-22S1-C-B288-S-WHI'), + (0x0e4ee528ce2c6f14fa2e32138f7c0a69b181f184, 'Oakland Athletics™ Chris Bassitt P Base Static White 626 Common', 'MLB-S221-C-B626-WHI'), + (0x0e57da35f1d7e36b9fb5c9f91008097bb0d31ca6, 'Jude Bellingham DOR Motion Aqua Refractor S2-17 Rare', 'BUND-21TS2-R-MS2-17-V-AQU'), + (0x0e5e0011a07d0a013fc161ec6a4ab1ab3f0002a8, 'Building', 'BULL'), + (0x0e5f11598286c41e6b5940b2297fd5431740e56d, 'San Diego Padres™ Fernando Tatis Jr. Short Print White 100 Rare', 'MLB-22S1-R-SP23-M-WHI'), + (0x0e69bfb4f583428e570d0fdfb31726ff138d4186, 'Philadelphia Phillies® Bryce Harper Wild Card Broadcast RWB 1048 Rare', 'MLB-22TNP-R-WCA2-M-RWB'), + (0x0e71586a787f8ba9b21566eb5110b4b28207897e, 'Shipwreck Collection', 'SHC'), + (0x0e730c5749677163043b45fcd2ae75c3326a9a59, 'Atlanta Braves™ Ozzie Albies Champs Gold 2 Legendary', 'MLB-21POST-L-C2-M-GOL'), + (0x0e7d5d6061d76aaa7b04e9bf4624f417896a7fa7, 'The Meleon Wizards Brewery', 'POTION'), + (0x0e897feff60f897fd404966d0905e77540c07d61, 'CryptoVikings', 'VIKING'), + (0x0e8c9924b4f2b490d1415c53e63717d22ec392ef, 'San Francisco Giants® Brandon Crawford Base Pink 1054 Uncommon', 'MLB-22PRI-U-B46-M-PNK'), + (0x0e8ca5808ab877ef16edfc33cc0d573e5b44b769, 'Degen Gamepiece', 'dGAME'), + (0x0e8ff6e68eb11d4b36183c0bb46a61d0d75fc010, 'Exquisite Corpse', 'EXC'), + (0x0e92d611e1a03150c0aaadd31c3f575781dcc0b6, 'Angels® Mike Trout OF 1986 Anniversary Facsimile Signature Motion Chrome 86TC-92 Legendary', 'MLB-S221-L-1986AFS86TC-92-CHR'), + (0x0e93dd2edc1468de17235fc038f0a3abb1c0bd58, 'PrizeBondAvax', 'PBA'), + (0x0e97c3758757389642b17de2c80d55ccd78ee0bd, 'Nico Schlotterbeck SCF Club Phemons Team Color S4CPH-09 Epic', 'BUND-21TS4-E-CPHS4CPH-09-V-TMC'), + (0x0e9c492ff1c03b1586383914bcdd700b3759758c, 'Cobalt CAThy Animation Facsimile Signature Color 10 Super Rare', 'GPK-NFT22-S-AFS10-A-COL'), + (0x0e9ffe5ce072dac6f016a3e2cbf27641a26fd100, 'Tampa Bay Rays™ Mike Brosseau 2B/3B Base Motion Vintage Stock 427 Super Rare', 'MLB-S221-S-B427-VS'), + (0x0eae03098d9b5d6159b5628e73505f2b374b0201, 'Adventure collection', '#1'), + (0x0eb9812ffa3f85a53efafe4b7a7a6c314a3489a7, 'Tampa Bay Rays™ Vidal Brujan Base Glitch 25 Uncommon', 'MLB-22S1-U-B25-M-GLI'), + (0x0ebe407294c60edd07788328e2e8b6d793fd3647, 'BlockLeader User', 'BLU'), + (0x0ec3f4997d054988998549ee339fa457a320135d, 'Atlanta Braves™ Dansby Swanson/Jorge Soler Topps NOW White 1026 Rare', 'MLB-21NOW-R-TN1026-WHI'), + (0x0ece57a677d5e72d1ad45774239e23463cf1d743, 'Coin98 NFT Mint', 'C98NFTMint'), + (0x0ed3504a674fbc0c826119a0980dca22e8039e22, 'Los Angeles Dodgers® David Price P Base Static Gold 416 Uncommon', 'MLB-S221-U-B416-GOL'), + (0x0ee3d7cd1003933236e0155bb01f076c369296a4, 'AVAX PDX x st0ked 2022', 'st0ked'), + (0x0ee57c9f314dba68c6629824f11c491af42d29b6, 'Lucas Alario B04 Motion Aqua Refractor S4-45 Rare', 'BUND-21TS4-R-MS4-45-V-AQU'), + (0x0ee6612607a44202111533ce7a839b961e5bd427, 'Cincinnati Reds® Tucker Barnhart C Base Motion Vintage Stock 580 Super Rare', 'MLB-S221-S-B580-VS'), + (0x0eea5a5801aa07bee7d5d36f51f5b5f7c812697d, 'TSG Hoffenheim Ihlas Bebou Top Players Gold 107 Super Rare', 'BUND-SC21-S-TP107-GLD'), + (0x0eea8f41bb685e16ab3d038e92b4a9474278c27c, 'Ai Dreams', 'AIDR'), + (0x0ef74d322bd6e740561365acbe36aea85008f7d3, 'Atlanta Braves™ Topps NOW White 1022 Rare', 'MLB-21NOW-R-TN1022-WHI'), + (0x0ef87d1efc894424d104dcd78957ef01a9ea1c76, 'Miami Marlins® Jazz Chisholm Jr. Second Place Beach 10 Epic', 'MLB-22ASG-E-SEC10-M-BCH'), + (0x0ef9f1f8e643890b8a42d82a6d807da58fa49d72, 'Uncommon Comic 23 1-23 Bazooka Joe 2021 NFT', 'BZK-U-23C'), + (0x0efc8ef83d7318121449e9c5dbdf7135bcc1fa90, 'VaporNodes', 'VNODE'), + (0x0f069328774d7e08cd241de4b68ee85486fc21c9, 'Avalanche Memes', 'MEME'), + (0x0f0ce56f3318976da34de5d9a875b634a3453e79, 'Chicago Cubs® Jason Heyward OF Base Static Gold 501 Uncommon', 'MLB-S221-U-B501-GOL'), + (0x0f0d920678c69e29df35cae2b03821790c8d9f2c, 'Detroit Tigers® Willi Castro SS Base Motion Rainbow 339 Rare', 'MLB-S221-R-B339-RAI'), + (0x0f2f502d6123aa152ae24425ead3f045029c8e84, '2021 Topps Bazooka Joe NFT Collectibles Standard Pack', 'BZK-PACK-S'), + (0x0f5ef9b2e65570c716956e46a7515fcde21840d9, 'Angels® Anthony Rendon 3B Base Motion Vintage Stock 550 Super Rare', 'MLB-S221-S-B550-VS'), + (0x0f69eab2e504cf79782605eea76db34fa15c45e9, 'Varan Base Collectible Magenta 19 Common', 'GDZ-RAT21-C-B19-S-MAG'), + (0x0f6a1654d19696dfe5c5e4ec074d19d5c927e76d, 'Angels® Shohei Ohtani 1987 35th Anniversary Chrome T87C-1 Super Rare', 'MLB-22S1-S-1987AC1-M-CHR'), + (0x0f712fbfb3b7d1a642d2e8ac914cdc0db4b48af1, 'Soares-Polter BOC Animation Duos TSC-16 Epic', 'BUND-21TSC-E-RATSC-16-A-DUO'), + (0x0f72036adec66754a003ad5c401e7a4a11aa1093, 'Miami Marlins® Jesus Luzardo Base Independence Day RWB 11 Rare', 'MLB-22S1-R-B11-M-RWB'), + (0x0f74bb6d30d496adbea892962170535c760f02ea, 'Boston Red Sox® Enrique Hernandez OF/2B Base Motion Platinum 465 Epic', 'MLB-S221-E-B465-PLA'), + (0x0f8e1f1cf44d7679d3f4f172788cf7c76a767f7c, 'Cincinnati Reds® Jesse Winker Base Pink 1176 Uncommon', 'MLB-22PRI-U-B73-M-PNK'), + (0x0f8f07285b9d3f6f7ad4d488d0f21af23b1bb1ef, 'Boston Red Sox® Rafael Devers Second Place Palm Trees 4 Super Rare', 'MLB-22ASG-S-SEC4-M-PLM'), + (0x0f9520e534d53286b441f032d2689197a5762985, 'TSG Hoffenheim Chris Richards Young Stars Team Color 156 Super Rare', 'BUND-SC21-S-YS156-TMC'), + (0x0f96d8c48af248bb62fd2ebcd0b044cc86756ac5, 'Seattle Mariners™ Yohan Ramirez P Base Static White 519 Common', 'MLB-S221-C-B519-WHI'), + (0x0fa8caf102a39f7da26c98137e8a346033649d9d, 'San Francisco Giants® Luis Alexander Basabe OF Base Motion Platinum 548 Epic', 'MLB-S221-E-B548-PLA'), + (0x0fc11311270ecaa2f89f155debaadf9e59e18509, 'AKIRA Ava', 'AV'), + (0x0fc4b7d84f33d566b1e23f263bb25eda55a48e84, 'San Francisco Giants® Jeff Samardzija P Base Static White 382 Common', 'MLB-S221-C-B382-WHI'), + (0x0fd0bf39a8b971baa2f211404724e1c6d89529fe, 'Cincinnati Reds® Joey Votto Base Blue 1008 Common', 'MLB-22PRI-C-B83-M-BLU'), + (0x0fd8084d57d59aad99de4f50d9b4bd2afb3bf66d, 'National League™ Corbin Burnes Base Pink 1281 Uncommon', 'MLB-22PRI-U-B198-M-PNK'), + (0x0fe0d2acdf5b7a1a4ca4931c29c4b8e4864e7226, 'Serge Gnabry BAY Fan Favorite Magenta Refractor S4F-03 Rare', 'BUND-21TS4-R-FS4F-03-V-MAG'), + (0x0fe31921b76e08d08d7d4121f97202068e4ef250, 'Houston Astros® Kyle Tucker OF Base Static Gold 617 Uncommon', 'MLB-S221-U-B617-GOL'), + (0x0ff189b3ff75e4ba2ec6d192daf9813214aee7aa, 'Philadelphia Phillies® Bryce Harper Facsimile Signature Red 250 Rare', 'MLB-22S1-R-FS18-S-RED'), + (0x0ffc4f3e61235e9338ea55fc5dfbb78a652a4a83, 'Cincinnati Reds® Dwight Smith Jr. OF Base Static Gold 582 Uncommon', 'MLB-S221-U-B582-GOL'), + (0x0ffdcb562f7e101d0914af36d28d30a38efddb1a, 'AVYBEARS', 'AvyB'), + (0x0fff7f99d2b32849848e31cb48090c5268e06f65, 'NestedNFT', 'NESTED'), + (0x10030bb45014e4dfaa1fd262b8f5b551d4b6b3f8, 'FC Union Berlin Christopher Lenz Base Players White 51 Common', 'BUND-SC21-C-BP51-WHT'), + (0x100c16ba16395d525bdce1e19df3620e0e30e1ea, 'Stamp Fellas', 'SF'), + (0x10111fd73134644de7c57745f8611dbb368f77b8, 'Los Angeles Dodgers® Mookie Betts Short Print White 50 Rare', 'MLB-22S1-R-SP13-M-WHI'), + (0x101921305491f95d27348fbfbcb16489e3e437ec, 'Nils Petersen SCF Base Red S4-64 Uncommon', 'BUND-21TS4-U-BS4-64-S-RED'), + (0x101a38a58a11e1758908cc707f8ce8ab551ff6d8, 'Seattle Mariners™ Yohan Ramirez P Base Motion Rainbow 519 Rare', 'MLB-S221-R-B519-RAI'), + (0x101df60db72ef4bd49ebd4ab21b70243f4176f15, 'Konstantinos Mavropanos VFB Animation Black Refractor S2-15 Epic', 'BUND-21TS2-E-AS2-15-V-BLA'), + (0x1022061dd27126ae04f0359584a88bc23f74e1ea, 'Houston Astros® Andre Scrubb P Base Motion Vintage Stock 384 Super Rare', 'MLB-S221-S-B384-VS'), + (0x102c96b3bb95a7f263af72d62fee42fb3d007daa, 'Miami Marlins® Jazz Chisholm SS Base Motion Vintage Stock 538 Super Rare', 'MLB-S221-S-B538-VS'), + (0x102fd0de7663af512342dd8fb95646805517e10f, 'St. Louis Cardinals® Yadier Molina-Albert Pujols Wild Card Newspaper BW 1049 Common', 'MLB-22TNP-C-WCN6-M-BW'), + (0x1050e1a4b6e7b7a7ff07651d1c2100a472f544e8, 'Milwaukee Brewers™ Avisail Garcia Base Vintage Stock 92 Super Rare', 'MLB-22S1-S-B91-M-VS'), + (0x105f0f2d9b3547a354c9a98bdb956d28d515889d, 'Philadelphia Phillies® Jojo Romero P Base Motion Vintage Stock 508 Super Rare', 'MLB-S221-S-B508-VS'), + (0x107080a3406d4e18eefbe0770b23be8e7815d023, 'Ayo Obileye LFC Base White SP-28 Common', 'SPFL-21SPSS-C-BSP-28-A-WHI'), + (0x1079809a6b6497fbf0433f7c48ad0f918c28adf3, 'San Francisco Giants® Joc Pederson National League Base White 15 Uncommon', 'MLB-22ASG-U-B15-M-WHI'), + (0x107a143766f5ba129f82a37d4a57f911efffcb7a, 'EPICBATTLENFT', 'EPIC'), + (0x108334391bc6c05358bea61874f22399fc94498d, 'Kevin Nisbet HIB Base Aqua SP-08 Uncommon', 'SPFL-21SPSS-U-BSP-08-A-AQU'), + (0x10973cf82c487e2eb466a6bb1434f8a858bd4ed0, 'Cleveland Guardians™ Jose Ramirez American League Base White 7 Uncommon', 'MLB-22ASG-U-B7-M-WHI'), + (0x109c9b82a45eb9a62958ec926f2e8f55e2b72b87, 'tattered scrolls', 'TSCROLL'), + (0x10a7f745ead787df8d6da642cfc4a74e27991f5d, 'Kingsley Schindler KOE Animation Gold Refractor S4-63 Legendary', 'BUND-21TS4-L-AS4-63-V-GOL'), + (0x10aca3aa56a4eb4942341e4834292755557e2e9f, 'OmniRoboticApe', 'ORA'), + (0x10ae34f8d72a83491634f7b149bd3f68d6005724, 'Callum Hendry STJ Top Plays Gold SPTPL-23 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-23-V-GOL'), + (0x10b3a7ef992dd21b89d23cf88e57fe29a5c1d9a6, 'Cincinnati Reds® TJ Friedl Base Pink 1316 Uncommon', 'MLB-22PRI-U-B147-M-PNK'), + (0x10befdc38fede51f4c3f886aab089e160ad6b269, 'Developer Dale Golden Animation Facsimile Signature Color 9 Legendary', 'GPK-NFT22-L-GAFS9-A-COL'), + (0x10bf3ae5a102137331540347cb31932b4844ce7a, 'Rare Comic 83 2-35 Bazooka Joe 2021 NFT', 'BZK-R-83C'), + (0x10c252c81e93e5c2c4205df0ef1440703606cd05, 'Simon Terodde S04 Top Players Team Color TK-32 Rare', 'BUND-22TK-R-TPTK-32-S-TMC'), + (0x10cc4e5d00b34d06b7f825d115e355a05d4c8856, 'Beeg Art', 'BA'), + (0x10d31b35dec1a376888bf8c0df73b523ae1e1015, 'AvaxJokers', 'AVAXJOKER'), + (0x10dd4398d054de6b2237e5d7be7808ba56c32a17, 'Niklas Dorsch FCA Motion Rainbow Refractor S3-31 Super Rare', 'BUND-21TS3-S-MS3-31-V-RAI'), + (0x10e469afc7cab8202916e8a26e2560ff9d1b032c, 'Lumens by Vibes', 'LUMANSVICES'), + (0x10f0822390e0d6d42103a8839d055892da0b83d9, 'Houston Astros® Martin Maldonado Base Independence Day RWB 224 Rare', 'MLB-22S1-R-B221-M-RWB'), + (0x10fb3d4e66b82b6dfb750109302a85dfcc0f74d7, 'Callum McGregor CEL Captains Green SPCAP-02 Epic', 'SPFL-21SPSS-E-CAPSPCAP-02-A-GRE'), + (0x11117bb7e4fbe4e2376a0c79326982bf699db3cb, 'Detroit Tigers® Miguel Cabrera Facsimile Signature Glitch 194 Epic', 'MLB-22S1-E-FS9-M-GLI'), + (0x1129a6ae93bf5c5753d4470b412cc27f13663d72, 'Doodle Kids', 'DoodleKids'), + (0x112b33d0002de9954c8ce520f5540d3fa66cfbf1, 'Godzilla Destroys the City Traditional Art Black and White 2 Uncommon', 'GDZ-RAT21-U-TA2-S-BW'), + (0x112b38a585143175074f453ce9f4c34ff06ea8f2, 'Jamal Musiala BAY Base White S3-32 Common', 'BUND-21TS3-C-BS3-32-S-WHI'), + (0x112e3d5ef61b5b611ae6745bbcdfaf345e1e79d0, 'AvaxSlots', 'AvaxSlots'), + (0x113a308823017d1e48e401cfb89afc4e2656a679, 'Cincinnati Reds® Base Static Gold 587 Uncommon', 'MLB-S221-U-B587-GOL'), + (0x114590fe081bfe8f780241ddd9663c6a3d965779, '2021 MLB Challenge Reward NL Rookie of the Year Pack', 'MLB-21REWARD-PACK-NLROY'), + (0x114fe84265f564e31886d8a2245208deaea795c0, 'National League™ 2021 Strikeout Leaders Base Independence Day RWB 127 Rare', 'MLB-22S1-R-B126-M-RWB'), + (0x1151117ce68a4e9a9d76a69cbcf73822418598a8, 'Breel Embolo BMG Base White S2-13 Common', 'BUND-21TS2-C-BS2-13-S-WHI'), + (0x1151bcaad1a43542faad3323560d2f6ae5932925, 'Tampa Bay Rays™ Yandy Diaz 3B/1B Base Motion Platinum 425 Epic', 'MLB-S221-E-B425-PLA'), + (0x115f2b237d62d4c58deece5b79c9a57ed93a5dc4, 'Totally Trippy TYs', 'TTTY'), + (0x1167af11dedb9f13b8aaae99eb47ba9abb34e433, 'Maya Mask Facsimile Signature Color 15 Uncommon', 'GPK-NFT22-U-FS15-S-COL'), + (0x1173098a88dfa270d694f8f562ce08cc7f536d75, 'Chicago White Sox® Tim Anderson Second Place Beach 5 Epic', 'MLB-22ASG-E-SEC5-M-BCH'), + (0x1173711deec56bb229d4cf117b1eebfed34721d9, 'Futuristic Nature', 'FTNT'), + (0x1174743600b2656cf1b7f35cead39ff24e4f2842, 'Infected Goblintown', 'iGoblintown'), + (0x1184cfcdf8a1df2a553570d167a7c72ec2082477, 'Beauty Pageant Votr Postrs', 'VOTRPOSTR'), + (0x1184d51d8c7b2245e211c0bab6c632b143af510e, 'Oakland Athletics™ Elvis Andrus Base Blue 1080 Common', 'MLB-22PRI-C-B76-M-BLU'), + (0x1186ffb283f5468ceb57728bb99cd75547393715, 'Oakland Athletics™ Sean Murphy C Base Motion Rainbow 349 Rare', 'MLB-S221-R-B349-RAI'), + (0x11907cc0b47fa5c21b8699bea1c05e2f82bb837f, 'San Francisco Giants® Tommy La Stella 2B Base Motion Rainbow 462 Rare', 'MLB-S221-R-B462-RAI'), + (0x119f6c6af48869de72894f7a3494fe8eea78651d, 'Chicago White Sox® Jose Abreu 1B Facsimile Signature Static Red 331 Epic', 'MLB-S221-E-FS331-RED'), + (0x11a713b145219c4717171d0917144164e7460c6e, 'Tampa Bay Rays™ Tyler Glasnow Facsimile Signature Slab Gold 3049 Epic', 'MLB-22PRI-E-FS48-M-GLD'), + (0x11a82bd6cacac7d590698bf7c2f408a71c8ecfd9, 'Common Comic 15 1-15 Bazooka Joe 2021 NFT', 'BZK-C-15C'), + (0x11bcbd9bdf5eff5a73ff5dd2fefb781528514b40, 'Goblinavax', 'GOAX'), + (0x11d55c45aa3aab45aa0e602fc9ed1f7dcfd47366, 'San Diego Padres™ Joe Musgrove P Base Motion Vintage Stock 411 Super Rare', 'MLB-S221-S-B411-VS'), + (0x11df936a63c0bfaa2aa320d60527333c6d24ebd8, 'Seattle Mariners™ Cal Raleigh Base Vintage Stock 277 Super Rare', 'MLB-22S1-S-B274-M-VS'), + (0x11e0b7336c5fb63f23ee573ac671e88f463997dc, 'Astronauts', 'AST'), + (0x11e4a8303d84d7ab05ed8dc61d0e3605446df2ec, 'Pittsburgh Pirates® Oneil Cruz Base Pink 1319 Uncommon', 'MLB-22PRI-U-B175-M-PNK'), + (0x11ebaef5ebef225b49b75b96c8c861c652003273, 'Project: M.U.R.A.L.', 'MURAL'), + (0x11ef934c03a331cac01a81a2af1900e2873ff0a0, 'Atlanta Braves™ Ozzie Albies Championship Series Silver 18 Epic', 'MLB-21POST-E-CS18-M-SIL'), + (0x11f07266920608d5aebdf35a73c44ed26f632be3, 'St. Louis Cardinals® Kodi Whitley Silver Signings Facsimile Signature Silver 38 Super Rare', 'MLB-INC21-S-SS38-SLV'), + (0x11f07b4052dc412789405a52ec964e4df1532faa, 'Detroit Tigers® Casey Mize Generation NOW Team Colors GN-12 Epic', 'MLB-22S1-E-GN12-M-TMC'), + (0x11fae44c7f4b9fc6b738836430e27caaf3f8cf59, 'Common Comic 24 1-24 Bazooka Joe 2021 NFT', 'BZK-C-24C'), + (0x11fd0523f64d817cba8f68bfc4c19c25bd78c5aa, 'New York Yankees® Corey Kluber Base Vintage Stock 69 Super Rare', 'MLB-22S1-S-B69-M-VS'), + (0x11fe24ef8e421c0298ea83b99e4925af6edbffcc, 'Angels® Reid Detmers Short Print White 201 Rare', 'MLB-22S1-R-SP40-M-WHI'), + (0x11feae0d42e30253baa1497883331d5053ddf8d9, 'Chicago White Sox® Cesar Hernandez Base Glitch 28 Uncommon', 'MLB-22S1-U-B28-M-GLI'), + (0x1204193ac288058bf16962d7d54707e442846a88, 'ANTROPOSEN', 'AVAX'), + (0x12076dc5b313dae2dc3f51832096edccc561f002, 'Ultra 64', 'NKC1'), + (0x120b9019e8c2c6b9e3a557c4eb4bf0c2d076d753, 'Sheraldo Becker FCU Base Red S4-58 Uncommon', 'BUND-21TS4-U-BS4-58-S-RED'), + (0x120eaac4e386882ba1f2fefa3bf32a707c5865b5, 'Seattle Mariners™ Rafael Montero P Base Static White 637 Common', 'MLB-S221-C-B637-WHI'), + (0x1210708af362b03ab76c3a450d18ccce54c10953, 'Cleveland Guardians™ Jose Ramirez Base Blue 1009 Common', 'MLB-22PRI-C-B10-M-BLU'), + (0x1214e8841bc5b4fe936f423a6b017ea4aa55c1e0, 'DØP3 Apes', 'DA'), + (0x121b2f8fde6fbf96426e4b92f31faaf4a897fc6f, 'TBWNFT', 'TBWNFT'), + (0x122afde47269425555e3189efd91dfeee5e80dc5, 'New York Yankees® Clint Frazier Base Independence Day RWB 101 Rare', 'MLB-22S1-R-B100-M-RWB'), + (0x123b106035597a492d47cf0413dcc1325580bef6, 'SV Werder Bremen Josh Sargent Young Stars Team Color 175 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS175-SFS-TMC'), + (0x1240f70fc8f75287157f7ae2cc2af9d64216e56a, 'Atlanta Braves™ Ozzie Albies National League Base Golden 6 Super Rare', 'MLB-22ASG-S-B6-M-GLD'), + (0x12433fca5a0115d988a503f82111b254d7e60d2d, 'Kansas City Royals® Emmanuel Rivera Base Pink 1225 Uncommon', 'MLB-22PRI-U-B157-M-PNK'), + (0x124a6ae982e120d6f7e52db20cda7eb744147f2f, 'New York Yankees® Joey Gallo Stars of MLB Chrome Night SMLBC-21 Legendary', 'MLB-22S1-L-SMLBC20-M-NIT'), + (0x12553254d4423f2f541429123545145d10f9e193, 'Detroit Tigers® Daniel Norris P Base Static White 558 Common', 'MLB-S221-C-B558-WHI'), + (0x125f69ae2bc98a1f53f597687587c96a95acdd77, 'Angels® David Fletcher 2B/SS Base Motion Rainbow 624 Rare', 'MLB-S221-R-B624-RAI'), + (0x126ae1c695dd1e511c7d693e6a4e64d4e4a1d013, 'Chicago White Sox® Carlos Rodon Postseason Base Navy 14 Uncommon', 'MLB-21POST-U-B14-M-NVY'), + (0x126b080c278e35dd0a35d146cb17bfe8a96348d0, 'San Diego Padres™ Manny Machado First Place Skyline 11 Legendary', 'MLB-22ASG-L-FIR11-M-SKY'), + (0x126f024070833ccc50c9ecc8e8450e0a026ceae0, 'New York Yankees® Anthony Rizzo Postseason Base Red 78 Rare', 'MLB-21POST-R-B78-M-RED'), + (0x127152945555887c69884c767a7d0a83e2bdad09, 'Cleveland Guardians™ Shane Bieber Base Glitch 21 Uncommon', 'MLB-22S1-U-B21-M-GLI'), + (0x127b4bac88071a4271f6c75e787391567b22c255, 'Paul McMullan DUD Base White SP-32 Common', 'SPFL-21SPSS-C-BSP-32-A-WHI'), + (0x127caf197b7205bda085dbbfcbd8eb9f6555bf9b, 'Aaron Ramsey RFC Base Purple SP-01 Super Rare', 'SPFL-21SPSS-S-BSP-01-A-PUR'), + (0x127da1fbba46e0fd996b2c7e2a71dc4797003ac5, 'Project Gen', 'Gen-1'), + (0x128859bfb7557bf3ceacc16abb067d2ab961a559, 'Refined', 'REFINED'), + (0x129310a9a1b30a1b1fa28f9b6ded0b4eadc492b2, 'Pumpkin Patch', 'PNKIN'), + (0x12963d1dd0ab0f48aee26dff0cfe10157a835efd, 'American League™ Minnesota Meetup Base Vintage Stock 122 Super Rare', 'MLB-22S1-S-B121-M-VS'), + (0x1297f3e708c1f0b822c0e746b2d0e03993d7d6a9, 'San Francisco Giants® Brandon Crawford Base Independence Day RWB 117 Rare', 'MLB-22S1-R-B116-M-RWB'), + (0x12a46e4fc007a2810ffad8bf7f4a375f1bc81a31, 'Georginio Rutter TSG Motion Rainbow Refractor S3-28 Super Rare', 'BUND-21TS3-S-MS3-28-V-RAI'), + (0x12aa1aec7ceb841bef0324d61f4e422b47c7bdf8, 'Oakland Athletics™ Matt Chapman Base Glitch 176 Uncommon', 'MLB-22S1-U-B175-M-GLI'), + (0x12b928e8c3f607b9a9bb480ce2966c9bf06f8515, 'Chicago Cubs® Brailyn Marquez Inception Base Blue 14 Uncommon', 'MLB-INC21-U-IB14-BLU'), + (0x12c4ca928006d5f7d71f83ff3ec4f64a5763891d, 'Kansas City Royals® Nicky Lopez 2B Base Motion Platinum 415 Epic', 'MLB-S221-E-B415-PLA'), + (0x12c6075315c47874b9a5df4f70bdbf622a896ef5, 'Chicago White Sox® Nick Madrigal Inception Base Red 28 Rare', 'MLB-INC21-R-IB28-RED'), + (0x12ce1e0c17675e1c0be94cc27fe0a3ff50bd51ad, 'Punks', 'PUNKS'), + (0x12d87bd8d9f131bb7ce0ccbd6dcd94f8e16e5751, 'Barrie McKay HEA Top Plays Purple SPTPL-22 Rare', 'SPFL-21SPSS-R-TPLSPTPL-22-V-PUR'), + (0x12e77d4aa3721759aecb9e932d368acddaac1428, 'Minnesota Twins® Ryan Jeffers C Base Static White 552 Common', 'MLB-S221-C-B552-WHI'), + (0x12e9c4de763f766e1586e5a9df17793d122bc35d, 'Psychedelic NBA', 'PshNBA'), + (0x12e9f98362cefae493894164e033e0dd36fdb174, 'Thomas Müller BAY Awards Blue TSC-22 Legendary', 'BUND-21TSC-L-RAWTSC-22-A-BLU'), + (0x12f1e566ca4cc00770ce2032a8220dbdcb0d25df, 'Chicago Cubs® Craig Kimbrel P Base Static Gold 579 Uncommon', 'MLB-S221-U-B579-GOL'), + (0x12f2a14a2fe57d4cd6824650acdaedb7c665c235, 'Adam Hložek B04 Color Splash White TK-58 Uncommon', 'BUND-22TK-U-CSTK-58-S-WHI'), + (0x12f5c4c655c78b711816230fb35c629eb77b4d2a, 'Miami Marlins® Bryan De La Cruz Fresh Faces White 2218 Rare', 'MLB-22PRI-R-FF13-M-WHI'), + (0x12fcbc1adacd83b5c107722f83a7cc640fef0e4a, 'Atlanta Braves™ Freddie Freeman World Series Gold 9 Epic', 'MLB-21POST-E-WS9-M-GOL'), + (0x12ff5f657346ac4d43acc986c4009ef7ab1fca74, 'New York Yankees® Joey Gallo Base White 322 Common', 'MLB-22S1-C-B318-S-WHI'), + (0x1310bc12efe36e5041f876257d77c188c23c56d6, 'Los Angeles Dodgers® Walker Buehler Base Pink 1114 Uncommon', 'MLB-22PRI-U-B86-M-PNK'), + (0x1318934db0f519510092745f4ed19fe57a97bada, 'Uncommon Comic 41 1-41 Bazooka Joe 2021 NFT', 'BZK-U-41C'), + (0x1324b4c54ac08f6caf4117119c2a80694fceb162, 'Atlanta Braves™ Mark Melancon P Base Motion Rainbow 574 Rare', 'MLB-S221-R-B574-RAI'), + (0x132c54514aa11ec3ebdd839430138976bfb745cd, 'NW MoonBirds', 'NWMBIRDS'), + (0x1330472298ef62c3972ba884edc1d73fe3295f77, 'Common Comic 8 1-8 Bazooka Joe 2021 NFT', 'BZK-C-8C'), + (0x1347e49ec4cef61c3d2b9763e620cd9e522f8d2a, 'Chicago White Sox® Luis Robert Base Independence Day RWB 107 Rare', 'MLB-22S1-R-B106-M-RWB'), + (0x13488fcfd164dcde20add55f7a62f4db29286208, 'San Francisco Giants® Donovan Solano 2B Base Static White 605 Common', 'MLB-S221-C-B605-WHI'), + (0x1349462dcd03fb317f742d83f0168403742a0091, 'Christoph Baumgartner TSG Top Players Team Color TK-14 Rare', 'BUND-22TK-R-TPTK-14-S-TMC'), + (0x134c97285ac6c4dc45bf00f49dc949401de2a37e, 'Colorado Rockies™ Garrett Hampson Base White 234 Common', 'MLB-22S1-C-B231-S-WHI'), + (0x13537f414e65bd1f1d18f78ff13e00fdb4bbff6e, 'Tampa Bay Rays™ Wander Franco 1987 35th Anniversary Wood T87-23 Common', 'MLB-22S1-C-1987A18-M-WD'), + (0x1353e1443dcd929f6934eac7236aa5e515a8e936, 'Scott Tanser SMI Base Purple SP-19 Super Rare', 'SPFL-21SPSS-S-BSP-19-A-PUR'), + (0x1354f2bb861a9e7ed9cc985a8c449fa363e981b4, 'Avax Lock', 'KEY'), + (0x135bc605cbf5c62734edd45584dbfc621d77fb96, 'Proof of Steak Facsimile Signature Color 20 Uncommon', 'GPK-NFT22-U-FS20-S-COL'), + (0x1360c9690285eac8a57e08caa13bdc447de1aa27, 'Toronto Blue Jays® Vladimir Guerrero Jr. Inception Base White 95 Common', 'MLB-INC21-C-IB95-WHT'), + (0x136a827a6bee0dbb02c306e7b67dd1b1594b0428, 'New York Mets® Michael Conforto OF Base Static White 517 Common', 'MLB-S221-C-B517-WHI'), + (0x136f3e29dce3434ea158ff342b05effae82722a8, 'Texas Rangers® Shin-Soo Choo OF/DH Base Static Gold 657 Uncommon', 'MLB-S221-U-B657-GOL'), + (0x13724b6899cd217949686faf3fa9d10e3ac6d10d, 'Washington Nationals® Jakson Reetz Base Independence Day RWB 61 Rare', 'MLB-22S1-R-B61-M-RWB'), + (0x137882ff6abc86c24d27b682094c20acb26e9c69, 'Uncommon Baseball Card 8 Tex Batter Bazooka Joe 2021 NFT', 'BZK-U-8B'), + (0x13869e10a28bbbb1477c627b744f73508e156c09, 'Bundesliga Reward Coin BRC Coin Gold TSC-01 Super Rare', 'BUND-21TSC-S-RCOTSC-01-A-GOL'), + (0x138af3c228dc970f4a1eff3733d48162c8f356a5, 'Arizona Diamondbacks® Base Glitch 144 Uncommon', 'MLB-22S1-U-B143-M-GLI'), + (0x138e94d195547abbc109daf2f04cc630d4a567de, 'Miami Marlins® Jazz Chisholm Jr. Base Blue 1015 Common', 'MLB-22PRI-C-B71-M-BLU'), + (0x139639ae47b13a5e7d5cb9ed92cf993c79c13101, 'Dodoor AVAX', 'da'), + (0x1397649dffa7a41f8c0c53fb8146c8a02beb48d2, '8X8', '8X8'), + (0x139ad50bb8b3d902f915cedc609dfc3348ffc39e, 'Los Angeles Dodgers® Corey Seager SS Short Print Motion White 450 Super Rare', 'MLB-S221-S-SP450-WHI'), + (0x139f556bc4de5ec10c1b997921c936327e03c77e, 'Uncommon Comic 49 2-1 Bazooka Joe 2021 NFT', 'BZK-U-49C'), + (0x139fa715f3359f45d1c78281bf4bd10dd122600a, 'Kansas City Royals® Jackson Kowar Base Blue 1202 Common', 'MLB-22PRI-C-B140-M-BLU'), + (0x13a3ec5c639cf55e9b59f628a79e83b34eaf7a12, 'DALL-E Dragons', 'DEDR'), + (0x13a738c2fe5730740e422a8039f562dff04b8b87, 'Toronto Blue Jays® Vladimir Guerrero Jr. 2022 Definitive Gold 32 Legendary', 'MLB-22LEG-L-22DEF32-M-GLD'), + (0x13a7fe3ab741ea6301db8b164290be711f546a73, 'Stake DAO av3CRV Strategy MAI Vault', 'SDAV3CRVMVT'), + (0x13aafbe7c1ebffd6972d63804f162356ddf5cbfc, 'FSV Mainz 05 Jonathan Burkardt Young Stars Team Color 170 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS170-SFS-TMC'), + (0x13ac1031f895cefb6698b4a2ededc47a832ebf1c, 'Philadelphia Phillies® Bryce Harper Base Blue 1021 Common', 'MLB-22PRI-C-B60-M-BLU'), + (0x13bac1687d6555fe22ca6b47239e5a8d65d3a3a6, 'Colorado Rockies™ Nolan Arenado Inception Base Blue 23 Uncommon', 'MLB-INC21-U-IB23-BLU'), + (0x13ca6ab1574b118f6b28768be37b503af5c98927, 'Audio PFP', 'aPFP'), + (0x13d52cfb580e6f3dcb342652626f102aaa0bf8c2, 'Philadelphia Phillies® Kyle Schwarber Championship Series Broadcast RWB 1112 Rare', 'MLB-22TNP-R-CSB5-M-RWB'), + (0x13d6bd55ab664bda245a8dcb0a364d7f22bf094d, 'Rare Comic 22 1-22 Bazooka Joe 2021 NFT', 'BZK-R-22C'), + (0x13d7876771b579c5387b05c89969d3661194b458, 'Space', 'SPACE'), + (0x13e1b4e55c2d4383b2daaf473166f5fc4c22b117, 'Los Angeles Dodgers® Chris Taylor Postseason Base White 34 Common', 'MLB-21POST-C-B34-S-WHI'), + (0x13e26e19d1930a8c43ddaabec0c204a1cf60b10a, 'New York Mets® Michael Conforto OF Base Static Gold 517 Uncommon', 'MLB-S221-U-B517-GOL'), + (0x13e38cdea28784ad56bbf5bbc769efebda5e9ae9, 'Silvan Widmer M05 Animation Black Refractor S3-23 Epic', 'BUND-21TS3-E-AS3-23-V-BLA'), + (0x13e7e0ab4a93801e6609775659478a5fa0c9b62a, 'Cleveland Guardians™ Eli Morgan Base White 217 Common', 'MLB-22S1-C-B214-S-WHI'), + (0x13f242cd2bc1d825c76d0bfe7cc4a01f4dbc5bea, 'Innermost by Brian Morris', 'Innermost'), + (0x13f9933ebe295c54801dbe31761e2b1f8fdbd55e, 'Angels® Anthony Rendon 1987 35th Anniversary Chrome T87C-72 Super Rare', 'MLB-22S1-S-1987AC54-M-CHR'), + (0x13fc1557fd94fd27c7d2e70a2aaf3c4fc6198b2f, 'Tampa Bay Rays™ Wander Franco Base White 215 Common', 'MLB-22S1-C-B212-S-WHI'), + (0x13fd88cb1769c547681d625b31eac1708c50eb46, 'Rare Comic 48 1-48 Bazooka Joe 2021 NFT', 'BZK-R-48C'), + (0x140443300b76695736e98cbce863e500ed3e6cf0, 'Toronto Blue Jays® Danny Jansen Base White 33 Common', 'MLB-22S1-C-B33-S-WHI'), + (0x140455bf1dd5d40a7f2007023e71bd4aecac9e71, 'Midnight Bladers', 'MDBD'), + (0x142074b30408236f52fc5f9833adb368e855b452, 'Moussa Diaby B04 Animation Black Refractor S4-56 Epic', 'BUND-21TS4-E-AS4-56-V-BLA'), + (0x1424835203820011f52428bbc2f0431f170583ad, 'Philadelphia Phillies® Nick Castellanos World Series Newspaper BW 1135 Common', 'MLB-22TNP-C-WSN9-M-BW'), + (0x14280a4a9fcf656a0848b281bd491bcb63d46756, 'Atlanta Braves™ Charlie Morton World Series Gold 15 Epic', 'MLB-21POST-E-WS15-M-GOL'), + (0x142f48e5d15876eca3ce2fd0a8943430e3d25808, 'Godzilla Mountainscape Traditional Art CMYK Offset 3 Uncommon', 'GDZ-RAT21-U-TA3-S-CMYK'), + (0x1433968b164dd6c0dd97b5e0318a243da09e58d8, 'Godzilla RAT Page 6 Comic Page Color 5 Rare', 'GDZ-RAT21-R-CP5-S-COL'), + (0x1433d2d6efb4d13fb95c86cdfd7d1027a54479c1, 'Philadelphia Phillies® Rafael Marchan C Base Motion Platinum 622 Epic', 'MLB-S221-E-B622-PLA'), + (0x143a095778e6f1d13cc57b0d013431e2bad36a1a, 'Milwaukee Brewers™ Keston Hiura 2B Short Print Motion White 521 Super Rare', 'MLB-S221-S-SP521-WHI'), + (0x1444d3e132e4d46997ac89e502c6508111bab31e, 'Sebastian Griesbeck SGF Animation Black Refractor S4-59 Epic', 'BUND-21TS4-E-AS4-59-V-BLA'), + (0x1448cbd276303b2d0bb41fc4d6504f3e7fbfd2f4, 'Baltimore Orioles® Jahmai Jones 2B Base Static Gold 507 Uncommon', 'MLB-S221-U-B507-GOL'), + (0x144fec37347d4aa0bc8f0b70388eb0e914a5f942, 'Meta Coins', 'MCOIN'), + (0x1456350135c704fae416b4e4aad2ca45c97f3cb0, 'Los Angeles Dodgers® Kenley Jansen P Base Motion Rainbow 347 Rare', 'MLB-S221-R-B347-RAI'), + (0x145a1f63282a5d11267fb8a15d0518cc65783971, 'Seattle Mariners™ Rafael Montero P Base Static Gold 637 Uncommon', 'MLB-S221-U-B637-GOL'), + (0x1464a510ea8fd3b0db84f5645e4738df4a487442, 'YetiSwap Summer NFT', 'YTSSNFT'), + (0x1468c8b814982f6f26356f731ab67f6df2ca4de1, 'Smol Gmer', 'Smol'), + (0x146e083b276eee02208fe3db4794e0c0fb76cb37, 'Boston Red Sox® Matt Barnes Base Vintage Stock 303 Super Rare', 'MLB-22S1-S-B299-M-VS'), + (0x1473ce26a796642aa6205f4963f39c12a1f2abe1, 'Philadelphia Phillies® Kyle Gibson Base Blue 1244 Common', 'MLB-22PRI-C-B165-M-BLU'), + (0x1476c3d94354dde2a91f4ddcf54b64266fc17225, 'Jau & Friends', 'JFS'), + (0x1476f148e1e26083afa0c70f6f4844da1f413993, 'Atlanta Braves™ Carl Edwards Jr. P Base Static White 576 Common', 'MLB-S221-C-B576-WHI'), + (0x14836f8bfd01edb1697b10edaaa2adf9194406d7, 'Borussia Dortmund Erling Haaland Top Players Gold 94 Super Rare', 'BUND-SC21-S-TP94-GLD'), + (0x148e02c50f1aaae40c87884e6d09b248cfb2bb52, 'FSV Mainz 05 Jean-Paul Boëtius Base Players Team Color 62 Static Facsimile Signature Rare', 'BUND-SC21-R-BP62-SFS-TMC'), + (0x149ab8fffa44e121e67ec000156def70043db813, 'Toronto Blue Jays® Vladimir Guerrero Jr. Facsimile Signature Glitch 300 Epic', 'MLB-22S1-E-FS23-M-GLI'), + (0x14a22295fb169461121cae21eec3dcce47fff1bd, 'Neon Abstract', 'Neeeeeon'), + (0x14a6be7e6dbfce4b5ef3395b2b66397224331116, 'Baltimore Orioles® Keegan Akin P Base Motion Platinum 562 Epic', 'MLB-S221-E-B562-PLA'), + (0x14b87717385ce346e1f6142badb9eb6eabab877c, 'Chikn-Jars', 'cJar'), + (0x14baa24ce6c6ec9880da2150f1c90fbc7e26585b, 'FC Bayern Munich Kingsley Coman Base Players Team Color 2 Static Facsimile Signature Rare', 'BUND-SC21-R-BP2-SFS-TMC'), + (0x14be7ea3426a36badad85d9af2c5ea8e90548a72, 'Anthony Modeste KOE Base Red S2-18 Uncommon', 'BUND-21TS2-U-BS2-18-S-RED'), + (0x14cd1dfc05d10812447ed49f140844feb6c78a53, 'Chicago White Sox® Liam Hendriks Base Vintage Stock 268 Super Rare', 'MLB-22S1-S-B265-M-VS'), + (0x14d120ea2acedc2171bb51d91697ef4bab5e4ddc, 'Baragon and Godzilla Base Collectible Blue 14 Common', 'GDZ-RAT21-C-B14-S-BLU'), + (0x14d249b0569248086eb6c0e24cdbc7f551e6869f, 'Non Fungible Pixels', 'NFP'), + (0x14d2c3e138c80b95fb7997bfbbeda7484abe7f9f, 'Angels® Shohei Ohtani American League Base Blue 12 Rare', 'MLB-22ASG-R-B12-M-BLU'), + (0x14e1656dd70d5ec7385dc1ab9999ea43e241b517, 'Rodan Fly-by Traditional Art Black and White 9 Uncommon', 'GDZ-RAT21-U-TA9-S-BW'), + (0x14ecd784e5727d6cf61bf36898ce23c2fd598918, 'Miami Marlins® Garrett Cooper 1B Base Static Gold 565 Uncommon', 'MLB-S221-U-B565-GOL'), + (0x14f62a2233020ff151d2dbb2f15f70748c8aa2aa, 'miscMints', 'MISC'), + (0x14ffa6f88f7522ff7ba6a10fbbf6635936ba2c19, 'Detroit Tigers® Robbie Grossman OF Base Motion Vintage Stock 509 Super Rare', 'MLB-S221-S-B509-VS'), + (0x15073928f06ab9bcc4521e87bc258ef317f946bc, 'CarTech Systems', 'CTSYS'), + (0x150bf14ecc49507cd46a3068d8c0cc3571c67663, 'New York Yankees® Harrison Bader Championship Series Newspaper BW 1106 Common', 'MLB-22TNP-C-CSN3-M-BW'), + (0x151552d6a7c971e72f131c03329549c0444b6c6a, 'Atlanta Braves™ Tucker Davidson P Base Motion Vintage Stock 423 Super Rare', 'MLB-S221-S-B423-VS'), + (0x151d85cc1a23fe859e8e17e269b925064f19d0ae, 'Seattle Mariners™ J.P. Crawford SS Base Static White 506 Common', 'MLB-S221-C-B506-WHI'), + (0x15208864acecf930b8d774a7bb65602f2b650dd8, 'Chicago White Sox® Edwin Encarnacion DH Base Static Gold 559 Uncommon', 'MLB-S221-U-B559-GOL'), + (0x1527d3f7e65e35c81f5c479099caa53c3b8cb9e8, 'Boston Red Sox® Matt Barnes P Base Static Gold 484 Uncommon', 'MLB-S221-U-B484-GOL'), + (0x15284c8395aa49b3bf391278c3010534557c23d4, 'Starnage', 'Starnage'), + (0x152da2f7b17b06b981af06d1579d6a0dab76603c, 'RaptOriginZ', 'RaptOriginZ'), + (0x1535cd17310fbbaa30f6b5741c7e40ce91fb8756, 'Chicago Cubs® Kris Bryant 3B Base Motion Rainbow 660 Rare', 'MLB-S221-R-B660-RAI'), + (0x1535cf046dcf024340be868a0c1317671e697315, 'New York Mets® Jacob deGrom 1987 35th Anniversary Wood T87-61 Common', 'MLB-22S1-C-1987A42-M-WD'), + (0x153e246543d834346f222ae8539deb1be33419a7, 'Christopher Nkunku RBL Top Players Team Color TK-05 Rare', 'BUND-22TK-R-TPTK-05-S-TMC'), + (0x153f4c352f1127180d876b59f9a4de5358059e5d, '1/1 AI Imagination', 'AIVerse'), + (0x1542693a61936074f5acad5f3629d1b4191d2ac8, 'Philadelphia Phillies® J.T. Realmuto C Base Motion Vintage Stock 611 Super Rare', 'MLB-S221-S-B611-VS'), + (0x15486d7b40349a9c6f75fd6fcddfd50129840fba, 'Diwali', 'Diwali'), + (0x154cc6329e42d5cddc1ea1b9457e56d4655feee4, 'San Diego Padres™ Wil Myers OF Base Static White 332 Common', 'MLB-S221-C-B332-WHI'), + (0x154d10c9f1579f90f48f7a61b344de150e22d82d, 'Chicago Cubs® Brailyn Marquez P 1986 Anniversary Static Team Colors 86B-45 Super Rare', 'MLB-S221-S-1986A86B-45-TMC'), + (0x155556183bd3911e16721f202d1ac0ebc06a0c15, 'Boston Red Sox® Alex Verdugo Base Pink 1065 Uncommon', 'MLB-22PRI-U-B58-M-PNK'), + (0x15564e2aae9b7ec061e38db58709ea69241ddd10, 'Pinder Record Collection', 'PRC'), + (0x157895c678c277f587774d0b35388bdccd9ccad6, 'Common Comic 42 1-42 Bazooka Joe 2021 NFT', 'BZK-C-42C'), + (0x15869a6212ec955b52be40d7e3180bfdc75820f9, 'Toronto Blue Jays® Vladimir Guerrero Jr. Base Pink 1029 Uncommon', 'MLB-22PRI-U-B128-M-PNK'), + (0x158cbd319f841787314db7a595bd6df3cf2b59b0, 'sprAId - Wall', 'WALL'), + (0x15b38279d8f721e8ff7e7bc1c41114ce3391772f, 'Dexance NFT Marketplace', 'DXNM'), + (0x15b41e7bd1573ba2b00391d8181f62ee2c4d2705, 'Gonzalo Castro DSC Motion Rainbow Refractor S4-43 Super Rare', 'BUND-21TS4-S-MS4-43-V-RAI'), + (0x15c115f72e4da34054e28fc308be7fbd4b577684, 'RACER by Airbus Helicopters', 'RACER'), + (0x15c13e9f76b96d4b515ea4c29b119e811a62bfbf, 'Cleveland Guardians™ Jose Ramirez HRD Reward Red 3 Rare', 'MLB-22ASGR-R-R3-M-RED'), + (0x15cb6c592aa085517bd45a2f48e5e1c085c7c83c, 'Kingsley Schindler KOE Base Red S4-63 Uncommon', 'BUND-21TS4-U-BS4-63-S-RED'), + (0x15d09b47d84839484e32afddd0cbdff4dc0de113, 'Chicago White Sox® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 9 Legendary', 'MLB-21S2SC-L-21S2SCR9-M-TC'), + (0x15d7e41f40c6323fd33da081f5486491d2696b4c, 'Boston Red Sox® Connor Wong Base Independence Day RWB 66 Rare', 'MLB-22S1-R-B66-M-RWB'), + (0x15d8ee12a47c2423cd82504d6a0bc9b3901c6c0e, 'Chicago White Sox® Codi Heuer Silver Signings Facsimile Signature Silver 10 Super Rare', 'MLB-INC21-S-SS10-SLV'), + (0x15e7c85846d1172eb4e3d0e47ed34dd09614a1bd, 'New York Mets® Marcus Stroman P Facsimile Signature Static Blue 549 Super Rare', 'MLB-S221-S-FS549-BLU'), + (0x15f8e4b2a46458b09550745d99a2f3ec2f4e4a36, 'CryptoPukes Base Color 3 Common', 'GPK-NFT22-C-B3-S-COL'), + (0x15f8ea3f7aa3314007f0bbcaf8057fae5da5f237, 'Mambo Names', 'MAMBONAME'), + (0x15fa425889e6c0a474bd772c2a197f04e0555d34, 'FC Koln Benno Schmitz Base Players White 66 Common', 'BUND-SC21-C-BP66-WHT'), + (0x15fb835640f73fca72e24e11aefe8754bd5ddc68, 'good boy dogs', 'GDBY'), + (0x15ffb92395a2887b7e0914d786bd284721ba45b1, 'fgh', 'fgh'), + (0x1605a3e996921f33bd3c052351e0671487f0168d, 'Uncommon Comic 76 2-28 Bazooka Joe 2021 NFT', 'BZK-U-76C'), + (0x160ec20b5db166e5ad9e1165aff80a16d3c2520f, 'Chicago White Sox® Jonathan Stiever P Short Print Motion White 528 Super Rare', 'MLB-S221-S-SP528-WHI'), + (0x161d04ac0524a0089b3111524ebad0e93d3c9b83, 'National League™ NL™ East Division Smiles Base Glitch 98 Uncommon', 'MLB-22S1-U-B97-M-GLI'), + (0x161d28b932ca629dbcf30a387c918d990abafce9, 'CoinFlip', 'CFL'), + (0x161e90943667d8e48a8079fca2cb1da58f4e2115, 'Fashion Silhouette Female Models', 'FSFM'), + (0x162275f6b71edea052823ec858ca2ecc6b158a87, 'Arizona Diamondbacks® Carson Kelly C Base Motion Rainbow 447 Rare', 'MLB-S221-R-B447-RAI'), + (0x162320fae99102e60a9087039374b29203582d97, 'National League™ 2021 Wins Leaders Base Glitch 105 Uncommon', 'MLB-22S1-U-B104-M-GLI'), + (0x16271151f8e9823aaac167f87a3da15a347cc3a9, 'The Hippos', 'THIPS'), + (0x162aff9821832d1784dd3a0acc1210b11c6744da, 'Chicago Cubs® Kris Bryant Inception Base Red 16 Rare', 'MLB-INC21-R-IB16-RED'), + (0x162e28961776e028fe6acfa354c1ec89e0ba7239, 'Houston Astros® Cristian Javier Inception Base Blue 35 Uncommon', 'MLB-INC21-U-IB35-BLU'), + (0x1631b302baccac35d18450bbb19999b914f7ca4a, 'Detroit Tigers® Victor Reyes OF Base Motion Rainbow 336 Rare', 'MLB-S221-R-B336-RAI'), + (0x16346c53ecf2c70d2059abfc547a1e5435da184b, 'Manda Base Collectible Blue 6 Common', 'GDZ-RAT21-C-B6-S-BLU'), + (0x1637c31ffd528aae3b7175a689c1c6572c72c3ef, 'Toronto Blue Jays® Julian Merryweather P Base Static Gold 581 Uncommon', 'MLB-S221-U-B581-GOL'), + (0x16437ed3d48315865173b85a81972f42b08732e4, 'Snowball Claimed Holiday Hat', 'SNOBCLAIMHOLIDAY'), + (0x16493c0a2f8171a80bc160bbdbeb8d3328b6803f, 'Street Legendz', 'STLGND'), + (0x164ef4ac4940418a4e1b70049ca5b399359ca446, 'Baltimore Orioles® Trey Mancini 1987 35th Anniversary Wood T87-36 Common', 'MLB-22S1-C-1987A27-M-WD'), + (0x1652dfd19b05415fbe30d50453da289c98bd796c, 'Queen of Halloween', 'HALLOQUEEN'), + (0x165588298647b2a5f3f0ebc5b7189201c5617dcd, 'Hertha Berlin Vladimir Darida Base Players Team Color 47 Static Facsimile Signature Rare', 'BUND-SC21-R-BP47-SFS-TMC'), + (0x16586afebff8cf670a1d4fe798c914a2a24a71c8, 'Seattle Mariners™ Kyle Lewis Inception Base Red 83 Rare', 'MLB-INC21-R-IB83-RED'), + (0x165a5a4acf1d604ee9df9723ec947d76bad5fcd5, 'San Diego Padres™ CJ Abrams Facsimile Signature Slab Gold 3077 Epic', 'MLB-22PRI-E-FS6-M-GLD'), + (0x166e9a785d13a93f5e3860bc42ec229e30ac9348, 'Seattle Mariners™ Ty France Second Place Palm Trees 2 Super Rare', 'MLB-22ASG-S-SEC2-M-PLM'), + (0x167a97e42a06f5279b1edad194b444418c6e642c, 'Super Rare Comic 78 2-30 Bazooka Joe 2021 NFT', 'BZK-S-78C'), + (0x16892f1ae2c807f2607a6c51b991b4e352214396, 'Violet Hour', 'YPN:VH'), + (0x168b013e0eff7cb980ed575a535aa9d11a67b0e7, 'New York Yankees® DJ LeMahieu Base Pink 1190 Uncommon', 'MLB-22PRI-U-B54-M-PNK'), + (0x16921eee9ea65bae558105a9604e082d3a8ced2a, 'TheCrypticWolf: Consumer Requested Art Collection', 'WOLF1'), + (0x16939893ad75943f1e13cd90d782283d8b46f937, 'Cincinnati Reds® Tyler Stephenson Gold Signings Facsimile Signature Gold 7 Epic', 'MLB-INC21-E-SS7-GLD'), + (0x16a53b070ca28fd4f89e1fa53f91a64f6b38dfc7, 'McGoblinNFT', 'AVABURGER'), + (0x16a676495ba9443c3f071d73bff92376ee7848ec, 'Grubby Goblins', 'GRUBBY'), + (0x16ac013daee7f8feca0a7fd99aeb686043fb2bca, 'San Francisco Giants® Mike Yastrzemksi Base Glitch 103 Uncommon', 'MLB-22S1-U-B102-M-GLI'), + (0x16b48d4577c43949b824c7fb2c01c2ddb2aefd45, 'Rillaz', 'RILLA'), + (0x16b8db33fb71f94aec4483c1a8ce25c41b7dc604, 'Chicago White Sox® Dylan Cease P Base Motion Platinum 435 Epic', 'MLB-S221-E-B435-PLA'), + (0x16bab3dc124da95f9b38ee45ba21994db0ec8d60, 'Houston Astros® Jose Altuve Inception Base Blue 36 Uncommon', 'MLB-INC21-U-IB36-BLU'), + (0x16bac5ec86478d9365d3a66f1c03b3c9a52a301f, 'Washington Nationals® Victor Robles OF Base Motion Vintage Stock 343 Super Rare', 'MLB-S221-S-B343-VS'), + (0x16c46260b56b7fabe11e9ca36c0e3bf529485247, 'Knights', 'KNIGHTS'), + (0x16ca8aa2a253fe3a18cef6df2af5a7a9e81ad6e5, 'Holograph Collection Edge 1', 'HLGRH'), + (0x16d127513864b9b9efb7c22fadec752d7ba4a3ef, 'New York Mets® Pete Alonso Base White 315 Common', 'MLB-22S1-C-B311-S-WHI'), + (0x16d1324a3f2d7b1430ced75a6a872f1a7709d667, 'Los Angeles Dodgers® Max Scherzer Postseason Base Red 38 Rare', 'MLB-21POST-R-B38-M-RED'), + (0x16d5bf98f67265fd10622dbc43d7efde35d5cbc1, 'Common Comic 80 2-32 Bazooka Joe 2021 NFT', 'BZK-C-80C'), + (0x16d78f6d1bedac90b60e004cfb63b37eaf849a6d, 'Boston Red Sox® Alex Verdugo Inception Base White 10 Common', 'MLB-INC21-C-IB10-WHT'), + (0x16daf9bd7b0eff0995a6505fcfb7fce7408f947f, 'Atlanta Braves™ William Contreras C Base Motion Platinum 390 Epic', 'MLB-S221-E-B390-PLA'), + (0x16dbc303c00bb17606357c2d1bd4a93d0624c3e0, 'Charlie Mulgrew DDU Base Aqua SP-17 Uncommon', 'SPFL-21SPSS-U-BSP-17-A-AQU'), + (0x16e9a6c0d1da9231345d46148c7974111806720d, 'Minnesota Twins® Luis Arraez 2B Facsimile Signature Static Red 649 Epic', 'MLB-S221-E-FS649-RED'), + (0x16ef7b07b6aa50a433050a955e2ec35bf38dc9f8, 'Generals Of Freya', 'GOF'), + (0x16f1edae2f0deb07d1e4c510effbf2744eac45e3, 'FarmerWin', 'FWIN'), + (0x16f607e020ec6c0ef9c673b5fd85b53c0dffcc70, 'Houston Astros® Yordan Alvarez Generation NOW Team Colors GN-15 Epic', 'MLB-22S1-E-GN15-M-TMC'), + (0x16fd5fb048d8239e72384865b6e597c724cf8016, 'Baltimore Orioles® Cedric Mullins Base Independence Day RWB 94 Rare', 'MLB-22S1-R-B93-M-RWB'), + (0x170184b0101c1bce3791684b3cb0d4d66b14ab16, 'Oakland Athletics™ 2021 Topps MLB Inception Set Completion Reward Team Colors 20 Epic', 'MLB-21INCSC-E-21INCSCR20-M-TC'), + (0x170b8a3c93122f1fafb41f84ab08c3901906f6cf, 'SmolSmolSmol', 'SmolSmolSmol'), + (0x172371624e90b0a54a05d7b7a0490f2f475600e4, 'Super Rare Comic 91 2-43 Bazooka Joe 2021 NFT', 'BZK-S-91C'), + (0x172543194a3d62c5947244da8a85457eb2041fb0, 'Jellykins', 'JELLYKIN'), + (0x17266d86d6774f3b677ae9e10863173306817806, 'Uncommon Comic 98 2-50 Bazooka Joe 2021 NFT', 'BZK-U-98C'), + (0x172777d86170f87251523dfc15c8ac9de97e4bef, 'Los Angeles Dodgers® Mitch White Rookie and Future Phenoms Facsimile Signature Red 37 Epic', 'MLB-INC21-E-RC37-RED'), + (0x1728e55ec29a05ecf62f8374fcdf2df4a01cb667, 'San Francisco Giants® Tommy La Stella 2B Base Static White 462 Common', 'MLB-S221-C-B462-WHI'), + (0x172e413bc520ed366ff09d5092de328ee4a31d32, 'Angels® Brandon Marsh Base Blue 1217 Common', 'MLB-22PRI-C-B133-M-BLU'), + (0x172fca74f221598b99b7713e5ccf9032d419a336, 'Milwaukee Brewers™ Christian Yelich Short Print White 288 Rare', 'MLB-22S1-R-SP58-M-WHI'), + (0x17396959ece1478986eb043a757a9af00b703909, 'Los Angeles Dodgers® Walker Buehler Inception Base White 50 Common', 'MLB-INC21-C-IB50-WHT'), + (0x173c8c36c1ba4a7e7be1ccf92b5fa53c734a7496, 'Baltimore Orioles® Alex Wells Base White 118 Common', 'MLB-22S1-C-B117-S-WHI'), + (0x174245c3753c2d1a4c58eded2d462c26bedea3b1, 'Boston Red Sox® Jarren Duran 1987 35th Anniversary Chrome T87C-81 Super Rare', 'MLB-22S1-S-1987AC62-M-CHR'), + (0x17490f6db24ff5e1c5deb74ad65fdab38fa2bfa2, 'Washington Nationals® Kyle Schwarber OF Base Motion Platinum 473 Epic', 'MLB-S221-E-B473-PLA'), + (0x1753be24ce575d2f611893f321ae4bf0f69296dd, 'Gezizade', 'GZZD'), + (0x1759d5e9952955e12f8e84e5303692343ac1cd26, 'Houston Astros® Kyle Tucker Regular Season Division Winners RWB 21 Rare', 'MLB-21POST-R-R21-M-RWB'), + (0x1760e5a13b6b73b0a54f06b78c048ecac02678c4, 'Taiwo Awoniyi FCU Club Phemons Gold S4CPH-16 Legendary', 'BUND-21TS4-L-CPHS4CPH-16-V-GOL'), + (0x17720347898f1fea5c383e0b65deb1a8f66e3960, 'Fantastical Animals', 'V'), + (0x1775d6391caf78ca614a0fa3b9e009a86359dec2, 'DSC Arminia Bielefeld Marcel Hartel Base Players Team Color 84 Uncommon', 'BUND-SC21-U-BP84-TMC'), + (0x1778f146ab9674d8f67038e865e2b282101aa2dd, 'Cleveland Guardians™ Ernie Clement Base Pink 1201 Uncommon', 'MLB-22PRI-U-B171-M-PNK'), + (0x1779310b7cdc8528c190bfb3666ef6ed986bfef6, 'Miami Marlins® Trevor Rogers Base Independence Day RWB 24 Rare', 'MLB-22S1-R-B24-M-RWB'), + (0x1783034756a1bb3d309eb376f9f903bdad292f88, 'Animal Adventures', 'AVAX'), + (0x1787ac694ffd64286a0fbe7c915d7e337398e0c4, 'Danny Blum BOC Motion Rainbow Refractor S2-20 Super Rare', 'BUND-21TS2-S-MS2-20-V-RAI'), + (0x178ff9e81036a060f10a444035b7a709fb244f90, 'MotionScape', 'MOTION'), + (0x17919901b71d3ba1db4e67556a9259f96fbae818, 'LOT-OPOLY', 'LOTO'), + (0x179d37821db5a91121f1b5964ae83ae3b7235743, 'Uncommon Comic 4 1-4 Bazooka Joe 2021 NFT', 'BZK-U-4C'), + (0x17a3a67a6d54af8fd338de2b7231733a6b125c33, 'Chicago White Sox® Luis Robert Stars of MLB Chrome Night SMLBC-6 Legendary', 'MLB-22S1-L-SMLBC6-M-NIT'), + (0x17a97395864a533cc05e39db0fc2039bea0a54bd, 'Houston Astros® Yordan Alvarez Inception Base Black 38 Legendary', 'MLB-INC21-L-IB38-BLK'), + (0x17ad69a6f4fa69617b7fb751f90c09d4ceb2edb5, 'Cleveland Guardians™ Jose Ramirez American League Base Blue 7 Rare', 'MLB-22ASG-R-B7-M-BLU'), + (0x17b02ece81ba9d88c34816e5fe6ec050e03a7f78, 'Lost Marbles AVAX', 'LMARB'), + (0x17bb274282d2fbb22b552b556b51bf4a439a4034, 'Toronto Blue Jays® Bo Bichette Base White 126 Common', 'MLB-22S1-C-B125-S-WHI'), + (0x17c96f7708da7062207cbdf7da0444f42fc72b3a, 'Miami Marlins® Jazz Chisholm Jr. Base Pink 1015 Uncommon', 'MLB-22PRI-U-B71-M-PNK'), + (0x17cf10a72fb1dbd6f40c5b82dbc385410abe29cd, 'Colorado Rockies™ Raimel Tapia OF Base Static Gold 359 Uncommon', 'MLB-S221-U-B359-GOL'), + (0x17d40d6bf6e259b5f9da5a010be9d86aa0f6081b, 'Chicago White Sox® Eloy Jimenez Rookie and Future Phenoms Facsimile Signature Blue 18 Super Rare', 'MLB-INC21-S-RC18-BLU'), + (0x17d8d651e698e2de61afd4bfb94fe08e9ffe6274, 'Ape BGAPE', 'ApV'), + (0x17dcd0fea13f2ff609c263270697b9c4f6e3909b, 'Philadelphia Phillies® Aaron Nola Facsimile Signature Gold 3061 Super Rare', 'MLB-22PRI-S-FS3-M-GLD'), + (0x17e0ec7f3b62b554435646f4cdd55099f779b14c, 'BubbleCros', 'BCs'), + (0x17e2066a0d55511dd92a68427b9e0b368c565689, 'Colors', 'CLRS'), + (0x17e6ac6fb5e0876e586dd73349d7e9fdb35f1305, 'St. Louis Cardinals® Alex Reyes Base White 47 Common', 'MLB-22S1-C-B47-S-WHI'), + (0x17eb4c4dbbf98d86180006267c93976f6a019c39, 'Chicago White Sox® Matt Foster P Base Motion Platinum 426 Epic', 'MLB-S221-E-B426-PLA'), + (0x17f12eea36f86a8c39b1287bcad3ed8eb297c9c1, 'Philadelphia Phillies® Andrew McCutchen Base Pink 1081 Uncommon', 'MLB-22PRI-U-B72-M-PNK'), + (0x17f2df16ba8cabb5b03bb9b1c6c55f6d2c4802fb, 'Rare Baseball Card 3 Pesty Batter Bazooka Joe 2021 NFT', 'BZK-R-3B'), + (0x17f937784378dd8daa449020f95dbf0b50271181, 'The Ticket', 'Ticket'), + (0x17ff47dd79b85e7761c59f5a1c8dcfc16762b8f3, 'Los Angeles Dodgers® Justin Turner Postseason Base White 35 Common', 'MLB-21POST-C-B35-S-WHI'), + (0x181b153d6c55a6cc4576ff79c795ff682a555ad0, 'PrizeBond', 'PB'), + (0x181e589bbb2fedafa02828d7210e1aa7f182e95e, 'Aarón Martín M05 Base White S4-53 Common', 'BUND-21TS4-C-BS4-53-S-WHI'), + (0x181f4b418a018175e1cac943c89285b43853edbc, 'Eggz', 'EGGZ'), + (0x18211a906038a12c0061ce58bc39feaff710905a, 'TSG Hoffenheim Diadie Samassékou Base Players Team Color 26 Static Facsimile Signature Rare', 'BUND-SC21-R-BP26-SFS-TMC'), + (0x182b93713991e142f20f0264b0410d361db93821, 'Chicago White Sox® Jimmy Lambert Rookie and Future Phenoms Facsimile Signature Blue 19 Super Rare', 'MLB-INC21-S-RC19-BLU'), + (0x182c275c158414f5f8a27a6fe30851179be58911, 'San Francisco Giants® Donovan Solano 2B Base Motion Platinum 605 Epic', 'MLB-S221-E-B605-PLA'), + (0x182dd57a4b2586ca4c64fbbc493c6f7cd256bba1, 'Glitch Photo', 'GPhoto'), + (0x182fc37918901c7f5b352e897f78add03f34266e, 'Konstantinos Mavropanos VFB Color Splash Team Color TK-63 Super Rare', 'BUND-22TK-S-CSTK-63-S-TMC'), + (0x18339ef9f561733aa64057d8cf592f8932ef8bac, 'UC22-MetaverseExperience', 'PDI2022'), + (0x1835bf2ca94638c207c8b64dd72e75950e15aac4, 'RB Leipzig Christopher Nkunku Base Players Gold 11 Rare', 'BUND-SC21-R-BP11-GLD'), + (0x1858c8ea7d8d1acfac822ab2dc6750f81985ba84, 'Washington Nationals® Riley Adams Base Glitch 158 Uncommon', 'MLB-22S1-U-B157-M-GLI'), + (0x186205667aa7704f1e762ffa889f5ccd83e5fe38, 'Detroit Tigers® Victor Reyes OF Base Static White 336 Common', 'MLB-S221-C-B336-WHI'), + (0x1865bebce01d68711ccd938fe55b9f5d6fbd728d, 'New York Mets® Andres Gimenez Rookie and Future Phenoms Facsimile Signature Red 53 Epic', 'MLB-INC21-E-RC53-RED'), + (0x1868e0591e2a77f4c0d8b2170726e36cb0b58b9b, 'Rare Comic 80 2-32 Bazooka Joe 2021 NFT', 'BZK-R-80C'), + (0x1869f12d1eb4a1240ddcb259b0b155d935ff2122, 'Ouroboros Club', 'OUROBOROS-CLUB'), + (0x186d820bafb877e41b5ec0a3412b47111e635254, 'Pittsburgh Pirates® Gregory Polanco OF Base Motion Rainbow 412 Rare', 'MLB-S221-R-B412-RAI'), + (0x187507fdda129a49e47cff0a184e9d9dd4bf8e76, 'Chicago Cubs® Willson Contreras National League Base White 1 Uncommon', 'MLB-22ASG-U-B1-M-WHI'), + (0x188368a53cbd7655577f695c70e2f39aa616aaa5, 'Chicago White Sox® Luis Robert Base White 107 Common', 'MLB-22S1-C-B106-S-WHI'), + (0x18869a293a37495c30fd07f705f84bc8595b1414, 'AVAX LOTTO 1', 'AL1'), + (0x1889886b5cdfd67dd1596f1916ae234de261c19c, 'AVA Lamp Animation Color 8 Rare', 'GPK-NFT22-R-A8-A-COL'), + (0x18929904708004ce0267dd77a50e962637815c6f, 'SmolBones', 'SMBN'), + (0x18a38e6df693aa78c8e69a2fddad515d28fbea4b, 'Washington Nationals® Gerardo Parra Base Independence Day RWB 220 Rare', 'MLB-22S1-R-B217-M-RWB'), + (0x18aa25fc43670ffcc067411464cfb5a24328e937, 'XANA Treasure Box : September 2022', 'XTB'), + (0x18b6b2a974911c228876f7070cd321267a9ecda3, 'Karim Adeyemi DOR Color Splash White TK-56 Uncommon', 'BUND-22TK-U-CSTK-56-S-WHI'), + (0x18cfff58a5c6d9e3d57856d516017f855f469ac1, 'Oakland Athletics™ Jesus Luzardo Rookie and Future Phenoms Facsimile Signature Blue 58 Super Rare', 'MLB-INC21-S-RC58-BLU'), + (0x18e0754c90e275e83f69c99d6e6b0f2b59c82379, 'Uncommon Comic 24 1-24 Bazooka Joe 2021 NFT', 'BZK-U-24C'), + (0x18e0bfb64f37a9d73948bc2fa201f0b0f4de02a6, 'Holograph Collection', 'HLGRH'), + (0x18e35829624ee70fdca984fd098718ddc69bc885, 'Atlanta Braves™ Ronald Acuña Jr. Base Independence Day RWB 200 Rare', 'MLB-22S1-R-B199-M-RWB'), + (0x18ffec43f486364c7b8212847fbb16d0ddc0ddeb, 'Fight Night Poster #7 Lobby Card Black and White 2 Super Rare', 'GDZ-GVG22-S-RLC2-S-BW'), + (0x19189625c001e5fb867c84bef1ce2eb13d72b3b0, 'San Diego Padres™ Eric Hosmer Base Vintage Stock 272 Super Rare', 'MLB-22S1-S-B269-M-VS'), + (0x192748d4177b96294acebcc177a8b9a608775dd0, 'New York Mets® James McCann Base Glitch 256 Uncommon', 'MLB-22S1-U-B253-M-GLI'), + (0x192fb007e15f2e55b4b449f188e56f78cbf48c4c, 'Chicago White Sox® Eloy Jimenez Inception Base Red 26 Rare', 'MLB-INC21-R-IB26-RED'), + (0x193eb4b0033b44e896a7bca92aabbe9cd20bd029, 'Boston Red Sox® J.D. Martinez Base Glitch 182 Uncommon', 'MLB-22S1-U-B181-M-GLI'), + (0x1947799562b2af169727df0f8c4de522a6d022b5, 'St. Louis Cardinals® Nolan Arenado Base Independence Day RWB 87 Rare', 'MLB-22S1-R-B87-M-RWB'), + (0x19529de42b41b0649415d5dc675d73ffceb951b8, 'Philadelphia Phillies® Bryce Harper First Place Skyline 13 Legendary', 'MLB-22ASG-L-FIR13-M-SKY'), + (0x19532d669f529e4e2138b28248fdfbf7c8a09061, 'DSC Arminia Bielefeld Marcel Hartel Base Players White 84 Common', 'BUND-SC21-C-BP84-WHT'), + (0x19665365fe8df47a829e6939f61b3d58de765bd0, 'Cleveland Indians® Austin Hedges C Base Motion Platinum 572 Epic', 'MLB-S221-E-B572-PLA'), + (0x19726cfc50302943acc21f4d5f06fad0a4f54339, 'Houston Astros® Justin Verlander Base Blue 1012 Common', 'MLB-22PRI-C-B115-M-BLU'), + (0x197b4631b69cef30b0d9340b70e22b1372964eba, 'Los Angeles Dodgers® Trea Turner Wild Card Contenders Blue 21 Common', 'MLB-21POST-C-W21-M-BLU'), + (0x199508c5a71cfe9bfe082b05406f7910433d9d2f, 'Baltimore Orioles® Ryan Mountcastle Gold Signings Facsimile Signature Gold 3 Epic', 'MLB-INC21-E-SS3-GLD'), + (0x19990535abd85f401ad454668ea06c20e7926c0b, 'Lucas Tousart BSC Top Players Black TK-21 Common', 'BUND-22TK-C-TPTK-21-S-BLA'), + (0x199eb1a264254070f4d1346a92286616a02fa9b8, 'Hertha Berlin BSC Insert Pennant Team Color S3P-07 Uncommon', 'BUND-21TS3-U-IS3P-07-A-TMC'), + (0x199fd9fdafd0d1f6da6c704edd3b37d9457ced48, 'Chicago White Sox® Jose Abreu Base Pink 1067 Uncommon', 'MLB-22PRI-U-B41-M-PNK'), + (0x19a674956d46921ca886ded53f97f2a311e82bae, 'Liam Kelly MOT Top Saves Purple SPTS-04 Rare', 'SPFL-21SPSS-R-TSSPTS-04-V-PUR'), + (0x19b025e6546d337d66413e195f81b8cff733ea02, 'Minnesota Twins® Team Cube 2.0 Team Colors 25 Legendary', 'MLB-22S1-L-TC225-M-TMC'), + (0x19b9e6c2b8c409a02eebc4c4c6e9e77c9318ebbf, 'Cincinnati Reds® Mike Moustakas Base Vintage Stock 60 Super Rare', 'MLB-22S1-S-B60-M-VS'), + (0x19cb6749340365ec1945fcd008776482c9a8fb4d, 'Cleveland Indians® Jose Ramirez 3B Base Motion Rainbow 360 Rare', 'MLB-S221-R-B360-RAI'), + (0x19cc9f747412e3e0ef14edcec46a5460b52cdece, 'Chicago Cubs® Craig Kimbrel P Base Motion Rainbow 579 Rare', 'MLB-S221-R-B579-RAI'), + (0x19cead498b252c5feab8d7c31ea86c333a521ca6, 'Boston Red Sox® Alex Verdugo Postseason Base Navy 69 Uncommon', 'MLB-21POST-U-B69-M-NVY'), + (0x19d04474673273068a74cf5e4c0d628b35ea17b4, 'Los Angeles Dodgers® David Price P Base Motion Rainbow 416 Rare', 'MLB-S221-R-B416-RAI'), + (0x19d9b0349ca77613408590e39e70cdc1fe0f0428, 'La Pucie Perdu', 'LPP'), + (0x19dba1bbafc076dab42fd215d0bd9b18c01ed54b, 'Topps Series Challenge Reward Pack 2 - 21-22 Bundesliga NFT Cards', 'BUND-21TSC-PACK2-R'), + (0x19eecbd94c5dd6796b0b1bffd030c72101abd21b, 'RoyaltyX', 'RoyaltyX'), + (0x19efd4932bab9fac27e21d8f6bb0438a403a1b4e, 'HUGS', 'HUGS'), + (0x19f6c0950ac12a9accc28c8dcb68064d02c2ee1e, 'Uncommon Comic 80 2-32 Bazooka Joe 2021 NFT', 'BZK-U-80C'), + (0x19f9ed4b2b4277d7c1742fe1921484a899385986, 'Milwaukee Brewers™ Devin Williams Inception Base Blue 55 Uncommon', 'MLB-INC21-U-IB55-BLU'), + (0x19fa7293016d75daeae0b7ad5d3861facb01f311, 'New York Mets® Edwin Diaz Base White 267 Common', 'MLB-22S1-C-B264-S-WHI'), + (0x19ff40d32231aa7dc13ed7eed880bac755ad11ea, 'Borussia Monchengladbach Lars Stindl Top Players Gold 102 Super Rare', 'BUND-SC21-S-TP102-GLD'), + (0x1a044cbca7b05743d06ef3ef3ed4fe60f9adaf1e, 'Rare Comic 18 1-18 Bazooka Joe 2021 NFT', 'BZK-R-18C'), + (0x1a06325628d3f8758773d57fa02a9385825883c0, 'Philadelphia Phillies® Zach Eflin Base Glitch 179 Uncommon', 'MLB-22S1-U-B178-M-GLI'), + (0x1a06efa002e0312a1a24dc6d0a94b914478403e1, 'LOONEY BnW', 'LBnW'), + (0x1a07bb88ddbc2cce87a86b93691e184008dfe0ce, 'Houston Astros® Jose Siri Base Blue 1318 Common', 'MLB-22PRI-C-B186-M-BLU'), + (0x1a08411144968353009de3a92102df7fc3ddb1dd, 'Cincinnati Reds® Jesse Winker 1987 35th Anniversary Chrome T87C-59 Super Rare', 'MLB-22S1-S-1987AC44-M-CHR'), + (0x1a0a9864e6607e163bb41f831a81d518dfe1cdce, 'OmniChicks', 'OCC'), + (0x1a0b5d1bb2e85df8d1d9471f8531ff03fc9c6d22, 'Angels® Shohei Ohtani AL MVP Reward Gold Super Rare', 'MLB-21REWARD-S-ALMVP1-M-GOLD'), + (0x1a0d2198c2cee085a46a136cbcf4f0f67f768e94, 'San Diego Padres™ CJ Abrams Facsimile Signature Gold 3077 Super Rare', 'MLB-22PRI-S-FS6-M-GLD'), + (0x1a0d9363e8c892310fae0254d1f608a17d2c6785, 'Uncommon Comic 60 2-12 Bazooka Joe 2021 NFT', 'BZK-U-60C'), + (0x1a19b2177b6d192c963de0aa06873c17e6b59f6a, 'Luke McCowan DUD Base White SP-33 Common', 'SPFL-21SPSS-C-BSP-33-A-WHI'), + (0x1a25f726720aa11bdcbdb21b9bd9c9a17c027829, 'Assetha', 'AST'), + (0x1a263f99509104beb64459fdd284ce700180fd4e, '2022 Topps Pristine Baseball NFT Collection Challenge Rewards 9-Pack', 'MLB-22PRI-REWARD-PACK'), + (0x1a294319c29aa087c5572303d202bb88c43131f3, 'Revisited', 'REVIS'), + (0x1a3230104a747857f727101da4059b166927a287, 'Joško Gvardiol RBL Base Red S3-22 Uncommon', 'BUND-21TS3-U-BS3-22-S-RED'), + (0x1a327d53d841a418180ebd299277fad22e2a43b9, 'One Token', '1TKN'), + (0x1a3476885d785875b63181ac993d8a679329dc47, 'Boston Red Sox® Jarren Duran 2022 Inception Gold 2 Legendary', 'MLB-22LEG-L-22INC2-M-GLD'), + (0x1a36db09ef74aca67f4cf42791b330a7a60997c9, 'Real Goat Mafia', 'GOAT'), + (0x1a3a588ce38bedb5d3c0c4517025bac335dccd26, 'Texas Rangers® Sherten Apostel 1B/3B Base Motion Platinum 358 Epic', 'MLB-S221-E-B358-PLA'), + (0x1a3d3a1f87dc2b61b2b981c760115535ce98d609, 'FC Union Berlin Christopher Lenz Base Players Team Color 51 Uncommon', 'BUND-SC21-U-BP51-TMC'), + (0x1a4f9507ec98e263492d5509a19563541e916ac3, 'Miami Marlins® Elieser Hernandez Base Independence Day RWB 9 Rare', 'MLB-22S1-R-B9-M-RWB'), + (0x1a50009624105270629ec579f328a628ba324f52, 'Atlanta Braves™ Eddie Rosario Base Vintage Stock 153 Super Rare', 'MLB-22S1-S-B152-M-VS'), + (0x1a573844e02d0f0ef648a80040586581b4f60d59, 'Houston Astros® Jose Altuve 2B Base Motion Vintage Stock 432 Super Rare', 'MLB-S221-S-B432-VS'), + (0x1a57b3cadda43264d94d90c7aa71831b3b5bb6a6, 'Oakland Athletics™ Base White 210 Common', 'MLB-22S1-C-B208-S-WHI'), + (0x1a62ae204979e9f963913212574ed01606b1aad4, 'Uncommon Comic 62 2-14 Bazooka Joe 2021 NFT', 'BZK-U-62C'), + (0x1a6605132baf4597f4b7030b4c4bec73891cd7ef, 'Milwaukee Brewers™ Keston Hiura Rookie and Future Phenoms Facsimile Signature Blue 48 Super Rare', 'MLB-INC21-S-RC48-BLU'), + (0x1a6fb9f0a90d151ea865664c211d87f1c0e09e22, 'Baltimore Orioles® Cedric Mullins Base Blue 1064 Common', 'MLB-22PRI-C-B24-M-BLU'), + (0x1a733d0b00da0e670b318812b4a8450d41a97162, 'Washington Nationals® Victor Robles OF Base Static Gold 343 Uncommon', 'MLB-S221-U-B343-GOL'), + (0x1a76e681c189f011ed51fd7a6b87082d2958218f, 'National League™ Freddie Freeman Base Blue 1288 Common', 'MLB-22PRI-C-B216-M-BLU'), + (0x1a77137fb3c121166d0505f962c267fcc92e1894, 'New York Yankees® Aaron Judge Pure Power Slab White 2115 Epic', 'MLB-22PRI-E-PP10-M-WHI'), + (0x1a81b23347871729a2199cfad11570cbc75dc08f, 'Tampa Bay Rays™ Brandon Lowe Regular Season Division Winners RWB 1 Rare', 'MLB-21POST-R-R1-M-RWB'), + (0x1a81c21baa4e0493d00087e5a1ec1b8b9a3ec991, 'New York Yankees® Corey Kluber P Base Motion Vintage Stock 567 Super Rare', 'MLB-S221-S-B567-VS'), + (0x1a828390d2cebcb79f49d4ca22cc7b557a61bf2d, 'Chicago White Sox® Craig Kimbrel Base Vintage Stock 2 Super Rare', 'MLB-22S1-S-B2-M-VS'), + (0x1a8460ad626d1e63535c49bd6fe5f03d35b83a47, 'Patrik Schick B04 Top Players Black TK-08 Common', 'BUND-22TK-C-TPTK-08-S-BLA'), + (0x1a8f0b32ff26ad2b9df56a310f51b43bbf542832, 'Atlanta Braves™ Mark Melancon P Base Motion Vintage Stock 574 Super Rare', 'MLB-S221-S-B574-VS'), + (0x1a91d93774521c8c7f7f82d1ea11d41e720eda45, 'Dreams and Nightmares', 'dan'), + (0x1a96191bd388d5c0468e5205e80c96c95804b877, 'OG Ape Island Season 1', 'OGAPE1'), + (0x1a9c9b4c3aea6434ec20c41b90a73a0ef9dd9b51, 'Los Angeles Dodgers® Clayton Kershaw Base Pink 1074 Uncommon', 'MLB-22PRI-U-B111-M-PNK'), + (0x1aa68239c53f0dc1de9ff6a64cf93b7becd708f7, 'Philadelphia Phillies® Bryce Harper Super Short Print White 250 Super Rare', 'MLB-22S1-S-SSP11-M-WHI'), + (0x1aaa951fb7f7b550a58bf7473b3b9d9bc7e2d1ae, 'Tampa Bay Rays™ Austin Meadows Base Independence Day RWB 152 Rare', 'MLB-22S1-R-B151-M-RWB'), + (0x1aad54be5d87ed6620bbbbc6a5d211b16cd7b596, 'Tampa Bay Rays™ Randy Arozarena Base Independence Day RWB 196 Rare', 'MLB-22S1-R-B195-M-RWB'), + (0x1aafc9c2aa4605a0982bdbb77163628813a284a8, 'Alphonso Davies BAY Ascendent Blue TK-37 Super Rare', 'BUND-22TK-S-ASCTK-37-S-BLU'), + (0x1ab936683c5fff62c51c4624c13485641b3feb8a, 'Atlanta Braves™ Austin Riley Base Glitch 115 Uncommon', 'MLB-22S1-U-B114-M-GLI'), + (0x1ac54b333a5d4c144d99d39d3644bf4456484c88, 'Kaiju City Party Monster Collage Color 1 Legendary', 'GDZ-RAT21-L-RMC1-A-COL'), + (0x1ac8626fb6a38fd492d3aa05d60c4fd93b71ff4d, 'Super Rare Comic 27 1-27 Bazooka Joe 2021 NFT', 'BZK-S-27C'), + (0x1ace04fcf85daabc79b93cf2223bb7e922876127, 'Topps Series 3 - 21-22 Bundesliga NFT Card Pack', 'BUND-21TS3-PACK-S3'), + (0x1ad1607817c6d4cc7d4d2b09a4579313d312b18c, 'Avax Dinos Honorary', 'AVXDNSHNRY'), + (0x1ad404d36c00bbbed807358d4917f021536991f0, 'BEEG ART', 'BA'), + (0x1adec535035c0e045b43e331a906b3bf4d999a88, 'Fatcat', 'FATCAT'), + (0x1ae85062f4a4f63c1e681d803860592eb58e626c, 'San Diego Padres™ Tommy Pham OF Base Static Gold 399 Uncommon', 'MLB-S221-U-B399-GOL'), + (0x1aea9ea82ea9f337cb34a0739d2050ac379cf0e8, 'OzoneNFT', 'OZONENFT'), + (0x1af67aea42f01a3905f9c505b48c13e15481794a, 'Philadelphia Phillies® Zach Eflin P Base Motion Vintage Stock 460 Super Rare', 'MLB-S221-S-B460-VS'), + (0x1afa30ee3fabac0127235b97bd37e0a6a87ac577, 'Minnesota Twins® John Gant Base Independence Day RWB 280 Rare', 'MLB-22S1-R-B277-M-RWB'), + (0x1afd4f24fe96033f5fa173717b40a515ad2415a1, 'Angels® Mike Trout Pure Power Slab White 2101 Epic', 'MLB-22PRI-E-PP1-M-WHI'), + (0x1afe66144096d9aef30e60b784547ea97751f5e9, 'Common Comic 83 2-35 Bazooka Joe 2021 NFT', 'BZK-C-83C'), + (0x1b05227ba6f61126a7bd4ee91b432fab7bf867b4, 'AI Creations', 'AIC'), + (0x1b1262bf2177dabb0100baf36b799fcceb72cc13, 'Miami Marlins® Sixto Sanchez Base Blue 1045 Common', 'MLB-22PRI-C-B40-M-BLU'), + (0x1b152c63a3ba4ddaefa1b4ab0b534d6029ddc940, 'New York Mets® David Peterson Silver Signings Facsimile Signature Silver 29 Super Rare', 'MLB-INC21-S-SS29-SLV'), + (0x1b17c3fbad51f59c217732d5b14529519a656cce, 'Philadelphia Phillies® Base Motion Rainbow 428 Rare', 'MLB-S221-R-B428-RAI'), + (0x1b1bbd99fbad34d8c572a588ab1e1904c1bdd269, 'LUKU', 'LUKU'), + (0x1b21073cfd81e288e3a0a39a658952fc7b06520c, 'American League™ Slugger Reunion Base Glitch 329 Uncommon', 'MLB-22S1-U-B325-M-GLI'), + (0x1b24ba89695507a0f83a58badfcf3e212c74c507, 'New York Yankees® Jose Trevino Second Place Beach 1 Epic', 'MLB-22ASG-E-SEC1-M-BCH'), + (0x1b2c7836a9557863a5bcaeca67710883dacae692, 'Pittsburgh Pirates® Ke''Bryan Hayes 3B Base Motion Vintage Stock 644 Super Rare', 'MLB-S221-S-B644-VS'), + (0x1b2cea450ed5e7ceed2313bf482155413d572870, 'Tampa Bay Rays™ Randy Arozarena Regular Season Division Winners RWB 2 Rare', 'MLB-21POST-R-R2-M-RWB'), + (0x1b2d730f49929f0062edad502fb85bce870c7cf5, 'Cosmo Cadets', 'Cadet'), + (0x1b3f1a86287fb3fda9fe4a205304544ea76465d0, 'Boston Red Sox® Connor Wong Base White 66 Common', 'MLB-22S1-C-B66-S-WHI'), + (0x1b3f3afe62c1044d3584910bcc2c185b39222464, 'San Francisco Giants® Team Cube 2.0 Team Colors 15 Legendary', 'MLB-22S1-L-TC215-M-TMC'), + (0x1b45ffe62304c5bf6ecc0b9c0a04f7b28265c7eb, 'CryptoMonkey Empire Guild Banners', 'CMEGB'), + (0x1b487e3869f30a81381b2370854366713f62f35a, 'New York Yankees® Andrew Heaney Base Glitch 287 Uncommon', 'MLB-22S1-U-B284-M-GLI'), + (0x1b4f6c648b25fec27dc83ce68f8721b48ad599f3, 'John Souttar HEA Top Plays Purple SPTPL-20 Rare', 'SPFL-21SPSS-R-TPLSPTPL-20-V-PUR'), + (0x1b562063c6ac01319ad5768603036ef1d21a41a1, 'Avax KuzaPets', 'KZP'), + (0x1b58dce169ed5beb5960d2aaa571fc630671c32d, 'Houston Astros® Carlos Correa Championship Series Silver 10 Epic', 'MLB-21POST-E-CS10-M-SIL'), + (0x1b618a3c3918e532409e0e449d265cd7207d0e7f, 'AVA Lamp Animation Facsimile Signature Color 8 Super Rare', 'GPK-NFT22-S-AFS8-A-COL'), + (0x1b63f92f338a313934834533df29107a1178b496, 'Xaver Schlager RBL Color Splash White TK-57 Uncommon', 'BUND-22TK-U-CSTK-57-S-WHI'), + (0x1b676534f9575881ff573ddb411badcf0e1e7136, 'Cash Cows', 'MOOOOO'), + (0x1b7966315ef0259de890f38f1bdb95acc03cacdd, 'Crabada', 'Crabada'), + (0x1b7b6c3807ad9daf2ee4954469203c56981438d2, 'Atlanta Braves™ Austin Riley Base Blue 1179 Common', 'MLB-22PRI-C-B7-M-BLU'), + (0x1b7e4b4f90f8eb8fd90790233b90b19d05ebf20f, 'Airdrop Angel Event Exclusive Animated Facsimile Signature Cyan 14 Super Rare', 'GPK-NFT22-S-AFSE14-A-CYN'), + (0x1b8907692be3f03eec71608de5a0fefa0f75fe40, 'Stevan Jovetić BSC Base White S3-30 Common', 'BUND-21TS3-C-BS3-30-S-WHI'), + (0x1b899c420c73c3dc82f7365c9fe2f981ff16259a, 'Cleveland Indians® Aaron Civale Rookie and Future Phenoms Facsimile Signature Blue 12 Super Rare', 'MLB-INC21-S-RC12-BLU'), + (0x1b8e5e1c935aa4a7c3e2f26ffc25f18f96a695b1, 'Los Angeles Dodgers® Will Smith Rookie and Future Phenoms Facsimile Signature Red 38 Epic', 'MLB-INC21-E-RC38-RED'), + (0x1b98fa97e677e7ccd492d17bae9ab28cad788d3e, 'Seattle Mariners™ Shed Long 2B/OF Base Static White 345 Common', 'MLB-S221-C-B345-WHI'), + (0x1b990b3c6dd8e0cf3feedc66f7cd3a2a3bcf0f58, 'San Francisco Giants® Buster Posey Division Series Bronze 36 Super Rare', 'MLB-21POST-S-D36-M-BRO'), + (0x1b9d07922ffac03a84b7e4ee1ca5b0b34b52e5cc, 'New York Yankees® Anthony Rizzo Postseason Base Navy 78 Uncommon', 'MLB-21POST-U-B78-M-NVY'), + (0x1b9f75428036e7f372d166de88e61d94dcd31367, 'Pittsburgh Pirates® Ke''Bryan Hayes Inception Base Blue 78 Uncommon', 'MLB-INC21-U-IB78-BLU'), + (0x1ba7f1338ae67aee1e2b33c9105af0e67899d125, 'Pittsburgh Pirates® Ke''Bryan Hayes Rookie and Future Phenoms Facsimile Signature White 65 Rare', 'MLB-INC21-R-RC65-WHT'), + (0x1bb332c202722207529583c42212df1c482c18bc, 'Chicago White Sox® Tim Anderson Inception Base Blue 29 Uncommon', 'MLB-INC21-U-IB29-BLU'), + (0x1bc48b78e3cb54da1186db740370949e3fb9c300, 'Kansas City Royals® Mike Minor Base Vintage Stock 155 Super Rare', 'MLB-22S1-S-B154-M-VS'), + (0x1bc6e8c1d3da8c615b9da6868819aac332d90aea, 'Spaghets', 'Spaghetti'), + (0x1bc72fd855dbb89a3778cf01ae1c2ebe6c5ffd77, 'Atlanta Braves™ Adam Duvall National League Base Golden 17 Super Rare', 'MLB-22ASG-S-B17-M-GLD'), + (0x1bcbcd94d4684c5ee66cf6da3c490ebaca6e3614, 'Developer Dale Animation Color 9 Rare', 'GPK-NFT22-R-A9-A-COL'), + (0x1bcc7af2c5ba53f8c8fddc70e9cd438abf19b07c, 'Hertha Berlin Sami Khedira Base Players Gold 50 Rare', 'BUND-SC21-R-BP50-GLD'), + (0x1bd43cb61f3f33e9fb3c1519ecae5813577db54d, 'Kansas City Royals® Brady Singer Rookie and Future Phenoms Facsimile Signature White 31 Rare', 'MLB-INC21-R-RC31-WHT'), + (0x1be21444944c8896bdce4a9e06a315b4856b7215, 'Pittsburgh Pirates® Hoy Park Base Pink 1218 Uncommon', 'MLB-22PRI-U-B155-M-PNK'), + (0x1be299b8ece60c26a60c75cacb1a9b40cb65a67d, 'Gnomes Town', 'GTW'), + (0x1be45d40aae8a954eeb854e4d53409ce5e0e0e43, 'Atlanta Braves™ Adam Duvall OF Base Motion Platinum 601 Epic', 'MLB-S221-E-B601-PLA'), + (0x1be914615a261ed14bd3ba4213343c9f15e94332, 'Glitch Bitch', 'GB'), + (0x1bee500af712ce9e39188931a88e89e1455fb56c, 'FSV Mainz 05 Karim Onisiwo Base Players White 64 Common', 'BUND-SC21-C-BP64-WHT'), + (0x1bf01f718a528a374ee88b8cce69229bef795d1a, 'Arizona Diamondbacks® Andy Young 2B Base Static White 499 Common', 'MLB-S221-C-B499-WHI'), + (0x1bf056104851323c088cbc06ac524e7e9bea28a6, 'Vampires', 'Vampires'), + (0x1bf0ae625e2fd50bddb3d010c9d74df53df5ade2, 'Jamie Leweling SGF Club Phemons Gold S4CPH-10 Legendary', 'BUND-21TS4-L-CPHS4CPH-10-V-GOL'), + (0x1bf6e7adc2f17c6495b08e3b40b8177466871162, 'FC Schalke 04 Bastian Oczipka Base Players Gold 56 Rare', 'BUND-SC21-R-BP56-GLD'), + (0x1bfa4db1f8c1bef473888eacfbe314cb28537a7c, 'Jude Bellingham DOR Top Players Facsimile Signature Team Color TK-04 Epic', 'BUND-22TK-E-TPTK-04-S-TMC'), + (0x1bfd46bec23c7dd9d00d2ee1123cdfcec069dcca, 'Colorado Rockies™ Colton Welker Base Blue 1314 Common', 'MLB-22PRI-C-B90-M-BLU'), + (0x1bff46f6b07b8a3a2e014b69d31b947af62ba84a, 'Blair Spittal RSC Base White SP-35 Common', 'SPFL-21SPSS-C-BSP-35-A-WHI'), + (0x1c05819e01141d0669feed7b87c4d260dce6d6ee, 'Kool Camels', 'KOOL'), + (0x1c075db706e946aeefce1fb2756c940a49af78c0, 'SV Werder Bremen Niklas Füllkrug Base Players White 78 Common', 'BUND-SC21-C-BP78-WHT'), + (0x1c09d20aa2ad3c61aa108425ba67625e25cb4baa, 'Seattle Mariners™ Jake Fraley OF Base Motion Platinum 402 Epic', 'MLB-S221-E-B402-PLA'), + (0x1c0e444bfb85ff10035e296c3f9f64b823244b70, 'Cleveland Indians® Cleveland Indians® Base Static White 459 Common', 'MLB-S221-C-B459-WHI'), + (0x1c140f952d7fbf2d7e086886a5ca970b3abb6e61, 'Common Comic 99 2-51 Bazooka Joe 2021 NFT', 'BZK-C-99C'), + (0x1c160c1b92086df26de1ce3d7416bcceb827e3d3, 'New York Yankees® James Paxton P Base Static Gold 542 Uncommon', 'MLB-S221-U-B542-GOL'), + (0x1c1715c15f813a5cfb897885b4286af435e29339, 'AvaxMugs', 'AMUG'), + (0x1c3325de2a230a5a31e0b29063b3b699029a0033, 'Ai Whisky Barrels', 'AWB'), + (0x1c4a706abeb288b39b006605ca144aac9a5ec907, 'FSV Mainz 05 Karim Onisiwo Base Players Gold 64 Rare', 'BUND-SC21-R-BP64-GLD'), + (0x1c5a1971a231bdd1ab6a8b2c159187a1f056474c, 'PDISustainabilitySolutions', 'PDI2022'), + (0x1c5c56bced93927d8f3ae7a4d682f45b74bbf202, 'Caishen Gold WL', 'CGWL'), + (0x1c6a78838fa860834f6853bb6564a9efa1cf5702, 'New York Mets® Dellin Betances P Base Static Gold 385 Uncommon', 'MLB-S221-U-B385-GOL'), + (0x1c737bfdb195484587943cb1ae6e4464b6bf3e4e, 'Grischa Prömel FCU Base Red S4-40 Uncommon', 'BUND-21TS4-U-BS4-40-S-RED'), + (0x1c7aff78646c5567b20706b0d39c43fe1567a22a, 'Welcome to Joepegs', 'JOE'), + (0x1c7d08f6002de170eebb9eefc120f5b5f5112645, 'Sport-Club Freiburg Dominique Heintz Base Players Gold 37 Rare', 'BUND-SC21-R-BP37-GLD'), + (0x1c7edf4881a13edc7ef712ccded7d682f5484c5f, 'San Francisco Giants® Kris Bryant Base Pink 1006 Uncommon', 'MLB-22PRI-U-B14-M-PNK'), + (0x1c80aa1b60b62cbb68f2a85afd77b8d837615ea4, 'Washington Nationals® Josiah Gray 1987 35th Anniversary Chrome T87C-55 Super Rare', 'MLB-22S1-S-1987AC41-M-CHR'), + (0x1c87beb7a113ed8532289cdd8e32e05cbfda064d, 'Toronto Blue Jays® Tom Hatch P Base Motion Vintage Stock 556 Super Rare', 'MLB-S221-S-B556-VS'), + (0x1c886e34d260237de9effe04ae2248320dc50309, 'Lucas Tousart BSC Top Players Team Color TK-21 Rare', 'BUND-22TK-R-TPTK-21-S-TMC'), + (0x1c8c056daa799bfdd1595e185cc8592aebd6feaa, 'San Francisco Giants® Evan Longoria Postseason Base White 29 Common', 'MLB-21POST-C-B29-S-WHI'), + (0x1c901406195247142252ae68a09a6b060cb3121d, 'Houston Astros® Jeremy Peña Divison Series Newspaper BW 1084 Common', 'MLB-22TNP-C-DSN2-M-BW'), + (0x1c92bf8a4178c3b11edefbd49d876de031c6198a, 'Tampa Bay Rays™ Austin Meadows Rookie and Future Phenoms Facsimile Signature Black 72 Legendary', 'MLB-INC21-L-RC72-BLK'), + (0x1c94485f8fe1c295b0aece1c85f9345bd6527d8e, 'Atlanta Braves™ Jorge Soler World Series MVP Reward Blue Rare', 'MLB-21REWARD-R-WSMVP1-M-BLUE'), + (0x1cad7de12cbecf3a891e1d9a8cc582fa431e5ffb, 'Texas Rangers® Khris Davis DH Base Static White 584 Common', 'MLB-S221-C-B584-WHI'), + (0x1cb6ab46fcf09b8a08a2e8321e99d734e4432fcb, 'Cleveland Indians® Zach Plesac P Base Static Gold 403 Uncommon', 'MLB-S221-U-B403-GOL'), + (0x1cb6f60346d8a692423ca1cdf073da309caf0eec, 'Chicago White Sox® Base Independence Day RWB 255 Rare', 'MLB-22S1-R-B252-M-RWB'), + (0x1cb704be07d9efaad0981dd2af0a5b127efc5137, 'Volcanic Eruption Event Exclusive Comic Cover Yellow 3 Epic', 'GDZ-RAT21-E-CCE3-A-YEL'), + (0x1cbe9789c3ada098d9d0a99fd67d79a4b2319f1b, 'Atlanta Braves™ Topps NOW White 1013 Rare', 'MLB-21NOW-R-TN1013-WHI'), + (0x1ccc84c574c3b95ef6aca319aef77bfd0cb340b2, 'Washington Nationals® Patrick Corbin Facsimile Signature Gold 3046 Super Rare', 'MLB-22PRI-S-FS38-M-GLD'), + (0x1cd6cdc531d2fc9a6a8a5d9010d21f6e310b00b1, '0xAvaxPanda', 'INFLUENCER'), + (0x1cd875fbe4b57ecf6e64adea9f7b05bf7ee87905, 'New York Mets® James McCann C Base Static Gold 410 Uncommon', 'MLB-S221-U-B410-GOL'), + (0x1cde49755d1c78bcef7009ef20ab32494eef5320, 'Boston Red Sox® Jarren Duran Fresh Faces Facsimile Signature Reward White 3433 Legendary', 'MLB-22PRIASG-L-FFR13-M-WHI'), + (0x1ce41493aebfb9c5f41b30c3ac81c132c1d92165, 'Chicago Cubs® Kris Bryant 3B Base Motion Platinum 660 Epic', 'MLB-S221-E-B660-PLA'), + (0x1ce5fd94e7a65c9bd06d7150c4caa1553bfc9540, 'Chicago White Sox® Liam Hendriks Regular Season Division Winners RWB 16 Rare', 'MLB-21POST-R-R16-M-RWB'), + (0x1ce96638e290109a67e75382a0a78b8e7418141e, 'xmasB4NN3RZ', 'XBNR'), + (0x1ced6e0ef35828dcd0391c8998b24503f49c1198, 'Moussa Diaby B04 Motion Rainbow Refractor S4-56 Super Rare', 'BUND-21TS4-S-MS4-56-V-RAI'), + (0x1cf643704346a494b50848914c7a19281745da7c, 'Tampa Bay Rays™ Wander Franco Base Glitch 215 Uncommon', 'MLB-22S1-U-B212-M-GLI'), + (0x1cfcfa7e149235d8ef524af7228572532abd8241, 'Smol Cars', 'SmolCars'), + (0x1d07bf2d61b7f47eb5438a733336f632ebf0a9f3, 'Little Monster', 'LTMS'), + (0x1d0b427aa80b5a862736c1ed2a65782b0aae3764, 'New York Yankees® Walk-Off Water Base Vintage Stock 119 Super Rare', 'MLB-22S1-S-B118-M-VS'), + (0x1d0de8ced95ccf9dc1db69d53a03327f71562714, 'Ai Alice Collection', 'Alice'), + (0x1d0e172c2e0d0c59c022ce4ea9c73bdf45f35a6f, 'Philadelphia Phillies® Andrew McCutchen OF Base Static Gold 431 Uncommon', 'MLB-S221-U-B431-GOL'), + (0x1d10421861b79ff6f53277241e75c0682d994250, 'Philadelphia Phillies® Bryce Harper Championship Series Newspaper BW 1125 Common', 'MLB-22TNP-C-CSN4-M-BW'), + (0x1d12643c85d7aa048b97ee1856cee7ca47cdaef5, 'RB Leipzig Christopher Nkunku Base Players Team Color 11 Static Facsimile Signature Rare', 'BUND-SC21-R-BP11-SFS-TMC'), + (0x1d1d1cf09e3208d2357540d21ee4c18aaac095f6, 'Washington Nationals® Luis Garcia Rookie and Future Phenoms Facsimile Signature Blue 82 Super Rare', 'MLB-INC21-S-RC82-BLU'), + (0x1d1d660dbe19492675cc30120239e8cbddec7bd0, 'Chicago White Sox® Andrew Vaughn 1987 35th Anniversary Wood T87-75 Common', 'MLB-22S1-C-1987A53-M-WD'), + (0x1d1fed25147a931e7ec64cf65ec27756b852e5a8, 'Kansas City Royals® Jorge Soler DH/OF Base Motion Platinum 389 Epic', 'MLB-S221-E-B389-PLA'), + (0x1d20879f4febf1a8701f89a329a85f8895048f67, 'National League™ 2021 ERA Leaders Base Independence Day RWB 204 Rare', 'MLB-22S1-R-B203-M-RWB'), + (0x1d2395531c7c332cca657fd4ab2860a5876f472c, 'San Francisco Giants® Evan Longoria Base Blue 1188 Common', 'MLB-22PRI-C-B85-M-BLU'), + (0x1d299a4b04645390c86a2c204341f460b0f65e28, '111 Amazing Art For Avalanche Community!', 'AAAC'), + (0x1d3210364d9aa5140f572ab104aa63a5c85ed120, 'Sproutcoin Spring Golden Animation Facsimile Signature Color 22 Legendary', 'GPK-NFT22-L-GAFS22-A-COL'), + (0x1d356396810df475821c76ebd7055609be31cbf2, 'Road To Hell', 'RTH'), + (0x1d3c4c08d4885742dea58b7e42b8615ca7635b39, 'Mothra Riverscape Traditional Art Color 4 Epic', 'GDZ-RAT21-E-TA4-A-COL'), + (0x1d3dd24824be6427add1e0bc430f53795308fb2b, 'Monsters', 'MONR'), + (0x1d56ff4976f53175264fdbe1d4796fd07dee6ea5, 'Godzilla in the City Traditional Art Black and White 5 Uncommon', 'GDZ-RAT21-U-TA5-S-BW'), + (0x1d5df388caa430e4cc07c1e392da2b6535d6fc8d, 'Chicago White Sox® Jonathan Stiever P Base Static White 528 Common', 'MLB-S221-C-B528-WHI'), + (0x1d5e5173aae74f732db45fe18228d628dbcc5262, 'Dogeon Hero', 'DOGEH'), + (0x1d7128d90444fa8ae962f227a0a7f009b15a8e0f, 'Chicago Cubs® Kris Bryant 3B Base Motion Vintage Stock 660 Super Rare', 'MLB-S221-S-B660-VS'), + (0x1d73afc2e5b55417f38c970f79b6439bd413ebee, 'Oakland Athletics™ Daulton Jefferies P Base Static Gold 656 Uncommon', 'MLB-S221-U-B656-GOL'), + (0x1d741b78aa64db1f14852aa218062329f3269497, 'New York Mets® Javier Baez Base Pink 1036 Uncommon', 'MLB-22PRI-U-B108-M-PNK'), + (0x1d8b6773bc2d2b52ab427c7bcb2d3f5f7273d3ac, 'DinoBots by Avax Dinos', 'DNBTS'), + (0x1d8b6ff08864b5526181ff4ff93993dad54f48cc, 'Toronto Blue Jays® Alek Manoah Base Independence Day RWB 248 Rare', 'MLB-22S1-R-B245-M-RWB'), + (0x1d93fd62e4d0604de4650d98211594caaf9cadc9, 'Boston Red Sox® Eduardo Rodriguez Postseason Base Navy 71 Uncommon', 'MLB-21POST-U-B71-M-NVY'), + (0x1d98a08031de81c0ee7a366381fd1403b784200f, 'Houston Astros® Zack Greinke P Base Motion Vintage Stock 463 Super Rare', 'MLB-S221-S-B463-VS'), + (0x1d9bec9ab144a31342d687144c22e9221c43e617, 'Houston Astros® Zack Greinke Base Glitch 51 Uncommon', 'MLB-22S1-U-B51-M-GLI'), + (0x1dadf3e17688f2abf4d8bfd7aa30e99d44499471, 'Ihlas Bebou TSG Top Players Black TK-13 Common', 'BUND-22TK-C-TPTK-13-S-BLA'), + (0x1db0bcec3cb20d3b6862230be6d6ceb0d4668d9a, 'Houston Astros® Cristian Javier Base Independence Day RWB 211 Rare', 'MLB-22S1-R-B209-M-RWB'), + (0x1db21c6e257b29e303d3a6113d56825cb7403af2, 'VfL Wolfsburg Maximilian Philipp Base Players White 35 Common', 'BUND-SC21-C-BP35-WHT'), + (0x1db4bd7a7b1cb3a7a68bd145eb65a8be31296900, 'Cleveland Guardians™ Shane Bieber 1987 35th Anniversary Wood T87-90 Common', 'MLB-22S1-C-1987A65-M-WD'), + (0x1dc3fb8c5db956bcc7b3fafc83f14612e4e31974, 'Atlanta Braves™ Ronald Acuña Jr. Facsimile Signature Red 200 Rare', 'MLB-22S1-R-FS11-S-RED'), + (0x1dcd2403e1781ba969e7dc8348457d3c2047a703, 'Philadelphia Phillies® Alec Bohm Rookie and Future Phenoms Facsimile Signature Blue 61 Super Rare', 'MLB-INC21-S-RC61-BLU'), + (0x1dce0f54b4bd374e8c59c2a6b9e4a5ee72beaf1f, 'Romano Schmid SVW Ascendent Magenta TK-53 Uncommon', 'BUND-22TK-U-ASCTK-53-S-MAG'), + (0x1de31431da54d34f44e29b1079e241dca70454d3, 'FC Bayern Munich Kingsley Coman Base Players Team Color 2 Uncommon', 'BUND-SC21-U-BP2-TMC'), + (0x1de7071ef27da8866f85e85f49572e9e490f6d0a, 'Chicago White Sox® Tim Anderson American League Base Golden 10 Super Rare', 'MLB-22ASG-S-B10-M-GLD'), + (0x1dea889ad3d8f151a434ef2c1a9919a47281b775, 'Colorado Rockies™ Nolan Arenado Inception Base Red 23 Rare', 'MLB-INC21-R-IB23-RED'), + (0x1def0865b3d4b5fc12f04eb4b05b18052d4b836b, 'PrizeBondLink', 'PBL'), + (0x1df105be51455c45af917bc08f403f172927eb77, 'The Pickaxes', 'Pickaxes'), + (0x1dfb524637599bb339f343090680a21620e9f9b5, 'Dayot Upamecano BAY Club Phemons Team Color S4CPH-04 Epic', 'BUND-21TS4-E-CPHS4CPH-04-V-TMC'), + (0x1dff93ca2511d0662ecbe967ae6da94ff6846181, 'Gorosaurus Base Collectible Magenta 20 Common', 'GDZ-RAT21-C-B20-S-MAG'), + (0x1e0755fb840e2a07371b6a283e23e50bc55fd8db, 'FC Bayern Munich Leon Goretzka Base Players Team Color 3 Static Facsimile Signature Rare', 'BUND-SC21-R-BP3-SFS-TMC'), + (0x1e113dbf656a1cec6c411c31032cb956daf40864, 'Kansas City Royals® Brady Singer Inception Base Blue 39 Uncommon', 'MLB-INC21-U-IB39-BLU'), + (0x1e16b86f26bbb35df95fec9e4602a02be88faacb, 'Chicago Cubs® Alec Mills P Base Motion Rainbow 659 Rare', 'MLB-S221-R-B659-RAI'), + (0x1e29daddca992ab4c0e1982c27c941d3ec96fa5c, 'Minnesota Twins® Byron Buxton Stars of MLB Chrome Night SMLBC-12 Legendary', 'MLB-22S1-L-SMLBC12-M-NIT'), + (0x1e2c26cb633e74ab14284fc2efdded30d1a03db1, 'Pittsburgh Pirates® Max Kranick Base Pink 1206 Uncommon', 'MLB-22PRI-U-B152-M-PNK'), + (0x1e3d25089c3fb2dccf21bf61844b47c28a9ff5d0, 'Angels® Reid Detmers Base Blue 1230 Common', 'MLB-22PRI-C-B131-M-BLU'), + (0x1e406ce125d2e91c95c49d199009af1f4461148c, 'Milwaukee Brewers™ Corbin Burnes Base Vintage Stock 240 Super Rare', 'MLB-22S1-S-B237-M-VS'), + (0x1e41197983e56836c575eea81df4d864c234aa9a, 'Happy Dragon', 'HDragon'), + (0x1e480d65909d687282f216a31044791f203dce38, 'SNOWEEZ', 'SNOWEEZ'), + (0x1e4da66bde97faf745206b403b7e5c859e395e60, 'Chicago White Sox® Tim Anderson Short Print White 64 Rare', 'MLB-22S1-R-SP15-M-WHI'), + (0x1e5a6eaf4642fe2c0a157592a24e01e1be6a57c4, 'Tampa Bay Rays™ Wander Franco Division Series Bronze 4 Super Rare', 'MLB-21POST-S-D4-M-BRO'), + (0x1e7eaec099c34843721d93b0a90bbdbb693cd7ea, 'Van Buren Records Community #1', 'VBR1'), + (0x1e80173040703a80d86f9b27db42adfb1609c925, 'New York Mets® Base Motion Platinum 555 Epic', 'MLB-S221-E-B555-PLA'), + (0x1e8458b28a4118f4767ec88dd8728c0bdd31b074, 'New York Yankees® HR Handoff Base Motion Platinum 646 Epic', 'MLB-S221-E-B646-PLA'), + (0x1e87950acf14449293beb0ffa246409fb24ac8b4, 'VfB Stuttgart Borna Sosa Young Stars Team Color 179 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS179-SFS-TMC'), + (0x1e978a465bf63083d324dadcf2a826d1a562bb6f, 'PANTIES', 'PNTS'), + (0x1e9bcc44ae6f3aa7cce05dd058e15db4c0833a3a, 'Kansas City Royals® Emmanuel Rivera Base Blue 1225 Common', 'MLB-22PRI-C-B157-M-BLU'), + (0x1ea18278dc6876a9aae9c936daa1003889bb90d6, 'Oakland Athletics™ Base Vintage Stock 210 Super Rare', 'MLB-22S1-S-B208-M-VS'), + (0x1eb3b42a1e8f963832d04120934f7fe24947b7e6, 'Cleveland Guardians™ Austin Hedges Base Vintage Stock 65 Super Rare', 'MLB-22S1-S-B65-M-VS'), + (0x1eb68abdb82090c83f48ff91318ab36c4d1a3144, 'Los Angeles Dodgers® Kenley Jansen P Base Static Gold 347 Uncommon', 'MLB-S221-U-B347-GOL'), + (0x1ec4b160234702a1836c3f04f2b1c2550085eb6b, 'Cleveland Indians® Delino DeShields OF Base Motion Rainbow 602 Rare', 'MLB-S221-R-B602-RAI'), + (0x1ec5351e667fd3266292aba6b2fe58ed4712f5db, 'Arne Maier FCA Color Splash Team Color TK-67 Super Rare', 'BUND-22TK-S-CSTK-67-S-TMC'), + (0x1ec88870ac9d39af76c31e11cfb5205d06138db9, 'TSG Hoffenheim Christoph Baumgartner Young Stars Gold 155 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS155-AFS-GLD'), + (0x1eca4d175510c345cafaf1cff1557c07862704d8, 'Topps Series Tier 5 Challenge Reward Pack - 21-22 Bundesliga NFT Cards', 'BUND-21TSC-TIER5-R'), + (0x1ecd0d3021aaf8ad59d4c4ae0162662518f39a68, 'Boston Red Sox® Nathan Eovaldi Championship Series Silver 6 Epic', 'MLB-21POST-E-CS6-M-SIL'), + (0x1ecd8b921425dcea6ea8f864c87598b633e96d30, 'Atlanta Braves™ Dansby Swanson National League Base Blue 10 Rare', 'MLB-22ASG-R-B10-M-BLU'), + (0x1ed1a06b77dd54513c512919b7a06ffee4e7e6ca, 'Angels® Alex Cobb P Base Motion Platinum 474 Epic', 'MLB-S221-E-B474-PLA'), + (0x1ed8e2eb387b1b24ebddabf30ecdb5cccba2bfa6, 'Smol Sharks', 'SHARK'), + (0x1edf312677f6656c24bc8e9ffa2834e107905167, 'Fight Night Poster #4 Lobby Card Black and White 4 Rare', 'GDZ-GVG22-R-LC4-S-BW'), + (0x1ee4abe6e478551d95a142e69c508abebd7a2d43, 'STAR', 'STAR'), + (0x1ee4def9906f0af390a93bb775dd993e532b7777, 'Common Comic 67 2-19 Bazooka Joe 2021 NFT', 'BZK-C-67C'), + (0x1ee69be4fefd451d68c3365079b817e1a3603736, 'Culinary Delights', 'CUISINE'), + (0x1ee714ab9e6a47e71c34407ecaa597fcbaf10c32, 'Milwaukee Brewers™ Brandon Woodruff Postseason Base Red 23 Rare', 'MLB-21POST-R-B23-M-RED'), + (0x1ee907ea411a2c2e65cbe80ab88c2a6cbf479bcd, 'Zosa', 'ZSA'), + (0x1ef1b3f8d20be623c92f4be5e65dc169095fbe0b, 'Common Comic 93 2-45 Bazooka Joe 2021 NFT', 'BZK-C-93C'), + (0x1ef5c86e9fb4189ba7d9a1a488187a28d0795a1a, 'Miami Marlins® Brian Anderson Base Independence Day RWB 19 Rare', 'MLB-22S1-R-B19-M-RWB'), + (0x1f0249828e4f900daa9b79495fe9f58991c7dfc8, 'Gigan 50th Anniversary NFT Mini Set Standard Pack', 'GDZ-GVG22-PACK-S'), + (0x1f0545ac8a41a69de05c0b6da225be5cdcfa74b0, 'San Diego Padres™ Austin Nola C/1B Base Static White 448 Common', 'MLB-S221-C-B448-WHI'), + (0x1f0be24eff1b49296ad5c0e6886e673a11f93320, '2021 Godzilla Rage Across Time Collection Event Exclusive (Sunday) Pack', 'GDZ-PACK-CCE-SUN'), + (0x1f0ed50e7230256a5dce3467c1dd0adb9652d40e, 'San Diego Padres™ Ha-Seong Kim SS Base Static White 398 Common', 'MLB-S221-C-B398-WHI'), + (0x1f0f312ec2ee819ae8caac12c06f012ee98f7465, 'Boston Red Sox® Xander Bogaerts SS Base Motion Rainbow 476 Rare', 'MLB-S221-R-B476-RAI'), + (0x1f1441c57ca6bda884966e115e6d5b74f7fb4ae9, 'Humannode NFT', 'HumanodeNFT'), + (0x1f1fad027c64b27c417add790b3e589a1b5bc948, 'Munk', 'Munk'), + (0x1f2803c9d623e11c0ce7e6ef1e4100033a7feb8f, 'Uncommon Comic 32 1-32 Bazooka Joe 2021 NFT', 'BZK-U-32C'), + (0x1f37e27becabdd8c9b452cccecd23137733a9834, 'San Diego Padres™ Adam Frazier Base Pink 1082 Uncommon', 'MLB-22PRI-U-B19-M-PNK'), + (0x1f3d7d8547772830bc35620a875481c449d1b505, 'Rare Comic 67 2-19 Bazooka Joe 2021 NFT', 'BZK-R-67C'), + (0x1f48100f0a04eebd285c39fcded6566504ed6411, 'FC Union Berlin Christian Gentner Base Players Team Color 55 Uncommon', 'BUND-SC21-U-BP55-TMC'), + (0x1f48e42e1611fd8780a0c453924c497d77ba0d46, 'Rare Comic 57 2-9 Bazooka Joe 2021 NFT', 'BZK-R-57C'), + (0x1f49ac35a94084413773240f92ecb6ecbcee24df, 'San Francisco Giants® Tony Watson P Base Static White 589 Common', 'MLB-S221-C-B589-WHI'), + (0x1f4bc0607c1215c3420abc87f7a69aef447a16ef, 'Ryan Edwards DDU Captains Green SPCAP-06 Epic', 'SPFL-21SPSS-E-CAPSPCAP-06-A-GRE'), + (0x1f570e7da1bb3c7802347d006aa6a028ce3ce312, 'Hertha Berlin Niklas Stark Base Players Gold 49 Rare', 'BUND-SC21-R-BP49-GLD'), + (0x1f5729eb913331693e0de680a0bd9dd46fe20ffd, 'Florian Neuhaus BMG Top Players Black TK-15 Common', 'BUND-22TK-C-TPTK-15-S-BLA'), + (0x1f5739624975388d58178b042da7dec78bebd577, 'New York Yankees® Gleyber Torres Inception Base Red 69 Rare', 'MLB-INC21-R-IB69-RED'), + (0x1f5fd5de7f2177ae51de0a68b40d6431c28f88fd, 'Smol Warriors', 'WARRIORS'), + (0x1f668d4077c861a3c83deaf61fb88b2608964f69, 'Uncommon Comic 54 2-6 Bazooka Joe 2021 NFT', 'BZK-U-54C'), + (0x1f74a9f41f2bf0b4c041bd73d6f0e4804b7328ed, 'Milwaukee Brewers™ Corbin Burnes Division Series Bronze 62 Super Rare', 'MLB-21POST-S-D62-M-BRO'), + (0x1f7e8a2a298628815a7e372fb4daa86a5c6a4bae, 'Colorado Rockies™ Antonio Senzatela P Base Static Gold 420 Uncommon', 'MLB-S221-U-B420-GOL'), + (0x1f89b3040cb05494ab8f9da7effcded244a3be0f, 'Holograph Collection', 'HLGRH'), + (0x1f8d1e53dfa127a093f7eff093bc7fa8d0084288, 'FC Bayern Munich Leroy Sané Base Players Gold 4 Rare', 'BUND-SC21-R-BP4-GLD'), + (0x1f8f7a1d38e41eaf0ed916def29bdd13f2a3f11a, 'BTC MAI Vault', 'BTCMVT'), + (0x1f96bae9962a6b26f8fb6d8f211c2ba3b4f89759, 'Xaver Schlager RBL Color Splash Facsimile Signature Team Color TK-57 Legendary', 'BUND-22TK-L-CSTK-57-S-TMC'), + (0x1f9a68759d621e4a285496106a6a74c4ea0449b5, 'RB Leipzig Emil Forsberg Base Players Gold 12 Rare', 'BUND-SC21-R-BP12-GLD'), + (0x1f9cf3fb22224e0df034be35b6a3b71382fa88d8, 'SV Werder Bremen Theodor Gebre Selassie Base Players Gold 79 Rare', 'BUND-SC21-R-BP79-GLD'), + (0x1fa5409d159f6b8be52ac89531124761df21d393, 'Moose V1', 'MOOSE'), + (0x1fa5d7aaf78d31c27362de39bbe15ce2abd31f0c, 'Mothra Base Collectible Blue 4 Common', 'GDZ-RAT21-C-B4-S-BLU'), + (0x1fc3cd95210815717b07166755b6b2a1adf54d6e, 'Stevan Jovetić BSC Animation Gold Refractor S3-30 Legendary', 'BUND-21TS3-L-AS3-30-V-GOL'), + (0x1fcab67491b088a069ed6f2230c6d8e18b1a49f2, 'The Binkis', 'BINKI'), + (0x1fcfd3edd939c0aeebd2f9bab9b07f47f6550a2a, 'St. Louis Cardinals® Johan Oviedo P Base Static White 535 Common', 'MLB-S221-C-B535-WHI'), + (0x1fcfe1089686f9d80f1d5bc63bc1e9c074076aaf, 'Chemical Skulls', 'CSkulls'), + (0x1fd201b35b561dda51adcab0e847250bc4c3d387, 'THE EXPERIENCE', 'EXP'), + (0x1fd2568b22d8d57279109e3a1fb99cb2c348a3a8, '1. FSV Mainz 05 M05 Insert Pennant Team Color S3P-09 Uncommon', 'BUND-21TS3-U-IS3P-09-A-TMC'), + (0x1fd887169eea207edc7d64c55926c9e2b6b8c5d2, 'JanusWorldCup', 'JWC'), + (0x1fdc0699ccad121f14e0e00abcf29c37a2024fce, 'NESglitch', 'NESG'), + (0x1fdfb65fa4cd7488469ba517573acb3f02a1a455, 'Minnesota Twins® Alex Kirilloff Inception Base Red 57 Rare', 'MLB-INC21-R-IB57-RED'), + (0x1fe175e4750f5eec9551372a141c0333a0ac5d25, 'Kansas City Royals® Brad Keller P Base Static White 544 Common', 'MLB-S221-C-B544-WHI'), + (0x1fe8218e480e1425a201f6886ad793d6b582de59, 'AVAXTOADZ', 'AT'), + (0x1fea3ac6f439d46141f1a7d7006eff2aeb206709, 'Los Angeles Dodgers® Moving On! Base Independence Day RWB 238 Rare', 'MLB-22S1-R-B235-M-RWB'), + (0x1feec60fa78cc5d42afa2643e80eb883d6db3eb2, 'Los Angeles Dodgers® Zach McKinstry 2B Base Motion Vintage Stock 394 Super Rare', 'MLB-S221-S-B394-VS'), + (0x1ff064e09a4b7c4a9afb7042fead6b0e2f37c89e, 'Woo-yeong Jeong SCF Animation Black Refractor S1-06 Epic', 'BUND-21TS1-E-AS1-06-V-BLA'), + (0x1ffef04236459e2a7adbb72ebaa10391ba98ecfc, 'JellyTree', 'JELLYTREE'), + (0x200ea78a14461862bbacc14d0eb802d3d364a588, 'FC Schalke 04 Omar Mascarell Base Players Team Color 58 Uncommon', 'BUND-SC21-U-BP58-TMC'), + (0x2010b4e94a631bf7290a3e57596c5759938d40b2, 'Chicago White Sox® Garrett Crochet P Short Print Motion White 362 Super Rare', 'MLB-S221-S-SP362-WHI'), + (0x20198f226f0ef118d8da58801cd850e8a4638e6d, 'St. Louis Cardinals® Adam Wainwright Postseason Base Navy 47 Uncommon', 'MLB-21POST-U-B47-M-NVY'), + (0x20242d49b1a0ea86b6b3880e9d4c215c5e4e1b5e, 'Jan Thielmann KOE Ascendent Facsimile Signature Blue TK-51 Legendary', 'BUND-22TK-L-ASCTK-51-S-BLU'), + (0x2025fb54b6891c205cd3137f200473ee6d69b40b, 'Common Comic 68 2-20 Bazooka Joe 2021 NFT', 'BZK-C-68C'), + (0x202925a23e75477fc27cfa965d54793b251a1f61, 'Oakland Athletics™ Elvis Andrus SS Base Static Gold 651 Uncommon', 'MLB-S221-U-B651-GOL'), + (0x202b946d70efd48e6548b06fb4796858a4487ec9, 'Philadelphia Phillies® Archie Bradley Base Vintage Stock 10 Super Rare', 'MLB-22S1-S-B10-M-VS'), + (0x202b9872598529fbd50b9400c46dd709345dcab5, 'Boston Red Sox® Enrique Hernandez OF/2B Base Motion Vintage Stock 465 Super Rare', 'MLB-S221-S-B465-VS'), + (0x202e50c0ba487ba19a971977d9a043decb9a56e6, 'Angels® Shohei Ohtani Stars of MLB Chrome Night SMLBC-24 Legendary', 'MLB-22S1-L-SMLBC23-M-NIT'), + (0x203200d2e59e4f45a7f2ed5587a041a7afbd9edb, 'Godzilla RAT Page 11 Comic Page Color 10 Super Rare', 'GDZ-RAT21-S-CP10-A-COL'), + (0x2033545ad328e59bf1a4a18ceaabee259ec1bd9d, 'Houston Astros® Jake Meyers 2022 Inception Gold 5 Legendary', 'MLB-22LEG-L-22INC5-M-GLD'), + (0x20422b63bba1b68bd763b75d6d81b7901a344066, 'Boston Red Sox® Xander Bogaerts Inception Base White 12 Common', 'MLB-INC21-C-IB12-WHT'), + (0x204570fb43fc10cb6f80b05ce512ca8fb2b9ed17, 'Hot Coin Summer Facsimile Signature Color 23 Uncommon', 'GPK-NFT22-U-FS23-S-COL'), + (0x2055aa3e94c61c192e7c644efe1d035a9f8df8f6, 'Los Angeles Dodgers® Kenley Jansen P Base Static White 347 Common', 'MLB-S221-C-B347-WHI'), + (0x2059686c500579391285c80f1a3514d3e5afbec5, 'St. Louis Cardinals® Carlos Martinez P Base Static White 496 Common', 'MLB-S221-C-B496-WHI'), + (0x20625bb21cbb7f3adb66aa7b1f887c0653bde2a5, 'Chuggers Pop', 'CHUGP'), + (0x206e765fa38761572643f1943141334c9cd1f0ce, 'Houston Astros® Jose Altuve First Place Skyline 3 Legendary', 'MLB-22ASG-L-FIR3-M-SKY'), + (0x2073192c975e07a8e686b5a883eb9c13a1574c6e, 'Airdrop Angel Base Color 14 Common', 'GPK-NFT22-C-B14-S-COL'), + (0x2073678b3278df44d48b8ad75f71e2ba270f10ee, 'New York Yankees® Giancarlo Stanton Divison Series Broadcast RWB 1094 Rare', 'MLB-22TNP-R-DSA4-M-RWB'), + (0x2078d616735c2989006ce0e068512edc96343e71, 'PineappleBanners', 'PB'), + (0x2081e3d4bb4edf323416942ecc976bf4d7e79904, 'San Francisco Giants® Sammy Long 1987 35th Anniversary Chrome T87C-98 Super Rare', 'MLB-22S1-S-1987AC72-M-CHR'), + (0x20859aa8d05bed1f67957e2b19ec63b1f92cf94a, 'Jordan Siebatcheu FCU Color Splash Team Color TK-68 Super Rare', 'BUND-22TK-S-CSTK-68-S-TMC'), + (0x208f37a8e58e036f33ff74cf635f840e6e394e1d, 'AVAX Diamond Man', 'ADMAN'), + (0x209c5e0933afaf517383a39914df5bb040410344, 'Pittsburgh Pirates® Mitch Keller Base Glitch 251 Uncommon', 'MLB-22S1-U-B248-M-GLI'), + (0x20a32cbe365c04781598e3054282e436df5248a3, 'Poultry.money Chicken NFT', 'CHICKEN'), + (0x20be5da7b1a0b94dfea8bfed53aaf6014120775c, 'St. Louis Cardinals® Nolan Arenado Short Print White 87 Rare', 'MLB-22S1-R-SP21-M-WHI'), + (0x20caeb937bdaceb1f53d70c629c3c2b68dca7d31, 'Rare Comic 31 1-31 Bazooka Joe 2021 NFT', 'BZK-R-31C'), + (0x20d0c2eb08cf613a1763f56fe6e4e5386e395b27, 'Atlanta Braves™ Cristian Pache Inception Base Blue 2 Uncommon', 'MLB-INC21-U-IB2-BLU'), + (0x20d175e5219eab21a757b43700ce7190693281d7, 'Legends of Khinarum', 'KNRM'), + (0x20d90be28f204823f277d90080587e18d21387e3, 'New York Yankees® Luis Gil 1987 35th Anniversary Chrome T87C-29 Super Rare', 'MLB-22S1-S-1987AC24-M-CHR'), + (0x20e69a2aea644709a2e8097544ae638c0e50c1dd, 'Jurgen Ekkelenkamp BSC Club Phemons Gold S4CPH-11 Legendary', 'BUND-21TS4-L-CPHS4CPH-11-V-GOL'), + (0x20f9599690d835bf36b48c839ec097c7a2af6453, 'San Diego Padres™ Manny Machado National League Base Blue 7 Rare', 'MLB-22ASG-R-B7-M-BLU'), + (0x21019d0b82543cce891b3affd7295dac8f6c59ff, 'Chicago White Sox® Eloy Jimenez Rookie and Future Phenoms Facsimile Signature Red 18 Epic', 'MLB-INC21-E-RC18-RED'), + (0x2103024175f30fe68b287d31dd64a7b62456f72a, 'Sun & Moon', 'SAM'), + (0x2108034dbc68e62b1c11fc66ab15071ead815326, 'Certificate of Soulbound Eligibility', 'CERT'), + (0x2108825c6723d583e73a12240249787ea0753dba, 'xxx', 'xx'), + (0x2112e3f72d7e12f36d1f3c5346ea4ba9fd0af3ba, 'Joseph Hungbo RSC Top Plays Purple SPTPL-09 Rare', 'SPFL-21SPSS-R-TPLSPTPL-09-V-PUR'), + (0x211ccb02a108bed76544e37c7d6507e22590eb13, 'Yumekana..? by CKGC.', 'YUME'), + (0x2124fab5084ee110bd462376be0c06d3c3c7ac2b, 'Washington Nationals® Alcides Escobar Base Vintage Stock 116 Super Rare', 'MLB-22S1-S-B115-M-VS'), + (0x2126d6e79a1b98b028b15d8db1eed34bd640dc62, 'Chicago Cubs® Manuel Rodriguez Base Pink 1313 Uncommon', 'MLB-22PRI-U-B56-M-PNK'), + (0x212edf686914c3e7e0cdf1f839dbcf000f7d5649, 'Jonathan Burkardt M05 Motion Rainbow Refractor S2-19 Super Rare', 'BUND-21TS2-S-MS2-19-V-RAI'), + (0x213273b49f9cfceafb657ea2a4e29b3614fecf56, 'New York Yankees® Brett Gardner Base Independence Day RWB 49 Rare', 'MLB-22S1-R-B49-M-RWB'), + (0x21328987e88c64663adf9a9664234a27c9f99cae, 'Washington Nationals® Stephen Strasburg P Base Static Gold 400 Uncommon', 'MLB-S221-U-B400-GOL'), + (0x21384af5fa42048a1d639b784f0dc447ed2a5015, 'VfB Stuttgart Nicolás González Young Stars Team Color 180 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS180-SFS-TMC'), + (0x213b50c940ac90d8feda5dc040fac12e60cec461, 'Arizona Diamondbacks® Alex Young P Base Motion Rainbow 532 Rare', 'MLB-S221-R-B532-RAI'), + (0x213f11e0821df3bcf8e4abdc489ef413fd05a433, 'Oakland Athletics™ Jordan Weems P Base Motion Platinum 570 Epic', 'MLB-S221-E-B570-PLA'), + (0x2140d4a7ef8c2546608f0f0d17061c2678a8ae2d, 'Boston Red Sox® Xander Bogaerts Inception Base Red 12 Rare', 'MLB-INC21-R-IB12-RED'), + (0x214294df5740ed5fee38d9321bf94808b3c66384, 'Motherwell F.C. MOT Club Crest Card Gold SPCCC-09 Epic', 'SPFL-21SPSS-E-CCCSPCCC-09-A-GOL'), + (0x21451c1810391ed003cd0ad8bf1b086c277ac3c8, 'Boston Red Sox® Alex Verdugo Inception Base Black 10 Legendary', 'MLB-INC21-L-IB10-BLK'), + (0x2145d4648e079cba698dd82e283923371449d38c, 'Wataru Endō VFB Motion Aqua Refractor S1-09 Rare', 'BUND-21TS1-R-MS1-09-V-AQU'), + (0x214630142f69908fa10af253be5fd20f12e2d5c9, 'Baltimore Orioles® Zac Lowther Base Glitch 133 Uncommon', 'MLB-22S1-U-B132-M-GLI'), + (0x214cddbd3f129f874c14005797968c0d8f25392c, 'Pittsburgh Pirates® Ke''Bryan Hayes Base Glitch 56 Uncommon', 'MLB-22S1-U-B56-M-GLI'), + (0x214f34e1050a20f7fd3a8288f9240b547cbdb8f2, 'New York Yankees® Clarke Schmidt P Base Motion Rainbow 456 Rare', 'MLB-S221-R-B456-RAI'), + (0x2151997917696a2e37de6295a4039b3459758546, 'St. Louis Cardinals® Paul DeJong Inception Base Black 88 Legendary', 'MLB-INC21-L-IB88-BLK'), + (0x215ef6c472e9a37eb405077f3e650fc21abec967, 'Tampa Bay Rays™ Chris Archer Base White 254 Common', 'MLB-22S1-C-B251-S-WHI'), + (0x2160420c8a5da0bdd41713ca043ddbcb5b0e16ef, 'Chicago White Sox® Yoan Moncada 3B Base Motion Platinum 520 Epic', 'MLB-S221-E-B520-PLA'), + (0x21742f159229fe9a9026a05776df09deb832949f, 'Los Angeles Dodgers® Albert Pujols Base Glitch 237 Uncommon', 'MLB-22S1-U-B234-M-GLI'), + (0x217763a7aeb9393891d773a0286600d5248ad240, 'Philadelphia Phillies® Alec Bohm Generation NOW Team Colors GN-23 Epic', 'MLB-22S1-E-GN23-M-TMC'), + (0x21787d2925c549b798f5aa5f7bd361eb943e4af0, 'Zombie Apocalypse Survival Game by @metapeplabs', 'ZOMBIE'), + (0x217d0bc8e72fd5b56b21e5ab1914eb4844c5a3be, 'Ryan Porteous HIB Base Purple SP-07 Super Rare', 'SPFL-21SPSS-S-BSP-07-A-PUR'), + (0x218778d925933af6394279da12d511585714647c, 'ChzAFriends Collectibles', 'CHZAF'), + (0x2189ef6a5b0c4d379d65db735fe40c855fb6a393, 'Joe Scally BMG Club Phemons Team Color S4CPH-07 Epic', 'BUND-21TS4-E-CPHS4CPH-07-V-TMC'), + (0x218bb2265426cb0ba60f4f877e565cade551a778, 'Baltimore Orioles® Hold Me Back, Bro! Base Static White 578 Common', 'MLB-S221-C-B578-WHI'), + (0x219714648dc9c55216b12e135ef4d08668d78904, 'The Future', 'TFT'), + (0x219cc054963355034b214c3b4e7f40c7d172d205, 'enter the ecosystem', 'etc'), + (0x21a35cf97ec9d5cb30911106de7bd3f1a5371581, 'Super Rare Comic 33 1-33 Bazooka Joe 2021 NFT', 'BZK-S-33C'), + (0x21a689eb2ce8a0239b296e11f5b2b61f68d14141, 'St. Louis Cardinals® Yadier Molina Short Print White 205 Rare', 'MLB-22S1-R-SP41-M-WHI'), + (0x21b3fbe58eca6b7799139972b73240bb3c99fb09, 'Seattle Mariners™ Cal Raleigh Facsimile Signature Slab Gold 3096 Epic', 'MLB-22PRI-E-FS8-M-GLD'), + (0x21bbb794db872483dbf73bc2154ece8d8bbcb8cd, 'Los Angeles Dodgers® Gavin Lux Silver Signings Facsimile Signature Silver 21 Super Rare', 'MLB-INC21-S-SS21-SLV'), + (0x21e363d214e28e3b3a4322aaa3111a98dd3373b6, 'Pittsburgh Pirates® Jacob Stallings C Base Static White 505 Common', 'MLB-S221-C-B505-WHI'), + (0x21e5604fbf2e91af2cdc9acea0417e88ce3cfe0a, 'Los Angeles Dodgers® Kenley Jansen P Base Motion Platinum 347 Epic', 'MLB-S221-E-B347-PLA'), + (0x21f3db894b7ba977a402eb1e8fa19680f40f9b29, 'Rome is Burning Event Exclusive Comic Cover Magenta 2 Epic', 'GDZ-RAT21-E-CCE2-A-MAG'), + (0x21f4bbe345fd9a5cc54b2bf333910e93715585d5, 'Seattle Mariners™ Jarred Kelenic Base Independence Day RWB 235 Rare', 'MLB-22S1-R-B232-M-RWB'), + (0x21fba4e93ce902092ac1bfcc74fc2d31f0bbc55c, 'Super Rare Comic 19 1-19 Bazooka Joe 2021 NFT', 'BZK-S-19C'), + (0x22054f239ba5ecbb2705c8401df37e79297e4e4c, 'Caricatures - SparkWorld*', 'ZLC'), + (0x2227660c6b619d44503c34939f6a530713e43f3f, 'Cincinnati Reds® Joey Votto 1987 35th Anniversary Wood T87-18 Common', 'MLB-22S1-C-1987A15-M-WD'), + (0x222a682435268b040999d556b1e383f3c935d227, 'MYSTICISM', 'MYSTIC'), + (0x222b31d86bb74164c40cdadf9aadb490800ee814, 'PDICommemorativeBadge', 'PDINFT'), + (0x2234e9dc56e187dcafa0abfc55299d4788461bec, 'San Diego Padres™ Joe Musgrove Wild Card Newspaper BW 1052 Common', 'MLB-22TNP-C-WCN4-M-BW'), + (0x223e06335d8ea1ffd3d2eacdef59d09df03d3377, 'Airdrop Angel Event Exclusive Animated Facsimile Signature Black 14 Super Rare', 'GPK-NFT22-S-AFSE14-A-BLA'), + (0x223fef58489aedb139b442057ec1fe49b0b5d96f, 'Boston Red Sox® Jarren Duran Fresh Faces White 2217 Rare', 'MLB-22PRI-R-FF12-M-WHI'), + (0x2245c0ba9f63c20ba27e55c671abdd243501c41d, 'Borussia Monchengladbach Ramy Bensebaini Base Players White 20 Common', 'BUND-SC21-C-BP20-WHT'), + (0x2245ed1dbc618a95ee72a2f6c24fb9196cb7b9cc, 'Toronto Blue Jays® Gloves are Hats Base Static Gold 539 Uncommon', 'MLB-S221-U-B539-GOL'), + (0x22463b999fc1d0725808b5b7c75215b65804d8e3, 'American League™ 2021 ERA Leaders Base Independence Day RWB 283 Rare', 'MLB-22S1-R-B280-M-RWB'), + (0x2246aed1579ef800c5e35825b0994397edce8e0f, 'Boston Red Sox® Nathan Eovaldi P All-Star Motion Purple 5 Epic', 'MLB-S221-E-AS5-PUR'), + (0x22521cd541d8d278900e40e4dcbaf1fc6d7911c9, 'Baltimore Orioles® Hanser Alberto Inception Base Red 7 Rare', 'MLB-INC21-R-IB7-RED'), + (0x225d9f1f7847b72572e4b027a33e2e7f0407473a, 'Los Angeles Dodgers® Clayton Kershaw Base Glitch 41 Uncommon', 'MLB-22S1-U-B41-M-GLI'), + (0x22646ec7a0ab82cd92f0c2bb5bbe79c9c28945d1, 'Los Angeles Dodgers® Mookie Betts Super Short Print White 50 Super Rare', 'MLB-22S1-S-SSP5-M-WHI'), + (0x2269960394f09ba644adf825df863f378bf2fff4, 'National League™ Corbin Burnes Base Blue 1281 Common', 'MLB-22PRI-C-B198-M-BLU'), + (0x2275c6e85c2b2acfe41175d7160df1a4c7ef20c1, 'My Digital City', 'MyDigitalCity'), + (0x227793681828168a726333ef110c26b3e28ee22c, 'Gadgidiots', 'Xoll'), + (0x227fa1eb7a04553a8d65c781ee5efe166526dbd6, 'Washington Nationals® Juan Soto HRD Reward Blue 4 Rare', 'MLB-22ASGR-R-R4-M-BLU'), + (0x2284ecf4ec4773a19593193fca7de867bdda0752, 'Washington Nationals® Kyle Schwarber OF Base Static Gold 473 Uncommon', 'MLB-S221-U-B473-GOL'), + (0x22858f4797b6860b27902aa13a2209f5caa3bd8c, 'Cincinnati Reds® Wade Miley P Base Static White 638 Common', 'MLB-S221-C-B638-WHI'), + (0x22927e42348065f70d86c1dcbd8df6ef30ab804d, 'Minnesota Twins® Josh Donaldson Base Glitch 226 Uncommon', 'MLB-22S1-U-B223-M-GLI'), + (0x229562a36a9a9ad560a01076a29328110f8f907d, 'Houston Astros® Alex Bregman Short Print White 68 Rare', 'MLB-22S1-R-SP16-M-WHI'), + (0x229736e3e1247b88da1057a00e0fd663cf13356f, 'Atlanta Braves™ Ian Anderson Inception Base White 4 Common', 'MLB-INC21-C-IB4-WHT'), + (0x22a584149322347990aa34333bf6124b54fc86f9, 'Angels® Base Glitch 159 Uncommon', 'MLB-22S1-U-B158-M-GLI'), + (0x22a5b1d50e41864b58408a5ed487d35dad1a05a2, 'New York Yankees® Luis Gil Base Glitch 131 Uncommon', 'MLB-22S1-U-B130-M-GLI'), + (0x22a691535d88c35616f668691ba9339c2e555d41, 'Minnesota Twins® Michael Pineda Base Glitch 189 Uncommon', 'MLB-22S1-U-B188-M-GLI'), + (0x22af7c8fd271569588fe66e2fe2f413f43cc1d51, 'Green Wizard', 'GWD'), + (0x22b3533e6a3e3b0f95646af62c7655dc86f0753f, 'New York Yankees® Joey Gallo 1987 35th Anniversary Wood T87-89 Common', 'MLB-22S1-C-1987A64-M-WD'), + (0x22c087abb9ebdded93e25f4e5b46a8595f153392, 'Philadelphia Phillies® Bryce Harper Base White 250 Common', 'MLB-22S1-C-B247-S-WHI'), + (0x22c2bde27d77039041ea3bd9a155a04a25df3ef0, 'Angels® Mike Trout 2022 Definitive Gold 14 Legendary', 'MLB-22LEG-L-22DEF14-M-GLD'), + (0x22c3faddcfaff1bc26ae6e9bd44ca2fe7ac4745f, 'Rich Peon Poor Peon', 'PEON'), + (0x22cd0b73705d963e15dfac9d9930deff97712ad5, 'Chicago White Sox® Tim Anderson Base White 64 Common', 'MLB-22S1-C-B64-S-WHI'), + (0x22da09509f1531235ed312d9350bd89f7fc5b902, 'Proof of Steak Golden Animation Facsimile Signature Color 20 Legendary', 'GPK-NFT22-L-GAFS20-A-COL'), + (0x22e44a981028ffa252612071d7242c9256cc985a, 'Los Angeles Dodgers® David Price P Base Static White 416 Common', 'MLB-S221-C-B416-WHI'), + (0x22ecd4a4b1f0fa553b187abd72b56f4165ef5829, 'Warp Starships', 'WShips'), + (0x22fd9e3ad6ad243f26e3198c582b7cdea656894f, 'Uncommon Comic 89 2-41 Bazooka Joe 2021 NFT', 'BZK-U-89C'), + (0x23034bed4ac6f009f4d75b3e2b33a4f6bb97d972, 'Common Comic 60 2-12 Bazooka Joe 2021 NFT', 'BZK-C-60C'), + (0x23082269ea17c4f5103bab6cd9dfe1f6ce138616, 'Moremoney Stable Lending', 'MMSL'), + (0x230f307dd343ddf9cea4c090bebaf6b3dc70dd34, 'Space Aged Whiskey', 'SPACE'), + (0x23135a1116df07805bf4e30013cc42f6416e6511, 'Texas Rangers® Sam Huff C Facsimile Signature Static Blue 654 Super Rare', 'MLB-S221-S-FS654-BLU'), + (0x231eaf034f0f76b07e35ebaf1186eb4123fe0764, 'Chz&Friends Collectibles', 'ChzF'), + (0x231f2a7b500f85148dbc876982d446b460a2ade7, 'Janni Serra DSC Motion Rainbow Refractor S4-48 Super Rare', 'BUND-21TS4-S-MS4-48-V-RAI'), + (0x231f6954a4d396ca5e636cc52bd70c7915851fe3, 'Los Angeles Dodgers® Gavin Lux Rookie and Future Phenoms Facsimile Signature White 36 Rare', 'MLB-INC21-R-RC36-WHT'), + (0x23259626a7420d23e429c3a9e843c37895603031, 'NFTombstoned', 'STONED'), + (0x232eca59fe8c2b5f33af6839820e9d6f81425994, 'B.A.Y.C SPECIAL: SIMPLE APES', 'BAYCSPECIAL'), + (0x2333119a2eac09cfd82148bfee8d9f93eb9be750, 'unStable Dillusion', 'UNSTABLE'), + (0x2338d79f13591a988daf0ea4134f170597361656, 'Colorado Rockies™ Ryan McMahon Base Blue 1070 Common', 'MLB-22PRI-C-B113-M-BLU'), + (0x233f0e514d9afc8a06f4ba94d92e76e510ab19f6, 'ThecoLOORs', 'TCOL'), + (0x2356f4cfce4ce80d843798d9f61e727c76d31ac0, 'Tampa Bay Rays™ Josh Fleming P Base Static White 526 Common', 'MLB-S221-C-B526-WHI'), + (0x235b8fb4b5adc056139bcda9a28f9bcb802df719, 'Seattle Mariners™ Jarred Kelenic Base Pink 1055 Uncommon', 'MLB-22PRI-U-B97-M-PNK'), + (0x235d1b4eafb6802b63edc2dccd5bfa76ccd3107d, 'XANA Treasure Box : November 2022', 'XTB'), + (0x235e7f3cedc0ad8645a1b5a421988a5e298e407f, 'Sport-Club Freiburg Jonathan Schmid Base Players Team Color 38 Static Facsimile Signature Rare', 'BUND-SC21-R-BP38-SFS-TMC'), + (0x2360495a7a9f62670f36d23250272dfc3cc2dfd7, 'Army of Frogs', 'AoFs'), + (0x2372f6d9d79ed88899bb24f8fbe4e0330c83398a, 'Wood Elf', 'RWE'), + (0x2374bff85e31c4098837899f3ea1fd8d0cae29c1, 'Philadelphia Phillies® Matt Vierling Base Glitch 316 Uncommon', 'MLB-22S1-U-B312-M-GLI'), + (0x237a18608fc1c0e614e88b2015e95204eb1ddd7b, 'Boston Red Sox® Martin Perez Base Glitch 212 Uncommon', 'MLB-22S1-U-B210-M-GLI'), + (0x2380704e73943ed0108c4e5bd200088ea60b0ce5, 'VfL Wolfsburg Renato Steffen Base Players Team Color 34 Static Facsimile Signature Rare', 'BUND-SC21-R-BP34-SFS-TMC'), + (0x2388493a34579ed6f43809733d0c3dbda63999a2, 'Sport-Club Freiburg Ermedin Demirović Young Stars Team Color 159 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS159-SFS-TMC'), + (0x23917142be8d316045c2a7459a4492842e828781, 'Detroit Tigers® Miguel Cabrera Base Vintage Stock 194 Super Rare', 'MLB-22S1-S-B193-M-VS'), + (0x23991c1f4e3db4717e2c538ea512994e9017f99e, 'NW MoonBirds', 'NWMBIRDS'), + (0x23a1113353c6627bc154a89dc82ad2f4631b9de6, 'Darkness Within', 'DKWN'), + (0x23ad3ece16c5a78dc4ff9af3a37866f239c8e933, 'Kansas City Royals® Ryan O''Hearn 1B Base Static Gold 492 Uncommon', 'MLB-S221-U-B492-GOL'), + (0x23ae11d8fea953de51eab6c998cccf6ad4435766, 'FC Koln Rafael Czichos Base Players Team Color 69 Uncommon', 'BUND-SC21-U-BP69-TMC'), + (0x23b05057f4a404335b088e36b8f42075f33c754f, 'Detroit Tigers® Bryan Garcia Rookie and Future Phenoms Facsimile Signature Red 23 Epic', 'MLB-INC21-E-RC23-RED'), + (0x23b29fc51bc53f8d7976ddd47aff809064ca86a6, 'Pittsburgh Pirates® Hoy Park Base Independence Day RWB 184 Rare', 'MLB-22S1-R-B183-M-RWB'), + (0x23b819cb6d32a201e1a26730d55bd7e29ec82cdd, 'Dextr the Subnet Speedster', 'gLW'), + (0x23bc66a66c23c7cde01aa247d5fe80add19078e7, 'Toronto Blue Jays® Danny Jansen Base Vintage Stock 33 Super Rare', 'MLB-22S1-S-B33-M-VS'), + (0x23bd43ff8ff241e3a2e4fc3a0862d636921f73e7, 'Philadelphia Phillies® Andrew McCutchen OF Facsimile Signature Static Red 431 Epic', 'MLB-S221-E-FS431-RED'), + (0x23c4cdc302b94a54d341adbd9be58e077dd28365, 'Cincinnati Reds® Sonny Gray 1987 35th Anniversary Wood T87-46 Common', 'MLB-22S1-C-1987A35-M-WD'), + (0x23cd2e6b283754fd2340a75732f9ddbb5d11807e, 'EverRise NFT Stakes', 'nftRISE'), + (0x23cd654dda97260ad6b8dc97c9c1923fedc468db, 'Los Angeles Dodgers® Albert Pujols Base Pink 1098 Uncommon', 'MLB-22PRI-U-B38-M-PNK'), + (0x23cf246e4d37062697fa6b7a5a0e1a74054b397d, 'Kevin Trapp SGE Base White S2-14 Common', 'BUND-21TS2-C-BS2-14-S-WHI'), + (0x23db134919560c5275c8837ce247f5a9c63d8ddc, 'New York Mets® Tylor Megill Base Glitch 134 Uncommon', 'MLB-22S1-U-B133-M-GLI'), + (0x23e034d2497a27a5173041962fac67800891f3d6, 'Jamal Musiala BAY Limitless Rainbow Parallel TLC-01 Epic', 'BUND-22TLC-E-RLSSTLC-01-A-RBW'), + (0x23e6fcaea45db53111bd95704c5c1523ae516046, 'Houston Astros® Ryan Pressly P Base Static White 652 Common', 'MLB-S221-C-B652-WHI'), + (0x23e8fce13a5e83224b21617bd86ceada9db85657, 'FC Schalke 04 Timo Becker Base Players Gold 57 Rare', 'BUND-SC21-R-BP57-GLD'), + (0x23ed0016f0e6a2ee53f509dedb4180428bfe75de, 'Philadelphia Phillies® Rhys Hoskins Inception Base White 75 Common', 'MLB-INC21-C-IB75-WHT'), + (0x23f695858312e7a956d581a553e4b47d209f429c, 'Super Rare Comic 61 2-13 Bazooka Joe 2021 NFT', 'BZK-S-61C'), + (0x240d4a9debcb307e08c872e80798be6b9ab02b5a, 'Takuma Asano BOC Base White S4-65 Common', 'BUND-21TS4-C-BS4-65-S-WHI'), + (0x2423d78c92f604a609a17d045f83a7556b55d98f, 'Jamie Leweling SGF Club Phemons Silver S4CPH-10 Super Rare', 'BUND-21TS4-S-CPHS4CPH-10-S-SLV'), + (0x24294a646d4cab8034348ecb02bbadc3e72ed557, 'San Diego Padres™ Eric Hosmer Base Glitch 272 Uncommon', 'MLB-22S1-U-B269-M-GLI'), + (0x242eac46280797eb4b2a36fc842ece39ebcb22b7, 'Knives Legacy', 'KNIVESv2'), + (0x2435a52696514ebc0a77e7f4ab40606ce5f2d39d, 'Jan Thielmann KOE Base White S4-38 Common', 'BUND-21TS4-C-BS4-38-S-WHI'), + (0x243ff75db9ea507cffe6839d855509c4b97347e7, 'Uncommon Baseball Card 6 Tuffy Catcher Bazooka Joe 2021 NFT', 'BZK-U-6B'), + (0x244ac99950cdb275c4185246c854d910bc129e4b, 'VfB Stuttgart VFB Insert Pennant Team Color S4P-18 Uncommon', 'BUND-21TS4-U-IS4P-18-S-TMC'), + (0x2456ed7a1ec8be75031cdb81de3df4ae23c48146, 'John Souttar HEA Base White SP-13 Common', 'SPFL-21SPSS-C-BSP-13-A-WHI'), + (0x2456fdce3b566e8f2e94492042068e36b7f5316a, 'Kansas City Royals® Jorge Soler DH/OF Base Motion Rainbow 389 Rare', 'MLB-S221-R-B389-RAI'), + (0x24588e07a836e5dcef9c32a47d3fa22db20b8bdf, 'Killer Clowns', 'KC'), + (0x24598fe00fe67dcac83ed9651b5879932badc39e, 'Arizona Diamondbacks® Drew Ellis Base Glitch 298 Uncommon', 'MLB-22S1-U-B294-M-GLI'), + (0x24599017da77e4a7eeb4669b7b6001ad57ed64b5, 'Destfaces', 'DFS'), + (0x24632a475f0a15616680dbffcc3ddfd48cc57480, 'Chicago Cubs® Anthony Rizzo Inception Base Blue 13 Uncommon', 'MLB-INC21-U-IB13-BLU'), + (0x2464725edc3bc5ada8348fedd89c572521555852, 'Chicago White Sox® Jose Abreu Postseason Base Red 9 Rare', 'MLB-21POST-R-B9-M-RED'), + (0x246cbfefd5b70d74335f0ad25e660ba1e2259858, 'Creatures Of The Cave SS', 'COTCSS'), + (0x246d4133a9adcf6b893bb865e7ffccb8f68d1a30, 'Angels® Mike Trout Second Place Palm Trees 7 Super Rare', 'MLB-22ASG-S-SEC7-M-PLM'), + (0x246d45e43cb78e467dc270e0e076157e5b9b73d8, 'Munas Dabbur TSG Animation Black Refractor S3-35 Epic', 'BUND-21TS3-E-AS3-35-V-BLA'), + (0x247bd7f6c65e9a09462fafc6a83219c311b40a89, 'Los Angeles Dodgers® Walker Buehler Inception Base Red 50 Rare', 'MLB-INC21-R-IB50-RED'), + (0x248ec96adf9f9ace15f0003e6caa5175c11756a0, 'Angels® Brandon Marsh Short Print White 243 Rare', 'MLB-22S1-R-SP49-M-WHI'), + (0x2495c06dcab5ce1b06fbeb6ebeda58969fd80d43, 'PSYBER X Whitelist', 'PSYW'), + (0x2495c11739e5f80218c910f128f8d4ad4468d6d1, 'Gerrit Holtmann BOC Top Players Black TK-35 Common', 'BUND-22TK-C-TPTK-35-S-BLA'), + (0x249da1c8f97c2ee3e4c71ae1a43e4999a7396e87, 'Kansas City Royals® Base Motion Rainbow 608 Rare', 'MLB-S221-R-B608-RAI'), + (0x249fef0a46a3b24a83897544fc3dff061c98a337, 'Boston Red Sox® Bobby Dalbec Base White 7 Common', 'MLB-22S1-C-B7-S-WHI'), + (0x24a55d491050af240b24d998f02db04eb5a760bc, 'Gimiks Born Originals', 'GMKSOG'), + (0x24ad8ae7ed5e2cb41c56b7a1e1a4fbe005fa8477, 'Delivery Apes AVAX', 'DAA'), + (0x24bdbbd028632e7675eae8dafbea56f5202e35cd, 'Pittsburgh Pirates® Ke''Bryan Hayes Short Print White 56 Rare', 'MLB-22S1-R-SP14-M-WHI'), + (0x24c5bb9a40677b6f405ea57fc5d50c8cd7eee437, 'Suat Serdar BSC Top Players Black TK-22 Common', 'BUND-22TK-C-TPTK-22-S-BLA'), + (0x24c700985730b281cd6f5aa563232484f41061e0, 'WildFlowers Poppi', 'WFP'), + (0x24d0509963411b5e3cb422c3312c779356010802, 'LVP Booster LVL 3', 'LVPB3'), + (0x24d15a067a80417919972f2602967d8ef5c626d8, 'Houston Astros® Michael Brantley OF Base Motion Vintage Stock 434 Super Rare', 'MLB-S221-S-B434-VS'), + (0x24d66b2c0a90c71eddd9cc1fef775b19b9598d3c, 'Philadelphia Phillies® Rhys Hoskins 2022 Definitive Gold 27 Legendary', 'MLB-22LEG-L-22DEF27-M-GLD'), + (0x24e2dea19a308503cd25f185d842ce24d0c4b61c, 'Washington Nationals® Juan Soto Super Short Print White 150 Super Rare', 'MLB-22S1-S-SSP8-M-WHI'), + (0x24efc26152dd2a30be23dc45c4c88192d3fdfff2, 'Avenlaunch FR 2022', 'AVEN22'), + (0x24fe76f6351bd967a659dff30d55fa1f15ee74be, 'Chicago Cubs® Kris Bryant 3B Short Print Motion White 660 Super Rare', 'MLB-S221-S-SP660-WHI'), + (0x24ffd5670c106b3f9010dddca6430a92437e4d0f, 'FC Augsburg Rafał Gikiewicz Top Saves Team Color TS-15 Epic', 'BUND-SC21-E-TSTS-15-TMC'), + (0x250106eac71b8e055895adaa265666569799b929, 'Boston Red Sox® J.D. Martinez Base Independence Day RWB 182 Rare', 'MLB-22S1-R-B181-M-RWB'), + (0x251cb8850f0245b47f6d36b48185122ccad83c86, 'Los Angeles Dodgers® Gavin Lux Generation NOW Team Colors GN-16 Epic', 'MLB-22S1-E-GN16-M-TMC'), + (0x25200a291c83683ec2b3bea753fcc3d74622691b, 'Troopy', 'JTY'), + (0x25204c689030f520c9198e07bf76b83b51c06de1, 'Boy Azuki', 'BOYAZUKI'), + (0x253dd0bb93fc11566ab60d30c163724a9075112f, 'KYCToken', 'NKT'), + (0x2540951aa2bf221c8cbe3e2679088112bd47050d, 'New York Yankees® Giancarlo Stanton DH/OF Base Motion Vintage Stock 642 Super Rare', 'MLB-S221-S-B642-VS'), + (0x2544c8439f1d7e5444a817f1b9f92b0b0dd88dcb, 'FC Bayern Munich Robert Lewandowski Top Players Gold 91 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP91-AFS-GLD'), + (0x254fc2f9f474f631c91434c094a9f10147e94218, 'New York Yankees® Aaron Judge Base Vintage Stock 99 Super Rare', 'MLB-22S1-S-B98-M-VS'), + (0x25538a6c596be2079515f758a578a55f7fe819b1, 'Jeremie Frimpong B04 Club Phemons Silver S4CPH-03 Super Rare', 'BUND-21TS4-S-CPHS4CPH-03-S-SLV'), + (0x2557ca4d5902f2fcedaaa8a2d15e5e14175baa91, 'Avax Degens', 'AVXD'), + (0x255e496b0c26270eefcd40d5060d0125a9dae3d2, 'St. Louis Cardinals® Paul Goldschmidt Postseason Base Red 44 Rare', 'MLB-21POST-R-B44-M-RED'), + (0x2560e5fc9721be23e2a5dfee1b0801cc312c32e6, 'Cleveland Guardians™ Ernie Clement Base Glitch 71 Uncommon', 'MLB-22S1-U-B71-M-GLI'), + (0x256a0e6f73b3334a4592c0676d36b6cbebb26b31, 'St. Louis Cardinals® Albert Pujols Pujols 700th Home Run Gold 951 Legendary', 'MLB-22TNP-L-HR7001-M-GLD'), + (0x256a4feff56e302afa4a0caa9f4dfd0c507441f6, 'Angels® Ty Buttrey P Base Motion Platinum 363 Epic', 'MLB-S221-E-B363-PLA'), + (0x25729c14ff112d6bade4ef42448dd95a82289854, 'Oakland Athletics™ Chris Bassitt P All-Star Motion Purple 13 Epic', 'MLB-S221-E-AS13-PUR'), + (0x2578fe81b272a1bf942cc32ccbb18197d2b1e24d, 'Hertha Berlin Deyovaisio Zeefuik Young Stars Team Color 164 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS164-SFS-TMC'), + (0x25797978462601b9c03d8a2d0f0672de91947634, 'Nico Schlotterbeck SCF Animation Gold Refractor S4-62 Legendary', 'BUND-21TS4-L-AS4-62-V-GOL'), + (0x257c5fb2030050809278c8c80e3afd3228850619, 'Candlestick Charts', 'MONITOR'), + (0x257d6e7d60fb17d0a55e915cf519c3f6c2ba0799, 'Milwaukee Brewers™ Corbin Burnes Postseason Base Navy 22 Uncommon', 'MLB-21POST-U-B22-M-NVY'), + (0x25812a45ef8656fa66d49a816d8cb1c1e8a67238, 'Super Rare Comic 79 2-31 Bazooka Joe 2021 NFT', 'BZK-S-79C'), + (0x258d44d036fa7c84ce005b5d758cb4fb69e893de, 'HESH ON THE HOOD', 'HESH'), + (0x2591f0009169da2859c7106f9a1202c5e1cfefa4, 'AI Imagination', 'AIMAGINE'), + (0x2595307377578b55e9953f4d69b0a4861a1b7cf7, 'Angels® Anthony Rendon Inception Base Red 42 Rare', 'MLB-INC21-R-IB42-RED'), + (0x25980df9167a4eb01e4354d11059dc79195873c4, 'Los Angeles Dodgers® Julio Urias Postseason Base Red 40 Rare', 'MLB-21POST-R-B40-M-RED'), + (0x25aae2c7f5f0065ffde06265f4077424cde169b4, 'New York Mets® Dellin Betances P Base Static White 385 Common', 'MLB-S221-C-B385-WHI'), + (0x25b58c45cb9b55b69c8b730fba6a15bdf7b523ed, 'Atlanta Braves™ Team Cube 2.0 Team Colors 1 Legendary', 'MLB-22S1-L-TC21-M-TMC'), + (0x25b8516d287e08bcd24848f64958a6273d431654, 'Evan Ndicka SGE Ascendent Blue TK-42 Super Rare', 'BUND-22TK-S-ASCTK-42-S-BLU'), + (0x25bc9663df4b398193dc2cb7478a5d8367698199, 'Dhex D''s Simple Art', 'AVAX'), + (0x25c19efe2a9e000b02a3a6888428b24cd0baa5a1, 'Anthony Modeste KOE Animation Gold Refractor S2-18 Legendary', 'BUND-21TS2-L-AS2-18-V-GOL'), + (0x25c6f2ecb4700a1c7c413054b56b29f5090541e5, 'Aluminum Fractals (AVAX series 1)', 'AF'), + (0x25d836ca0593b57dee6ed89486f9f0481ac4a328, 'Philadelphia Phillies® Andrew McCutchen Inception Base White 73 Common', 'MLB-INC21-C-IB73-WHT'), + (0x25d8a8797b2d6da5bab5457fbd1b9949edb977ed, 'AVAX Masks', 'AMASK'), + (0x25de649e11ac77d25660364935565be263ab793a, 'Pittsburgh Pirates® Kevin Newman SS Base Static Gold 502 Uncommon', 'MLB-S221-U-B502-GOL'), + (0x25e42241692aead54e3e1ff09fc18e0fb78ae78a, 'Cleveland Guardians™ Jose Ramirez Base Glitch 269 Uncommon', 'MLB-22S1-U-B266-M-GLI'), + (0x25e5bba002576dfd2aa86196163ea1c7d6d67517, 'Food Map of Turkey', 'FMT'), + (0x25ef3f6889348bb781124770f38af68fa1d0d497, 'FSV Mainz 05 Jonathan Burkardt Young Stars Team Color 170 Super Rare', 'BUND-SC21-S-YS170-TMC'), + (0x25f7108bb87cffe1df6b5031508a5db54e0125f4, 'Certificate of Soulbound Eligibility', 'CERT'), + (0x25fa5bca4a4808b51dabe538ee9be9042f962e44, 'CritterCoinNFT', 'CritterNFT'), + (0x260edd2822c60d10ca610ac11083f29ac1146075, 'Digital Zarda Sundays', 'DZS'), + (0x2614507abff50b0b1ca35b0d8c2c420fdd949d53, 'Godzilla RAT Page 6 Comic Page Color 5 Super Rare', 'GDZ-RAT21-S-CP5-A-COL'), + (0x262512de92c6dd2f6a1c79c55a01fd48401440d5, 'VfL Wolfsburg Renato Steffen Base Players Gold 34 Rare', 'BUND-SC21-R-BP34-GLD'), + (0x262940c4d00e7c0083c60e272a7a951f7ee354b0, 'Godzilla RAT Page 14 Comic Page Color 12 Super Rare', 'GDZ-RAT21-S-CP12-A-COL'), + (0x2629bc7f901cc1a639ceab91ad03b39f6c6e3c32, 'Arizona Diamondbacks® Carson Kelly Base Blue 1032 Common', 'MLB-22PRI-C-B26-M-BLU'), + (0x262c470e6e7621d8efafea69352229ff6ed53f1d, 'Philadelphia Phillies® Aaron Nola 2022 Definitive Gold 25 Legendary', 'MLB-22LEG-L-22DEF25-M-GLD'), + (0x262c7c2ed87eacacf325dfec4466f87d27682322, 'Assetha', 'AST'), + (0x263016b84fe1915b2168d700fee0fb7293331a79, 'Tampa Bay Rays™ Shane Baz Facsimile Signature Slab Gold 3070 Epic', 'MLB-22PRI-E-FS45-M-GLD'), + (0x2632824f37dec269459d790c6a2934d5a0b5e644, 'The Rebels', 'RBL'), + (0x2633a1b282360a2def13d09cf93d7914d08dacd8, 'Big Bones', 'BBONE'), + (0x2635ea24f0edebe5cccf8581179beca6a244ffd4, 'Baltimore Orioles® Renato Nunez 1B Base Static Gold 409 Uncommon', 'MLB-S221-U-B409-GOL'), + (0x263c1fa371f51788a6deff94ef73b955955d6779, 'San Francisco Giants® Brandon Belt 1B Base Motion Rainbow 405 Rare', 'MLB-S221-R-B405-RAI'), + (0x2645c16c9642306cc9b8bcbcf49322c4ec808b4b, 'Veggies', 'VEGGIE'), + (0x26500d8df10a5ce072d0738193e5c42d61002bd4, 'Anton Stach M05 Top Players Facsimile Signature Team Color TK-23 Epic', 'BUND-22TK-E-TPTK-23-S-TMC'), + (0x26531d32772a1ebbd20b8938831fc205e3f2d094, 'Vincenzo Grifo SCF Base White S1-07 Common', 'BUND-21TS1-C-BS1-07-S-WHI'), + (0x26559c8038dfc930d6e5105dc7686d99044a4067, 'Paul McMullan DUD Base Purple SP-32 Super Rare', 'SPFL-21SPSS-S-BSP-32-A-PUR'), + (0x2659a109cd8f2dea66984d68de4a34d5d1d6583c, 'Los Angeles Dodgers® Justin Turner Division Series Bronze 43 Super Rare', 'MLB-21POST-S-D43-M-BRO'), + (0x2659df02d55cc956224084411b8408728d360a47, 'Atlanta Braves™ Cole Hamels P Base Static Gold 495 Uncommon', 'MLB-S221-U-B495-GOL'), + (0x265e38561b4dd8409a7a933c5a1262d7c2c56bdc, 'Cincinnati Reds® Joey Votto Base Pink 1008 Uncommon', 'MLB-22PRI-U-B83-M-PNK'), + (0x266334c648a2c9d6f2d2721e37b8d6f174101787, 'American League™ Tim Anderson Base Blue 1272 Common', 'MLB-22PRI-C-B223-M-BLU'), + (0x266d64372a6465d6c1c7fce1644aceac57a25cd7, 'New York Mets® Starling Marte National League Base Golden 16 Super Rare', 'MLB-22ASG-S-B16-M-GLD'), + (0x266fa93e454bccb0fedc026aa20e49a10f74a1f2, 'St. Louis Cardinals® Kodi Whitley Gold Signings Facsimile Signature Gold 38 Epic', 'MLB-INC21-E-SS38-GLD'), + (0x2670020e207e24ab9b12edb1c4524786f18289b8, 'Motoverse', 'MOTO'), + (0x267f7494002780124b0b4ee322c285f503e2b6a6, 'FC Union Berlin Sheraldo Becker Base Players Team Color 53 Static Facsimile Signature Rare', 'BUND-SC21-R-BP53-SFS-TMC'), + (0x2682dfe793b78c7ba3e3c969fbb9b3dd9961ec96, 'Houston Astros® Michael Brantley Regular Season Division Winners RWB 23 Rare', 'MLB-21POST-R-R23-M-RWB'), + (0x2684a81d91554ed6690f25f8240ee8225abd47af, 'Uncommon Comic 21 1-21 Bazooka Joe 2021 NFT', 'BZK-U-21C'), + (0x269d0d05b194ae489255f4bc0224180de306d9b1, 'Borussia Monchengladbach Florian Neuhaus Young Stars Team Color 151 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS151-SFS-TMC'), + (0x26a63900cecbc15f17f8e2148f59a5234de2b698, 'Full Degen', 'FDGN'), + (0x26a97749a524ea17bfdf8a43f09923b85ea9b00b, 'Miami Marlins® Nick Neidert Rookie and Future Phenoms Facsimile Signature Blue 44 Super Rare', 'MLB-INC21-S-RC44-BLU'), + (0x26a99fd989eaff8254b1f4ef467244fab0bfa1e5, 'Angels® Mike Trout Pure Power White 2101 Rare', 'MLB-22PRI-R-PP1-M-WHI'), + (0x26a9ed0b4ca4ffd93f27838aec0b1d316dfc22ed, 'Toronto Blue Jays® Tom Hatch P Base Static White 556 Common', 'MLB-S221-C-B556-WHI'), + (0x26ad422fb9d1e0c8ea2864e8d0e8fcc2b99e9ae2, 'Angels® Brandon Marsh Facsimile Signature Slab Gold 3080 Epic', 'MLB-22PRI-E-FS4-M-GLD'), + (0x26b6386d22165d129c0f1ec7b263b90f42ed84c5, 'mike8848', 'mike8848'), + (0x26bd84d8415586bc91390c2d44355abc81ae4a27, 'New York Yankees® Gleyber Torres Generation NOW Team Colors GN-22 Epic', 'MLB-22S1-E-GN22-M-TMC'), + (0x26bdf28ed4cf9c894b64667a5dc263f2423f8163, 'Sheraldo Becker FCU Animation Gold Refractor S4-58 Legendary', 'BUND-21TS4-L-AS4-58-V-GOL'), + (0x26c2f7f91e922406ff9d1ebf1e85f9766c2437d5, 'Houston Astros® Michael Brantley Base White 199 Common', 'MLB-22S1-C-B198-S-WHI'), + (0x26d2306576ba5488788be86d565113dd9d44e46c, 'Seattle Mariners™ Julio Rodriguez Facsimile Signature Slab Gold 3078 Epic', 'MLB-22PRI-E-FS22-M-GLD'), + (0x26dda10f7f2c7bab4f7461e04c6264acae7f4dd1, 'Chicago Cubs® Jason Kipnis 2B Base Motion Platinum 494 Epic', 'MLB-S221-E-B494-PLA'), + (0x26f79b14eb18f69ddd72b334e7d9cdb382e4f2b5, 'Minnesota Twins® Mitch Garver C Base Motion Vintage Stock 470 Super Rare', 'MLB-S221-S-B470-VS'), + (0x2700b7fb84193af0c8c10326e136019865642996, 'ElonBabyDoge', 'ElonBabyDoge'), + (0x2702a6a823819c9957174af9271073276a25393b, 'Arizona Diamondbacks® Christian Walker Base Vintage Stock 75 Super Rare', 'MLB-22S1-S-B75-M-VS'), + (0x27070c14b48167e5f273e6f1b6092152f16f099f, 'Houston Astros® Ryan Pressly P Base Motion Platinum 652 Epic', 'MLB-S221-E-B652-PLA'), + (0x2710ed0a48cfa88a4f225287cafc7a44aa1c6830, 'Niklas Dorsch FCA Base White S3-31 Common', 'BUND-21TS3-C-BS3-31-S-WHI'), + (0x271344a9db452ca51fb68467dffca5da3f6e07c6, 'Jean-Paul Boëtius M05 Animation Black Refractor S4-51 Epic', 'BUND-21TS4-E-AS4-51-V-BLA'), + (0x272161ee1182e5a2568c2ed2b40d36b54107f40d, 'Avaware Allen Collectible', 'AAC'), + (0x272276c3cc4c65e439bfa60bd85c6b9d23282855, 'RB Leipzig Dayot Upamecano Top Players Gold 98 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP98-AFS-GLD'), + (0x27262636d007f488a451993472f967b9192c89d1, 'Atlanta Braves™ Ronald Acuña Jr. National League Base Golden 13 Super Rare', 'MLB-22ASG-S-B13-M-GLD'), + (0x273bf5c0a16df387be6d7d68ee569a05da5cd3a4, 'Minnesota Twins® Ryan Jeffers C Base Motion Platinum 552 Epic', 'MLB-S221-E-B552-PLA'), + (0x273ee62630d8203d3d2d81c8c308593280e67598, 'Minnesota Twins® 2021 Topps MLB Inception Set Completion Reward Team Colors 17 Epic', 'MLB-21INCSC-E-21INCSCR17-M-TC'), + (0x274f002f0741a2b08ce5d8f44b30ea224c0452b4, 'Common Comic 91 2-43 Bazooka Joe 2021 NFT', 'BZK-C-91C'), + (0x274f4ab4223a9f1510ac96fedae56aaf51139de6, 'Minnesota Twins® Brent Rooker OF Base Static White 480 Common', 'MLB-S221-C-B480-WHI'), + (0x274f9081664852f067c0e1f5642079bf1890f79d, 'Legendary Skeleton Club', 'LSC'), + (0x2750ca0e20ff6a5234f96310a05042ba726afaf1, 'Jesper Lindström SGE Club Phemons Silver S4CPH-08 Super Rare', 'BUND-21TS4-S-CPHS4CPH-08-S-SLV'), + (0x2756ae8344709f69d6c2d47622ca45a4de225748, 'WAGMI x Artists Collab', 'WAGMIAC'), + (0x275e9a51bc83ec0bd824a5d7c50120f65a248ebf, 'New York Yankees® Clint Frazier Base White 101 Common', 'MLB-22S1-C-B100-S-WHI'), + (0x27639598eb0865d1a5f077589d0aa9931273299f, 'Pittsburgh Pirates® Colin Moran Base Independence Day RWB 317 Rare', 'MLB-22S1-R-B313-M-RWB'), + (0x276d12becfac6bee445fbfd912ee6838ace07572, 'Arizona Diamondbacks® Base Vintage Stock 144 Super Rare', 'MLB-22S1-S-B143-M-VS'), + (0x27708e547bd9e967c2b2d7b7ecc4fa24046f76da, 'Miami Marlins® Lewin Diaz 1B Base Motion Platinum 417 Epic', 'MLB-S221-E-B417-PLA'), + (0x27737e76aef1973c45c76d84d6a77174877e5bb4, 'God Hates NFTees', 'GHN'), + (0x277424079a6622106f8dece080cdf76cfe505db2, 'Mads Pedersen FCA Animation Gold Refractor S3-26 Legendary', 'BUND-21TS3-L-AS3-26-V-GOL'), + (0x278094a9aebfda2d9656131b18dc8a756dd8f0de, 'Kush', 'KUSH'), + (0x278563e72ef9827224e854ad9f1b6ea5fd6dacdf, 'Myntacon', 'MYNT'), + (0x278f95b19bb8c6cea728e2842c7cd27b5531253a, 'San Francisco Giants® Mauricio Dubon Base Glitch 246 Uncommon', 'MLB-22S1-U-B243-M-GLI'), + (0x27928ff12031f64407e408acc9c4b641ecdae17b, 'Atlanta Braves™ Ronald Acuña Jr. 2022 Definitive Gold 2 Legendary', 'MLB-22LEG-L-22DEF2-M-GLD'), + (0x2792b51c84efbcfc474037c0b24186eef8545496, 'American League™ Jared Walsh Base Blue 1305 Common', 'MLB-22PRI-C-B189-M-BLU'), + (0x2797777427c848b131f293878845e824468a78e4, 'Atlanta Braves™ Austin Riley Division Series Bronze 51 Super Rare', 'MLB-21POST-S-D51-M-BRO'), + (0x279a22e91bb780dc3eac3a743e638c547ef94bd4, 'New York Mets® Jacob deGrom Inception Base Black 63 Legendary', 'MLB-INC21-L-IB63-BLK'), + (0x27b6e962766d377cd379a8e1ff4ecee7ca40a562, 'San Diego Padres™ Jake Cronenworth Divison Series Newspaper BW 1089 Common', 'MLB-22TNP-C-DSN5-M-BW'), + (0x27b9e4ec7e0a6e8981a2eb022e6b7b6b70e536c5, 'Houston Astros® Yordan Alvarez World Series Newspaper BW 1158 Common', 'MLB-22TNP-C-WSN6-M-BW'), + (0x27bd207367f88cb807b7d43734461fb46e7f46c0, 'Chicago White Sox® Jake Burger Base Vintage Stock 186 Super Rare', 'MLB-22S1-S-B185-M-VS'), + (0x27c073ba87e1b5275ba7a3218d46c0c31573f934, 'San Francisco Giants® Joey Bart C 1986 Anniversary Static Team Colors 86B-14 Super Rare', 'MLB-S221-S-1986A86B-14-TMC'), + (0x27c581b604e688ca28a203769dae291e25b9a365, 'MetaOasis Artist', 'MTOSA'), + (0x27c98d8fa8df489feb071ad94b70885404ee8a3c, 'Helloween', 'HELL'), + (0x27d0a953add35fd1cd0990c3bbce4c5bb8e0ea5a, 'San Francisco Giants® Alex Wood P Base Motion Vintage Stock 643 Super Rare', 'MLB-S221-S-B643-VS'), + (0x27d28d211809b874d99d40df3f05346e6ae8e3a2, 'Patrik Schick B04 Base White S1-05 Common', 'BUND-21TS1-C-BS1-05-S-WHI'), + (0x27d3af8a5e81c5267e500962c3e9873682244aa0, 'Ava Shrooms', 'SHY'), + (0x27d4d5081b1d925dddfd94d9656d960f62202f6a, 'New York Mets® Andres Gimenez Gold Signings Facsimile Signature Gold 28 Epic', 'MLB-INC21-E-SS28-GLD'), + (0x27d5c2ed6004ed99db9627c4b16ac3999b5b47ec, 'Houston Astros® Alex Bregman Facsimile Signature Glitch 68 Epic', 'MLB-22S1-E-FS4-M-GLI'), + (0x27d68bf6fc277b0e14990a65cb022d185939f826, 'Chicago White Sox® Luis Robert Base Glitch 107 Uncommon', 'MLB-22S1-U-B106-M-GLI'), + (0x27dceb757cdf668bf98f1205172588365d28f323, 'Superpower Mystery Box A', 'SSMBATest'), + (0x27e865e37d88b7428ee765fff7b28ffb7e00da2a, 'Paper Hans Golden Animation Facsimile Signature Color 18 Legendary', 'GPK-NFT22-L-GAFS18-A-COL'), + (0x27ec93df79ff4d054eee4ca9d6ce102bb310ebfb, 'Not Warhol x The EgoVerse', 'NWEV'), + (0x27ee4256e98a95693bd379b66fdfe32a4831746b, 'Common Comic 47 1-47 Bazooka Joe 2021 NFT', 'BZK-C-47C'), + (0x27ee479f0e1a7753fc762a293b47326c8bc92112, 'Bruce Anderson LFC Base White SP-29 Common', 'SPFL-21SPSS-C-BSP-29-A-WHI'), + (0x27eef863bc8657e08978d33b30a0b7bfc880d3e3, 'Bazaar NFTs', 'sNFT'), + (0x27f0b7a2e42246099116ba38aa4fe216ede1f486, 'Not a Salvor', 'NS'), + (0x27fa6f0fbd8ac82f1a821d00bc9edd30d8590365, 'My NFT Token', 'MNT'), + (0x28073df426d273e5d7f4e44c1df42f888dd416c7, '$AVAX OGs', 'OGs'), + (0x2807ca07c2a381fd2e4be56ff0300eea25088a85, 'Sport-Club Freiburg Nils Petersen Top Players Gold 113 Super Rare', 'BUND-SC21-S-TP113-GLD'), + (0x280c8fad4c4304da9c758c2e085cc78d82979f55, 'High Society Collabs', 'HSC'), + (0x280d55677171e210cb9f315eff0189c7651dc21f, 'Arizona Diamondbacks® Merrill Kelly Base Glitch 74 Uncommon', 'MLB-22S1-U-B74-M-GLI'), + (0x281f79598edfdb58a53661592fff76813ff280d2, 'Super Rare Comic 85 2-37 Bazooka Joe 2021 NFT', 'BZK-S-85C'), + (0x28218468630e1ccc3ebeae89806e78822cacb123, 'Seattle Mariners™ 2021 Topps MLB Inception Set Completion Reward Team Colors 24 Epic', 'MLB-21INCSC-E-21INCSCR24-M-TC'), + (0x282961975106465b2ff330354142f88eb556f469, 'Arizona Diamondbacks® Tyler Gilbert Base Vintage Stock 130 Super Rare', 'MLB-22S1-S-B129-M-VS'), + (0x28296a6facf5d7a6d89b54c86e25cf9c35c914d5, 'Toronto Blue Jays® Jose Berrios Base Vintage Stock 29 Super Rare', 'MLB-22S1-S-B29-M-VS'), + (0x282c8521058dc70ad38c2f70360e279771d901ee, 'Kansas City Royals® Edward Olivares Rookie and Future Phenoms Facsimile Signature Blue 32 Super Rare', 'MLB-INC21-S-RC32-BLU'), + (0x283701987c9498bfa7e3126e5180443151976447, 'Los Angeles Dodgers® Trea Turner Championship Series Silver 29 Epic', 'MLB-21POST-E-CS29-M-SIL'), + (0x283841d3d582cea9eb4a32c02a17d8447d2e5153, 'HERO', 'HERO'), + (0x2839e880230ec711188d6be5a24c6048347e26db, 'Pittsburgh Pirates® Max Kranick Facsimile Signature Slab Gold 3101 Epic', 'MLB-22PRI-E-FS30-M-GLD'), + (0x2842a22265404a0d0caf755515b1baf8ed288dd5, 'New York Yankees® Joey Gallo Short Print White 322 Rare', 'MLB-22S1-R-SP67-M-WHI'), + (0x284490a3084c8c1e1cd35465822ced6843f396ce, 'Chicago White Sox® Tim Anderson Base Independence Day RWB 64 Rare', 'MLB-22S1-R-B64-M-RWB'), + (0x2845e593cb465a8821a5ca990e7d29b0d6a29c4a, 'New York Mets® Jacob deGrom Inception Base Blue 63 Uncommon', 'MLB-INC21-U-IB63-BLU'), + (0x2852b05a06f8902797918821fe55ee5973210a06, 'Arizona Diamondbacks® Zac Gallen Base Pink 1062 Uncommon', 'MLB-22PRI-U-B8-M-PNK'), + (0x28666763c9bda25e789f4d1955eb14e5399eeefd, 'Cleveland Guardians™ Jose Ramirez Pure Power Facsimile Signature Reward White 3312 Legendary', 'MLB-22PRICR-L-PPR7-M-WHI'), + (0x28674c34205da8a35b4bbf45494646efd61d9722, 'Tampa Bay Rays™ Joey Wendle Base Vintage Stock 145 Super Rare', 'MLB-22S1-S-B144-M-VS'), + (0x287003915d4c92c55cb8efec154d9bbef4a45394, 'Megaguirus Base Collectible Magenta 13 Common', 'GDZ-RAT21-C-B13-S-MAG'), + (0x28701cc224cc29415fc47c930c5c5970bd120df5, 'Deez Nutz', 'DEEZNUTZ'), + (0x287239c80d1cd46b5176765f220ec44688bca499, 'New York Yankees® Luis Gil Fresh Faces White 2219 Rare', 'MLB-22PRI-R-FF11-M-WHI'), + (0x2876bc8c8f8596e0f0c599bf9a6e69568625cdfe, 'Miami Marlins® Trevor Rogers P All-Star Motion Purple 11 Epic', 'MLB-S221-E-AS11-PUR'), + (0x28857cccca599f0876792094870758a18f581dc0, 'CryptoBlades character', 'CBC'), + (0x288e966cab9b97de3a28a050853d9c075c4b869f, 'Milwaukee Brewers™ Christian Yelich Facsimile Signature Letter Booklet Team Color 11 Legendary', 'MLB-INC21-L-LB11-TMC'), + (0x288f14fa45f28fce9f8016ae2f511c237c5eeb88, 'Borussia Dortmund Raphaël Guerreiro Base Players Team Color 9 Static Facsimile Signature Rare', 'BUND-SC21-R-BP9-SFS-TMC'), + (0x289539e9f95d2726ba4a1d09bdcb5d0c5bbb4536, 'Toronto Blue Jays® Bo Bichette Base Independence Day RWB 126 Rare', 'MLB-22S1-R-B125-M-RWB'), + (0x289cc1b7f77a4293de927f4b0b78db24dcb68aaa, 'Colorado Rockies™ Brendan Rodgers 2B Base Static Gold 591 Uncommon', 'MLB-S221-U-B591-GOL'), + (0x28a13183406a754362b6a0149374fe93efefbb12, 'Kansas City Royals® Hanser Alberto 2B Base Motion Rainbow 414 Rare', 'MLB-S221-R-B414-RAI'), + (0x28a59d355b5125883c98475f3c4352fa3c062131, 'People and Periods', 'P&P'), + (0x28a81a947a5d6630c04b7589113e815912ff208f, 'Sport-Club Freiburg Ermedin Demirović Young Stars Team Color 159 Super Rare', 'BUND-SC21-S-YS159-TMC'), + (0x28a9cf97f06f5805293bf8cd1522448097b259c0, 'Tampa Bay Rays™ Randy Arozarena OF 70th Anniversary Facsimile Signature Motion Platinum 600 Legendary', 'MLB-S221-L-70AFS600-PLA'), + (0x28b2529b999e1e5cb87a8672f15662160af853ea, 'Not Tacos', 'NOTTACO'), + (0x28b4088252e682da338cf1edf71c8d3662fa2812, 'Milwaukee Brewers™ Avisail Garcia Postseason Base Navy 20 Uncommon', 'MLB-21POST-U-B20-M-NVY'), + (0x28b4caadabd7008e753b0c613b29bbd3e0de03a7, 'Saša Kalajdžic VFB Base Red S4-61 Uncommon', 'BUND-21TS4-U-BS4-61-S-RED'), + (0x28b7f48cd73df1ebd9416421e008dd5988aeb73a, 'Super Rare Comic 52 2-4 Bazooka Joe 2021 NFT', 'BZK-S-52C'), + (0x28c53733d11a1ee5768fe42ac05116d300f89ace, 'COTC Reimagined Mint Pass', 'COTCR'), + (0x28ccb8274213570f2d888a5fdf03fa6cf6b8d137, 'Jacob Bruun Larsen TSG Base White S4-54 Common', 'BUND-21TS4-C-BS4-54-S-WHI'), + (0x28d4bf312c04db092387c5d7977db33865c3afc7, 'Atlanta Braves™ Carl Edwards Jr. P Base Motion Rainbow 576 Rare', 'MLB-S221-R-B576-RAI'), + (0x28d84e9f008733ffd8f1b64c0ebbae0eca725a89, 'Cammy Kerr DUD Base White SP-31 Common', 'SPFL-21SPSS-C-BSP-31-A-WHI'), + (0x28ea1b949e727bac62e25acaa951ac386a33bc40, 'Gigan Toppsicle Color 1 Legendary', 'GDZ-GVG22-L-TP1-A-COL'), + (0x28eaa8667dee90dc4cb652b2768dd3771876e6ce, 'Oakland Athletics™ Jake Lamb 3B/1B Base Static White 442 Common', 'MLB-S221-C-B442-WHI'), + (0x28ef51098e0c2a50f1ee37eaf6201d59d0228c55, 'Boston Red Sox® Double Bath Base Glitch 229 Uncommon', 'MLB-22S1-U-B226-M-GLI'), + (0x28f8c0b703ddc105bbef96bbde4e1f228fdcd434, 'St. Louis Cardinals® Yadier Molina 1987 35th Anniversary Chrome T87C-4 Super Rare', 'MLB-22S1-S-1987AC3-M-CHR'), + (0x29037fce41f91f48ea5d4d70015abdc0f126ef73, 'StakedKnife', 'SKNIFE'), + (0x290f3f8f619ac9377166482ef0061c565b12342f, 'Boston Red Sox® Rafael Devers Base Pink 1035 Uncommon', 'MLB-22PRI-U-B5-M-PNK'), + (0x291199802e6f9ea4843813ba2229f4b7d2c48bf9, 'Friendly Ghosts', 'FRGH'), + (0x2919630b07f7d1c425db295f4cc63829cb882a11, 'Pittsburgh Pirates® Ke''Bryan Hayes Rookie and Future Phenoms Facsimile Signature Black 65 Legendary', 'MLB-INC21-L-RC65-BLK'), + (0x2921ecf1d153ac5f041c2b48bc219179dfbd2a47, 'San Diego Padres™ Ryan Weathers Base Glitch 70 Uncommon', 'MLB-22S1-U-B70-M-GLI'), + (0x2922c38c07f1f193afac4dadb7ea966858856d78, 'The One Awards 2022 Winner', 'OCW'), + (0x292931b9ce5b966dc9993bf8af38e9892229a5cb, 'Milwaukee Brewers™ Christian Yelich Base Independence Day RWB 288 Rare', 'MLB-22S1-R-B285-M-RWB'), + (0x292c88798bc80129b2642c63bcded8e5295953af, 'Allan McGregor RFC Top Saves Purple SPTS-10 Rare', 'SPFL-21SPSS-R-TSSPTS-10-V-PUR'), + (0x292cfe648e55dfa0c58e20660f7670187226ffcd, 'Low Effort Banner', 'LOWe'), + (0x292e0c360c83f0d53bd3d130ac9264cad01d5f86, 'Chicago White Sox® Tim Anderson Base Pink 1183 Uncommon', 'MLB-22PRI-U-B124-M-PNK'), + (0x29337a6460e9d49b0661a232a83b890a70b17e71, 'Brooks-Lacroix WOB Animation Duos TSC-19 Epic', 'BUND-21TSC-E-RATSC-19-A-DUO'), + (0x294e4de640ba6feb2e9ee263f975098af30c3cdd, 'New York Mets® Jacob deGrom Facsimile Signature Red 330 Rare', 'MLB-22S1-R-FS25-S-RED'), + (0x29507d7999c4d4384b602396ea522b559b4cfb11, 'Chicago Cubs® Willson Contreras Inception Base White 18 Common', 'MLB-INC21-C-IB18-WHT'), + (0x29547033301dbf7e6cd2015da3b85edeadefde85, 'Wrath NFT', 'WTH'), + (0x295df7ba528e12224c3fbc69189795b7c026fd71, 'Angels® Jo Adell Rookie and Future Phenoms Facsimile Signature White 35 Rare', 'MLB-INC21-R-RC35-WHT'), + (0x2969ade2d58cbd2d9acc5ce550152c49e0840fda, 'Arizona Diamondbacks® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 1 Legendary', 'MLB-21S2SC-L-21S2SCR1-M-TC'), + (0x29794d757bafb674890d52fc2c7ad0c1e17a278b, 'Avaware Allen Collectible', 'AAC'), + (0x29859a93e8a221e97b7e9b06c193cf2479ba5cf6, 'Common Comic 50 2-2 Bazooka Joe 2021 NFT', 'BZK-C-50C'), + (0x2987fbc9e7ccda212077f3e3f724fccf84ad7139, 'Atlanta Braves™ Austin Riley Postseason Base Red 59 Rare', 'MLB-21POST-R-B59-M-RED'), + (0x298b317eea99a748b645565d3f46544bc336f789, 'Houston Astros® Base Independence Day RWB 136 Rare', 'MLB-22S1-R-B135-M-RWB'), + (0x299101af67e7081526b44a78ea29c04823827cd5, 'Pittsburgh Pirates® Gregory Polanco OF Base Motion Vintage Stock 412 Super Rare', 'MLB-S221-S-B412-VS'), + (0x299440f7a392093398d4cdde482ecaf23ac1b18f, 'Holograph Collection', 'HLGRH'), + (0x2994a53c4e4de3e08a01043a30f4ed336e685e2f, 'VITRUVIAN X THEORY', 'VTRVN'), + (0x29b1ed5beeb909175344594ab68c1cf4983fa3bf, 'storm Lottery Ticket', 'SLT'), + (0x29b2a6df118e49ae530931f90c6594c80b63a314, 'Edgy Apes', 'EAPES'), + (0x29b2ce5cfd6aba5a5e47cdeb48437ed5f66b9162, 'My Team Stakeholders', 'BBKTEAM'), + (0x29b3f4c71b7d96136bd825e6a9c5297ea5787332, 'MooWorld', 'MOO'), + (0x29b52d4580f985fbadb68286b44b1b96b0377977, 'Cincinnati Reds® Joey Votto Base White 290 Common', 'MLB-22S1-C-B287-S-WHI'), + (0x29b98dfcc9ba941f814c1ad10e22f3c433706e48, 'Atlanta Braves™ Max Fried Base Independence Day RWB 129 Rare', 'MLB-22S1-R-B128-M-RWB'), + (0x29bb22acb8cc966265a2b69e7123ca7df00071d4, 'Los Angeles Dodgers® Mookie Betts Division Series Bronze 41 Super Rare', 'MLB-21POST-S-D41-M-BRO'), + (0x29c3614066e27b4f1b882b3769154db65705c0d7, 'RB Leipzig RBL Insert Pennant Team Color S1P-02 Uncommon', 'BUND-21TS1-U-IS1P-02-A-TMC'), + (0x29d04f2db7f0d23764ce46e6acdeee04dbb2edb2, 'St. Louis Cardinals® Nolan Arenado Popular Demand Facsimile Signature Slab Teal 3523 Legendary', 'MLB-22PRI-L-PDFS12-M-TEA'), + (0x29d1e7f8414ae09bc70858982ba6b3e62f694ea1, 'Kansas City Royals® Mike Minor Base White 155 Common', 'MLB-22S1-C-B154-S-WHI'), + (0x29d890ffe7d41e2439df706981cbe9740d31b7af, 'Atlanta Braves™ Ozzie Albies Generation NOW Team Colors GN-7 Epic', 'MLB-22S1-E-GN7-M-TMC'), + (0x29d8d6a7575406783acda882901688efffa27f74, 'San Francisco Giants® 2021 Topps MLB Inception Set Completion Reward Team Colors 25 Epic', 'MLB-21INCSC-E-21INCSCR25-M-TC'), + (0x29e4098bd94d267595c559bbc88a7f163efb4e28, 'Turdizens', 'TURD'), + (0x29e481101bb8f15ee8901f155be2e1f055ba8fb1, 'Dexalot', 'ALOT'), + (0x29eaa1bd7fd3b4408b747705658e883b64e9200f, 'veNFT', 'veNFT'), + (0x29ebf3f3163785a525d99acea745323d782c1625, 'Pittsburgh Pirates® Josh Bell Inception Base White 77 Common', 'MLB-INC21-C-IB77-WHT'), + (0x29f0b8a7cef4416c7605e192764a49b9a9783ce6, 'Atlanta Braves™ Max Fried Base White 129 Common', 'MLB-22S1-C-B128-S-WHI'), + (0x29f8b74c19a4509214d8d39837d1d61fed871fe3, 'FeRARI Frank Golden Animation Facsimile Signature Color 11 Legendary', 'GPK-NFT22-L-GAFS11-A-COL'), + (0x29faf5659795d11686275aafe18caf4af43a7268, 'Chicago Cubs® Nico Hoerner Rookie and Future Phenoms Facsimile Signature White 9 Rare', 'MLB-INC21-R-RC9-WHT'), + (0x2a0204760556b8da6b89ec03eab055f0f2e2c089, 'Kansas City Royals® Jackson Kowar Facsimile Signature Gold 3095 Super Rare', 'MLB-22PRI-S-FS20-M-GLD'), + (0x2a0b11125be4ad608ca8e1bbb2c008c45101f6a7, 'Vivid Beta', 'VBETA'), + (0x2a118a336a64d19a1f89a4f036bf5747e5be0f45, 'Philadelphia Phillies® Bryce Harper Facsimile Signature Glitch 250 Epic', 'MLB-22S1-E-FS18-M-GLI'), + (0x2a2d2874ef260aa54ba245a0be03f60ceb4ed3e3, 'ETHDubai 2023', 'EDB23'), + (0x2a34f7e8f7319a9f827cb6ffa6bf62163b1cfd9d, 'MugFrens', 'mFREN'), + (0x2a37caf2480d2863cc9bbb9e95504bda9d467fc3, 'Los Angeles Dodgers® Julio Urias Base Vintage Stock 299 Super Rare', 'MLB-22S1-S-B295-M-VS'), + (0x2a458059994dba63e686792c410cc44467f46547, 'Cursed Pirates', 'PIRATES'), + (0x2a470b45636f57671844b6aa404ca14738bc30b5, 'Uncommon Comic 17 1-17 Bazooka Joe 2021 NFT', 'BZK-U-17C'), + (0x2a491e95b7e03e2e637f58d1aca7dd0821e164c1, 'AINA', 'NK'), + (0x2a4d412b5b290e5f32e4248ba508ca119d6700d7, 'Uncommon Comic 33 1-33 Bazooka Joe 2021 NFT', 'BZK-U-33C'), + (0x2a4ef168e158ed0d2328e7c090b91ae73f27dabc, 'MINDS_', 'MINDS_'), + (0x2a5977e1bc454b614afa2f5d44ea33182795c1a8, 'Chicago White Sox® Gavin Sheets Base Independence Day RWB 12 Rare', 'MLB-22S1-R-B12-M-RWB'), + (0x2a59aa408a01323bc91908473f5eabf002296fa2, 'TSG Hoffenheim Munas Dabbur Base Players White 27 Common', 'BUND-SC21-C-BP27-WHT'), + (0x2a7917cb035dbf401d4baa3f4f83bd6c67093154, 'New York Yankees® Clint Frazier OF Base Static Gold 429 Uncommon', 'MLB-S221-U-B429-GOL'), + (0x2a79bc995613611b66186e401c54d84d93e7bff4, 'Atlanta Braves™ Huascar Ynoa Base Vintage Stock 3 Super Rare', 'MLB-22S1-S-B3-M-VS'), + (0x2a7d5c163b99bc99048dd7449d269e92c225b862, 'Jesper Lindström SGE Club Phemons Team Color S4CPH-08 Epic', 'BUND-21TS4-E-CPHS4CPH-08-V-TMC'), + (0x2a7f5f6c6dd1e81e6d54fafd4b82a0905ed5e941, 'Ross McCrorie ABE Base White SP-10 Common', 'SPFL-21SPSS-C-BSP-10-A-WHI'), + (0x2a848c3c1eec66bb64f2ad4fd2650ca35ca809f7, 'Pittsburgh Pirates® Ke''Bryan Hayes 3B Base Static Gold 644 Uncommon', 'MLB-S221-U-B644-GOL'), + (0x2a873a198f0e56e522c08b24220aa2f2aba75687, 'FSV Mainz 05 Robin Quaison Top Players Gold 127 Super Rare', 'BUND-SC21-S-TP127-GLD'), + (0x2a89e0ef8d7d4eb173c902b0fa3dc8fef329574c, 'Joe Aribo RFC Base Aqua SP-02 Uncommon', 'SPFL-21SPSS-U-BSP-02-A-AQU'), + (0x2a8d3cb8a855a242f4f1c4a85b026a787cd96f7a, 'New York Yankees® HR Handoff Base Motion Vintage Stock 646 Super Rare', 'MLB-S221-S-B646-VS'), + (0x2a9a66ceb1c544535f6a53fb4bbfacfb360eea72, 'Werewolves', 'MOON'), + (0x2aa5d15eb36e5960d056e8fea6e7bb3e2a06a351, 'Hedgeys', 'HDGY'), + (0x2ac5247d5d3f88f3129fc65e2867dcdb894bf2fc, 'OpenAutoMarket', 'OMKT'), + (0x2ac695c2df94f63294ad1c3e18d33d594f33b099, 'Oakland Athletics™ Daulton Jefferies P Base Motion Rainbow 656 Rare', 'MLB-S221-R-B656-RAI'), + (0x2ac9c30c2ac3a248768c2cb9031d40216eea6fda, 'Angels® Reid Detmers Base Pink 1230 Uncommon', 'MLB-22PRI-U-B131-M-PNK'), + (0x2adaac0b6b24298a5c0f6592f1bc5fa89a532514, 'Gemini Gene Golden Animation Facsimile Signature Color 12 Legendary', 'GPK-NFT22-L-GAFS12-A-COL'), + (0x2ade6dabaa69647ec991bd3cfa563914daff6b5d, 'VoxKongs', 'VXKNS'), + (0x2ae371c7773c4632826fdeb1246dd1c8ced36b4c, 'San Francisco Giants® Sammy Long Facsimile Signature Gold 3114 Super Rare', 'MLB-22PRI-S-FS47-M-GLD'), + (0x2aeebac7670ea6d232fa0037197481e6a358afdd, 'Staked PixCat', 'SPCAT'), + (0x2afb88f6519412bb4a8dfd0f26cbd86f06d2b9aa, 'Chicago Cubs® Billy Hamilton OF Base Motion Vintage Stock 588 Super Rare', 'MLB-S221-S-B588-VS'), + (0x2b043c4ceabd79da68bc6b8bf6db742ee234f100, 'OG Ape Island Season 2', 'OGAPE2'), + (0x2b08fb77bf59b6ce6735b7461975516d6b3f11db, 'Detroit Tigers® Victor Reyes OF Base Static Gold 336 Uncommon', 'MLB-S221-U-B336-GOL'), + (0x2b0f719ed7660b316e7e82d6c58c34c2548ea7af, 'Goblin Kings Say', 'GKS'), + (0x2b19732af99029aefbac9e8c47f56a844ff396c6, 'Angels® Mike Trout Inception Base Red 44 Rare', 'MLB-INC21-R-IB44-RED'), + (0x2b1c7b41f6a8f2b2bc45c3233a5d5fb3cd6dc9a8, 'KyberSwap v2 NFT Positions Manager', 'KS2-NPM'), + (0x2b1e8938d68063f7fa889c49e036eecda3f029dc, 'Washington Nationals® Josiah Gray Facsimile Signature Gold 3111 Super Rare', 'MLB-22PRI-S-FS18-M-GLD'), + (0x2b2401dc07fca690eccb002c6824fce6efc361c2, 'St. Louis Cardinals® Andrew Miller Base White 39 Common', 'MLB-22S1-C-B39-S-WHI'), + (0x2b46219d51c073846bec23f344543e5b8351012b, 'TSG Hoffenheim Stefan Posch Base Players Gold 30 Rare', 'BUND-SC21-R-BP30-GLD'), + (0x2b47d8bff03e47e0e1cd33ba08f6a34fbfe95de2, 'Minnesota Twins® Ryan Jeffers Gold Signings Facsimile Signature Gold 27 Epic', 'MLB-INC21-E-SS27-GLD'), + (0x2b483e0a9b28f168f0d5237ad5fa71a38209e8ba, 'Cleveland Guardians™ Jose Ramirez Short Print White 269 Rare', 'MLB-22S1-R-SP55-M-WHI'), + (0x2b50967d653bee7e1bf785501326bd5b31f05b4d, 'KuzaPets', 'KZP'), + (0x2b583646ec93245562fd08a3b5f44aa55417766b, 'Yield Yak AVAX BenQi AVAI Vault', 'yyAvaxBenQiAVLT'), + (0x2b5b72f98a5fdd59b48c1a8aece4a771c812ec02, 'Shaman Tribe Chant Royalties', 'STCR'), + (0x2b5fe188e5ffd566b2361186b7ccdba23cd9ac30, 'Piece of Shit', 'SHIT'), + (0x2b60eb42f6eeb28e96cbadfe1ce5bb035b7175c8, 'New York Mets® Jonathan Villar 2B/SS Base Motion Rainbow 479 Rare', 'MLB-S221-R-B479-RAI'), + (0x2b6a536c6a1ac03133689bc81c4c092dff827ab3, 'CryptoPukes Golden Animation Facsimile Signature Color 3 Legendary', 'GPK-NFT22-L-GAFS3-A-COL'), + (0x2b705cbbc6d516ad1b2bc664dabff0667b1c1bf5, 'Detroit Tigers® Gregory Soto Base White 17 Common', 'MLB-22S1-C-B17-S-WHI'), + (0x2b77b6c9ee705b9b888ad655ec9a564fa65db2c8, 'New York Mets® Carlos Carrasco P Base Motion Platinum 655 Epic', 'MLB-S221-E-B655-PLA'), + (0x2b786f334cdee40a19405325e1800fe3acabab22, 'Kansas City Royals® Ryan O''Hearn 1B Base Motion Vintage Stock 492 Super Rare', 'MLB-S221-S-B492-VS'), + (0x2b7b66367a8e6a661ea8697c1d5b88978a616131, 'Common Comic 23 1-23 Bazooka Joe 2021 NFT', 'BZK-C-23C'), + (0x2b80dfc93d617c642accc592342ea325baa0350b, 'MechAvax ShortSeries #01', 'MASS01'), + (0x2b822da31b5695fc8e19981a7e934287b9b598e6, 'Miami Marlins® Jesus Sanchez Inception Base White 51 Common', 'MLB-INC21-C-IB51-WHT'), + (0x2b88ee7aa08988eb77e9baa2add870e42798807e, 'The Hippo Club', 'HPC'), + (0x2b8ae8e69801c7017575dc00dfa1aebf51c2cfd9, 'Chicago White Sox® Garrett Crochet P Base Static Gold 362 Uncommon', 'MLB-S221-U-B362-GOL'), + (0x2b915b62415de74c5e92835afbe29d75c846eb37, 'Tampa Bay Rays™ Joey Wendle Division Series Bronze 5 Super Rare', 'MLB-21POST-S-D5-M-BRO'), + (0x2ba01816c7b4417d9492ad4952f72ab4f2c7a777, 'Shidizen 0', 'SHID0'), + (0x2ba887037e4e2ac7988cf78068ee6a15b75643ff, 'Borussia Monchengladbach Matthias Ginter Base Players White 18 Common', 'BUND-SC21-C-BP18-WHT'), + (0x2baf64c3fbe721662844abd2647170dbb4b6f74b, 'St. Louis Cardinals® Jack Flaherty Facsimile Signature Gold 3039 Super Rare', 'MLB-22PRI-S-FS17-M-GLD'), + (0x2bb0f73a0cb255d483f3eb44e0ac7c1a5e149c9b, 'Toronto Blue Jays® Santiago Espinal Rookie and Future Phenoms Facsimile Signature Blue 78 Super Rare', 'MLB-INC21-S-RC78-BLU'), + (0x2bb1f6acda2e6228be24b30571d50430ad0a23bc, 'Arizona Diamondbacks® Tyler Gilbert Base Blue 1311 Common', 'MLB-22PRI-C-B176-M-BLU'), + (0x2bcf03a1e6ee4550be14c7b7df4c87b31ebe8901, 'Kansas City Royals® Bobby Witt Jr. Facsimile Signature Slab Gold 3088 Epic', 'MLB-22PRI-E-FS5-M-GLD'), + (0x2bd0ee5ede60367c810aeca013324f0cf3f8d2e3, 'Moon Alien Mantis', 'MAM'), + (0x2bd433ad04efdc574f0c95e103e20c4383ca978b, 'Erhan Mašović BOC Ascendent Facsimile Signature Blue TK-54 Legendary', 'BUND-22TK-L-ASCTK-54-S-BLU'), + (0x2bdb489367f7856dbe1dcfc3ce2a3dda0550ce91, 'Luke McCowan DUD Base Aqua SP-33 Uncommon', 'SPFL-21SPSS-U-BSP-33-A-AQU'), + (0x2bdc3ef44070a8453da13a8b54d0b90856134cc9, 'Chicago Cubs® Kyle Hendricks Base Independence Day RWB 168 Rare', 'MLB-22S1-R-B167-M-RWB'), + (0x2bdda9b5f75c6cdb7acaf804842c0231a02bae89, 'Super Rare Comic 92 2-44 Bazooka Joe 2021 NFT', 'BZK-S-92C'), + (0x2bdeae4a865374a5745a8abdfff619212e361994, 'Based Lines', 'BSLN'), + (0x2be9dbcfb351899f4aac010a21047b852a0ed61f, 'Gassie Infinity Animation Facsimile Signature Color 2 Super Rare', 'GPK-NFT22-S-AFS2-A-COL'), + (0x2bedc168aa4a5d787064ecffc870ec3eeddfca8a, 'Texas Rangers® Nick Solak 2B/OF Base Static White 583 Common', 'MLB-S221-C-B583-WHI'), + (0x2beebe440f03e5eda2a83e70935a146a2aab67f9, 'Boston Red Sox® Eduardo Rodriguez Base Glitch 192 Uncommon', 'MLB-22S1-U-B191-M-GLI'), + (0x2bfd9d2e3dd389aae2a002b660610ded04e896f0, 'RUG TICKET1', 'RUGT1'), + (0x2c088c7f2020219e0667f6944a0e79205f1cb39a, 'GolemWormz', 'GLMWRM'), + (0x2c09b4eb33f288fd5264fc19ec04c7e938b742e8, 'Jak Alnwick SMI Base White SP-21 Common', 'SPFL-21SPSS-C-BSP-21-A-WHI'), + (0x2c0c26143192a6887836e1762ee1be9204b95e4f, 'FC Augsburg Reece Oxford Base Players White 74 Common', 'BUND-SC21-C-BP74-WHT'), + (0x2c0ed6067e792d0f90aab1fe1763ef1bd7fbba9d, 'Sport-Club Freiburg Lucas Höler Base Players Team Color 39 Uncommon', 'BUND-SC21-U-BP39-TMC'), + (0x2c14db774f7305b86ba419af5e739c1111e1a39a, 'Borussia Dortmund Thorgan Hazard Base Players White 10 Common', 'BUND-SC21-C-BP10-WHT'), + (0x2c14f814e077c3e55c545136f5f3b3d444c6f053, 'Washington Nationals® Riley Adams Base Vintage Stock 158 Super Rare', 'MLB-22S1-S-B157-M-VS'), + (0x2c1d7dc9f47a694bfeeee348ece2af7761e0d86c, 'Milwaukee Brewers™ Devin Williams P 70th Anniversary Facsimile Signature Motion Platinum 485 Legendary', 'MLB-S221-L-70AFS485-PLA'), + (0x2c2162ece6a22df8704a47f2773a19305742b857, 'Holograph Collection', 'HLGRH'), + (0x2c26c628a6d0f25305a821dc482c98c8b818555a, 'Maya Mask Animation Color 15 Rare', 'GPK-NFT22-R-A15-A-COL'), + (0x2c39b797703ac01335d90ae84b95dea851d5633f, 'Toronto Blue Jays® George Springer OF Base Motion Rainbow 633 Rare', 'MLB-S221-R-B633-RAI'), + (0x2c3a6854bfb3b686bcfae663d72cded1960a0175, 'Wahine Toa', 'TOA'), + (0x2c42d4d8647cfabb52a5f2343dd0d9f2a10a4bb4, 'Pittsburgh Pirates® Miguel Yajure P Base Motion Vintage Stock 612 Super Rare', 'MLB-S221-S-B612-VS'), + (0x2c44dfbe429255c3d25a5d259c04eb8459e256d4, 'Mothra Riverscape Traditional Art Black and White 4 Rare', 'GDZ-RAT21-R-TA4-A-BW'), + (0x2c46997698eae23c123604b57dc0fe8c805f30d1, 'Detroit Tigers® Matt Manning Fresh Faces Facsimile Signature Reward White 3424 Legendary', 'MLB-22PRIASG-L-FFR11-M-WHI'), + (0x2c46c1f6492edd9a23b59e1df0875dd037a93d0c, 'Tampa Bay Rays™ Randy Arozarena Postseason Base Navy 2 Uncommon', 'MLB-21POST-U-B2-M-NVY'), + (0x2c49e6aae17d511a962afa5fa8b1abc83708701b, 'Nox Beyond', 'NoxBeyond'), + (0x2c53d1e1caa7b0c326f430822e588aa37f5c6ae9, 'DSC Arminia Bielefeld Ritsu Dōan Top Players Gold 140 Super Rare', 'BUND-SC21-S-TP140-GLD'), + (0x2c5de8860f495bc5db285a67c0f41a42fe08e5c1, 'Tampa Bay Rays™ Wander Franco Base Independence Day RWB 215 Rare', 'MLB-22S1-R-B212-M-RWB'), + (0x2c5fa88fd3a7fa20170877de6c7f6be28974b4e4, 'New York Yankees® DJ LeMahieu 2B Base Static Gold 350 Uncommon', 'MLB-S221-U-B350-GOL'), + (0x2c654bd5c81040a3902550b8fb1571b5a9c6829b, 'Jeremy Dudziak SGF Motion Rainbow Refractor S4-46 Super Rare', 'BUND-21TS4-S-MS4-46-V-RAI'), + (0x2c671f1960e8fded4cfacba299b97e94b3901938, 'SW3G Discounts', 'SWD'), + (0x2c7681338d394665b81e8b91fe50f95e9cf115ab, 'Adorable Whales', 'AW'), + (0x2c8a0dcafe1204f235a1f657487a720e4d09ab15, 'National League™ J.T. Realmuto Base Blue 1291 Common', 'MLB-22PRI-C-B207-M-BLU'), + (0x2c8ab46d5c5a0819e15d0aa06002b02f8412a04b, 'Miami Marlins® Edward Cabrera 1987 35th Anniversary Chrome T87C-46 Super Rare', 'MLB-22S1-S-1987AC34-M-CHR'), + (0x2c921e1ff621f02558c68fae65f489328d90a3b7, 'Vibing Ballz', 'VBALLZ'), + (0x2c96b7750132b271b704ab66786edd108e5a8439, 'National League™ Manny Machado Base Pink 1293 Uncommon', 'MLB-22PRI-U-B194-M-PNK'), + (0x2c9b88b802ff6231f9917d8f3cde2d64b6f3d634, 'Proof of Steak Base Color 20 Common', 'GPK-NFT22-C-B20-S-COL'), + (0x2ca3729bcb730d4dfa920bf65a37884532937685, 'New York Yankees® Giancarlo Stanton Wild Card Contenders Blue 10 Common', 'MLB-21POST-C-W10-M-BLU'), + (0x2ca6a8b27d6ab7822217354377ef24543d342af7, 'Miami Marlins® Base Vintage Stock 326 Super Rare', 'MLB-22S1-S-B322-M-VS'), + (0x2ca6c03588fec51ceb7e224f438251db1d1865e6, 'Detroit Tigers® Casey Mize Facsimile Signature Gold 3033 Super Rare', 'MLB-22PRI-S-FS7-M-GLD'), + (0x2caeee00fc349e2eff5fcaaecb56106fa78d1397, 'Philadelphia Phillies® J.T. Realmuto C Base Static Gold 611 Uncommon', 'MLB-S221-U-B611-GOL'), + (0x2cc1fa187d279e555a98ebabf239d1a3c1778067, 'Los Angeles Dodgers® Mookie Betts Base Independence Day RWB 50 Rare', 'MLB-22S1-R-B50-M-RWB'), + (0x2cc7bcb2fb3d8b46af6dc3497a554fc85517b2d0, 'GoCats', 'GoCat'), + (0x2ccae1ce619b96da3d3c3e90781f106600cbb795, 'San Diego Padres™ Eric Hosmer 1B Base Motion Platinum 639 Epic', 'MLB-S221-E-B639-PLA'), + (0x2ccf0b7a970e3d58ab5d6463be21284f28c6f6d0, 'TSG Hoffenheim Robert Skov Top Goals Team Color TG-12 Static Facsimile Signature Legendary', 'BUND-SC21-L-TGTG-12-SFS-TMC'), + (0x2ccf45697186e10026c144350b2ae826174a3ff4, 'Tampa Bay Rays™ Tyler Glasnow Base Vintage Stock 302 Super Rare', 'MLB-22S1-S-B298-M-VS'), + (0x2cd80194ac4fb05176bcf4144785dc6e7bea7543, 'San Francisco Giants® Tony Watson P Base Motion Platinum 589 Epic', 'MLB-S221-E-B589-PLA'), + (0x2ce12e4389422e3420cf909cf0e807ef40694755, 'DSC Arminia Bielefeld Cedric Brunner Base Players Team Color 85 Uncommon', 'BUND-SC21-U-BP85-TMC'), + (0x2ce73fe64388a48ae03ccca3b66639f8917c0a2b, 'American League™ 2021 ERA Leaders Base Vintage Stock 283 Super Rare', 'MLB-22S1-S-B280-M-VS'), + (0x2ceaa1294fad01e496ee91b6bd288e970cc2dc3e, 'Atlanta Braves™ Jorge Soler Postseason Base Red 62 Rare', 'MLB-21POST-R-B62-M-RED'), + (0x2ceaf70e87e49c23b08035a6f56a9818cab99ec8, 'Hot Coin Summer Golden Animation Color 23 Epic', 'GPK-NFT22-E-GA23-A-COL'), + (0x2cec96867c93bbb5ce63fe7162c2d9892b15fc2e, 'Uncommon Baseball Card 7 Pat Batter Bazooka Joe 2021 NFT', 'BZK-U-7B'), + (0x2cf04e7578c18bcb3b1f2ce069e9a63e24dabb84, 'Epic Baseball Card 8 Tex Batter Bazooka Joe 2021 NFT', 'BZK-E-8B'), + (0x2d0030acc5b34837e2214a5e967e850749149e60, 'nice art', 'na'), + (0x2d04b9e4d7278e0334d9428c9bda5da923c12b67, 'Tampa Bay Rays™ Baseball is Fun! Base Motion Vintage Stock 353 Super Rare', 'MLB-S221-S-B353-VS'), + (0x2d062e191b338abb13c1d21a07421053c2f9d21b, 'Boston Red Sox® Martin Perez Base White 212 Common', 'MLB-22S1-C-B210-S-WHI'), + (0x2d06bda269016ee8eaf68b95a0b3deacf830cd0e, 'Myhands', 'AVAX'), + (0x2d079b0da26cb10ddd6b60c0ea0c4185b5045948, 'Raphaël Guerreiro DOR Base Red S1-03 Uncommon', 'BUND-21TS1-U-BS1-03-S-RED'), + (0x2d095e395c1b965d3e6de6b6fe9a1b88cc7d42e3, 'Magic Fangs', 'FANGS'), + (0x2d14cc329686c47e7e00cf11e1aa8208923a19fe, 'The official bone heads', 'Boneheads'), + (0x2d15610b45feb6a1efd33f98239971bce5fb676f, 'Angels® Reid Detmers Base White 201 Common', 'MLB-22S1-C-B200-S-WHI'), + (0x2d16a128f19c78e1c3c8d1a9642ec2ee42aee7b6, 'CWF Token', '$CWF'), + (0x2d1e2e2fdab5047b5227e8c16e01432699ac6a42, 'Bad Builders Club', 'BBC'), + (0x2d25f0e43ee1007b2b2649730657b6e4826c9119, 'AvaxDoggy', 'ADO'), + (0x2d29891ecad7d04094e3330e898626ec78dcde5f, 'Imperium Empires', 'IME'), + (0x2d2e0c0cd0b90ff7b867afea22901aba09ef5e11, 'Cincinnati Reds® Tucker Barnhart C Base Motion Rainbow 580 Rare', 'MLB-S221-R-B580-RAI'), + (0x2d30d0b3f5a8880ec4724044a99757608c09e125, 'Detroit Tigers® Daz Cameron OF Base Static Gold 441 Uncommon', 'MLB-S221-U-B441-GOL'), + (0x2d321321bc485f4c7ca247be495a2082d85cb02e, 'Atlanta Braves™ Adam Duvall Base Vintage Stock 279 Super Rare', 'MLB-22S1-S-B276-M-VS'), + (0x2d3b1554985f71c8195b886064630097c912aa44, 'Super Rare Comic 29 1-29 Bazooka Joe 2021 NFT', 'BZK-S-29C'), + (0x2d3c89b808bcdbba5395cffecc5ab26366e89456, 'Oakland Athletics™ Ramon Laureano OF Base Motion Platinum 613 Epic', 'MLB-S221-E-B613-PLA'), + (0x2d430ab66a8a5c9aeaa9b6150551ceb7c6d9bae4, 'Car Systems', 'CSYST'), + (0x2d44cb096207250d1a176f4f9b1c4f82806d978d, 'Farmer Cheems', 'Farmer Cheems'), + (0x2d470532d6e14e94368ab41784065eff5773150a, 'Bridget Troll Animation Facsimile Signature Color 16 Super Rare', 'GPK-NFT22-S-AFS16-A-COL'), + (0x2d4c4557c19ad821772ed1159b8b0f6d2ad27c6b, 'Bloody Clam', 'BLCM'), + (0x2d548426cfb7f5ee57a04be11fb745bd5990374f, 'Miami Marlins® Trevor Rogers P Facsimile Signature Static Blue 563 Super Rare', 'MLB-S221-S-FS563-BLU'), + (0x2d68395b894721b414863dbd5428d52497e1d392, 'Atlanta Braves™ Ender Inciarte OF Base Static White 515 Common', 'MLB-S221-C-B515-WHI'), + (0x2d70118bff656d48237b9f5eb8d0e83265b281f7, 'Ninja Ava', 'Ninja'), + (0x2d76462319cd3d6f489d572b92b5396ecb96aeb8, 'Giovanni Reyna DOR Ascendent Magenta TK-38 Uncommon', 'BUND-22TK-U-ASCTK-38-S-MAG'), + (0x2d7c2afa0a148b426e84464290aca62a2639cffe, 'Seattle Mariners™ Yusei Kikuchi P Base Static White 366 Common', 'MLB-S221-C-B366-WHI'), + (0x2d8a213f6f78c60df0b709e50d88060a18bad404, 'SV Werder Bremen Theodor Gebre Selassie Base Players White 79 Common', 'BUND-SC21-C-BP79-WHT'), + (0x2da1bff7a9d8360983e1e919cc666e331c353ecc, 'Connor Ronan SMI Top Plays Purple SPTPL-21 Rare', 'SPFL-21SPSS-R-TPLSPTPL-21-V-PUR'), + (0x2da6fd59561bb4166a7788a018377c748aef462f, 'Alassane Plea BMG Motion Aqua Refractor S3-24 Rare', 'BUND-21TS3-R-MS3-24-V-AQU'), + (0x2dafdb7ae7e8ddbbf52a96b0ce9e10a273a6acac, 'The Pumpkin Doodles Club', 'ThePumpkinDo'), + (0x2db1461661db873354ae8aa7535d89a368f4078a, 'Diamonds', 'FIRE'), + (0x2db1ef5ba40d7e9ef76bdb33dbd26d134928c339, 'Kansas City Royals® Hanser Alberto Base White 53 Common', 'MLB-22S1-C-B53-S-WHI'), + (0x2db52aa91887d04a5f4128ff54c5ba7f37c7cc3a, 'TEAM12NFT', 'T12'), + (0x2dbacf1a139bbea0e3a96d2b44d291d8b0ba9540, 'Washington Nationals® Josiah Gray Base Glitch 43 Uncommon', 'MLB-22S1-U-B43-M-GLI'), + (0x2dbf637f7efbebed20aff720ed774af0b511d1d4, 'Pangolin Community - Istanbul', 'gLW'), + (0x2dc3d4e67c97880db93448cc3625211f3b6949ad, 'Baltimore Orioles® Cedric Mullins Base Pink 1064 Uncommon', 'MLB-22PRI-U-B24-M-PNK'), + (0x2dcb36834fb14d0b6f4313cea473b7121407cfaf, 'St. Louis Cardinals® Nolan Arenado Facsimile Signature Gold 3042 Super Rare', 'MLB-22PRI-S-FS35-M-GLD'), + (0x2dcb59eb42c07e6bb8deb8df50b81cef17f6a860, 'Elementals', 'ELEM'), + (0x2dd17ddc57e622fa4a44c1857d5a3490cec5a6bb, 'Calvin Ramsay ABE Top Plays Purple SPTPL-01 Rare', 'SPFL-21SPSS-R-TPLSPTPL-01-V-PUR'), + (0x2dd515d19521445b668229b1788799852d1243d6, 'Bears on the Stick - Genesis', 'BOTS0'), + (0x2ddcd181940c13d8de6cfa187757248dbc2a7dda, 'VfL Wolfsburg Maximilian Philipp Base Players Team Color 35 Static Facsimile Signature Rare', 'BUND-SC21-R-BP35-SFS-TMC'), + (0x2ddfcb3628dc7c8bad4b1b3d7961d042af5b710e, 'Kansas City Royals® Brady Singer Silver Signings Facsimile Signature Silver 17 Super Rare', 'MLB-INC21-S-SS17-SLV'), + (0x2df608dc5cfd99cefb4fe956ee0d6a0c606443b1, 'Super Rare Comic 43 1-43 Bazooka Joe 2021 NFT', 'BZK-S-43C'), + (0x2df7b2ed5b429f7ab6d2d205b04562f058ed9f26, 'Arizona Diamondbacks® Carson Kelly Base White 177 Common', 'MLB-22S1-C-B176-S-WHI'), + (0x2dfc08af293e6aacd05e3404847c625c1d4148be, 'Miloš Pantović BOC Base White S3-21 Common', 'BUND-21TS3-C-BS3-21-S-WHI'), + (0x2e062da4ca6848d5639d57ed6da8e2cc2183a25a, 'Houston Astros® Yuli Gurriel Base Blue 1187 Common', 'MLB-22PRI-C-B126-M-BLU'), + (0x2e1135fb122029029d085ab801f66abfa13b2ebb, 'New York Mets® Jeff McNeil 2B/OF Base Motion Vintage Stock 489 Super Rare', 'MLB-S221-S-B489-VS'), + (0x2e143236d9bb5cab0b68c027349f1614e2a9ea55, 'LVP Booster LVL 1', 'LVPB1'), + (0x2e1d1159473262252c4d5b57c0fedd203f2404d2, 'Miami Marlins® Jazz Chisholm Rookie and Future Phenoms Facsimile Signature Red 40 Epic', 'MLB-INC21-E-RC40-RED'), + (0x2e239e399e449da5ad4fc1c4033787ee75b26844, 'Pittsburgh Pirates® Mitch Keller Base Independence Day RWB 251 Rare', 'MLB-22S1-R-B248-M-RWB'), + (0x2e25b637713d91bd9133ee06342ff7b9996e55db, 'New York Yankees® Clint Frazier OF Base Motion Platinum 429 Epic', 'MLB-S221-E-B429-PLA'), + (0x2e292646b9b9f43efbdfcdf9e8fef18fb6108e21, 'Combat Apes', 'CombatApes'), + (0x2e36ce94a9053fe2b2ba4e767838168a2bb0da77, 'Chicago Cubs® Alec Mills P Base Static Gold 659 Uncommon', 'MLB-S221-U-B659-GOL'), + (0x2e3d86887759ee8be2b32487d4797ce2952a1257, 'Atlanta Braves™ Ronald Acuña Jr. Pure Power White 2105 Rare', 'MLB-22PRI-R-PP2-M-WHI'), + (0x2e3e58d36413c3a57c33694ee89f4883ae9110a0, 'New York Mets® Marcus Stroman P Facsimile Signature Static Red 549 Epic', 'MLB-S221-E-FS549-RED'), + (0x2e3e92c48ad63774e3d6547c38ed8a8d8726bd15, 'Kansas City Royals® Bubba Starling OF Base Motion Vintage Stock 375 Super Rare', 'MLB-S221-S-B375-VS'), + (0x2e430958061ec277aeea73eaba3a3e816efbaffb, 'Los Angeles Dodgers® Clayton Kershaw Inception Base White 46 Common', 'MLB-INC21-C-IB46-WHT'), + (0x2e43de247054dfeef08a60c602d996e2eb8d8ae3, 'The Nikers', 'TheNikers'), + (0x2e461926b3a11cc0a68c9671a920d009afbb5e44, 'Houston Astros® Marwin González Topps NOW White 1034 Rare', 'MLB-21NOW-R-TN1034-WHI'), + (0x2e49946f23523d7e8daf1cdf7deab3283d1530d9, 'Arizona Diamondbacks® Zac Gallen P Base Motion Platinum 440 Epic', 'MLB-S221-E-B440-PLA'), + (0x2e4e55a1518156e76964eac386954025cd193de0, 'Detroit Tigers® Miguel Cabrera Base Blue 1011 Common', 'MLB-22PRI-C-B15-M-BLU'), + (0x2e574dd087172e283bdee54b823c0806b559a8ac, 'Los Angeles Dodgers® Zach McKinstry 2B Base Static Gold 394 Uncommon', 'MLB-S221-U-B394-GOL'), + (0x2e61acbd428e2119f228a27c7cd1c2a5a77437d6, 'Seattle Mariners™ Mitch Haniger Base Independence Day RWB 80 Rare', 'MLB-22S1-R-B80-M-RWB'), + (0x2e64b78a1863b8907dfcb49b9d0e6295c95024af, 'Hertha Berlin Vladimir Darida Base Players White 47 Common', 'BUND-SC21-C-BP47-WHT'), + (0x2e687004c2bfa0e94e3084ddbd5d1ae90d66ed9f, 'Oakland Athletics™ Tony Kemp Base Independence Day RWB 114 Rare', 'MLB-22S1-R-B113-M-RWB'), + (0x2e7050531a9a92375c23007d54fc805cdee251b8, 'Neonnitas', 'NEON'), + (0x2e724664e1241304193f545e430e69aa8e261660, 'Rare Comic 44 1-44 Bazooka Joe 2021 NFT', 'BZK-R-44C'), + (0x2e72dbf202c921e160d89e66a60ad81a3f9ba2ae, 'Washington Nationals® Juan Soto Facsimile Signature Slab Gold 3015 Epic', 'MLB-22PRI-E-FS23-M-GLD'), + (0x2e7a56c90f8630af29b40bff58f5387d565effa7, 'Atlanta Braves™ Ian Anderson Inception Base Blue 4 Uncommon', 'MLB-INC21-U-IB4-BLU'), + (0x2e8a188c4090c332098f687dd491b74fe8c67957, '2021 Topps Series 2 Baseball NFT Collection Premium Pack', 'MLB-S221-PACK-P'), + (0x2e8b2dbe1c19d4d6130bb263f1d052af78a83992, 'New York Mets® Francisco Lindor Base Blue 1078 Common', 'MLB-22PRI-C-B57-M-BLU'), + (0x2e8e641f815b70145e95f4f99c001bce2bf7f5e1, 'Common Comic 102 2-54 Bazooka Joe 2021 NFT', 'BZK-C-102C'), + (0x2e9a5d3d496235cdc683650c474d251fc423e4cf, 'Paul Jaeckel FCU Limitless Rainbow Parallel TLC-02 Epic', 'BUND-22TLC-E-RLSSTLC-02-A-RBW'), + (0x2ea559e31feb5eb3e85ca16aa596b01ee76680dd, 'Dystopian Chemistry', 'dych'), + (0x2ea75ad7b2e0df628a7f564392fb5f3a03ac36d9, 'New York Yankees® Gio Urshela Base White 23 Common', 'MLB-22S1-C-B23-S-WHI'), + (0x2eaf784eb0056ea7259d85df0f9ff88736e382d5, 'Miami Marlins® Lewin Diaz 1B Base Motion Vintage Stock 417 Super Rare', 'MLB-S221-S-B417-VS'), + (0x2eb13acaa44cdac8793824929a055e00c1290e4c, 'Common Comic 14 1-14 Bazooka Joe 2021 NFT', 'BZK-C-14C'), + (0x2eb497e44b0a70b8e447e1ab6f14b20009dd532f, 'Houston Astros® Liftoff Base Vintage Stock 110 Super Rare', 'MLB-22S1-S-B109-M-VS'), + (0x2eb79509cbb6d948fbe8c75df77cd11dbe84be22, 'Uncommon Baseball Card 2 Mort Batter Bazooka Joe 2021 NFT', 'BZK-U-2B'), + (0x2eb8188b2a51212cb4d4e7dd2575604f8d7fc50d, 'Uncommon Comic 71 2-23 Bazooka Joe 2021 NFT', 'BZK-U-71C'), + (0x2eba4bb594adbb41307df841519e01aabe844025, 'San Francisco Giants® Buster Posey Inception Base Blue 84 Uncommon', 'MLB-INC21-U-IB84-BLU'), + (0x2ebcdf78d5b954544799609cbd1271f2a7bc3184, 'Holograph Collection', 'HLGRH'), + (0x2ec1832249ab108587df69d08adee866047fbab4, 'FSV Mainz 05 Robin Quaison Top Players Gold 127 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP127-AFS-GLD'), + (0x2ec3090ee300b8cb4c651af405005046c89ebb27, 'Boston Red Sox® Chris Sale P Short Print Motion White 609 Super Rare', 'MLB-S221-S-SP609-WHI'), + (0x2ec66cb911ecb7ef1eab5010f4d0219a31db3324, 'Cleveland Guardians™ Shane Bieber Base Blue 1039 Common', 'MLB-22PRI-C-B127-M-BLU'), + (0x2ecdc0073a48e1537b8182501782c0cc1ffad4e2, 'New York Mets® Michael Conforto Base Independence Day RWB 37 Rare', 'MLB-22S1-R-B37-M-RWB'), + (0x2ed131216c82e3c3c190220e94b328baf73b7f35, 'KatelynEntaNFT', 'KNFT'), + (0x2ed5a026ad7387de26b8ed08ffd89f770e8d8ea5, 'Jpeg Waifu''s', 'JPW'), + (0x2ed8bdda9696f44e9218bee7799fefc70fc3853b, 'Vee Fiend Facsimile Signature Color 5 Uncommon', 'GPK-NFT22-U-FS5-S-COL'), + (0x2eeb10848cc7e7423a7ef9ff0dcd45b440fd5f8b, 'Tunnel 16 Subway Series', 'TN16'), + (0x2eee7cc6d68f2a429ed09bb19543fbca0ec0a48b, 'New York Yankees® Jordan Montgomery Postseason Base Navy 80 Uncommon', 'MLB-21POST-U-B80-M-NVY'), + (0x2ef0fb7e871cdb498ba1038f0ad14323e4e169dc, 'New York Mets® Michael Conforto Base Pink 1149 Uncommon', 'MLB-22PRI-U-B95-M-PNK'), + (0x2ef106c6a9779214c8d905389744434c22e5b6c2, 'Baltimore Orioles® Trey Mancini Base Pink 1034 Uncommon', 'MLB-22PRI-U-B13-M-PNK'), + (0x2efbf9c031d9a65451413b1032bf4df403ab21b2, 'My Digital City', 'MDC'), + (0x2efd9997004a9806d66861bf4a400a547daf49d3, 'Timo Hübers KOE Top Players Black TK-29 Common', 'BUND-22TK-C-TPTK-29-S-BLA'), + (0x2f04249bb30d00d915d6b521a1c14d7b2ebea3e9, 'Houston Astros® Cristian Javier Base White 211 Common', 'MLB-22S1-C-B209-S-WHI'), + (0x2f0481f43562097d2c5e6e593318477132e07281, 'St. Louis Cardinals® Adam Wainwright P Base Motion Vintage Stock 534 Super Rare', 'MLB-S221-S-B534-VS'), + (0x2f1f3c606310d69571ccc4b25b4a57ca82373f8d, 'Illuminape AVAX', 'Illuminape'), + (0x2f27abdfef50027dc373bffdbdfafa437d6fa161, 'Philadelphia Phillies® Kyle Gibson Base Vintage Stock 57 Super Rare', 'MLB-22S1-S-B57-M-VS'), + (0x2f2d29416bfa718c69a8e3d19bb0acb988d63bbd, 'Milwaukee Brewers™ Christian Yelich Super Short Print White 288 Super Rare', 'MLB-22S1-S-SSP12-M-WHI'), + (0x2f2d9ca3c15583de4a592be91709fd1a94646fb6, 'Topps Series 2 - 21-22 Bundesliga NFT Card Pack', 'BUND-21TS2-PACK-S2'), + (0x2f2da311800ba6596ad94b8f3ca5b95e3a656f4f, 'You Tried Stars', 'YTS'), + (0x2f2dd833c8b30ce77d9eeaaea397d2237eca2fbb, 'VfL Wolfsburg Wout Weghorst Top Players Gold 109 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP109-AFS-GLD'), + (0x2f2e465996c41e63acf4f84a3b39033de95fa0c6, 'Philadelphia Phillies® Matt Vierling Base Blue 1221 Common', 'MLB-22PRI-C-B173-M-BLU'), + (0x2f34e5f4df88b048292db126df6e0157c787c9ac, 'Minnesota Twins® Jose Berrios P Base Motion Rainbow 395 Rare', 'MLB-S221-R-B395-RAI'), + (0x2f34e8f2d60c8f8417dca7993e7a653dc8b7dc2a, 'Eintracht Frankfurt Makoto Hasebe Base Players Team Color 41 Uncommon', 'BUND-SC21-U-BP41-TMC'), + (0x2f418eef194d70ffbaab235e355ee54c795a9794, 'Chicago Cubs® Adbert Alzolay P Base Motion Vintage Stock 658 Super Rare', 'MLB-S221-S-B658-VS'), + (0x2f43f512a9573e9c47523c132b4e69de878592cd, 'Colorado Rockies™ Kyle Freeland P Base Static Gold 615 Uncommon', 'MLB-S221-U-B615-GOL'), + (0x2f4458b648aabe32c43b71ada3f3cc62a39b15a1, 'Tampa Bay Rays™ Shane Baz Facsimile Signature Gold 3070 Super Rare', 'MLB-22PRI-S-FS45-M-GLD'), + (0x2f4f5f6996ac06c9759bee09dd35e283b3ca7350, 'Tampa Bay Rays™ Brett Phillips OF Base Motion Platinum 586 Epic', 'MLB-S221-E-B586-PLA'), + (0x2f528c499f1dd91e8b29e68ac0c6866680623c33, 'Miami Marlins® Zach Pop Base Independence Day RWB 108 Rare', 'MLB-22S1-R-B107-M-RWB'), + (0x2f56aa8bdb971e2a7b25fe5c53087c9ee6287c5d, 'Los Angeles Dodgers® Moving On! Base Glitch 238 Uncommon', 'MLB-22S1-U-B235-M-GLI'), + (0x2f68f004a224d4295bba096ad252abe136473848, 'Philadelphia Phillies® Alec Bohm World Series Broadcast RWB 1142 Rare', 'MLB-22TNP-R-WSB7-M-RWB'), + (0x2f68f6e7b5092ebcedd22d8a32add4475e0955e7, 'Funny Cops', 'FunnyCops'), + (0x2f6e4cf5a09d7666494fc5d41ce284b4fc448c68, 'Unconscious Blobs II', 'UCBL'), + (0x2f77c8fba0b1d815f7ba6bd77a096c3cd2f35afd, 'Colorado Rockies™ Antonio Senzatela P Base Static White 420 Common', 'MLB-S221-C-B420-WHI'), + (0x2f8886946ab97d494c4a4a664317e741756bc683, 'Boston Red Sox® Eduardo Rodriguez Division Series Bronze 15 Super Rare', 'MLB-21POST-S-D15-M-BRO'), + (0x2f88c0d58951128c2837eee6778b6620be9b22b6, 'Baltimore Orioles® Keegan Akin Base Vintage Stock 328 Super Rare', 'MLB-22S1-S-B324-M-VS'), + (0x2f8dc55976dc232aba9f2d32c22c347d62ea538a, 'Sport-Club Freiburg Philipp Lienhart Base Players Team Color 40 Uncommon', 'BUND-SC21-U-BP40-TMC'), + (0x2f929a5ed134b3946c40ab4527417dab707e621b, 'Kansas City Royals® Whit Merrifield Short Print White 245 Rare', 'MLB-22S1-R-SP50-M-WHI'), + (0x2f94f3d7a7fbe4eb13050a04931dc127289b01a7, 'Queens of AVAX', 'QUEENS'), + (0x2fa0b599cc11e076de6a336c1ff1d300dd8dfda4, 'The Possessed', 'ThePossesse'), + (0x2fa0ef608549eae545d50d201b7f211fec95f794, 'Minnesota Twins® Alex Colome P Base Motion Vintage Stock 533 Super Rare', 'MLB-S221-S-B533-VS'), + (0x2fa78607fccc42364b8efc4750beedb948307ff4, 'Minnesota Twins® Eddie Rosario Inception Base Red 58 Rare', 'MLB-INC21-R-IB58-RED'), + (0x2fa83f2fa89f275863b9491b1802dfea5a130024, 'CosmicIsland', 'CLAND'), + (0x2fab9099f887eab6a191dd7ea3888eb1e11258fb, 'VfB Stuttgart Katompa Mvumpa Top Players Gold 142 Super Rare', 'BUND-SC21-S-TP142-GLD'), + (0x2fb340a3bf6b0c64a00e5b9fdc2e755f965cfdd0, 'Dust City', 'DCY'), + (0x2fb6daf9a511607af30fd58a578cecf2a100a908, 'Chicago White Sox® Yasmani Grandal Base Vintage Stock 284 Super Rare', 'MLB-22S1-S-B281-M-VS'), + (0x2fb814f29174dca541c7201c1e9caadbd2fef803, 'Los Angeles Dodgers® Justin Turner 3B Base Motion Vintage Stock 370 Super Rare', 'MLB-S221-S-B370-VS'), + (0x2fc67425b8ee42a7da4878e3e9490c885d74d190, 'Borna Sosa VFB Base White S3-27 Common', 'BUND-21TS3-C-BS3-27-S-WHI'), + (0x2fcb6b0ca533769043b4ed009f3b69f2d766dd03, 'Chicago White Sox® Craig Kimbrel Base Glitch 2 Uncommon', 'MLB-22S1-U-B2-M-GLI'), + (0x2fd461aad6a5d536ba93f91b23cc3586f392364b, 'Seattle Mariners™ Julio Rodriguez Facsimile Signature Gold 3078 Super Rare', 'MLB-22PRI-S-FS22-M-GLD'), + (0x2fe4897eab56db75b18efb2830d9748d3c29d4de, 'Paper Hans Base Color 18 Common', 'GPK-NFT22-C-B18-S-COL'), + (0x2fede15ecfeabb0b912fd84fa57c7837bb27fcff, 'CIAN Honors', 'CIAN'), + (0x2fee7d4a35c9a95525d567233629a06e98e38e2e, 'FSV Mainz 05 Jeremiah St. Juste Top Players Gold 129 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP129-AFS-GLD'), + (0x2ffeaac0715d58509312b42ef56aeabc6f97ffa1, 'Joe Hart CEL Top Saves Gold SPTS-07 Legendary', 'SPFL-21SPSS-L-TSSPTS-07-V-GOL'), + (0x2ffec2e68b3de54eba4bef11d3e95300052f1368, 'Feudal Nature', 'FN'), + (0x30003eb30bd744920c5fdd0cb966785f9d3d93c1, 'CowPies', 'COWPIES'), + (0x300232a9abc970d4ca3b78c2b0f6d8d7f0fc38ee, 'Chicago Cubs® Javier Baez Inception Base Blue 15 Uncommon', 'MLB-INC21-U-IB15-BLU'), + (0x3005363950d6698e0a5d21289f3a9ee67ea24cac, 'Bayer 04 Leverkusen Leon Bailey Top Players Gold 103 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP103-AFS-GLD'), + (0x3006f805ddfa91c16cb1b243fb00f58e6e8d1ecf, 'Washington Nationals® Asdrubal Cabrera 2B/3B Base Static White 531 Common', 'MLB-S221-C-B531-WHI'), + (0x3008e80d0ffacaac2fc6b2e473a2b98aa60b8b0c, 'Seattle Mariners™ Base Static Gold 599 Uncommon', 'MLB-S221-U-B599-GOL'), + (0x300cda946ea23438da4cadb7a6286de81bba090f, 'Tampa Bay Rays™ Vidal Brujan Fresh Faces Facsimile Signature Reward White 3437 Legendary', 'MLB-22PRIASG-L-FFR15-M-WHI'), + (0x300f4b40f0e4553b0de9bc97fcc8457bacc693a1, 'Ayo Obileye LFC Base Purple SP-28 Super Rare', 'SPFL-21SPSS-S-BSP-28-A-PUR'), + (0x3018ee9f32d810b4ffa53964acdd180ad18e5350, 'Colors of Cuba', 'CLRCUBA'), + (0x30305bb8c14eb77fcaff6c40f414a42cf8a25483, 'American League™ Nathan Eovaldi Base Blue 1302 Common', 'MLB-22PRI-C-B225-M-BLU'), + (0x303ecb732de03b9bd75ecb56d91b368c0a1f9d7c, 'Blue 2022 ASG Event Exclusive Super Rare', 'MLB-22ASGEVENT-S-22ASGR1-M-BLU'), + (0x3047f574376be170edd0859eb398040d8b60a0db, 'Philadelphia Phillies® Spencer Howard Rookie and Future Phenoms Facsimile Signature White 62 Rare', 'MLB-INC21-R-RC62-WHT'), + (0x304882bfd818670dad4aa22a0a5ad246d10dd03b, 'Cincinnati Reds® Shogo Akiyama OF Base Motion Platinum 647 Epic', 'MLB-S221-E-B647-PLA'), + (0x304b8a40beef9f3b6cd2722ae22bcd21e36a5995, 'Houston Astros® Michael Brantley OF Base Motion Rainbow 434 Rare', 'MLB-S221-R-B434-RAI'), + (0x305ecd06b01a703271d5145344c3e0bad90c8871, 'SleeFi Bed', 'BED'), + (0x306122d34f207a11d75ec1f4fea839048a836f71, 'Yield Whales', 'YWNFT10'), + (0x3068c214b6e07a452d44a6b7cdac61ecf12f1a73, 'National League™ 2021 Home Run Leaders Base Glitch 146 Uncommon', 'MLB-22S1-U-B145-M-GLI'), + (0x3072fc1acffcea79d796d943cd6aa5ac5663630c, 'Atlanta Braves™ William Contreras National League Base Golden 12 Super Rare', 'MLB-22ASG-S-B12-M-GLD'), + (0x3082987907f06b66e8b6cccd4e52af37a2e7a8b6, 'Pittsburgh Pirates® Bryan Reynolds OF Base Motion Rainbow 564 Rare', 'MLB-S221-R-B564-RAI'), + (0x308a339fd0332712e56f391ce780831a347e9548, 'FC Koln Jannes Horn Base Players White 68 Common', 'BUND-SC21-C-BP68-WHT'), + (0x308c84f16eaa34a6ad12de9e4c5580994d2b3e01, 'Papaya Panties AVAX', 'PP'), + (0x308ffdf9fec0b2650415f011bf8c244adad55d58, 'Cleveland Guardians™ Ernie Clement Base White 71 Common', 'MLB-22S1-C-B71-S-WHI'), + (0x3098246a3d6af3084566a2f6345963c47a6c1051, 'FC Koln Jannes Horn Base Players Gold 68 Rare', 'BUND-SC21-R-BP68-GLD'), + (0x309f3dc3183285d62f51c85b37c18e24c23de0d5, 'Kingsley Schindler KOE Motion Rainbow Refractor S4-63 Super Rare', 'BUND-21TS4-S-MS4-63-V-RAI'), + (0x30a0ee346cc446ee10f54210e82341573613c828, 'Atlanta Braves™ Max Fried Base Glitch 129 Uncommon', 'MLB-22S1-U-B128-M-GLI'), + (0x30a397fb8fdf8c10b66120151c70aa30bf698866, 'Angels® Raisel Iglesias Base White 173 Common', 'MLB-22S1-C-B172-S-WHI'), + (0x30a7ce8a2bb16339d4a902b6896bb5e0020ad67a, 'BOGO BIG BAGS', 'BBB'), + (0x30a7e3ec88f2d73277e69f417788e026de2c8810, 'Miami Marlins® Jazz Chisholm Jr. 1987 35th Anniversary Chrome T87C-88 Super Rare', 'MLB-22S1-S-1987AC65-M-CHR'), + (0x30aaafa92f3cc85cbb3648c23ec15faf9987ec56, 'Mothra Riverscape Traditional Art CMYK Offset 4 Super Rare', 'GDZ-RAT21-S-TA4-A-CMYK'), + (0x30ac32c46a0050ca0c84b753a9e6ce3d1a341334, 'Miami Marlins® Fish out of Water Base Static Gold 530 Uncommon', 'MLB-S221-U-B530-GOL'), + (0x30b07b7414ab117905371ba10d52ad418fe9f3ac, 'Dgnz Customs new', 'DgnzC'), + (0x30bdd16aeb2af934f696a629ee1987bbed407010, 'St. Louis Cardinals® Lars Nootbaar Base Pink 1222 Uncommon', 'MLB-22PRI-U-B187-M-PNK'), + (0x30bf4ed11220c80d8f398ace3478d2be46b80e4a, 'Miami Marlins® Corey Dickerson OF Base Motion Platinum 541 Epic', 'MLB-S221-E-B541-PLA'), + (0x30ca75a101095f81a24923109f576ca58c8d3ed5, 'SmartNft', 'SNFT'), + (0x30cb5beafafb0caa6051954b859f848bf88c52c6, 'King Ghidorah Fly-by Traditional Art Color 7 Epic', 'GDZ-RAT21-E-TA7-A-COL'), + (0x30cd56a6ae0e7c8f237d4b25b7bd9456683a7488, 'Toronto Blue Jays® Hyun-Jin Ryu P Base Motion Platinum 379 Epic', 'MLB-S221-E-B379-PLA'), + (0x30d82e42805eaec04e22e7c22bd619e9b2a5c113, 'Christian Ramirez ABE Top Plays Gold SPTPL-06 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-06-V-GOL'), + (0x30d98e8e5d7a2658743a285bb0a891e685fe39b2, 'Atlanta Braves™ Kyle Muller Base Blue 1208 Common', 'MLB-22PRI-C-B158-M-BLU'), + (0x30e4ab5c3e234b306fd06007c464b631080b3f6b, 'Tampa Bay Rays™ Baseball is Fun! Base Static Gold 353 Uncommon', 'MLB-S221-U-B353-GOL'), + (0x30e591b4f02831502b335b292221c7d48fc09b2d, 'Tampa Bay Rays™ Brett Phillips OF Base Motion Rainbow 586 Rare', 'MLB-S221-R-B586-RAI'), + (0x30e5d90f38b395e99eba659267ba80fa5f2ad493, 'Los Angeles Dodgers® Max Scherzer 1987 35th Anniversary Chrome T87C-66 Super Rare', 'MLB-22S1-S-1987AC48-M-CHR'), + (0x30f66b7690766d5ac0689259d574a064af4578db, 'Washington Nationals® Juan Soto Popular Demand Facsimile Signature Teal 3503 Legendary', 'MLB-22PRI-L-PDFS9-M-TEA'), + (0x310309c117644ee18f6d4fcdb9f24f220cac6f21, 'New York Yankees® Gleyber Torres Base Blue 1099 Common', 'MLB-22PRI-C-B32-M-BLU'), + (0x31044a1a11e47546e2805306862074b729b3bcc2, 'Kansas City Royals® Whit Merrifield Base Vintage Stock 245 Super Rare', 'MLB-22S1-S-B242-M-VS'), + (0x310f5570ea150db985bea95075b1b267455e4512, 'Angels® Jared Walsh Base Glitch 154 Uncommon', 'MLB-22S1-U-B153-M-GLI'), + (0x310f6663034eea8a3f7435442ff469cdb6890439, 'National League™ Bryan Reynolds Base Pink 1297 Uncommon', 'MLB-22PRI-U-B212-M-PNK'), + (0x311d04d39fb308db39d645a5bfd003a85ed5c244, 'Los Angeles Dodgers® Clayton Kershaw Stars of MLB Chrome Night SMLBC-28 Legendary', 'MLB-22S1-L-SMLBC27-M-NIT'), + (0x312705355b02de3cead46abd56a074614ab64ba2, 'Silvan Widmer M05 Top Players Black TK-24 Common', 'BUND-22TK-C-TPTK-24-S-BLA'), + (0x312831e725a8344b7173a8aa62e29fa56c7babd3, 'Wonko''s Ice Cream Factory', 'Wonko'), + (0x312b28210d9ca8049aebf9cf4e6e50e9df5705e8, 'Miami Marlins® Jorge Alfaro Base Glitch 36 Uncommon', 'MLB-22S1-U-B36-M-GLI'), + (0x312e260942f0efa91c9d1e4dedff55d0a798ea31, 'New York Mets® Tylor Megill Base White 134 Common', 'MLB-22S1-C-B133-S-WHI'), + (0x31393849a2da441a262966d550d6f780701dbd21, 'Junior mArchitect', 'MUADAO-2'), + (0x313d7ca6775ec0862ec528aaae3b203ddfaa6b71, 'Oakland Athletics™ Sean Murphy C Facsimile Signature Static Red 349 Epic', 'MLB-S221-E-FS349-RED'), + (0x313fd92c23f92579c9b88012f292d775e7556c77, 'Godzilla vs. Megalon (1973) Movie Poster Green 2 Super Rare', 'GDZ-GVG22-S-MP2-A-GRE'), + (0x3144a1e93b87bd8f576000c3c1f545deacb3fde5, 'Hertha Berlin Rune Almenning Jarstein Top Saves Team Color TS-10 Epic', 'BUND-SC21-E-TSTS-10-TMC'), + (0x3144cf1cb10092c50d6a547ceeb27e622f6e3b23, 'Minnesota Twins® Byron Buxton 1987 35th Anniversary Chrome T87C-85 Super Rare', 'MLB-22S1-S-1987AC64-M-CHR'), + (0x3145774c3ab727101476935c1fb341deb1c7da60, 'Los Angeles Dodgers® Dustin May P Base Static Gold 355 Uncommon', 'MLB-S221-U-B355-GOL'), + (0x314d40ba2c528e3bcd3e79e198e1512e916bb1bc, 'New York Yankees® Gleyber Torres Postseason Base Red 77 Rare', 'MLB-21POST-R-B77-M-RED'), + (0x31500d911be1cd885d13a0f473e8ce8891a65648, 'Atlanta Braves™ Topps NOW White 1040 Rare', 'MLB-21NOW-R-TN1040-WHI'), + (0x315db659a476801f5a689d446b5344d86a9f38f3, 'Oakland Athletics™ Yan Gomes Base White 294 Common', 'MLB-22S1-C-B291-S-WHI'), + (0x315f2a45b743217443961f2e876611d3f4233c40, 'Liam Kelly MOT Top Saves Gold SPTS-04 Legendary', 'SPFL-21SPSS-L-TSSPTS-04-V-GOL'), + (0x3164f623094aa68fc95e8435ac81116ef2ff4ca4, 'Houston Astros® Framber Valdez P Base Static Gold 514 Uncommon', 'MLB-S221-U-B514-GOL'), + (0x316794f9a08f451b989cfe0d9d4aa572400e59f7, 'Avaliens', 'AVALIENS'), + (0x316e4af22c8fd8188e047cf107a59073c12fcde2, 'Chicago White Sox® Liam Hendriks Base Pink 1259 Uncommon', 'MLB-22PRI-U-B172-M-PNK'), + (0x3172b19e41c42b9c09ae081a4a6b6f4baccbb943, 'Chicago White Sox® Luis Robert Pure Power Facsimile Signature Reward White 3311 Legendary', 'MLB-22PRICR-L-PPR6-M-WHI'), + (0x3175c719a8fec5da847d11c060255db001a02327, 'San Francisco Giants® Austin Slater OF Base Motion Rainbow 378 Rare', 'MLB-S221-R-B378-RAI'), + (0x3176e86b1bb683bcd3fedda89db12b8a6bcff24f, 'Chicago White Sox® Eloy Jimenez Inception Base Blue 26 Uncommon', 'MLB-INC21-U-IB26-BLU'), + (0x317f7443103c52a5d84494757811e701517cb635, 'San Francisco Giants® Donovan Solano 2B Base Static Gold 605 Uncommon', 'MLB-S221-U-B605-GOL'), + (0x317fd38dd5b7ca908eaa95c970ab65957a431cd2, 'Borussia Monchengladbach Marcus Thuram Top Players Gold 100 Super Rare', 'BUND-SC21-S-TP100-GLD'), + (0x3181d1ce9effda1f742a4a80bcfa87734c383b97, 'Marketing Kangroos', 'MKG'), + (0x318ca32dd30132836e7093431d37a1ffa8321c9a, 'Topps Series 4 - 21-22 Bundesliga NFT Card Premium Pack', 'BUND-21TS4-PPACK-S4'), + (0x319009322940679b791ad49ea4ac15452120062b, 'Pittsburgh Pirates® Jared Oliva OF Base Static White 471 Common', 'MLB-S221-C-B471-WHI'), + (0x3193b6dbb1b794702423d55f856dbc2a73111320, 'STEAK.jpeg', 'STEAK.jpeg'), + (0x31a455c7f4022695c4bba60cffffcb93568b3d6f, 'Mustache Monsters', 'MMBH'), + (0x31a557421398a3f4ad3215f28198b8be5230c69a, 'San Diego Padres™ Luis Campusano C Short Print Motion White 381 Super Rare', 'MLB-S221-S-SP381-WHI'), + (0x31aaa912279c44281fc84c224998bc16fb0704ad, 'Angels® Andrew Heaney P Base Motion Vintage Stock 387 Super Rare', 'MLB-S221-S-B387-VS'), + (0x31bc777bb2a8e85a8453a7111396716a8be1e281, 'AvaxFlyFrogs', 'AVFF'), + (0x31bceffedd1cce04d7b631f6fa064b5074dd328b, 'FC Bayern Munich Thomas Müller Top Players Gold 92 Super Rare', 'BUND-SC21-S-TP92-GLD'), + (0x31c1ef104c55625e00e59b2a9959b6ccdb869ae2, 'Super Rare Comic 35 1-35 Bazooka Joe 2021 NFT', 'BZK-S-35C'), + (0x31c2aebe11ab2a94eb6c64e4638898c9960ae07e, 'Chicago White Sox® Adam Eaton OF Base Static White 554 Common', 'MLB-S221-C-B554-WHI'), + (0x31c3229da0cfbf97d7555f0b9c4521a194bf43c1, 'Texas Rangers® Nick Solak 2B/OF Base Motion Vintage Stock 583 Super Rare', 'MLB-S221-S-B583-VS'), + (0x31c34decf0fd770104d3bc0d289161b87d122ad7, 'FC Union Berlin Christopher Lenz Base Players Team Color 51 Static Facsimile Signature Rare', 'BUND-SC21-R-BP51-SFS-TMC'), + (0x31c8c6c3238bd943aada5ff83aab2b778c5efd89, 'Rare Comic 35 1-35 Bazooka Joe 2021 NFT', 'BZK-R-35C'), + (0x31cb6a5ad6cc5f4d83596afe03baeaeb70189d87, 'Topps Series Tier 6 Challenge Reward Pack - 21-22 Bundesliga NFT Cards', 'BUND-21TSC-TIER6-R'), + (0x31d6897babd9d0ec7ae5fd41b8859dbfcf0a6f61, 'melina', 'jpg'), + (0x31e799cf39693979820c9c80b2bdf8e75e3d0652, 'pumpskin Golden NFTicket', 'PGN'), + (0x31ea7faa352d2515d8b5d535b73ea675741db467, 'Unican', 'UCN'), + (0x31f25f4e88973d8596df0e9503b6c4baae047767, 'Houston Astros® Carlos Correa Topps NOW White 1033 Rare', 'MLB-21NOW-R-TN1033-WHI'), + (0x31f74f358791a1b1a9bc9199f401f9aa4bd439f2, 'Cameron Devlin HEA Base Purple SP-14 Super Rare', 'SPFL-21SPSS-S-BSP-14-A-PUR'), + (0x31fd67ae7de6373b92bca91348c476f17d887d1c, 'Masked Ape DAO', 'MAD'), + (0x321437c16224f6988c7deddb94220d8112ad1129, 'San Diego Padres™ Trevor Rosenthal P Base Static White 454 Common', 'MLB-S221-C-B454-WHI'), + (0x32160a744d5080249b8c4dde55ed5167ed232436, 'Tampa Bay Rays™ Yandy Diaz Postseason Base White 6 Common', 'MLB-21POST-C-B6-S-WHI'), + (0x321632806f1e9fe69488b0c600b1d439ae5e38b2, 'Toronto Blue Jays® Alejandro Kirk American League Base Blue 1 Rare', 'MLB-22ASG-R-B1-M-BLU'), + (0x3217b442cbb727ab41c3dfbd8ecd6ecbd24db011, 'Smolr Doomers', 'SMOLRDOOM'), + (0x32225dd6f88f2e2b890b55be5ee8e4b67ec635bc, 'OmniChicks', 'OCC'), + (0x322782f21234b9450982b26a37da75371941bcf2, 'Rare Comic 17 1-17 Bazooka Joe 2021 NFT', 'BZK-R-17C'), + (0x3227de23cca19bce5dada71a344a65ce2eb9a910, 'Cincinnati Reds® Jose Garcia SS Base Motion Rainbow 374 Rare', 'MLB-S221-R-B374-RAI'), + (0x32288f6d6822756716c8a1010ba1e6214cb2ed04, 'Chicago White Sox® Tim Anderson Popular Demand Facsimile Signature Teal 3505 Legendary', 'MLB-22PRI-L-PDFS15-M-TEA'), + (0x32372454a69d15647f5f7421b272f031b9f9d294, 'MonsterWeeties', 'MonsterWeeties'), + (0x323c6648a7573a96d2037b50bcbf06e8d6539433, 'Atlanta Braves™ Cole Hamels P Base Static White 495 Common', 'MLB-S221-C-B495-WHI'), + (0x323ed9e1643d0dc406301edbee9bfb95f0ac140d, 'Epic Baseball Card 6 Tuffy Catcher Bazooka Joe 2021 NFT', 'BZK-E-6B'), + (0x323fb4ac294b4d43f3bfba9e8ed7e8c25283867d, 'MinerVerseNFT', 'MVNFT'), + (0x324931fa07b45d4dc5d45f4716909340308c4f9d, 'Houston Astros® Yordan Alvarez Postseason Base Navy 52 Uncommon', 'MLB-21POST-U-B52-M-NVY'), + (0x3253653ebede53c399e99d708f8d819b3534db6f, 'Ai Tsukimi', 'AT'), + (0x32613ef902046bb32cf2a6ff3c22626fd781c1cc, 'Texas Rangers® Curtis Terry Base Glitch 97 Uncommon', 'MLB-22S1-U-B96-M-GLI'), + (0x3261e4d34303923b98b427f1fd3f03f146301cd2, 'Silk Road 2050 - Egyptian Spice Bazaar', 'gLW'), + (0x3262530f59104e4bb00537a069fab1058649c565, 'San Diego Padres™ Fernando Tatis Jr. Inception Base White 79 Common', 'MLB-INC21-C-IB79-WHT'), + (0x326d14298ea9ab152d3e72e4e3ecb9fa2b86cc0b, 'Houston Astros® Kyle Tucker Postseason Base Navy 53 Uncommon', 'MLB-21POST-U-B53-M-NVY'), + (0x32715562668a1a3d5e8d44b68f6f3fe6167d0cc4, 'National League™ 2021 RBI Leaders Base Glitch 181 Uncommon', 'MLB-22S1-U-B180-M-GLI'), + (0x3275c38d4d1195cfeb7ca1e611d936e71ab9c107, 'My Wings, My Freedom', 'MWMF'), + (0x327da7f21362868cf5fcf190946746b80280be47, 'Miami Marlins® Jesus Sanchez Inception Base Blue 51 Uncommon', 'MLB-INC21-U-IB51-BLU'), + (0x32897d984e3839145e175417fb6f979837d5bf87, 'Boston Red Sox® J.D. Martinez Base White 182 Common', 'MLB-22S1-C-B181-S-WHI'), + (0x3290d6e3d426b06e325af6c7916bbeb4c5a4fe78, 'Super Rare Comic 48 1-48 Bazooka Joe 2021 NFT', 'BZK-S-48C'), + (0x329262f8f606a6683e13a62bacfb74b959a1c60f, 'Minnesota Twins® Andrelton Simmons Base Independence Day RWB 306 Rare', 'MLB-22S1-R-B302-M-RWB'), + (0x3292b4a4b5bb9c0fe8ae8ca180d3dfb83646ed4e, 'HERO', 'HERO'), + (0x3294c1a4d4d3eef0b60612c8d94efb70270193fb, 'St. Louis Cardinals® Jordan Hicks P Base Motion Vintage Stock 536 Super Rare', 'MLB-S221-S-B536-VS'), + (0x3299e1c8e5d27f3511e92cf5194e4e37ef30d82a, 'Modern Taste of Mythology', 'MYTH'), + (0x32a2205fe82182fce141e652ee35ea779dfd818d, 'FC Augsburg Michael Gregoritsch Base Players White 73 Common', 'BUND-SC21-C-BP73-WHT'), + (0x32a44d6e84d97470a4e3124e9ff3c1e9ff93aaaf, 'TrickOrTreat', 'TROTR'), + (0x32a63244e7ae40ed302b956568227397d8151412, 'Texas Rangers® Jonah Heim Base Independence Day RWB 230 Rare', 'MLB-22S1-R-B227-M-RWB'), + (0x32a9784468f474b21c1c7cccda16df58e471d974, 'Kansas City Royals® Brady Singer Base Glitch 313 Uncommon', 'MLB-22S1-U-B309-M-GLI'), + (0x32b000d663df90c50d0335c11bbf45f78c569c22, 'St. Louis Cardinals® Jordan Hicks P Base Static Gold 536 Uncommon', 'MLB-S221-U-B536-GOL'), + (0x32b3052e4511de8fb2322b2607de273303ff299b, 'Uncommon Comic 73 2-25 Bazooka Joe 2021 NFT', 'BZK-U-73C'), + (0x32d3bb684628111d01ae240c76b2c9b9a8bea597, 'Geckets of AVAX', 'CGCAVAX'), + (0x32e8899dc36b85dcfbf43733da9d8f3e95bb1772, 'Topps Kickoff - 22-23 Bundesliga NFT Card Standard Pack', 'BUND-22TK-SPACK-TK'), + (0x32eae07c16054d6d9321261f06f22e124cf44151, 'Burning Bennie Golden Animation Facsimile Signature Color 6 Legendary', 'GPK-NFT22-L-GAFS6-A-COL'), + (0x32ec45d73bef17bd91f76cbe3a9b88fd596156d9, 'Kansas City Royals® Jorge Soler Pure Power Facsimile Signature Reward White 3320 Legendary', 'MLB-22PRICR-L-PPR9-M-WHI'), + (0x32ed3c1678dd1c35989d9f25c12a25f005224bf7, 'Buzz Saw Moment Color 3 Uncommon', 'GDZ-GVG22-U-M3-V-COL'), + (0x32eea9fc609933b40fe9f6a13aecee17947e60c4, 'Just a Fucking Chicken (JAFC)', 'JAFC'), + (0x32f223191773425f8a3e794d1e6b974a63e5a609, 'Remixed', 'RMX'), + (0x32f9ca93b5530361b0e5f226a17f4059b107e268, 'Atlanta Braves™ Ronald Acuña Jr. Facsimile Signature Blue 200 Uncommon', 'MLB-22S1-U-FS11-S-BLU'), + (0x33107c3875b5d7c2d29c05c7810cad5ee4d9df8b, 'Tampa Bay Rays™ Wander Franco Facsimile Signature Gold 3067 Super Rare', 'MLB-22PRI-S-FS55-M-GLD'), + (0x331e58d3743b5429cea96afdf0dfc0d0e2dc4e3b, 'momo', 'mom'), + (0x3321e4c96759aad29626d08e51aa515ed66948f7, 'FSV Mainz 05 Moussa Niakhaté Top Players Gold 128 Super Rare', 'BUND-SC21-S-TP128-GLD'), + (0x3326c4f734125a8d3d8ad95efdc8e12db6609484, 'Los Angeles Dodgers® Cody Bellinger Inception Base White 47 Common', 'MLB-INC21-C-IB47-WHT'), + (0x33311a99690d14b2457316596aad41fdfd961cf8, 'Kansas City Royals® Andrew Benintendi Base Blue 1043 Common', 'MLB-22PRI-C-B78-M-BLU'), + (0x33389f90ede68e8c4a08dd6bf0810d4db975f243, 'Los Angeles Dodgers® Trea Turner National League Base Golden 9 Super Rare', 'MLB-22ASG-S-B9-M-GLD'), + (0x334ab85d592a2fdceca752bb1b0ecbef1405c8aa, 'Diné Bahaneʼ', 'DB'), + (0x3351efe09ff0b7eb8236cf8193ce3586a704db8e, 'New York Mets® Tylor Megill Fresh Faces White 2213 Rare', 'MLB-22PRI-R-FF10-M-WHI'), + (0x3352b5075a998c5ded05702936a9299aa17e030a, 'Legend Boss', 'LBOSS'), + (0x335421d7775324da8207616f454eabe140781e26, 'Tampa Bay Rays™ Mike Zunino Base Vintage Stock 324 Super Rare', 'MLB-22S1-S-B320-M-VS'), + (0x335fddccc2c4cec7b25ce6e38f314c93b4d7395f, 'The AvaPsons', 'FLIP'), + (0x335fde68926bdccb287f5df9e5b5a3201a86bf0e, 'Avalanche IceCream', 'AICE'), + (0x336104b904e19c386a57211d1757fcdd5fe296ad, 'VfL Wolfsburg WOB Insert Pennant Team Color S4P-10 Uncommon', 'BUND-21TS4-U-IS4P-10-S-TMC'), + (0x336128fdab8d04c7baf31bbc0a9cb56fa6141423, 'Atlanta Braves™ Drew Smyly Base Independence Day RWB 195 Rare', 'MLB-22S1-R-B194-M-RWB'), + (0x336a314ea95b219499a997e0fffa97e854f97c8c, 'FC Bayern München BAY Insert Pennant Team Color S3P-08 Uncommon', 'BUND-21TS3-U-IS3P-08-A-TMC'), + (0x336acc42af756e3537fecc91f2b68c9c32eb3d58, 'Milwaukee Brewers™ Willy Adames Postseason Base White 19 Common', 'MLB-21POST-C-B19-S-WHI'), + (0x33816aa83e386530ae13a093a09404b574abcddf, 'Chicago White Sox® Jake Burger Facsimile Signature Gold 3102 Super Rare', 'MLB-22PRI-S-FS14-M-GLD'), + (0x338fde583fe14c5a71af49b539d858e71ed8b577, 'MAGIC ARMY', 'AA'), + (0x33931dea87d3439938f1cd4f2d6d06c1db0f1d90, 'Aarón Martín M05 Motion Aqua Refractor S4-53 Rare', 'BUND-21TS4-R-MS4-53-V-AQU'), + (0x339f837a17936db514b440cdea2672b5f424b046, 'Chicago White Sox® Yoan Moncada Postseason Base White 11 Common', 'MLB-21POST-C-B11-S-WHI'), + (0x33a0d8aa43e19820d7268eb75eef1aa75439a069, 'Washington Nationals® 2021 Topps MLB Inception Set Completion Reward Team Colors 30 Epic', 'MLB-21INCSC-E-21INCSCR30-M-TC'), + (0x33a6899c9d23a1b67ad44174312d9e671df86059, 'Eintracht Frankfurt Stefan Ilsanker Base Players White 44 Common', 'BUND-SC21-C-BP44-WHT'), + (0x33a6d9067528bca2ea7616d92cf954abb6767adc, 'Oakland Athletics™ Matt Chapman Base White 176 Common', 'MLB-22S1-C-B175-S-WHI'), + (0x33a9d70f651400cb48d05517d97c951622ea3956, 'Atlanta Braves™ William Contreras C Short Print Motion White 390 Super Rare', 'MLB-S221-S-SP390-WHI'), + (0x33ad85c110c9149c5a531e16ce66507dba0f9c97, 'Milwaukee Brewers™ Brandon Woodruff Regular Season Division Winners RWB 39 Rare', 'MLB-21POST-R-R39-M-RWB'), + (0x33c27a43ecde67539021ef5915ca85884f2e1ad1, 'Gerrit Holtmann BOC Top Players Team Color TK-35 Rare', 'BUND-22TK-R-TPTK-35-S-TMC'), + (0x33d6ea91d953f4ed230186fa3651d31beb173051, 'Borussia Monchengladbach Marcus Thuram Top Players Gold 100 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP100-AFS-GLD'), + (0x33d9826e18da76db33f238cd5c7b55634702119b, 'Toronto Blue Jays® Jose Berrios Base White 29 Common', 'MLB-22S1-C-B29-S-WHI'), + (0x33dd2df1cb1159ec59e3a9a8213604d27edb7045, 'Avalanche Friends Collectible', 'AFC'), + (0x33e55e8d1dd80e7315c8c09e14ad78c87f06a3ff, 'Atlanta Braves™ Ender Inciarte OF Base Motion Rainbow 515 Rare', 'MLB-S221-R-B515-RAI'), + (0x33f231cc84f622b96d927be7f655fdbe56cb5a96, 'Grumblefux', 'GFUX'), + (0x33f44cab931534c954361a04c48d76a5f976dafc, 'Washington Nationals® Jakson Reetz Base White 61 Common', 'MLB-22S1-C-B61-S-WHI'), + (0x33f4c7f0bebb0aa78ab7fd1e7491888189819857, 'San Diego Padres™ Dinelson Lamet P Base Motion Platinum 418 Epic', 'MLB-S221-E-B418-PLA'), + (0x33f8997c2ff270962ce8ab922e892428a119cfb6, 'Borussia Dortmund Mats Hummels Base Players Gold 8 Rare', 'BUND-SC21-R-BP8-GLD'), + (0x33faa3dff3577a936ce39bf08671ac9d436c8cb6, 'Philadelphia Phillies® Zack Wheeler Facsimile Signature Gold 3054 Super Rare', 'MLB-22PRI-S-FS57-M-GLD'), + (0x3404e68fd983858372f321dc7b949eb18391c7e7, 'Texas Rangers® Team Cube 2.0 Team Colors 30 Legendary', 'MLB-22S1-L-TC230-M-TMC'), + (0x34080daa79a8a15561039952cc305032c4f7bec3, 'Detroit Tigers® Victor Reyes Base Glitch 252 Uncommon', 'MLB-22S1-U-B249-M-GLI'), + (0x34093cbd4421ba0ea753a59b52d0bef23d58389e, 'Jordan White RSC Base Purple SP-34 Super Rare', 'SPFL-21SPSS-S-BSP-34-A-PUR'), + (0x340df2aa4b2d69ea999669854cd5d8829c882245, 'St. Louis Cardinals® Jake Woodford P Base Motion Vintage Stock 451 Super Rare', 'MLB-S221-S-B451-VS'), + (0x341006f56a767fa6e287aa64bd14c0e6f07f4482, 'Toronto Blue Jays® Jose Berrios Base Independence Day RWB 29 Rare', 'MLB-22S1-R-B29-M-RWB'), + (0x341203b4cc303c8c8d5503aa76f031a81ad6b239, 'New York Yankees® Andrew Heaney Base Independence Day RWB 287 Rare', 'MLB-22S1-R-B284-M-RWB'), + (0x3417dd7607d48eb4afa7783d8976a9f98e27862f, 'Milwaukee Brewers™ Avisail Garcia Base Glitch 92 Uncommon', 'MLB-22S1-U-B91-M-GLI'), + (0x34215b6d0fffe8c515b0b3006f6b70b136d2089a, 'Atlanta Braves™ Travis d''Arnaud Base White 4 Common', 'MLB-22S1-C-B4-S-WHI'), + (0x3428707279fb77398ac72dbd3458feb2a169851a, 'Boston Red Sox® Tanner Houck P 70th Anniversary Facsimile Signature Motion Platinum 635 Legendary', 'MLB-S221-L-70AFS635-PLA'), + (0x342aae7e3fb7e9bd1a6060060ce3d6125a79a202, 'Kansas City Royals® Nick Heath Silver Signings Facsimile Signature Silver 19 Super Rare', 'MLB-INC21-S-SS19-SLV'), + (0x3437d4787045a4e5f8b9c3a3a89bc08600af1c5c, 'Little Aliens Yatch Club', 'LittleAliens'), + (0x343af35aa3b8cdf4fa35870c4fc312e424265e21, 'King Ghidorah Mountainscape Traditional Art CMYK Offset 10 Super Rare', 'GDZ-RAT21-S-TA10-A-CMYK'), + (0x344c5fb639618efcf4e3837911b4630f913f6609, 'S.P.A.C.E.', 'SPACE'), + (0x345900ab03705d67ec1e64b500e6b0fd446d3ebd, 'André Hahn FCA Animation Gold Refractor S4-49 Legendary', 'BUND-21TS4-L-AS4-49-V-GOL'), + (0x345f9d74a3cf5d16fef70c572e01c80699c79431, 'Texas Rangers® Curtis Terry Base Vintage Stock 97 Super Rare', 'MLB-22S1-S-B96-M-VS'), + (0x34678aaeb2334c84cc71d9642600f319c115d5f2, 'Borna Sosa VFB Base Red S3-27 Uncommon', 'BUND-21TS3-U-BS3-27-S-RED'), + (0x3476a9bbe750498ce8f925abd1454d6dae58e8d6, 'Esonaissance', 'ESNC'), + (0x348bf0cb5b8adceb4a927190271896e398dce70e, 'Miami Marlins® Zach Thompson Base Vintage Stock 227 Super Rare', 'MLB-22S1-S-B224-M-VS'), + (0x348ec6b81906b329ac075fae567db89288d2e7ad, 'Godzilla Base Collectible Magenta 11 Common', 'GDZ-RAT21-C-B11-S-MAG'), + (0x349416767389c696674ee493c9df45e757d1d181, 'MetaDoors 3D Exclusives', 'MD3DEXC'), + (0x34948c8dd0bb7e7337e00cad186c24984d408f36, 'Los Angeles Dodgers® Mookie Betts Postseason Base White 33 Common', 'MLB-21POST-C-B33-S-WHI'), + (0x3495157a8a520ca52838f5c8605717230f95419b, 'Bayer 04 Leverkusen Moussa Diaby Young Stars Team Color 154 Super Rare', 'BUND-SC21-S-YS154-TMC'), + (0x349b1ba74b268e2469ee20382de89d2c2ebfe66a, 'Spoon Man', 'SPNM'), + (0x349f94b560a313710146e34fff8cbf19d593788c, 'Milwaukee Brewers™ 2021 Topps MLB Inception Set Completion Reward Team Colors 16 Epic', 'MLB-21INCSC-E-21INCSCR16-M-TC'), + (0x34a6d09770953ac96385286522c1b5ed2ae23322, 'Colorado Rockies™ Raimel Tapia Base Vintage Stock 46 Super Rare', 'MLB-22S1-S-B46-M-VS'), + (0x34ad88c276fb76c4c8568c71a4bc25b9327a04f8, 'Detroit Tigers® Matt Manning Facsimile Signature Gold 3087 Super Rare', 'MLB-22PRI-S-FS31-M-GLD'), + (0x34ba3ae8f4aa3fcd470b165687547edea75f87d3, 'Daichi Kamada SGE Base Red S4-42 Uncommon', 'BUND-21TS4-U-BS4-42-S-RED'), + (0x34bea81b2bf935131f6ed4eb024e5e77386f3494, 'Chicago White Sox® Jarrod Dyson OF Base Motion Platinum 337 Epic', 'MLB-S221-E-B337-PLA'), + (0x34c148e50dcfb8d1bdb307f545b385f6374a20d8, 'Boston Red Sox® Rafael Devers Championship Series Silver 1 Epic', 'MLB-21POST-E-CS1-M-SIL'), + (0x34c165810f521cae70b196f4c77dce07b25099c1, 'sw', 'ww'), + (0x34d55af761ebbe348d36f71dff9c2e1d89b3d973, 'Casual Days', 'Casual'), + (0x34e20a980f558745eb91214fc96cdb29d201a6be, 'Patrick Wimmer DSC Motion Rainbow Refractor S4-44 Super Rare', 'BUND-21TS4-S-MS4-44-V-RAI'), + (0x34fee42698a94c7c6aa5ff674dcc26655ee9990c, 'Millionaire Rabbit', 'MILRAB'), + (0x35090ac10dfda5a34a2b4ce300bdfe135ca4f76c, 'Detroit Tigers® Matt Manning Base Vintage Stock 31 Super Rare', 'MLB-22S1-S-B31-M-VS'), + (0x350c5eccd6aaa6fdad4cb52299fe9db7e0f1a421, 'NinjaAVAX', 'NinjaAVAX'), + (0x350faf2af0fb2a57bdfce8a7301ed51a8702149b, 'Shogun Geishas', 'GEISHAS'), + (0x35109618f04f26850ebc7b6ec661471454a6a1df, 'Danny Latza S04 Top Players Black TK-31 Common', 'BUND-22TK-C-TPTK-31-S-BLA'), + (0x3516338ebe9676251b747bca248521791f00b4d0, 'Atlanta Braves™ Ronald Acuña Jr. Pure Power Slab White 2105 Epic', 'MLB-22PRI-E-PP2-M-WHI'), + (0x351e865600c9b419fa7526b8819c4b5a3029c928, 'Order', 'LP'), + (0x351fa85469e4cbd754628a5cd10e813c70ea4be5, 'Kingsley Schindler KOE Motion Aqua Refractor S4-63 Rare', 'BUND-21TS4-R-MS4-63-V-AQU'), + (0x3528a77ac6a5c630ef36a94f26a92703939a4457, '$Snake Oil Bucks Early Adopter', '$SOBea'), + (0x352ad9c4a6a637840dcfa9989c61fc905d74bba4, 'Sport-Club Freiburg Baptiste Santamaria Top Players Gold 114 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP114-AFS-GLD'), + (0x352fac857ab6dc99485cc20b114dd3bfd8361255, 'Hibernian F.C. HIB Club Crest Card Gold SPCCC-03 Epic', 'SPFL-21SPSS-E-CCCSPCCC-03-A-GOL'), + (0x35320ee2127cea57fd9c5743b29e90c8c296a8a3, 'Ellyes Skhiri KOE Top Players Black TK-30 Common', 'BUND-22TK-C-TPTK-30-S-BLA'), + (0x3532448901ace68bc03fc7ea6b545552aa18f9e7, 'AXE FISH', 'aFish'), + (0x3537fcf66b35caf5890a992283e33736f4c554d1, 'Geeker Club Genesis', 'GCG'), + (0x353df43ebb516cf6f229282c8df54931855a5953, 'Tampa Bay Rays™ Brandon Lowe Inception Base Blue 91 Uncommon', 'MLB-INC21-U-IB91-BLU'), + (0x353f513671fb2f9767d299d880cd65ffbace5da5, 'Cincinnati Reds® Jesse Winker Pure Power Slab White 2114 Epic', 'MLB-22PRI-E-PP9-M-WHI'), + (0x3549517c7a409c880dc5c29621f0e0c399acb3ea, 'Danny Da Costa M05 Color Splash White TK-66 Uncommon', 'BUND-22TK-U-CSTK-66-S-WHI'), + (0x354c27c4754620e65ca838874a7656fe465f5af3, 'Baltimore Orioles® Bruce Zimmermann Base White 157 Common', 'MLB-22S1-C-B156-S-WHI'), + (0x3555cab4b6628beea81d20cb8a832a16b69671f7, 'Snowball NFT Birthday', 'SNOBNFTBIRTHDAY'), + (0x3559894cfdf10b66b94bea62256debf39241dab0, 'Nox Macabre', 'NOXM'), + (0x355c7ad77e7cc75565580ad3cab69704def39b4c, 'Avax Dads', 'ADADS'), + (0x355f4e65a9e7db935484101e8c6260b4080b79bc, 'New York Mets® Marcus Stroman Base Glitch 259 Uncommon', 'MLB-22S1-U-B256-M-GLI'), + (0x35618d151135b5207637ac10aaa757f494167e72, 'Seattle Mariners™ Jarred Kelenic Fresh Faces White 2209 Rare', 'MLB-22PRI-R-FF4-M-WHI'), + (0x356cc798b08cd4088496e2110372fa333e5af3fb, 'Eintracht Frankfurt Steven Zuber Base Players Team Color 45 Uncommon', 'BUND-SC21-U-BP45-TMC'), + (0x357894ad7affa6401d5cb5be2f3aeab9e025b2b6, 'Cleveland Indians® Delino DeShields OF Base Motion Platinum 602 Epic', 'MLB-S221-E-B602-PLA'), + (0x3579ef838c02c95ce2b4fff2d9c276766dc4d0f4, 'sexshop', 'shop'), + (0x359223c23b3e5f32c0abb5f4d883c0dee3bb648b, 'Colorado Rockies™ Raimel Tapia OF Base Motion Rainbow 359 Rare', 'MLB-S221-R-B359-RAI'), + (0x359409dc3cd2f53b34a8b2b3e9267ab23fb30e21, 'Gambit Founders Club Golden Ticket', 'GFCGT'), + (0x35a46a07258507e68c91c7c8f1a3b05744de93f4, 'San Diego Padres™ Jake Cronenworth 2B/1B Base Motion Vintage Stock 371 Super Rare', 'MLB-S221-S-B371-VS'), + (0x35a9ff9fc3995bc72a2bbb99c14b794b306cfe4c, 'Skhuul', 'SKHUUL'), + (0x35abef6fe827b166b4a70656c1e4b04de84f0ae0, 'bCASH Early Supporter', 'bCASHES'), + (0x35ac9f7662e9a2307f365322cb40a6d61ee95a10, 'Oakland Athletics™ Mark Canha Base Blue 1237 Common', 'MLB-22PRI-C-B183-M-BLU'), + (0x35b3d9b7478d7872e81e4675e2452e8bcc54c575, 'Washington Nationals® Riley Adams Base White 158 Common', 'MLB-22S1-C-B157-S-WHI'), + (0x35c907f74f32302dd8f35309cf06a3b1d61b74b8, 'Platypus the Profile Pic', 'PTPFP'), + (0x35d95ca93af62e39f5cfce1a78a92fd888af5152, 'Baltimore Orioles® Hold Me Back, Bro! Base Motion Vintage Stock 578 Super Rare', 'MLB-S221-S-B578-VS'), + (0x35e5c1b06a7d146212ee340a045a234e0494d25a, 'Boston Red Sox® J.D. Martinez Base Blue 1177 Common', 'MLB-22PRI-C-B106-M-BLU'), + (0x35e7d375885c9ae7778d961094262ad91d3a6eda, 'San Francisco Giants® Johnny Cueto Base Independence Day RWB 73 Rare', 'MLB-22S1-R-B73-M-RWB'), + (0x35e985ab20413e3b898fb5010dcfe22480f5429b, 'Boston Red Sox® Nathan Eovaldi P Base Motion Vintage Stock 623 Super Rare', 'MLB-S221-S-B623-VS'), + (0x35eba5e862d27db14faf3616e53d430678ec4ad7, 'San Francisco Giants® Mike Yastrzemski Postseason Base White 27 Common', 'MLB-21POST-C-B27-S-WHI'), + (0x35ee8974ed23c190b70de3204ea1f58416b315b5, 'Seattle Mariners™ Jose Marmolejos OF Base Static White 516 Common', 'MLB-S221-C-B516-WHI'), + (0x35ef6fb4b0f0220b3bb467715cd1cf000d7a1092, 'Fantastical NFT', 'FantasticaL'), + (0x35ef993fade4cdbec33f407fca0482370863d932, 'AVAX Artprop', 'APROP'), + (0x35f3b8b654123a647b1fa25fdb6168009a07e225, 'An Ode to My Mother, Freedom', 'AOTMM'), + (0x35f3f229f01d77f52c968d21c31e603c7dc5ead7, 'Minnesota Twins® Michael Pineda P Base Motion Vintage Stock 354 Super Rare', 'MLB-S221-S-B354-VS'), + (0x35fa4676639bf1a3899688a2d50281669a6b7647, 'Minnesota Twins® Jose Berrios P Base Motion Vintage Stock 395 Super Rare', 'MLB-S221-S-B395-VS'), + (0x35fb80ce1759090257bfec45308db3e5b8e08de9, 'Christopher Trimmel FCU Motion Rainbow Refractor S4-47 Super Rare', 'BUND-21TS4-S-MS4-47-V-RAI'), + (0x36004c731837d0cfc74e816ed668c84b0b6e0661, 'smol doomers', 'SD'), + (0x360167ad03c88b0eb4298a3e1e1688fe490abce1, 'Houston Astros® Yordan Alvarez Divison Series Broadcast RWB 1057 Rare', 'MLB-22TNP-R-DSA3-M-RWB'), + (0x3603e20fef970c38b29e6525865b316446eabbbc, 'Cincinnati Reds® Jose Garcia SS Short Print Motion White 374 Super Rare', 'MLB-S221-S-SP374-WHI'), + (0x360cf0e380d0ada6b84e1c926aef016138be8406, 'Toronto Blue Jays® Robbie Ray AL Cy Young Reward Gold Super Rare', 'MLB-21REWARD-S-ALCY1-M-GOLD'), + (0x361084e8d920eb9bd901e1988312dd3cf7681b09, 'Los Angeles Dodgers® Dustin May P Base Motion Vintage Stock 355 Super Rare', 'MLB-S221-S-B355-VS'), + (0x3614bbd58dcc0384562c9be4bd86aa33a76e7301, 'Minnesota Twins® Jose Berrios Inception Base Red 60 Rare', 'MLB-INC21-R-IB60-RED'), + (0x3619a178bc491dc48fa7039f3bdf484ed1cf45ea, 'Miami Marlins® Sandy Alcantara P Base Motion Rainbow 594 Rare', 'MLB-S221-R-B594-RAI'), + (0x361cb4cf22b1d1a0728fad673bceec380f8fb453, 'Team', 'TEA'), + (0x361d4353aaf2afa618c7d130cae743382f1357b6, 'Boston Red Sox® Matt Barnes Division Series Bronze 16 Super Rare', 'MLB-21POST-S-D16-M-BRO'), + (0x362fd12f00f586e5b0da2f673024c8d534e4b5da, 'RB Leipzig Péter Gulácsi Top Saves Team Color TS-3 Epic', 'BUND-SC21-E-TSTS-3-TMC'), + (0x363d08b9b548657cd8318e496e22ad2293c4e770, 'Seedlings', 'SEED'), + (0x36485976c79494a556ab9fb2ab6405f548a992db, 'New York Mets® Tylor Megill Facsimile Signature Gold 3097 Super Rare', 'MLB-22PRI-S-FS50-M-GLD'), + (0x365af8b26a4b476d986b719d165710fc2ac9f261, 'Vloaters', 'VLOAT'), + (0x36654b908c6137c32c97e480ecdde275da9db0b4, 'WZRDAVAX', 'WZRD'), + (0x36698e95c27f3913e11be8390d046de41575ae10, 'VfL Wolfsburg Maximilian Philipp Base Players Gold 35 Rare', 'BUND-SC21-R-BP35-GLD'), + (0x36719f83d7858be992b99b869c3d08cdc0291046, 'Tampa Bay Rays™ Blake Snell Inception Base Red 90 Rare', 'MLB-INC21-R-IB90-RED'), + (0x368f7f8b78bab224faf3563c0d2db79ab7209540, 'Lazy Baby Monkey', 'LBMonkey'), + (0x369c9e0d38b59ebe11b03dbad0f417de91cd880b, 'Rulers of Earth #3 Comic Cover Color 3 Legendary', 'GDZ-GVG22-L-RCC3-A-COL'), + (0x36a356584bd5ff15a11a261f30e1fc671a30adc9, 'Concerning Robots', 'CRB'), + (0x36a44637ff86fabffd6074ecd69b2ce25ae60bec, 'HELLOWINK', 'HELLO'), + (0x36a475625711aadfe05fcfc4faf8c904b7a76a35, 'Breel Embolo BMG Motion Aqua Refractor S2-13 Rare', 'BUND-21TS2-R-MS2-13-V-AQU'), + (0x36a480cbf550f5cc94142e4babae85c2f4aef396, 'Jonathan Burkardt M05 Ascendent Magenta TK-48 Uncommon', 'BUND-22TK-U-ASCTK-48-S-MAG'), + (0x36a4c2c28ec86d38c202dbf7419d652d88e0eb50, 'Chicago Cubs® Kyle Hendricks Base Pink 1195 Uncommon', 'MLB-22PRI-U-B130-M-PNK'), + (0x36a7ab9d2c20ac26d806f9281fd1d08901b8df35, 'Philipp Lienhart SCF Top Players Black TK-20 Common', 'BUND-22TK-C-TPTK-20-S-BLA'), + (0x36a8019459b155923ca520ecba634fae5466c882, 'San Diego Padres™ Adam Frazier Base White 304 Common', 'MLB-22S1-C-B300-S-WHI'), + (0x36ad56bbae5113892da7006e6fb8bb128d277a8a, 'Uncommon Comic 63 2-15 Bazooka Joe 2021 NFT', 'BZK-U-63C'), + (0x36adfabdbd6a2ff9f1f2504f6b9550def44a61c4, 'Sandglass Iridium', 'IRDM'), + (0x36cdb2ad831461a175aab95b0380af49bca97489, 'Minnesota Twins® Luis Arraez Rookie and Future Phenoms Facsimile Signature White 50 Rare', 'MLB-INC21-R-RC50-WHT'), + (0x36d124de471eee7ec9baea1c916b344fdfaf98f0, 'Adam Hložek B04 Color Splash Team Color TK-58 Super Rare', 'BUND-22TK-S-CSTK-58-S-TMC'), + (0x36d1bb387b354b102fbd47c526aa106eb9449359, 'St. Louis Cardinals® Kwang-Hyun Kim P Base Motion Rainbow 482 Rare', 'MLB-S221-R-B482-RAI'), + (0x36d23874f06df636cc8050a6c53e58dc479fd95a, 'Minnesota Twins® Andrelton Simmons Base Glitch 306 Uncommon', 'MLB-22S1-U-B302-M-GLI'), + (0x36d277066626a10cb0cd71bb6b1fa36f3c1d113d, 'Arizona Diamondbacks® Daulton Varsho C/OF 1986 Anniversary Static Team Colors 86B-36 Super Rare', 'MLB-S221-S-1986A86B-36-TMC'), + (0x36db1c6dcf1906da0f39f0977e1547f4126929f5, 'PicaMon', 'PM'), + (0x36e36c630bad6d802d558149c35948552669fe2f, 'Los Angeles Dodgers® Mookie Betts Inception Base Blue 49 Uncommon', 'MLB-INC21-U-IB49-BLU'), + (0x36e5fd185b4f328837b736b5d60602c63720a338, 'Masaya Okugawa DSC Animation Gold Refractor S3-25 Legendary', 'BUND-21TS3-L-AS3-25-V-GOL'), + (0x36ee536aafcad23f438c24978fa1544a51d07939, 'Detroit Tigers® Robbie Grossman Base White 55 Common', 'MLB-22S1-C-B55-S-WHI'), + (0x3700edae383928e4549b7e21ae67f8dcf515d2d0, 'Erling Haaland DOR Motion Aqua Refractor S1-02 Rare', 'BUND-21TS1-R-MS1-02-V-AQU'), + (0x3703dae2ecba1ff08b2911b8698b1fe235b44e64, 'Texas Rangers® Brock Holt Base Glitch 113 Uncommon', 'MLB-22S1-U-B112-M-GLI'), + (0x370573103376f1f60feda031bf7780aa5ce51bba, 'ILLUMINAPE AVAX', 'ILLUMINAPE'), + (0x37062ca6ead09f974dcb729e45e72485065891e0, 'Los Angeles Dodgers® Zach McKinstry 2B Base Static White 394 Common', 'MLB-S221-C-B394-WHI'), + (0x370ddc7db83ca173c0e387f723c7a1a55190b61a, 'Milwaukee Brewers™ Keston Hiura Base Independence Day RWB 265 Rare', 'MLB-22S1-R-B262-M-RWB'), + (0x371014d7a5444bc9f2428106e00e53ba92fa32ba, 'Patrik Schick B04 Motion Rainbow Refractor S1-05 Super Rare', 'BUND-21TS1-S-MS1-05-V-RAI'), + (0x3714c8c1240d8054c30e08b6a125bb636ccbab5c, 'Rare Comic 53 2-5 Bazooka Joe 2021 NFT', 'BZK-R-53C'), + (0x3714d4e696aabfc969c0903e5391f37664894a5d, 'Oakland Athletics™ Sean Manaea Base Independence Day RWB 281 Rare', 'MLB-22S1-R-B278-M-RWB'), + (0x371c1b3d7bf5b0b99cd9765ef01cbb73e155579c, 'PerMuh-G - Developer License (Strawberry)', 'PMGDS'), + (0x37207e741170d6ad6337842e7f43fed2612b0c29, 'New York Mets® Javier Baez 1987 35th Anniversary Wood T87-37 Common', 'MLB-22S1-C-1987A28-M-WD'), + (0x3723d94d9a29a4607c494de964cfeaed49f2dbc0, 'Aurostar', 'Aurostar'), + (0x372a8e94898fa6c732962bf633c36e080006b152, 'American League™ 2021 Home Run Leaders Base Independence Day RWB 48 Rare', 'MLB-22S1-R-B48-M-RWB'), + (0x373451f58e580bc49a1b9e04ac7d62e7f0d2917b, 'San Francisco Giants® Joey Bart Rookie and Future Phenoms Facsimile Signature White 68 Rare', 'MLB-INC21-R-RC68-WHT'), + (0x374bc6b2a38791816b2750963373e2e8e44bb98a, 'New York Mets® Jacob deGrom Facsimile Signature Glitch 330 Epic', 'MLB-22S1-E-FS25-M-GLI'), + (0x374c37eb40af3a2a6671f78d61f3c7c0a752dea4, 'St. Louis Cardinals® Jake Woodford P Base Static Gold 451 Uncommon', 'MLB-S221-U-B451-GOL'), + (0x374f4b2d3fee0a629b0b7987ce38764b32ba6c94, 'Chicago White Sox® Yasmani Grandal Regular Season Division Winners RWB 12 Rare', 'MLB-21POST-R-R12-M-RWB'), + (0x375338d08976e736b1a85b8ec7ecc6b23358b1bf, 'Cincinnati Reds® Tony Santillan Base Vintage Stock 111 Super Rare', 'MLB-22S1-S-B110-M-VS'), + (0x375b2a8848e8ba981cfe356d9a7727f1a0b5caa8, 'Milwaukee Brewers™ Corbin Burnes P Base Motion Vintage Stock 619 Super Rare', 'MLB-S221-S-B619-VS'), + (0x376953f90f78373f25874f1e2595962318f15328, 'Random AI', 'RAI'), + (0x3773b65c8892c1a9ac36f97871f822b286056fe9, 'Los Angeles Dodgers® Cody Bellinger Division Series Bronze 44 Super Rare', 'MLB-21POST-S-D44-M-BRO'), + (0x37a1450f081e838a90076fc331d04cc8cabbb2c2, 'Godzilla Offshore Traditional Art CMYK Offset 1 Uncommon', 'GDZ-RAT21-U-TA1-S-CMYK'), + (0x37a485eee5b2f323c1a6dff65d1624b7a0ed295f, 'New York Yankees® DJ LeMahieu Base Blue 1190 Common', 'MLB-22PRI-C-B54-M-BLU'), + (0x37a77a2a806f7f2fd0985881b5747d08ec657f78, 'Eintracht Frankfurt Makoto Hasebe Base Players Gold 41 Rare', 'BUND-SC21-R-BP41-GLD'), + (0x37a8791dc0967afbd4c020fcf7c8dee4e8d91ba2, 'MadSkullz', 'MadSkullz'), + (0x37a98085ef0424686fa6614a2ef2abc2101ae903, 'Outlaw Bikes', 'OutlawBikes'), + (0x37b8e95e392a284516bba87e098ad26a8facfc56, 'Order', 'LP'), + (0x37baa710022a2251336585e8b3b73568bf15f279, 'Baltimore Orioles® Zac Lowther Base Vintage Stock 133 Super Rare', 'MLB-22S1-S-B132-M-VS'), + (0x37bc11487fae5dd5ff1212384328b57eb18a734d, 'Chicago White Sox® Jose Abreu 1B 1986 Anniversary Facsimile Signature Motion Chrome 86TC-15 Legendary', 'MLB-S221-L-1986AFS86TC-15-CHR'), + (0x37c46f8e374d8d436ac87093e01c517a83cf1735, 'Oakland Athletics™ Mitch Moreland Base White 42 Common', 'MLB-22S1-C-B42-S-WHI'), + (0x37c5bfa673b6af7cfa8f6e1881512ddf9df02825, 'Minnesota Twins® Twins® Up The Middle Base Motion Rainbow 553 Rare', 'MLB-S221-R-B553-RAI'), + (0x37cb1c644e44d8a371f3901d031208d900a4fdf9, 'SMUDGE ART', 'smudge art'), + (0x37cc902b9a65a8e63a13128ceead34bdd6c8cfeb, 'Borussia Dortmund DOR Insert Pennant Team Color S1P-01 Uncommon', 'BUND-21TS1-U-IS1P-01-A-TMC'), + (0x37cd79b211147897bab09d5f52e62c47c06e20b3, 'Godzilla in the City Traditional Art Color 5 Rare', 'GDZ-RAT21-R-TA5-S-COL'), + (0x37f44ced1bad0b080bc82c595408c7f5328c38c0, 'Los Angeles Dodgers® Clayton Kershaw Base Independence Day RWB 41 Rare', 'MLB-22S1-R-B41-M-RWB'), + (0x37f614e1945a0b7b30a2805c12a77d135621f33a, 'Detroit Tigers® Daz Cameron OF Short Print Motion White 441 Super Rare', 'MLB-S221-S-SP441-WHI'), + (0x37fb1cf773de9396e10f5b9ca4d6efd7ea297418, 'Arizona Diamondbacks® Carson Kelly C Base Static Gold 447 Uncommon', 'MLB-S221-U-B447-GOL'), + (0x3803e58f08122e0f2044dff9f84e29aaad372d13, 'Tampa Bay Rays™ Mike Zunino Base Blue 1258 Common', 'MLB-22PRI-C-B185-M-BLU'), + (0x380c31b4c745f5e2f00c2ab8525ce545c62423c3, 'Washington Nationals® Kyle Schwarber OF Base Motion Vintage Stock 473 Super Rare', 'MLB-S221-S-B473-VS'), + (0x3818d56bf39290402f356a0caa4d5690aabb36e7, 'Night before Fight', 'NbF'), + (0x381a244a0c340d961b68adff4abf0ef3605f494a, 'VfL Wolfsburg Josip Brekalo Base Players Team Color 31 Uncommon', 'BUND-SC21-U-BP31-TMC'), + (0x381d89be6bb4079802de8387e99411680c025eda, 'St. Louis Cardinals® Paul Goldschmidt First Place Skyline 9 Legendary', 'MLB-22ASG-L-FIR9-M-SKY'), + (0x38233946189ada613145a475f597f90ba6a4bd56, 'Avax Degen Punks', 'AVAXDEGENPUNKS'), + (0x3826343f9b6668dba8db30820c64204d2096e149, 'Miami Marlins® Anthony Bender Base Vintage Stock 160 Super Rare', 'MLB-22S1-S-B159-M-VS'), + (0x38305739d74f992c9905b1787e474809df87fb85, 'Los Angeles Dodgers® David Price P Base Motion Vintage Stock 416 Super Rare', 'MLB-S221-S-B416-VS'), + (0x3836a59127ac38fb16f46026b1fbac0e8f3467d1, 'Miami Marlins® Braxton Garrett P Base Motion Vintage Stock 433 Super Rare', 'MLB-S221-S-B433-VS'), + (0x38374666c811e4e8f55fa0e439493f918035341e, 'Smol Josephs', 'SMJS'), + (0x383ac8a88a4b0632412aef7bd5d4fde04c31f006, 'Private Collection by @NFTbyMargo', 'Private'), + (0x383f7055f91d01b5ca258e8d318c37c327c2803c, 'Philadelphia Phillies® Scott Kingery 2B/OF Base Motion Platinum 464 Epic', 'MLB-S221-E-B464-PLA'), + (0x383fc1aaa16baf17364e992e48761c42c887907f, 'Godzilla RAT Page 8 Comic Page Color 7 Super Rare', 'GDZ-RAT21-S-CP7-A-COL'), + (0x3841c81e1bc351b5c27401f2e6d41b6a28bef7f1, 'Cincinnati Reds® Joey Votto Base Glitch 290 Uncommon', 'MLB-22S1-U-B287-M-GLI'), + (0x384777d9fbcdd5f1c915715c30d47462db8fbdc2, 'Obsession', 'OBSS'), + (0x384bc0a5e80d923bcb8fc0381bdb3a6626550b33, 'The Final Fronteer', 'TFF'), + (0x384da258e8dcfafee68f9e6295d6ffe8b3a89970, 'Miami Marlins® Chad Wallach C Base Motion Vintage Stock 593 Super Rare', 'MLB-S221-S-B593-VS'), + (0x384db7b2c919c243d705ea4141cb11e506f2ef23, 'Minnesota Twins® Mitch Garver C Base Static White 470 Common', 'MLB-S221-C-B470-WHI'), + (0x384e7fd3662fde21eae7efd5f00e084a0b8ce00e, 'Godzilla RAT Page 18 Comic Page Black and White 15 Uncommon', 'GDZ-RAT21-U-CP15-S-BW'), + (0x385a2de25fd8e462833b5641313298c8a89254d3, 'Chicago White Sox® Yoan Moncada 3B Base Static White 520 Common', 'MLB-S221-C-B520-WHI'), + (0x385b7487aec30079fa35a68caaed3afaad355c57, 'Borussia Dortmund Raphaël Guerreiro Base Players White 9 Common', 'BUND-SC21-C-BP9-WHT'), + (0x385fe6d1462f622adf870b2f020c891d131dfaaa, 'Philadelphia Phillies® Aaron Nola Base Blue 1152 Common', 'MLB-22PRI-C-B62-M-BLU'), + (0x38617537de1a9b015f617912a5b0ad4edfced5b1, 'Regan Charles-Cook RSC Top Plays Purple SPTPL-19 Rare', 'SPFL-21SPSS-R-TPLSPTPL-19-V-PUR'), + (0x38667fbe6ca4a83b0953b5929b9cc0f4875a4468, 'National League™ Justin Turner Base Pink 1300 Uncommon', 'MLB-22PRI-U-B204-M-PNK'), + (0x3868b74835152c587e57433be4448cfc488a8d42, 'New York Mets® Jacob deGrom Base Vintage Stock 330 Super Rare', 'MLB-22S1-S-B326-M-VS'), + (0x387928b7a79a5abb1c7fd54fd96da9bfddb5e813, 'Boston Red Sox® Jackie Bradley Jr. OF Base Motion Platinum 568 Epic', 'MLB-S221-E-B568-PLA'), + (0x387c93eb8a53051fe63728d6e454cf4f4d5e9979, 'WYRD Infestment', 'Infest'), + (0x3886a9a202e1179e2f7ee46e9fc65dcfeb72435d, 'DUDES', 'DDS'), + (0x389a4a00596240b88369bf5961301c36bd31fe19, 'wingwing', 'WING'), + (0x38ab885dae51b0bb3713f8048bf4e696b028d818, 'Seattle Mariners™ Ty France Base White 327 Common', 'MLB-22S1-C-B323-S-WHI'), + (0x38b672422889cab7d12ea936ffc7873012b61d0a, 'Atlanta Braves™ Eddie Rosario Base Blue 1320 Common', 'MLB-22PRI-C-B112-M-BLU'), + (0x38ba6e80d3611c99ac96d3a47d6337189208b6ae, 'Detroit Tigers® Bryan Garcia Rookie and Future Phenoms Facsimile Signature White 23 Rare', 'MLB-INC21-R-RC23-WHT'), + (0x38be7e3c27045a7b75b2bf995d598e46edd9d43d, 'Basic Banners', 'BBAN'), + (0x38bf91578cfd11bc84e10001066b03dbc86389b9, 'FC Augsburg Michael Gregoritsch Base Players Gold 73 Rare', 'BUND-SC21-R-BP73-GLD'), + (0x38c3edd755ced5c20f915ecc1459834e403bf015, 'Baltimore Orioles® Renato Nunez 1B Base Static White 409 Common', 'MLB-S221-C-B409-WHI'), + (0x38d2a088e447b5d18d64ce3c41f3e9defb4537a3, 'Colorado Rockies™ Base White 222 Common', 'MLB-22S1-C-B219-S-WHI'), + (0x38d600ffdafd69c500604cf8e6a35f331fdb6afc, 'New York Yankees® Estevan Florial OF Base Static White 406 Common', 'MLB-S221-C-B406-WHI'), + (0x38e437bceae905464d9c565d9e0e9db7aec9dc41, 'AVAX Snow Globes', 'ASG'), + (0x38f64e98cd4b7cba50c0bb5d94de974f2918cd10, 'Avaware Allen Collectible', 'AAC'), + (0x38fd4e7d9b9fe398597ad8bca59ca17439b580e0, 'Patrick Wimmer DSC Animation Gold Refractor S4-44 Legendary', 'BUND-21TS4-L-AS4-44-V-GOL'), + (0x390e0c9d7a5263b980ce20eacfc83199d83ffaf1, 'OctopusNFT Gift', 'ONFTG'), + (0x391469ad1f6e5d5a34ae4b911b52301878195d2b, 'Epic Animated Comic 6 Tech Talk Bazooka Joe 2021 NFT', 'BZK-E-6A'), + (0x3914cb9a35baa63b2fe108c7a24f2be566078582, 'San Francisco Giants® Kris Bryant Division Series Bronze 33 Super Rare', 'MLB-21POST-S-D33-M-BRO'), + (0x3916a9fa426a44b9ed094d79b1fbd98eb2d9631f, 'Rangers F.C. RFC Club Crest Card Gold SPCCC-01 Epic', 'SPFL-21SPSS-E-CCCSPCCC-01-A-GOL'), + (0x3918d02f5a0f68e7a3c225869d7e0e8b39c8ec4a, 'Washington Nationals® Alex Avila C Base Motion Platinum 446 Epic', 'MLB-S221-E-B446-PLA'), + (0x391924ce7bd483ddc1687a456c4eb9d30d8b80d2, 'NW DOODLES', 'NWDOODLES'), + (0x391f0b2fc06f29f1c5bdfe0bfa20a14ea2a449a4, 'Toronto Blue Jays® Santiago Espinal American League Base White 6 Uncommon', 'MLB-22ASG-U-B6-M-WHI'), + (0x39285a50943eb1c5bff87d57235d6f084987f82b, 'WWG', 'WWG'), + (0x392ae83d54a3ca69aba1d19d77d66fa8a0d78a31, 'Arizona Diamondbacks® Stuart Fairchild Base Glitch 163 Uncommon', 'MLB-22S1-U-B162-M-GLI'), + (0x393255bad1cc93ad2c8ff0299210403731f21b27, 'Philadelphia Phillies® J.T. Realmuto C Short Print Motion White 611 Super Rare', 'MLB-S221-S-SP611-WHI'), + (0x393d384c47bf2e52edcdf52f86bf4e95bf50f70e, 'St. Louis Cardinals® Jake Woodford P Base Motion Platinum 451 Epic', 'MLB-S221-E-B451-PLA'), + (0x393d420433c4d47ba1d28f05de278b5c97307d19, 'VfB Stuttgart Nicolás González Young Stars Team Color 180 Super Rare', 'BUND-SC21-S-YS180-TMC'), + (0x394496e606f0eababb4834f77c40fb985908838a, 'Hex Gorilla Universe', 'HEXU'), + (0x3945357958faf8548f1fa516b54811ecb2d7bbd6, 'Pittsburgh Pirates® Bryan Reynolds Base Pink 1052 Uncommon', 'MLB-22PRI-U-B89-M-PNK'), + (0x3947b2746d840f6ca1f44fc84d2bed6358c8bf68, 'Christopher Trimmel FCU Animation Black Refractor S4-47 Epic', 'BUND-21TS4-E-AS4-47-V-BLA'), + (0x394ed00efeada976fdc57a15d415f1bd2ee56860, 'Chicago White Sox® Jonathan Stiever P Base Motion Rainbow 528 Rare', 'MLB-S221-R-B528-RAI'), + (0x3951f278dd52953273fae10148787ce92f204657, 'Oakland Athletics™ Chad Pinder Base Independence Day RWB 95 Rare', 'MLB-22S1-R-B94-M-RWB'), + (0x395a1cef887d292745936a4a4b7463b57082f644, 'Borussia Dortmund Raphaël Guerreiro Base Players Team Color 9 Uncommon', 'BUND-SC21-U-BP9-TMC'), + (0x3963d88dc6a87e787dd9ecbbc2b86607e7d03285, 'Chicago Cubs® Willson Contreras Inception Base Blue 18 Uncommon', 'MLB-INC21-U-IB18-BLU'), + (0x396d03a89c8fa0a09e3d2fe7d995e2f76f84a66d, 'Washington Nationals® Kyle Schwarber OF Base Motion Rainbow 473 Rare', 'MLB-S221-R-B473-RAI'), + (0x39819216a2a341c79a2f6f04f3da0aee0ddaddc7, 'New York Mets® Edwin Diaz Base Independence Day RWB 267 Rare', 'MLB-22S1-R-B264-M-RWB'), + (0x3987c3af633377a062292def70c347413671d008, 'Madeira Landscapes', 'LANDSCAPES'), + (0x39892cf809dd708cb5965662ba2c1615a18f57e5, 'Oakland Athletics™ Mitch Moreland Base Vintage Stock 42 Super Rare', 'MLB-22S1-S-B42-M-VS'), + (0x398a108ade9e72a9955ec895fd1c15d0cd83dd68, 'Midnight Surfers', 'MDSF'), + (0x398ae6ba85eb09271771b724f6d65cd454b8485b, 'Chicago White Sox® Carlos Rodon Postseason Base White 14 Common', 'MLB-21POST-C-B14-S-WHI'), + (0x39ad4aafa177f59ed7356ffdbbf36a840075b7a6, 'Cosmic Tools', 'TOOLS'), + (0x39b667861d1794237fc20957d9c9502832d9297a, 'Seattle Mariners™ Evan White Inception Base Red 82 Rare', 'MLB-INC21-R-IB82-RED'), + (0x39bff3c8452fa5f5c3e09deebb0ed6897c56706b, 'Tampa Bay Rays™ Shane McClanahan Base White 244 Common', 'MLB-22S1-C-B241-S-WHI'), + (0x39cb10ddd2994d6b3495bd64f3f17a3621dbb032, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Showcase Challenge B', 'GDZ-GVG22-PACK-R2'), + (0x39ccedf32d0849dfd0a0405a1bbac65285685924, 'TSUKUYOMI DRAGON', 'TSUK'), + (0x39d63ec7706cc4a0242480ca5181cdb1e4dbffc3, 'Bonsai', 'Bonsai'), + (0x39d8a52f0f086a39a927c1b769d21430dab12585, 'Bitmonkez', 'BMK'), + (0x39df3eabc3d228364c25f731110e84d8e5a640e0, 'NO ART NO UTILITY', 'NANU'), + (0x39e0cbcfbe303ed36f87f309828be0e4632cf721, 'Toronto Blue Jays® Alejandro Kirk American League Base Golden 1 Super Rare', 'MLB-22ASG-S-B1-M-GLD'), + (0x39e8b846d767f58403a5f84813fbf69093ed53a8, 'Tampa Bay Rays™ Wander Franco Base Blue 1204 Common', 'MLB-22PRI-C-B136-M-BLU'), + (0x39e9419bb4e76f88f018ab9be1474f80182ae1c7, 'HCS Customs', 'HCSC'), + (0x39ea130480328e1e72ef63302b40760e6962a1df, 'Chicago Cubs® Ian Happ Base Glitch 143 Uncommon', 'MLB-22S1-U-B142-M-GLI'), + (0x39f0f514f081249d18b45e43a872945ebecf3a83, 'New York Yankees® Aaron Judge Wild Card Contenders Blue 9 Common', 'MLB-21POST-C-W9-M-BLU'), + (0x39f6d715b6f9b0ae62e3cd33986683ee8019f589, 'Philadelphia Phillies® Aaron Nola P Facsimile Signature Static Blue 537 Super Rare', 'MLB-S221-S-FS537-BLU'), + (0x39f810e3f8f1beae87bec7238232c62aa72e3b6e, 'Borussia Dortmund Youssoufa Moukoko Young Stars Gold 148 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS148-AFS-GLD'), + (0x39f88353a26ca3deb189809400036cc67b97e4a9, 'Kansas City Royals® Jorge Soler DH/OF Base Static White 389 Common', 'MLB-S221-C-B389-WHI'), + (0x39fdbc531ed5a5433745145f7e27378c30c1ae07, 'St. Louis Cardinals® Yadier Molina Base Glitch 205 Uncommon', 'MLB-22S1-U-B204-M-GLI'), + (0x39ffaf69b96115588c68ba8886ec2cde3dbeaba6, 'Common Comic 86 2-38 Bazooka Joe 2021 NFT', 'BZK-C-86C'), + (0x3a0ff7f1d2391568b44b5389e496392468d57222, 'Avax Vans', 'AVS'), + (0x3a130ee4cb36260e241e2db938ee08263aa37818, 'FC Koln Sebastiaan Bornauw Young Stars Team Color 172 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS172-SFS-TMC'), + (0x3a15e00ee3a5de1564d107f51fb29a5b1e3d2f8c, 'The Meta Hippies', 'MH'), + (0x3a16ddf43d69a52aad3998d5c62983ffa45299fc, 'FIRE GRAND MASTER NFT', 'FGMNFT'), + (0x3a2d323ef403658c237e3d9fefc49d083249859d, 'Janni Serra DSC Animation Gold Refractor S4-48 Legendary', 'BUND-21TS4-L-AS4-48-V-GOL'), + (0x3a35eb18ae1802fb3262b33b99bfb5ba0f57d02b, 'New York Yankees® Aaron Judge Short Print White 99 Rare', 'MLB-22S1-R-SP22-M-WHI'), + (0x3a3a9fa08492fdacdc267f21810c93f05fef670d, 'Kansas City Royals® Jorge Soler Inception Base Red 40 Rare', 'MLB-INC21-R-IB40-RED'), + (0x3a3afd3c0c334208ae2878e494257c9f46dd4838, 'Boston Red Sox® Shopping Cart Surf! Base Static Gold 436 Uncommon', 'MLB-S221-U-B436-GOL'), + (0x3a49120d45b6e4d571c287d049a6447789b5950a, 'New York Mets® Noah Syndergaard P Base Motion Vintage Stock 631 Super Rare', 'MLB-S221-S-B631-VS'), + (0x3a525aec0801a9f47445bc8d1d9320e9d2365e51, 'Joe Lewis ABE Captains Green SPCAP-04 Epic', 'SPFL-21SPSS-E-CAPSPCAP-04-A-GRE'), + (0x3a599904955ba62a006f70d5a0d4cbaa33aaec8a, 'Minnesota Twins® Jorge Polanco Inception Base Blue 59 Uncommon', 'MLB-INC21-U-IB59-BLU'), + (0x3a5d531c282eb99d9257a2a2e92484e1c2ec71cc, 'SkyMetaGiftCoupon', 'GC'), + (0x3a5e7505956cfdb1ac856d7aa93a68fcdd50c7a2, 'Texas Rangers® Yonny Hernandez Facsimile Signature Slab Gold 3116 Epic', 'MLB-22PRI-E-FS42-M-GLD'), + (0x3a5fb432d79d3e1c888b4bb9b2b8eb94b01a8332, 'Minnesota Twins® Griffin Jax Base Blue 1309 Common', 'MLB-22PRI-C-B132-M-BLU'), + (0x3a607883b719f266ea941a7ba8c4a8313566dd0f, 'Genesis Rockstar Apes', 'RockstarApes'), + (0x3a6252e8fefe250911d01230bddab0e36f59bc8f, 'Boston Red Sox® Hunter Renfroe Base Glitch 174 Uncommon', 'MLB-22S1-U-B173-M-GLI'), + (0x3a633eb27b8310ac235ebd2fdb13795aec01cd71, 'NFTPrime @ersanceviz Collection', 'NPC004'), + (0x3a6ee6a3277f04e3eb50da9b804706bd483809fe, 'VfL Wolfsburg Ridle Baku Young Stars Team Color 158 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS158-SFS-TMC'), + (0x3a77d59240860de4e7825d16746db0b03eab183b, 'Texas Rangers® Sam Huff C Base Motion Vintage Stock 654 Super Rare', 'MLB-S221-S-B654-VS'), + (0x3a77f2b14027ca37d923ec072e6b855a60a495b6, 'Rome is Burning Event Exclusive Comic Cover Black 2 Epic', 'GDZ-RAT21-E-CCE2-A-BLA'), + (0x3a781e5e51c1349c43c24f44b7bba7b51044ac2f, 'Tampa Bay Rays™ Yandy Diaz Postseason Base Red 6 Rare', 'MLB-21POST-R-B6-M-RED'), + (0x3a792c90001e577eceff4734a53f77dd5d37f018, 'Cincinnati Reds® Nick Senzel Rookie and Future Phenoms Facsimile Signature White 10 Rare', 'MLB-INC21-R-RC10-WHT'), + (0x3a7a1a993b531f3b298676c22ea084167bc0c348, 'Maximilian Arnold WOB Motion Aqua Refractor S4-67 Rare', 'BUND-21TS4-R-MS4-67-V-AQU'), + (0x3a862c907039feda3845a9094b84c4571a23f506, 'Luvcraft Collector''s Edition', 'LCE'), + (0x3a86f6260e1487586e164dbf775a3c549d65ebb8, 'Minnesota Twins® Alex Kirilloff OF Base Static Gold 413 Uncommon', 'MLB-S221-U-B413-GOL'), + (0x3a93583713f1d10e071e75c2f19c0ee7e2f3d921, 'Los Angeles Dodgers® Albert Pujols Base Blue 1098 Common', 'MLB-22PRI-C-B38-M-BLU'), + (0x3a9c1ac6dc679f0594dd88b487292060dc40aabb, 'Red Samurai', 'RS'), + (0x3ab984c3438b8a7e19cae8a62893bdfbed14113c, 'Aristocrat Animals', 'AA'), + (0x3abdc7dc37d2fab1b83d52cb1a2ddaea70912da0, 'FC Bayern Munich Leroy Sané Base Players Team Color 4 Uncommon', 'BUND-SC21-U-BP4-TMC'), + (0x3ac20209a491077fa354bc87b90a51988baa3ef7, 'American League™ Minnesota Meetup Base Glitch 122 Uncommon', 'MLB-22S1-U-B121-M-GLI'), + (0x3acb461841d98e762903a37cb5baef2cf97b9df9, 'Kansas City Royals® Ryan O''Hearn 1B Base Static White 492 Common', 'MLB-S221-C-B492-WHI'), + (0x3ad3228e5ef504584e394fdb48443c68a687695f, 'Houston Astros® Base Motion Platinum 545 Epic', 'MLB-S221-E-B545-PLA'), + (0x3ae02585a5144bba11f7ffc9e969ae664301eca7, 'Golden Subnet Speedster', 'gLW'), + (0x3aeaac5b2649a8f2f8d8bae5a11b69f1bfaf8801, 'Chicago White Sox® Jake Burger 1987 35th Anniversary Chrome T87C-93 Super Rare', 'MLB-22S1-S-1987AC67-M-CHR'), + (0x3aed79481b3ccfc21e59e2793e82d03dfbdb02e8, 'Mr. Baylar', 'BAYLAR'), + (0x3aeed0647fafe7773005ca6f3f09aa1cbbcdaba6, 'Washington Nationals® Juan Soto Generation NOW Team Colors GN-3 Epic', 'MLB-22S1-E-GN3-M-TMC'), + (0x3af3a51c332297a6ace0dcf1d89bc29787cf2494, 'Atlanta Braves™ Dansby Swanson Second Place Beach 12 Epic', 'MLB-22ASG-E-SEC12-M-BCH'), + (0x3afae0fd01759eb5361a04cd829cf426e5f4ffef, 'THE DEADLIEST', 'THEDEADLIEST'), + (0x3b086af76160c2a3e4aec0f8d72891394cb57d78, 'Los Angeles Dodgers® Mookie Betts Inception Base White 49 Common', 'MLB-INC21-C-IB49-WHT'), + (0x3b0b2268bd3228ed7af3ba622c995283eb1d14a5, 'American League™ 2021 Home Run Leaders Base White 48 Common', 'MLB-22S1-C-B48-S-WHI'), + (0x3b10c20c8bf49915dfe6e428c2bee0b2e8ab9eb4, 'Robots Punk_V2', 'RPUNK_V2'), + (0x3b12981a3ce041dad37a7ae3d2d87e70adfc7bc9, 'Pepeland wl', 'PLWL'), + (0x3b156ce7d79eeef94183f5fb25bf41a77ec9ffd3, 'Angels® Reid Detmers 1987 35th Anniversary Wood T87-33 Common', 'MLB-22S1-C-1987A25-M-WD'), + (0x3b194f62db3d89521a8242a13415344121d086e2, 'Pittsburgh Pirates® Hoy Park Base Vintage Stock 184 Super Rare', 'MLB-22S1-S-B183-M-VS'), + (0x3b1afeb291ceded3886cab32b277af47e6d995e0, 'Mechavax Mechs', 'MMECHS'), + (0x3b2389297bc89cf919564e63542894b9660ea42f, 'Ross McCrorie ABE Base Purple SP-10 Super Rare', 'SPFL-21SPSS-S-BSP-10-A-PUR'), + (0x3b33a73464a5779e253b5b5f7691588e6e6a0ca3, 'Oakland Athletics™ Matt Olson Facsimile Signature Slab Gold 3045 Epic', 'MLB-22PRI-E-FS32-M-GLD'), + (0x3b37bcc20f2e5e71d6687e9f202b993e0288491a, 'Houston Astros® Zack Greinke P Base Static Gold 463 Uncommon', 'MLB-S221-U-B463-GOL'), + (0x3b3c59e1505a15a783f2fc28099e6a7daa61922b, 'Philadelphia Phillies® Bryce Harper National League Base Golden 11 Super Rare', 'MLB-22ASG-S-B11-M-GLD'), + (0x3b4ace694644fa3686d00579940ae7c8e5f9e166, 'Miami Marlins® Jesus Sanchez Rookie and Future Phenoms Facsimile Signature Blue 41 Super Rare', 'MLB-INC21-S-RC41-BLU'), + (0x3b4c659ef3239c0e5aa08a5cb5ca1f9751b63f77, 'Atlanta Braves™ Jorge Soler Base Independence Day RWB 208 Rare', 'MLB-22S1-R-B207-M-RWB'), + (0x3b64d9200d555f01564c545a4cafe9f0cb4ccb62, 'RB Leipzig Dani Olmo Young Stars Gold 149 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS149-AFS-GLD'), + (0x3b64e6a60490f4e0d4a7dfaab34a3dcd7e2ba24e, 'Defiolio Lifetime Access', 'Olio'), + (0x3b684539567fe54d5078373bed608a031ad492c6, 'Houston Astros® Jason Castro C Base Motion Platinum 620 Epic', 'MLB-S221-E-B620-PLA'), + (0x3b75d613b837e0fbb370f20dd46c0d20044dc43d, 'Ebirah and Godzilla Base Collectible Blue 8 Common', 'GDZ-RAT21-C-B8-S-BLU'), + (0x3b7a66e41d5a863d83107462ec2ccc0b80005d96, 'Daichi Kamada SGE Animation Black Refractor S4-42 Epic', 'BUND-21TS4-E-AS4-42-V-BLA'), + (0x3b803e6046e1dcfc6647545f28100a3caea46834, 'Fantasy Animals', 'Fantastical'), + (0x3b84f1d26c849e9cea066debf871d00f624c477b, 'Uncommon Baseball Card 5 Herman Pitcher Bazooka Joe 2021 NFT', 'BZK-U-5B'), + (0x3b867989c6427667a7ac6bb1c4533bc5504f1709, 'Minnesota Twins® Jose Berrios P Base Static Gold 395 Uncommon', 'MLB-S221-U-B395-GOL'), + (0x3b879c4efcd2d8aa0743b47ae5cac6ffecd48d63, 'Cu Ducks', 'CD'), + (0x3b8ab95226c7d1908591a227af9dbe46bedd9045, 'Satoshe', 'SHE'), + (0x3b93af2d92f588196c721c7dd9951be790364e60, 'berkay', 'beal'), + (0x3b9d650d5a5eafc4ff74ad82f4e9a64b18ff3041, 'Miami Marlins® Base Glitch 326 Uncommon', 'MLB-22S1-U-B322-M-GLI'), + (0x3ba5ecd83d8ea374ebc5dce2ce61cb16f167b4c7, 'Milwaukee Brewers™ Keston Hiura Base White 265 Common', 'MLB-22S1-C-B262-S-WHI'), + (0x3bb19f62805efcf5502c4b2b20fe8f682d8c4019, 'Seattle Mariners™ Kyle Lewis Facsimile Signature Gold 3035 Super Rare', 'MLB-22PRI-S-FS25-M-GLD'), + (0x3bb724c3743af59d8c059ce94cd844540587dfdf, 'Seattle Mariners™ Jarred Kelenic Base Vintage Stock 235 Super Rare', 'MLB-22S1-S-B232-M-VS'), + (0x3bbe6c5052cbca2af83ffb3617eff5bbe55b21ff, 'FC Bayern Munich Joshua Kimmich Top Players Gold 93 Super Rare', 'BUND-SC21-S-TP93-GLD'), + (0x3bc6b66ffba9c71cd192fd10da680d403f916800, 'DISC0HANDS', 'DISC0HANDS'), + (0x3bd478bbdd402f7bd066b4d8c863b609e201c90d, 'Evan Ndicka SGE Ascendent Magenta TK-42 Uncommon', 'BUND-22TK-U-ASCTK-42-S-MAG'), + (0x3be3340f09cf879cd91195d2dc3960b97d1b377a, 'Washington Nationals® Stephen Strasburg 2022 Definitive Gold 34 Legendary', 'MLB-22LEG-L-22DEF34-M-GLD'), + (0x3be3dc155318525ae95ccbf503ef775b012a2e81, 'Boston Red Sox® Alex Verdugo Postseason Base White 69 Common', 'MLB-21POST-C-B69-S-WHI'), + (0x3be61a252d5325c19769c513f61e360247e742e1, 'Angels® Reid Detmers Facsimile Signature Gold 3073 Super Rare', 'MLB-22PRI-S-FS41-M-GLD'), + (0x3be6c74a6664938c1a249c3967345c74f92271a3, 'New York Mets® Pete Alonso Super Short Print White 315 Super Rare', 'MLB-22S1-S-SSP14-M-WHI'), + (0x3beb74cf106c7fc23cb30e65d1f63f377e497ccd, 'DEVONFTB', 'DNFTB'), + (0x3bfd69491349ce010f4114877dc8d4edc7f219e2, 'Taiwo Awoniyi FCU Motion Rainbow Refractor S1-10 Super Rare', 'BUND-21TS1-S-MS1-10-V-RAI'), + (0x3bfeeea2a8629e50bfea9a8907e543c4ed618772, 'Houston Astros® Chas McCormick Base Pink 1220 Uncommon', 'MLB-22PRI-U-B167-M-PNK'), + (0x3c01bd4b5dfed1bc507727dc9ffb02fc087a9549, 'Top Gun', 'TOPGUN'), + (0x3c0982a85a9198a7ff1c025d129981265a0fa85f, 'Chicago White Sox® Liam Hendriks Base Glitch 268 Uncommon', 'MLB-22S1-U-B265-M-GLI'), + (0x3c1e6ab648a7526fc5c6a74312fcf49f138eac4f, 'André Hahn FCA Motion Aqua Refractor S4-49 Rare', 'BUND-21TS4-R-MS4-49-V-AQU'), + (0x3c20f472af990b1f73825842b51b9ae20b79c09f, 'Seattle Mariners™ Jarred Kelenic 1987 35th Anniversary Wood T87-42 Common', 'MLB-22S1-C-1987A32-M-WD'), + (0x3c33452dbd9be301fb1dbd3dad4f267069dc4a77, 'Detroit Tigers® Miguel Cabrera Base Glitch 194 Uncommon', 'MLB-22S1-U-B193-M-GLI'), + (0x3c4107eb8baf6d7637b29afc9d791b8dd1362e57, 'Minnesota Twins® John Gant Base Vintage Stock 280 Super Rare', 'MLB-22S1-S-B277-M-VS'), + (0x3c4af03473c96a2e477360b4e9a9f3ff78edb125, 'David Turnbull CEL Top Plays Gold SPTPL-07 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-07-V-GOL'), + (0x3c55ca84bc323612d4efbd2862a5a742c68d7ef2, 'Skullection', 'OLT'), + (0x3c55d72a71b6a1b851afea8ed3034d4d499740f1, 'Los Angeles Dodgers® David Price Base White 40 Common', 'MLB-22S1-C-B40-S-WHI'), + (0x3c56b3c761e17658fad1df5be8d1d77b37c3b426, 'San Francisco Giants® Logan Webb Division Series Bronze 40 Super Rare', 'MLB-21POST-S-D40-M-BRO'), + (0x3c5b18d35b04d518c07680173129d86cd786f7c1, 'Tampa Bay Rays™ Randy Arozarena OF Facsimile Signature Static Blue 600 Super Rare', 'MLB-S221-S-FS600-BLU'), + (0x3c66e1f4992761dbe294ad701cb7982af9223ac0, 'Uncommon Comic 65 2-17 Bazooka Joe 2021 NFT', 'BZK-U-65C'), + (0x3c6da3ad1f34d18d90511e27c77ac8deca0376c4, 'Seattle Mariners™ Evan White Rookie and Future Phenoms Facsimile Signature White 67 Rare', 'MLB-INC21-R-RC67-WHT'), + (0x3c74f86df4954bba15679a7ce0dae3cb2e91a80e, 'Nils Petersen SCF Animation Black Refractor S4-64 Epic', 'BUND-21TS4-E-AS4-64-V-BLA'), + (0x3c754c71c59514f267d106ac9209daaad41ee472, 'Detroit Tigers® Rony Garcia Rookie and Future Phenoms Facsimile Signature Blue 25 Super Rare', 'MLB-INC21-S-RC25-BLU'), + (0x3c7706e01533519cc8da108f28120f52f3313fe0, 'AvaxDads', 'ADADS'), + (0x3c82a6328baf85ab94abd3d62e86d95a500579e0, 'Chicago Cubs® Jason Kipnis 2B Base Static Gold 494 Uncommon', 'MLB-S221-U-B494-GOL'), + (0x3c83dcb9ad179478f317ca5914370a9f5694705f, 'Boston Red Sox® Tanner Houck P Facsimile Signature Static Blue 635 Super Rare', 'MLB-S221-S-FS635-BLU'), + (0x3c84a04d494b35194833f97bfbe3ccc1a8aeeb8e, 'Cleveland Indians® Zach Plesac P Base Static White 403 Common', 'MLB-S221-C-B403-WHI'), + (0x3c896286b2af98ceaf32d06255b6ed9497a0dd1e, 'Texas Rangers® Shin-Soo Choo OF/DH Base Static White 657 Common', 'MLB-S221-C-B657-WHI'), + (0x3c90a7f22cd3c85d974b1c09eba2fc86d7f94b09, 'Super Rare Animated Comic 3 Groundhog Day Bazooka Joe 2021 NFT', 'BZK-S-3A'), + (0x3c975bcd25bf31ef6c1f48d45018757d17ded970, 'Rare Baseball Card 5 Herman Pitcher Bazooka Joe 2021 NFT', 'BZK-R-5B'), + (0x3c9b86e78699e38be1c1b239ef234b6cb8f3b108, 'Philadelphia Phillies® Andrew McCutchen Inception Base Red 73 Rare', 'MLB-INC21-R-IB73-RED'), + (0x3ca170aa6dbdd9ad606b7d2810fe78f04bac2dae, 'St. Louis Cardinals® Nolan Arenado Base Vintage Stock 87 Super Rare', 'MLB-22S1-S-B87-M-VS'), + (0x3ca8789d727946b96fc2716652b21f41c13bae66, 'FC Union Berlin Sheraldo Becker Base Players White 53 Common', 'BUND-SC21-C-BP53-WHT'), + (0x3caae6bd47c6ef5291712be8250050b128605aab, 'Los Angeles Dodgers® Corey Seager Base White 301 Common', 'MLB-22S1-C-B297-S-WHI'), + (0x3cab8274d706080325136cafcf337837d71d85c7, 'Rare Comic 7 1-7 Bazooka Joe 2021 NFT', 'BZK-R-7C'), + (0x3cb090303e6166f6f371a71d38080415c4a79d20, 'Chicago White Sox® Garrett Crochet Base Vintage Stock 239 Super Rare', 'MLB-22S1-S-B236-M-VS'), + (0x3cb1967b36c318510cc06ab901b428a166bb6dda, 'Fantom Animals', 'FANTAM'), + (0x3cb35b971163f1fa47b589211efb3da6641b9bca, '2021 MLB Challenge Reward World Series MVP Pack', 'MLB-21REWARD-PACK-WSMVP'), + (0x3cb3a374302fd897d32ec47d59fd4dd57742d080, 'Minnesota Twins® Alex Kirilloff Generation NOW Team Colors GN-20 Epic', 'MLB-22S1-E-GN20-M-TMC'), + (0x3cb7796b40a7f2d9c135398cade4d91bd80d28ea, 'Boston Red Sox® Alex Verdugo Rookie and Future Phenoms Facsimile Signature White 5 Rare', 'MLB-INC21-R-RC5-WHT'), + (0x3cba623f87d4bb5881d20c1e0c59ce99736eb0df, 'Los Angeles Dodgers® Corey Seager SS Base Static Gold 450 Uncommon', 'MLB-S221-U-B450-GOL'), + (0x3cc4d81f627601de7a879a0cdfe3e30a376f9fe6, 'Detroit Tigers® Matthew Boyd Base Glitch 128 Uncommon', 'MLB-22S1-U-B127-M-GLI'), + (0x3cd004a5f4e4b9dc6c1f00ce4dcb76c5903d6085, 'Developer Dale Base Color 9 Common', 'GPK-NFT22-C-B9-S-COL'), + (0x3cd590cfea9e9f50ebd3b8822c3e06e994b9ba78, 'Arizona Diamondbacks® Stefan Crichton P Base Motion Vintage Stock 469 Super Rare', 'MLB-S221-S-B469-VS'), + (0x3cd8cc30af80f30e60b6a619a1d9cdd430361e75, 'Oakland Athletics™ Matt Chapman Base Vintage Stock 176 Super Rare', 'MLB-22S1-S-B175-M-VS'), + (0x3cdb38b9121ab59d53268862a693d25ee23606d8, 'FC Augsburg Marco Richter Base Players White 72 Common', 'BUND-SC21-C-BP72-WHT'), + (0x3cdd14fe8c9d0a40aaf8d6feb8b530ec9d849e0f, 'Uncommon Comic 27 1-27 Bazooka Joe 2021 NFT', 'BZK-U-27C'), + (0x3ce611274c4656579c52377aa1e48da25df4a5dd, 'Godzilla Destroys the City Traditional Art CMYK Offset 2 Super Rare', 'GDZ-RAT21-S-TA2-A-CMYK'), + (0x3cf0f63536ca8260af1a0fbea841b62a7328e947, 'Yield Whales', 'YWNFT100'), + (0x3cf4c688a1c66b9963ddcf22521572506a23ed8b, 'VfL Wolfsburg Xaver Schlager Base Players White 33 Common', 'BUND-SC21-C-BP33-WHT'), + (0x3cf4e17eea5572a3dd3daade0dc613e84b944839, 'Crypty The Chart Ghost', 'GHO'), + (0x3cf4fc6fe4956608b0b9f59985e9291cca605845, 'Los Angeles Dodgers® David Price P Base Motion Platinum 416 Epic', 'MLB-S221-E-B416-PLA'), + (0x3cf81a45425b2eb28dbfe07c1a6a90951c71e59b, 'Diamond Hans Golden Animation Facsimile Signature Color 19 Legendary', 'GPK-NFT22-L-GAFS19-A-COL'), + (0x3d02ac20ff0f28b558d9a9377dac6623daf9e1f4, 'Atlanta Braves™ Jorge Soler Regular Season Division Winners RWB 30 Rare', 'MLB-21POST-R-R30-M-RWB'), + (0x3d0b7b41553f9653b8a163c3d3c5d2142a773d34, 'FC Augsburg Felix Uduokhai Top Players Gold 133 Super Rare', 'BUND-SC21-S-TP133-GLD'), + (0x3d1739d30fe9c2d405ba7caf161e611cc7e0ec2f, 'Milwaukee Brewers™ Ryan Braun OF Base Static White 497 Common', 'MLB-S221-C-B497-WHI'), + (0x3d17ae2a4143ac663b84bb7449d52be07e720185, 'Kevin Trapp SGE Animation Black Refractor S2-14 Epic', 'BUND-21TS2-E-AS2-14-V-BLA'), + (0x3d19685acce7295266ea744b4d7032f88c760ffe, 'Craig Gordon HEA Captains Green SPCAP-05 Epic', 'SPFL-21SPSS-E-CAPSPCAP-05-A-GRE'), + (0x3d1ed8e709e1923be1bf69185ce900abfb82f518, 'Milwaukee Brewers™ Aaron Ashby Base Glitch 78 Uncommon', 'MLB-22S1-U-B78-M-GLI'), + (0x3d1f3942947c4bb46afe726c5b7e43f75237586c, 'Cleveland Guardians™ Eli Morgan Base Vintage Stock 217 Super Rare', 'MLB-22S1-S-B214-M-VS'), + (0x3d2133739ac96945ca4a4b58abb768c6f7f9aad9, 'Tampa Bay Rays™ Yandy Diaz Division Series Bronze 6 Super Rare', 'MLB-21POST-S-D6-M-BRO'), + (0x3d2a1d7d23ca9db2a38256a859a74b25074401fd, 'Milwaukee Brewers™ Christian Yelich Inception Base Black 54 Legendary', 'MLB-INC21-L-IB54-BLK'), + (0x3d2a25d6b97498aa1e9e159df3b2b1754529f7e1, 'New York Yankees® Harrison Bader Championship Series Broadcast RWB 1106 Rare', 'MLB-22TNP-R-CSB3-M-RWB'), + (0x3d2f6655aa36275a1d51284f6618d14a6c4b8738, 'Jelly Fren', 'JELLYFREN'), + (0x3d39efda57b5d6a6a88bb05620c1cc6c3f1e6f89, 'S.P.A.C.E.', 'SPCE'), + (0x3d3f96a33426bc1b35a12f48f9c5504e5e506a9c, 'Iago FCA Motion Rainbow Refractor S4-66 Super Rare', 'BUND-21TS4-S-MS4-66-V-RAI'), + (0x3d419e65d541b4a78ef47611316397e41caba0c9, 'Lewis Ferguson ABE Base Aqua SP-11 Uncommon', 'SPFL-21SPSS-U-BSP-11-A-AQU'), + (0x3d436555aaa99251b253c7b78459d14746e24a65, 'Rare Comic 21 1-21 Bazooka Joe 2021 NFT', 'BZK-R-21C'), + (0x3d45a27767b67ab4d89e3d649845dc11047fda74, 'Atlanta Braves™ Mike Soroka P Base Static White 388 Common', 'MLB-S221-C-B388-WHI'), + (0x3d46be606964234e136e857114212450d35ff276, 'Arizona Diamondbacks® Daulton Varsho Inception Base White 1 Common', 'MLB-INC21-C-IB1-WHT'), + (0x3d483789a84109adef350ee071ef07a723b31c49, 'Niklas Dorsch FCA Top Players Black TK-26 Common', 'BUND-22TK-C-TPTK-26-S-BLA'), + (0x3d4ccf2ba51e53123f1dc55a4fca687828443c8f, 'Look Friends', 'LOOK'), + (0x3d508bb4929ee5adbd02708615ab5c86f4c6665a, 'Christoph Baumgartner TSG Motion Rainbow Refractor S4-55 Super Rare', 'BUND-21TS4-S-MS4-55-V-RAI'), + (0x3d5ba1101120fd245b6873eaab6147bb96f9bfbb, 'Miami Marlins® Garrett Cooper 1B Base Motion Vintage Stock 565 Super Rare', 'MLB-S221-S-B565-VS'), + (0x3d5f9291a8d60579831f38e82a5c1f8bcbfd8959, 'Tampa Bay Rays™ Baseball is Fun! Base Static White 353 Common', 'MLB-S221-C-B353-WHI'), + (0x3d6205030d6809f0cba2811cf997a385d088bbe8, 'Taiwo Awoniyi FCU Base Red S1-10 Uncommon', 'BUND-21TS1-U-BS1-10-S-RED'), + (0x3d65c4e1245c63fdc443f39489f20077275dcaf0, 'San Diego Padres™ Eric Hosmer Base Independence Day RWB 272 Rare', 'MLB-22S1-R-B269-M-RWB'), + (0x3d6961a61e5fdf1889f1a9d309623b8d1b6963d2, 'Epoch Thegn Gang', 'ETG'), + (0x3d70cc9fe197cada24094d093ca301c9b0419ccf, 'Milwaukee Brewers™ Keston Hiura 2B Base Static Gold 521 Uncommon', 'MLB-S221-U-B521-GOL'), + (0x3d718549cd8a71d4024e02a97bf8fbdca654d7dd, 'MasterChief', 'MC'), + (0x3d79ddb0ea87c461d7d2c732ba21f5efe105dbba, 'DSC Arminia Bielefeld Arne Maier Young Stars Team Color 177 Super Rare', 'BUND-SC21-S-YS177-TMC'), + (0x3d7c52bf155076da72e90e768fabe49927d2f38e, 'Borussia Dortmund Giovanni Reyna Young Stars Team Color 147 Super Rare', 'BUND-SC21-S-YS147-TMC'), + (0x3d7c711d4f692f53150c985104ffe2e83d281ec4, 'Boston Red Sox® Matt Barnes P Base Motion Rainbow 484 Rare', 'MLB-S221-R-B484-RAI'), + (0x3d7f02142daa5f81ec6f199cf507aeb2451e577c, 'Cleveland Indians® Daniel Johnson Rookie and Future Phenoms Facsimile Signature Red 13 Epic', 'MLB-INC21-E-RC13-RED'), + (0x3d825467da1beba2f8bfc2d8c642a50d4f93a5cf, 'St. Louis Cardinals® Matt Carpenter 3B Base Static Gold 566 Uncommon', 'MLB-S221-U-B566-GOL'), + (0x3d868902fc7015c5f9a3544dbcf6688f91c9b62b, 'Chicago White Sox® Yasmani Grandal C Base Motion Rainbow 524 Rare', 'MLB-S221-R-B524-RAI'), + (0x3d893a064289d5b1b926022de870c49e8f3a63ec, 'Cleveland Indians® Jose Ramirez 3B 1986 Anniversary Static Team Colors 86B-19 Super Rare', 'MLB-S221-S-1986A86B-19-TMC'), + (0x3d8a15a46a2da6d35b3a88e6b2519095f45404e4, 'Superpower Mystery Box B', 'SSMBBTest'), + (0x3d8b2012854fd34484ad9348255dc5f21c5129f5, 'Miami Marlins® Trevor Rogers Base Glitch 24 Uncommon', 'MLB-22S1-U-B24-M-GLI'), + (0x3d8b6ffb3598064647efaf8899e5cb623b8ad865, 'Topps NOW World Series Game 6 Ticket Redemption Pack', 'MLB-21NOW-PACK-TR-GM6'), + (0x3d8e02e022447347a3c67781fe6fa31f89e12266, 'Tampa Bay Rays™ Joey Wendle Postseason Base Navy 5 Uncommon', 'MLB-21POST-U-B5-M-NVY'), + (0x3d9d25e48e38f93eacf9562d36bda35fc45b4d6b, 'Janni Serra DSC Motion Aqua Refractor S4-48 Rare', 'BUND-21TS4-R-MS4-48-V-AQU'), + (0x3d9d468244266c2755a2f5c90a1d5cbe1a2f6352, 'Miami Marlins® Jazz Chisholm Jr. National League Base White 5 Uncommon', 'MLB-22ASG-U-B5-M-WHI'), + (0x3da38b8155b85d372bdcfd7d740f9618ee754878, 'Gerrit Holtmann BOC Motion Aqua Refractor S1-08 Rare', 'BUND-21TS1-R-MS1-08-V-AQU'), + (0x3da98c86f5f5c6e862a485763d88ff7adf8b566b, 'Atlanta Braves™ Cristian Pache OF 1986 Anniversary Static Team Colors 86B-30 Super Rare', 'MLB-S221-S-1986A86B-30-TMC'), + (0x3daa63c2d67e5a38447d31bc4cd414eb95a9ff56, 'Welcome to Joe', 'Joe'), + (0x3dbaeef5d7929990fd3c8e252c799510f2f64e17, 'Smolr Joes', 'SMOLR'), + (0x3dbd5600fd63ab173838b9afee437bab1e7a1fa9, 'Yann Sommer BMG Animation Gold Refractor S4-39 Legendary', 'BUND-21TS4-L-AS4-39-V-GOL'), + (0x3dc3fc96a2836704eb56da2502917ab657a793a0, 'Minnesota Twins® Ryan Jeffers Rookie and Future Phenoms Facsimile Signature White 52 Rare', 'MLB-INC21-R-RC52-WHT'), + (0x3dd36fe55129bdb0a6a094dd34033d2049d47d58, 'Chicago Cubs® Greg Deichmann Base Pink 1307 Uncommon', 'MLB-22PRI-U-B177-M-PNK'), + (0x3ded710a321202d35d29e754941c642494d6842c, 'FC Union Berlin Christian Gentner Base Players Team Color 55 Static Facsimile Signature Rare', 'BUND-SC21-R-BP55-SFS-TMC'), + (0x3df4ef653c183efb8b13287ea9cbf6a9204a08f7, 'We started like this', 'YMG'), + (0x3dffaceb9152512bc2a62fe965c953ce8599d2a3, 'St. Louis Cardinals® Matt Carpenter 3B Base Motion Vintage Stock 566 Super Rare', 'MLB-S221-S-B566-VS'), + (0x3e0a648dbc19800735d613182471acce35e5815d, 'Patrick Wimmer WOB Color Splash White TK-59 Uncommon', 'BUND-22TK-U-CSTK-59-S-WHI'), + (0x3e0cc0b5de4f31176a5532298881343e45816e88, 'Seattle Mariners™ Marco Gonzales Base Glitch 112 Uncommon', 'MLB-22S1-U-B111-M-GLI'), + (0x3e11c1a8b0ac7aa6d18f19c4483a5b043cb7c4e1, 'Kansas City Royals® Hanser Alberto Base Independence Day RWB 53 Rare', 'MLB-22S1-R-B53-M-RWB'), + (0x3e1a6eb5b85bab85f8d659b4154a01588709cfbf, 'PI Public Collection', 'PPC'), + (0x3e25f9139faa297a9cf0194b197a9d983e289648, 'Chainsaw Rising Comic Cover Color 1 Epic', 'GDZ-GVG22-E-CC1-A-COL'), + (0x3e29ccc3fa0aaadc08f58e9f85bfe851b8dd865a, 'Wolfy Angel', 'WOAN'), + (0x3e2a791dbaa4b00dfc91c021929ab110e9a01c46, 'Midnight Boarders', 'MDBD'), + (0x3e3c7bb95d06c9a04c59e6407089f9f155844297, 'Houston Astros® Jose Altuve Base Pink 1112 Uncommon', 'MLB-22PRI-U-B9-M-PNK'), + (0x3e3e0612dfd72b40d1d5d3ee5b3e6847df6642b0, 'LOAlexandria', 'LOAlexandria'), + (0x3e3f3ffb5cf1f5c727eed0016e29de74cdddb8a5, 'PLAKANFT 34', 'PNFT34'), + (0x3e3f6bf85ebe68a5278e8f20634f11997f156d93, 'Face Mash', 'FMSH'), + (0x3e47686af73c58a0b45dafd9481012ec9e2a7044, 'Baby Jellykin', 'BBJellykin'), + (0x3e48b403d32de76c5c7bade82fa4b0dfa3e727c4, 'Hertha Berlin Nemanja Radonjic Base Players Team Color 48 Uncommon', 'BUND-SC21-U-BP48-TMC'), + (0x3e4e29abc586c47b707f079a68a0c737a36a24fb, 'Baltimore Orioles® 2021 Topps MLB Inception Set Completion Reward Team Colors 3 Epic', 'MLB-21INCSC-E-21INCSCR3-M-TC'), + (0x3e5233e2e2628146027aeaa9a520df3e01f590ac, 'Baltimore Orioles® Ryan Mountcastle Base Pink 1004 Uncommon', 'MLB-22PRI-U-B12-M-PNK'), + (0x3e536ec517ee96c0f36e0398c11c058fa588fe23, 'soforand', 'sfr'), + (0x3e56a13cdc7ae070379fa6ad769fc29bd242386e, 'Ganjavax Pots', 'POTS'), + (0x3e6bbe650c37da741d732cb1aa97c9dd11cda38a, 'My Artworks', 'OUROBOROS'), + (0x3e6d097ed2617e19fe00f2dc2d02425b5f3a4c3a, 'EmotionalGirls', 'EGRL'), + (0x3e6da9ce488d76ba93861a36a439826bd0dff160, 'Boston Red Sox® Alex Verdugo Inception Base Red 10 Rare', 'MLB-INC21-R-IB10-RED'), + (0x3e73f24d29754d98334b5682871aff2484e6c95e, 'Megaguirus Base Collectible Blue 13 Common', 'GDZ-RAT21-C-B13-S-BLU'), + (0x3e99e34bb2ebafb13cd11c8280dad1bf63c5259a, 'American League™ 2021 Home Run Leaders Base Vintage Stock 48 Super Rare', 'MLB-22S1-S-B48-M-VS'), + (0x3e9d1248fffb373969c441f82b9c41bf35ed315b, 'New York Yankees® Jordan Montgomery Wild Card Contenders Blue 16 Common', 'MLB-21POST-C-W16-M-BLU'), + (0x3e9f565d8c1a5462d2ca1103c65db494422f4fb1, 'USP Reveal', 'USP Reveal'), + (0x3ea27c932276c8ea6b584c242ff1ec7fdac7e486, 'Rich Bear Club', 'RBC'), + (0x3eabb025dbc1f36d815d7fa12d6eb1d0dfa2c927, 'Houston Astros® Jose Altuve 2022 Definitive Gold 11 Legendary', 'MLB-22LEG-L-22DEF11-M-GLD'), + (0x3eabb20883e81a03525e348842f4e2de08dda306, 'Chicago Cubs® Base Motion Platinum 529 Epic', 'MLB-S221-E-B529-PLA'), + (0x3eb4ca8320ec0827bdc920087f369082b784fec8, 'Hamsa V1 Pool Tokens', 'HP-V1-PT'), + (0x3eb5fe5f5be493b3e35be397909cb911453e851b, 'New York Yankees® Gleyber Torres Base Pink 1099 Uncommon', 'MLB-22PRI-U-B32-M-PNK'), + (0x3eb8a902fd0a081d9e50e13a599b0342cb37d2b2, 'Rare Comic 99 2-51 Bazooka Joe 2021 NFT', 'BZK-R-99C'), + (0x3ebd249f12e6ccb33bbd232595a2af338d725730, 'OGERZ KLAN', 'OGERZKLAN'), + (0x3ebfdf2021a423d17a3f2cfc82bd65b01a7d928a, 'ERIKA', 'ERK'), + (0x3ec393ad4b56e9771b6ddde9b4048979ccb6f357, 'Uncommon Comic 55 2-7 Bazooka Joe 2021 NFT', 'BZK-U-55C'), + (0x3eca30b0570019e5b003e5e3a04a67010e8ffe47, 'Oakland Athletics™ Chris Bassitt P Base Motion Rainbow 626 Rare', 'MLB-S221-R-B626-RAI'), + (0x3ed2bf0c84c1d569a3919392ca1e3d474861b630, 'New York Mets® Jacob deGrom Base Independence Day RWB 330 Rare', 'MLB-22S1-R-B326-M-RWB'), + (0x3ed8bc06bc8e8213f1a126f4c862d79601a205cf, 'Detroit Tigers® Willi Castro Base Vintage Stock 191 Super Rare', 'MLB-22S1-S-B190-M-VS'), + (0x3eea12b9c6920c8b0135cb89ed538cab3978b38b, 'Jesse Josh x PowerHouse', 'JJP'), + (0x3eec4acd0c67a587376e876450192b2f8c58d46a, 'Lucky Leo Gold Pots', 'LLGP'), + (0x3eefd1a7370385ca3023ed83e2b7eb995f31a760, 'Los Angeles Dodgers® Trea Turner 1987 35th Anniversary Wood T87-66 Common', 'MLB-22S1-C-1987A47-M-WD'), + (0x3f06a1f667be88836c5dede507fa45f7db9b718a, 'Milwaukee Brewers™ Devin Williams Base Independence Day RWB 26 Rare', 'MLB-22S1-R-B26-M-RWB'), + (0x3f0ace3bdbeae16206f36abd64b5152f70199b75, 'Angels® Brandon Marsh Fresh Faces Facsimile Signature Reward White 3420 Legendary', 'MLB-22PRIASG-L-FFR10-M-WHI'), + (0x3f0b22b92b6ec3e267eca8a1334601987ac4e7df, 'National League™ Manny Machado Base Blue 1293 Common', 'MLB-22PRI-C-B194-M-BLU'), + (0x3f0b8ad54042663e4c7cc6e31d5caacaaa55852c, 'Rare Skullios', 'RSKLS'), + (0x3f0cf5c9c7f691e9d51491e02d92daea93b9f2b0, 'American League™ 2021 Strikeout Leaders Base Glitch 138 Uncommon', 'MLB-22S1-U-B137-M-GLI'), + (0x3f108b310eb1d10bb2f5adbab6cb7d594a9a2b96, 'Common Comic 45 1-45 Bazooka Joe 2021 NFT', 'BZK-C-45C'), + (0x3f26bd016436527ae35941d3af064f0dec6be570, 'King Ghidorah Strikes Traditional Art Color 6 Epic', 'GDZ-RAT21-E-TA6-A-COL'), + (0x3f277fbc7f198be6ef4917f9a38e3e0ac2086f7a, '2022 GPK Non-Flushable Tokens Pack', 'GPK-NFT22-PACK-S'), + (0x3f2791d94bc18824116b6fdd214c329825324c1d, 'Arizona Diamondbacks® Tyler Gilbert Base Pink 1311 Uncommon', 'MLB-22PRI-U-B176-M-PNK'), + (0x3f31e8854858500b7caba28ecda49c81d32a98af, 'Nox Beyond', 'NOXB'), + (0x3f38e006622cc99bfe9874e62b51bfb71318f1cc, 'Angels® Jo Adell Generation NOW Team Colors GN-5 Epic', 'MLB-22S1-E-GN5-M-TMC'), + (0x3f4a158f3cc6f5083836b98af3cbf140a1850632, 'Sport-Club Freiburg Christian Günter Base Players White 36 Common', 'BUND-SC21-C-BP36-WHT'), + (0x3f4e44b008168d9d30d11ec33da0a234db898df4, 'Joe Lewis ABE Top Saves Gold SPTS-02 Legendary', 'SPFL-21SPSS-L-TSSPTS-02-V-GOL'), + (0x3f59e88b2acd4849ee079c77f7ac6526186bfe5e, 'Arizona Diamondbacks® Josh Reddick Base White 318 Common', 'MLB-22S1-C-B314-S-WHI'), + (0x3f5d3333babc53fa3c7876ecc5de9ede4cba0fe4, 'FairyGoblin', 'goblin'), + (0x3f62e64a4a6038953b6910f4579414d1d3dcd9d8, 'Wataru Endō VFB Top Players Black TK-17 Common', 'BUND-22TK-C-TPTK-17-S-BLA'), + (0x3f70624558710b0ee7f224e13c1e045a5e17f166, 'Texas Rangers® Joey Gallo Inception Base White 92 Common', 'MLB-INC21-C-IB92-WHT'), + (0x3f76c36549aef33ffd0d6fdcf4a6a8b40d57b7f8, 'JanusWorldCup', 'JWC'), + (0x3f7ec6a788e584decf0d35e789b08ae262724b4e, 'Tampa Bay Rays™ Austin Meadows 1987 35th Anniversary Chrome T87C-73 Super Rare', 'MLB-22S1-S-1987AC55-M-CHR'), + (0x3f81a29c607200df0ab9aab9438354b8c3dd0c55, 'Neon Aura', 'NEONAURA'), + (0x3f82109a75a53f560a0d0bfb2215f2f428a1d76f, 'Bananas With Culture', 'NANA'), + (0x3f828acce7d8365d6d77ebff69faa84104b42c43, 'Manda Base Collectible Magenta 6 Common', 'GDZ-RAT21-C-B6-S-MAG'), + (0x3f83f94468f165526c3f852dba9fbd4bcea35b2a, 'Angels® Jo Adell Rookie and Future Phenoms Facsimile Signature Blue 35 Super Rare', 'MLB-INC21-S-RC35-BLU'), + (0x3f98a90680d186b298917b72ea20ee3d16c14667, 'Windows NFT''s Badge', 'Windows NFT''s Badge'), + (0x3f9f2f2532cf9e785dd5ef64d4ab7a4b69783020, 'Los Angeles Dodgers® Cody Bellinger Inception Base Blue 47 Uncommon', 'MLB-INC21-U-IB47-BLU'), + (0x3fa46aef62cbd44e773fcac9bf7793c60ad07812, 'St. Louis Cardinals® Albert Pujols Topps NOW Aqua 197 ', 'MLB-22NOW-R-TN5-M-AQU'), + (0x3fad31c1e069ecf25cef617207fb6938ce7929f9, 'FC Union Berlin Nico Schlotterbeck Young Stars Team Color 165 Super Rare', 'BUND-SC21-S-YS165-TMC'), + (0x3fb915d00af82cbb5e0c284a50a9a55ae9dd1346, 'Toronto Blue Jays® Julian Merryweather P Base Static White 581 Common', 'MLB-S221-C-B581-WHI'), + (0x3fbb4f2b73aae7b5f61353ed4281f2e4a429cd44, 'Hot Coin Summer Golden Animation Facsimile Signature Color 23 Legendary', 'GPK-NFT22-L-GAFS23-A-COL'), + (0x3fbe77d4db5e4d3dc180f571d30a143ed5829bad, 'Sproutcoin Spring Base Color 22 Common', 'GPK-NFT22-C-B22-S-COL'), + (0x3fc48ddecc79b377fa070df701d6ae4b809c4a5e, 'Smart Finance OG-NFT', 'OGNFT'), + (0x3fc77eaf2def8cdfba2ac62130410492bd895c87, 'Silvan Widmer M05 Base White S3-23 Common', 'BUND-21TS3-C-BS3-23-S-WHI'), + (0x3fc833fcc5de7868c908102101babe211274fdf2, 'Weirdies', 'Wrd'), + (0x3fcd3b6f5ffc8808c886316808d088e02f90d4e9, 'New York Yankees® Mike Tauchman OF Base Static White 449 Common', 'MLB-S221-C-B449-WHI'), + (0x3fd5a9e301c8dfb6b15b4faed8d4beb1e883199b, 'Rome is Burning Comic Cover Black and White 2 Uncommon', 'GDZ-RAT21-U-CC2-S-BW'), + (0x3fdfd3abb53c7ca4cd356064c2dfab774242020d, 'Uncommon Comic 74 2-26 Bazooka Joe 2021 NFT', 'BZK-U-74C'), + (0x3fe079a29d0cd5f50646c80ecf84450aa09891d4, 'Ayo Obileye LFC Base Aqua SP-28 Uncommon', 'SPFL-21SPSS-U-BSP-28-A-AQU'), + (0x3fe3b41726c82fe03723efa24b8159430d5cb7bf, 'Dominik Szoboszlai RBL Motion Aqua Refractor S2-16 Rare', 'BUND-21TS2-R-MS2-16-V-AQU'), + (0x3fe9effa80625b8167b2f0d8cf5697f61d77e4a2, 'Kane''s Komodos', 'KOMODO'), + (0x3ff07c4871b2360133cb12313a547e3ae04bb4b1, 'The Proboscis Beach Club', 'TPBC'), + (0x3ff0b7a919db93eff0ce49122b8771f7feeddcbf, 'Cosmic Credit Cards', 'CCC'), + (0x3ff53e0ab12c68cca31c29c1013d3c277a8051a4, 'Punk Bears', 'Punk Bear'), + (0x3ffb9db06172a903294e0f3c9af9a2aa519268a1, 'Chicago Cubs® Willson Contreras National League Base Golden 1 Super Rare', 'MLB-22ASG-S-B1-M-GLD'), + (0x40036d35a3aef15d8987f892d761b54593891dcb, 'Boston Red Sox® Jose Iglesias Base Vintage Stock 15 Super Rare', 'MLB-22S1-S-B15-M-VS'), + (0x400d5d435f6782566479a3aaf3c24e8bbb0c53c3, 'Detroit Tigers® Spencer Turnbull Base Glitch 228 Uncommon', 'MLB-22S1-U-B225-M-GLI'), + (0x402b004f017e8efd9f6c3c231e5c42f63acf8713, '2022 Topps Pristine Baseball NFT Collection Challenge Rewards 3-Pack', 'MLB-22PRI-REWARD-PACK'), + (0x403784c4fb967fa6aa4e833743df552bcba29ad9, 'Chicago Cubs® Adbert Alzolay P Base Motion Platinum 658 Epic', 'MLB-S221-E-B658-PLA'), + (0x403e4567f9a2b8e918103296a657eb3f2e3d0a78, 'Boston Red Sox® Double Bath Base Independence Day RWB 229 Rare', 'MLB-22S1-R-B226-M-RWB'), + (0x4044a53247f131742c78e23c0a5b88fe06538154, 'Boston Red Sox® Kyle Schwarber Base Independence Day RWB 216 Rare', 'MLB-22S1-R-B213-M-RWB'), + (0x40472cce1c4a0967b28c16ede7be1d632bfb3366, 'RB Leipzig Angeliño Base Players Team Color 14 Uncommon', 'BUND-SC21-U-BP14-TMC'), + (0x404863d0e8a12632da5bedf66e4f86b5be6287b7, 'Crazy Birds', 'CrazyBirds'), + (0x4051527affabb2e56094b2147d8128fc8e58f6a2, 'Minnesota Twins® Alex Colome P Base Static Gold 533 Uncommon', 'MLB-S221-U-B533-GOL'), + (0x40592bbb509bcfcfb267b01a03d5db8ad5339e05, 'Philadelphia Phillies® Bryce Harper National League Base White 11 Uncommon', 'MLB-22ASG-U-B11-M-WHI'), + (0x4059c33d8de203b7fd19fb65755f36ca5f9be6e8, 'National League™ Ozzie Albies Base Pink 1295 Uncommon', 'MLB-22PRI-U-B210-M-PNK'), + (0x4061afcb657cb867562a03a4ea4e32f588dceb41, 'San Diego Padres™ Yu Darvish P Base Static White 357 Common', 'MLB-S221-C-B357-WHI'), + (0x4062d6b80d918fe09421d25d63464fa9a40f217a, 'Los Angeles Dodgers® Corey Seager SS Base Motion Vintage Stock 450 Super Rare', 'MLB-S221-S-B450-VS'), + (0x40657333b1dfe0a990148d95c1852c04c0242052, 'MoonBuddies', 'MOOBS'), + (0x40681c4b8ed1be70b152d49e7b8771a8242086d7, 'MEGA PUNKS', 'MEGAP'), + (0x406e0035d829c02cb7852aa97b95edba8842432b, 'Uncommon Comic 12 1-12 Bazooka Joe 2021 NFT', 'BZK-U-12C'), + (0x4088f693df93f2132ac432aac92efd1f25a90a67, 'Legendary Baseball Card 8 Tex Batter Bazooka Joe 2021 NFT', 'BZK-L-8B'), + (0x408efb79a89ba54a638442de8d34db9f343f1e04, 'Legendary Baseball Card 6 Tuffy Catcher Bazooka Joe 2021 NFT', 'BZK-L-6B'), + (0x4093b373d4f2d3bdc7727fb6c94686bf02012ff1, 'The Commune', 'COMMUNE'), + (0x4098ea0fea792c594a99d9e6b9affa6834bf12e7, 'Rodrigo Zalazar S04 Color Splash Team Color TK-70 Super Rare', 'BUND-22TK-S-CSTK-70-S-TMC'), + (0x40a90ca165e481ec202afe371a94dec115802444, 'Texas Rangers® Sam Huff C Base Motion Platinum 654 Epic', 'MLB-S221-E-B654-PLA'), + (0x40afc96ee78db321e3160116c5caf78c649d58d4, 'FC Bayern Munich Alphonso Davies Young Stars Team Color 145 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS145-SFS-TMC'), + (0x40b1af212033f31f32fc241c130d909f2fd6ca2a, 'Atlanta Braves™ Freddie Freeman 2022 Definitive Gold 1 Legendary', 'MLB-22LEG-L-22DEF1-M-GLD'), + (0x40b4cdf65c0ecbf9881391592f51a986c59caf6a, 'CryptoPukes Animation Color 3 Rare', 'GPK-NFT22-R-A3-A-COL'), + (0x40b618946a1c4fc2082856224c58a4cb3fa2e329, 'Toronto Blue Jays® Jose Berrios Base Glitch 29 Uncommon', 'MLB-22S1-U-B29-M-GLI'), + (0x40bc65a0ddcbaea51782a96bba526617e798c85b, 'Hertha Berlin Matheus Cunha Top Players Gold 118 Super Rare', 'BUND-SC21-S-TP118-GLD'), + (0x40beb9d319f349ea9ebe42afec888bc075897b33, 'Philadelphia Phillies® Bryce Harper Popular Demand Facsimile Signature Teal 3504 Legendary', 'MLB-22PRI-L-PDFS2-M-TEA'), + (0x40c04c9c6475a725562789d9628caea7994d3dd5, 'Borna Sosa VFB Motion Rainbow Refractor S3-27 Super Rare', 'BUND-21TS3-S-MS3-27-V-RAI'), + (0x40c54cacac754b49fabcce56030ada9eeebe9c78, 'Rare Comic 51 2-3 Bazooka Joe 2021 NFT', 'BZK-R-51C'), + (0x40d2872990272a1b8715f039321a28114ea5ccd3, '"ERC721_2981"', '"ET721_2981"'), + (0x40dfa148844b4180f590d88f77452b68d5d36d7a, 'Uncommon Comic 7 1-7 Bazooka Joe 2021 NFT', 'BZK-U-7C'), + (0x40e0b148fc6f30edc1d334691a8b15876318e681, 'Dominik Szoboszlai RBL Animation Black Refractor S2-16 Epic', 'BUND-21TS2-E-AS2-16-V-BLA'), + (0x40f1f303d8526845839133995a5acadba809bae9, 'Avax Dinos', 'AVDN'), + (0x40f76f99971074e7d73fbef096eba223e85dc5ed, 'Jan Thielmann KOE Animation Gold Refractor S4-38 Legendary', 'BUND-21TS4-L-AS4-38-V-GOL'), + (0x40f8504ea7fb93ab817830d61b5b400a1320a814, 'NFT Garden', 'NFTG'), + (0x40fb1f5ebdf1831031c4f3615e4a50a4790975eb, 'Los Angeles Dodgers® Walker Buehler P 1986 Anniversary Facsimile Signature Motion Chrome 86TC-76 Legendary', 'MLB-S221-L-1986AFS86TC-76-CHR'), + (0x40fbaa1d72fad481425ddb4e81dcdbef91d9a9cf, 'Houston Astros® Luis Garcia P Base Motion Vintage Stock 547 Super Rare', 'MLB-S221-S-B547-VS'), + (0x40fd1ff69e3ee9f59f3ae3bad8926a4be77a7165, 'Milwaukee Brewers™ Omar Narvaez Base White 139 Common', 'MLB-22S1-C-B138-S-WHI'), + (0x4104607aeb25c1252b5cbbc3cff04668cded0b4e, 'Door Keeper', 'No.14'), + (0x4108544a4fff996fef841e876ab8d24d8314afc2, 'New York Yankees® Aaron Judge 1987 35th Anniversary Wood T87-99 Common', 'MLB-22S1-C-1987A70-M-WD'), + (0x41104900b7c8806039c3b60041ce3a4b27536fdb, 'Pino Coin', 'PNC'), + (0x412a0c67c3b6b50c0cdd789db5df66f130837c70, 'Super Rare Animated Comic 2 New Game Bazooka Joe 2021 NFT', 'BZK-S-2A'), + (0x412adc881481aadfdbc14c455552798ef638ffc1, 'Atlanta Braves™ Freddie Freeman 1987 35th Anniversary Chrome T87C-38 Super Rare', 'MLB-22S1-S-1987AC29-M-CHR'), + (0x412af954e521f17fa13cd8f2983a1e612db6bb2b, 'Iconic Apes', 'IAPES'), + (0x412e655dd40e5d791c9e853e266cc20661f992ef, 'Milwaukee Brewers™ Avisail Garcia Postseason Base Red 20 Rare', 'MLB-21POST-R-B20-M-RED'), + (0x41362e8ba34e67f564b4b154cfcfae8cbe4df563, 'Philadelphia Phillies® Zach Eflin P Base Static White 460 Common', 'MLB-S221-C-B460-WHI'), + (0x413ae7eeb79407a7fe0f8129c45bcc6fc266f9ea, 'Honorary MINI Team', 'HMT'), + (0x413ec0d6dba2b84c52f1d89c4416878e69e61a01, 'Brazil beaches', 'beaches'), + (0x4142288c4503c19930a2cad7a16e8c62165a573d, 'Crypto Drones Strike Collection', 'CDSC'), + (0x41477b7ea7bc924df7b447342f98558730281b82, 'The Bid Monster', 'BID'), + (0x414c02abaaf859efe4db2d5599f504cd7bf70a5f, '3 Connections', 'AVAX'), + (0x414f9c1a4f2709fed169c8bc56c617a3ee4e1d0c, 'Tweeters', 'TWEETER'), + (0x4156a748d9daa9c0b8b3cd21964d66a292b97b87, 'Boston Red Sox® Xander Bogaerts SS Base Static White 476 Common', 'MLB-S221-C-B476-WHI'), + (0x4158ca7f4370400c48ecd1ca1334814e4506b277, 'Arizona Diamondbacks® Pavin Smith 1B Base Motion Platinum 444 Epic', 'MLB-S221-E-B444-PLA'), + (0x415cca352d32d9300f6b7afe8498289abf2e5dd2, 'Cloudheadz Customz', 'ChzC'), + (0x4166cddd0dcdb2ed0fcba2a4a38ba770932c05c2, 'Raphaël Guerreiro DOR Animation Gold Refractor S1-03 Legendary', 'BUND-21TS1-L-AS1-03-V-GOL'), + (0x416f5c59457680f8f9e60b78c003c621c3133d49, 'EntheoGen0', 'EG0'), + (0x4171da416fe54ff866cf59a0394b1ebcd9cb3e89, 'Mambo Pink Slips', 'MPS'), + (0x4176bfab5d915e154122d1215fbc7c3418e0abe0, 'Avalanche Japan Art', 'AJA'), + (0x417a0a708842f8bf881b324bf7a4c157e6da44d0, 'Arizona Diamondbacks® Stuart Fairchild Base Independence Day RWB 163 Rare', 'MLB-22S1-R-B162-M-RWB'), + (0x4182e5cdf3ce6f138a52d1b5361048227513e9a7, 'New York Mets® Marcus Stroman P Base Motion Platinum 549 Epic', 'MLB-S221-E-B549-PLA'), + (0x41833f77ccc02f6fedff626e40fe9b5df1767788, 'MECHA-DIN00S', 'MECHADINOS'), + (0x418b13b25f6fd74dccbf638017d55a8749ca0e4e, 'MutantBears', 'MB'), + (0x418ef10f7f787c6515d5b8d593908446e6f91078, 'Boston Red Sox® Hunter Renfroe Division Series Bronze 11 Super Rare', 'MLB-21POST-S-D11-M-BRO'), + (0x418f38b3945ae9612b2cabff9b7e6fc3f2bef54f, 'Smol Doomers', 'SMOLDOOM'), + (0x418f6cde90ddf05965ef087242a8dc98f316a2a2, 'New York Mets® Marcus Stroman Facsimile Signature Gold 3047 Super Rare', 'MLB-22PRI-S-FS33-M-GLD'), + (0x4195c715bcf89bbdeeb67ffd4649ca88b2c3ea0d, 'Avalanchimps', 'AVAC'), + (0x41981c883bef09c96a2a721894e200f5db14d535, 'San Francisco Giants® Kris Bryant Stars of MLB Chrome Night SMLBC-27 Legendary', 'MLB-22S1-L-SMLBC26-M-NIT'), + (0x4198b25ccd5c7ad78d327a01228c02903733fb43, 'Pittsburgh Pirates® Steven Brault Base Independence Day RWB 307 Rare', 'MLB-22S1-R-B303-M-RWB'), + (0x41ab2583eadd0a8307a52cbc6a1d3ecd6ac107fc, 'DucksNFT', 'Ducks'), + (0x41ad23b814dd791f93bbcadf377a76ef6a1a15c0, 'Eye Candy Digital Facsimile Signature Color 4 Uncommon', 'GPK-NFT22-U-FS4-S-COL'), + (0x41adb2da4a96aa97652b8f348dc3e987c6121f0b, 'Atlanta Braves™ Nick Markakis OF Base Motion Vintage Stock 641 Super Rare', 'MLB-S221-S-B641-VS'), + (0x41b26f71f18bed3e6fac075f077420a3a0706ab2, 'Bridget Troll Facsimile Signature Color 16 Uncommon', 'GPK-NFT22-U-FS16-S-COL'), + (0x41ba55f8dd69a7fcdc2be5f4b4487e290eaf2f87, 'FC Union Berlin Taiwo Awoniyi Young Stars Gold 166 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS166-AFS-GLD'), + (0x41c3f2c647658bed9e0dbf13dd41e2e45cf73104, 'Toronto Blue Jays® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 29 Legendary', 'MLB-21S2SC-L-21S2SCR29-M-TC'), + (0x41c408908310b70df0705014121b092109067ceb, 'Takuma Asano BOC Top Players Team Color TK-36 Rare', 'BUND-22TK-R-TPTK-36-S-TMC'), + (0x41cac3407ad6dfc82a377a3ff13b9c00a6063c0a, 'Milwaukee Brewers™ Christian Yelich Facsimile Signature Glitch 288 Epic', 'MLB-22S1-E-FS20-M-GLI'), + (0x41cf07e621cbbe77aaa7b9b36cd39972becd9921, 'Common Comic 79 2-31 Bazooka Joe 2021 NFT', 'BZK-C-79C'), + (0x41d65d63d56fb4bd48adfbca71c0b1e891ee576e, 'Oakland Athletics™ Stephen Piscotty OF Base Static Gold 607 Uncommon', 'MLB-S221-U-B607-GOL'), + (0x41d9911e3b2dde7d57878d1ac786bd8476b24332, 'FC Koln Benno Schmitz Base Players Gold 66 Rare', 'BUND-SC21-R-BP66-GLD'), + (0x41e220db2ab35a91b4e1de1a00dbdb4ec9c4f1c2, 'San Francisco Giants® Johnny Cueto Base White 73 Common', 'MLB-22S1-C-B73-S-WHI'), + (0x41e383bc7c476cbefccc1866ca55b4bfb5331c4a, 'American League™ Rafael Devers Base Blue 1264 Common', 'MLB-22PRI-C-B201-M-BLU'), + (0x41e4bcaa739f0e2df8cbcb460c93544aab5b8170, 'Atlanta Braves™ Freddie Freeman Regular Season Division Winners RWB 25 Rare', 'MLB-21POST-R-R25-M-RWB'), + (0x41e61329b68a9683a7f850dd25104aabe5633313, 'Milwaukee Brewers™ Brandon Woodruff Postseason Base Navy 23 Uncommon', 'MLB-21POST-U-B23-M-NVY'), + (0x41ec89c3d2f4e0d20c7fb2ce19d96ff39737134e, 'Ultimate Pepeverse', 'PEPE'), + (0x41efcafc7ae07e76dc48ea096a7fb850908d9053, 'Cobalt CAThy Animation Color 10 Rare', 'GPK-NFT22-R-A10-A-COL'), + (0x41f18f06addab881434f5f5ea41c56ca58927444, 'DexSocialProfile', 'SP'), + (0x41fc45dcaaeac616590f32e09e08294762af0db8, 'Lockerz Ticketz', 'TICKETZ'), + (0x420d31f69f8b62e1d7de0219844e38ed2184df6a, 'Samurai girl', 'Samuraigirl'), + (0x42100ef39538b9d95d4263dd9757fe63bc73741c, 'Jean-Paul Boëtius M05 Motion Aqua Refractor S4-51 Rare', 'BUND-21TS4-R-MS4-51-V-AQU'), + (0x4211c18ffde45653a79a0408eacd06b71645dbfa, 'San Francisco Giants® Austin Slater OF Base Motion Platinum 378 Epic', 'MLB-S221-E-B378-PLA'), + (0x421f6a9edd5beb0a2e702f83dd9ade853900aaca, 'FC Schalke 04 Timo Becker Base Players Team Color 57 Uncommon', 'BUND-SC21-U-BP57-TMC'), + (0x42261d3d74e650635cff40ac4a1c051c7affac29, 'Mint Deeze', 'MINTDEEZE'), + (0x42283f5e9ccdeee33d136ed6650c15236fb41778, 'Philadelphia Phillies® J.T. Realmuto Popular Demand Facsimile Signature Slab Teal 3527 Legendary', 'MLB-22PRI-L-PDFS7-M-TEA'), + (0x422ab9e31cc5ca8ca8266986ff4cd8fd18b68f1e, 'XANA Treasure Box : August 2022', 'XTB'), + (0x422bff950d90093c3755ad8212a9bc6d483cff7c, 'New York Yankees® Aaron Judge Base Blue 1019 Common', 'MLB-22PRI-C-B63-M-BLU'), + (0x422fd82d13a85af8c7039f5d6aa7f71b1ae4cdd5, 'Los Angeles Dodgers® Walker Buehler P Base Static Gold 466 Uncommon', 'MLB-S221-U-B466-GOL'), + (0x4232181fc690ac83907191ba980251fd8bc40828, 'Angels® Mike Trout Inception Base White 44 Common', 'MLB-INC21-C-IB44-WHT'), + (0x423e698eab29dd1a68972348d18dd5b2d5542e39, 'Coyotes', 'Cys'), + (0x4241c8fb750691838ebc129fdad466573861650a, 'Pixel of Apple', 'POA'), + (0x4243acc4468ffe7a13dae290cdaa763b743c2a9b, 'FC Koln Florian Kainz Base Players Team Color 67 Uncommon', 'BUND-SC21-U-BP67-TMC'), + (0x42443c88fb2c00a7addfc4420c1b2a2b442f50f8, 'Cleveland Guardians™ Team Cube 2.0 Team Colors 22 Legendary', 'MLB-22S1-L-TC222-M-TMC'), + (0x4246b75831b15eef5394c01ba7c45ee0bfbbd44d, 'Kansas City Royals® Ryan McBroom 1B Base Motion Platinum 606 Epic', 'MLB-S221-E-B606-PLA'), + (0x425c6ea431796d43a6e0e7afca125c2c7ef49fad, 'Liam Boyce HEA Base Aqua SP-15 Uncommon', 'SPFL-21SPSS-U-BSP-15-A-AQU'), + (0x42647bed1c046ac09ffd0294b9b81d661967a516, 'Borussia Monchengladbach Alassane Plea Top Players Gold 101 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP101-AFS-GLD'), + (0x427775d74b6466fa4ae09212c5143572a81d4fda, 'PrizeBondAvax', 'PBA'), + (0x42804322e71b629e3cb8ced5344bcb2cf6e95f9b, 'National League™ Nolan Arenado Base Blue 1287 Common', 'MLB-22PRI-C-B218-M-BLU'), + (0x4290160899d26b3fcef64bd6ee60c39bb63c8bf3, 'Borussia Monchengladbach Lars Stindl Top Players Gold 102 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP102-AFS-GLD'), + (0x4292fd2eadda4420cb2e5b1f072aec592006311a, 'FeRARI Frank Golden Animation Color 11 Epic', 'GPK-NFT22-E-GA11-A-COL'), + (0x4293c31d4de8708a078683bfbfdeacd105d1285c, 'Milwaukee Brewers™ Corbin Burnes P Base Static Gold 619 Uncommon', 'MLB-S221-U-B619-GOL'), + (0x42a4a1f90abd82f05b4b8813b73d36843d0dcb09, 'Milwaukee Brewers™ Keston Hiura Silver Signings Facsimile Signature Silver 25 Super Rare', 'MLB-INC21-S-SS25-SLV'), + (0x42a5f44f28d31332e1c93f752d6ffdf65ff61580, 'The Funky Horse Pub', 'TFHP'), + (0x42b24aebf5708dda6e55c0b3a52e8f66202f9601, 'Texas Rangers® Nick Solak Base Glitch 172 Uncommon', 'MLB-22S1-U-B171-M-GLI'), + (0x42c119cbf8152641d19f6f9957e5655acf2128fa, 'Uncommon Comic 19 1-19 Bazooka Joe 2021 NFT', 'BZK-U-19C'), + (0x42cb8f0a9771a7ef26aba9289ca244975e7b97c9, 'Buzzsaw Behemoth Comic Cover Color 3 Epic', 'GDZ-GVG22-E-CC3-A-COL'), + (0x42cffd9965933679154c50be85a210a7463681fa, 'New York Yankees® Gary Sanchez Base Blue 1191 Common', 'MLB-22PRI-C-B67-M-BLU'), + (0x42d313e15a0558de339d2098b28e20bb85ef6bfe, 'New York Mets® Javier Baez Pure Power Slab White 2110 Epic', 'MLB-22PRI-E-PP7-M-WHI'), + (0x42e1013bbdf754966d56ebba931444b194e347c5, 'Angels® Shohei Ohtani Inception Base Blue 45 Uncommon', 'MLB-INC21-U-IB45-BLU'), + (0x42e70fa018a14ce9848f5c1019e8a2c4b18a082a, 'Chicago White Sox® Lance Lynn Postseason Base White 15 Common', 'MLB-21POST-C-B15-S-WHI'), + (0x42f4bcdfd62d99d84f66a97ae6766f9d6f66805a, 'Cincinnati Reds® Joey Votto Inception Base Black 19 Legendary', 'MLB-INC21-L-IB19-BLK'), + (0x42fd7bf153983bf6d731ae5de87d6a5ee0d81202, 'Trucking Collection', 'TRCK'), + (0x431637794a700dc76e1837fca71cc955faad34a4, 'Tampa Bay Rays™ Brandon Lowe 2B/OF Base Static Gold 334 Uncommon', 'MLB-S221-U-B334-GOL'), + (0x4319b8a676ebe93e49b10e83b5677ade474a9c90, 'Cleveland Indians® Shane Bieber Inception Base Red 21 Rare', 'MLB-INC21-R-IB21-RED'), + (0x43218c8ebf164458bd3cfed039b14ca8f3cd2c57, 'Milwaukee Brewers™ Avisail Garcia Base White 92 Common', 'MLB-22S1-C-B91-S-WHI'), + (0x4327c59720cf5de2aba8a2e505b6e8d354ce83ca, 'Angels® Brandon Marsh Facsimile Signature Gold 3080 Super Rare', 'MLB-22PRI-S-FS4-M-GLD'), + (0x432abfc63d4bee057ab05e0e902e9b52b68bb302, 'Pittsburgh Pirates® Jacob Stallings C Base Motion Rainbow 505 Rare', 'MLB-S221-R-B505-RAI'), + (0x432e9022c4778e6f9d588303f783b275a27c7cf3, 'Platitudes', 'Plats'), + (0x432f2a5cd3410b1a0333c55624f8aed2b30b7318, 'Los Angeles Dodgers® Mookie Betts Base Vintage Stock 50 Super Rare', 'MLB-22S1-S-B50-M-VS'), + (0x43388d28a288cd4c6d0c85f1462ac520e21ecb6d, 'Colorado Rockies™ Daniel Bard Base Vintage Stock 167 Super Rare', 'MLB-22S1-S-B166-M-VS'), + (0x4339461320167e2974f0acb648db25ee53f65672, 'Washington Nationals® Mason Thompson Base Vintage Stock 38 Super Rare', 'MLB-22S1-S-B38-M-VS'), + (0x433d26e4ac69b1bbc242e6582972cf1b885836f5, 'Mechavax Shortseries #02', 'MASS02'), + (0x433d93d8daa64b068ece8c35f351e4cd73527a16, 'Potluck AVAX Platinum Pass', 'PAPP'), + (0x4346113e4bbc7bd5fbaf6dd2c40f0550bfabd1f2, 'Detroit Tigers® Casey Mize Base Pink 1071 Uncommon', 'MLB-22PRI-U-B87-M-PNK'), + (0x434775c3d15d9d6f77195d2c62d757b2cf99e516, 'Kansas City Royals® Emmanuel Rivera Base Vintage Stock 18 Super Rare', 'MLB-22S1-S-B18-M-VS'), + (0x4347b3d59d051ce2d91e8fa4ca3d21ada1a1b997, 'Marco Reus DOR Top Players Black TK-03 Common', 'BUND-22TK-C-TPTK-03-S-BLA'), + (0x4349ccd1e6f341b4762f4fbc7c035bbae36abd74, 'Relax Friends (RLFS)', 'RLFS'), + (0x434cbe3dbed471e530c071670c11b090962a7a45, 'Nate & Emily Adventrues', 'N&Eadv'), + (0x43512131a5e42fa2cdda53a31fb18136ab2340e1, 'Godzilla Offshore Traditional Art Color 1 Rare', 'GDZ-RAT21-R-TA1-S-COL'), + (0x43538b2097d77de013aa9d1fdaff2794e59171ac, 'Chicago White Sox® Tim Anderson Postseason Base White 10 Common', 'MLB-21POST-C-B10-S-WHI'), + (0x4357b992b3fd675ae1e5387cb6e6dea6611a5048, 'Milwaukee Brewers™ Corbin Burnes NL Cy Young Reward Gold Epic', 'MLB-21REWARD-E-NLCY1-M-GOLD'), + (0x435e0459cbc3d2eb91e406f27aac9a3b30db56cf, 'Crypto Crabs', 'CRABS'), + (0x435e2fb550ef432a2d4cfbd449bb6798c0f8f48d, 'Common Comic 53 2-5 Bazooka Joe 2021 NFT', 'BZK-C-53C'), + (0x4362fb8c952f18fc0667f63d890fad098702b933, 'Detroit Tigers® Jonathan Schoop 2B Base Static White 595 Common', 'MLB-S221-C-B595-WHI'), + (0x436616e45751376d8f876c24d81c7770a41e94df, 'Toronto Blue Jays® Jose Berrios Base Blue 1095 Common', 'MLB-22PRI-C-B105-M-BLU'), + (0x436c65a01bdd02853b8a191d287f099699c609dc, 'Reyna-Moukoko DOR Animation Duos TSC-12 Epic', 'BUND-21TSC-E-RATSC-12-A-DUO'), + (0x436db21f12d636138945450969bd9a64b5493848, 'San Diego Padres™ Ryan Weathers P Base Motion Vintage Stock 335 Super Rare', 'MLB-S221-S-B335-VS'), + (0x4372069ba35b5e9f36f7e63209518fb886a4000b, 'NFT Moon Metaverse (Land)', 'Moon'), + (0x43750451668764a454449fcd697ff0e9b7670216, 'SV Werder Bremen Ömer Toprak Base Players Team Color 80 Static Facsimile Signature Rare', 'BUND-SC21-R-BP80-SFS-TMC'), + (0x437df76b1f004c86cee35426c411e6391d7ba75d, 'WYRD CALAVERAS', 'CALA'), + (0x438355f6a287f7a2657893fed3693899bf464f77, 'Chicago White Sox® South Side Strength Base Motion Vintage Stock 486 Super Rare', 'MLB-S221-S-B486-VS'), + (0x438701a975588a6a339e5f1f942c10800ed2a47e, 'Philadelphia Phillies® J.T. Realmuto Popular Demand Facsimile Signature Teal 3527 Legendary', 'MLB-22PRI-L-PDFS7-M-TEA'), + (0x43875de4a0719b2d6a18f916c1e2eb87121f3b01, 'Jonas Wind WOB Base White S4-52 Common', 'BUND-21TS4-C-BS4-52-S-WHI'), + (0x438867e1d9a9d3113e2eb17b5745443f7a239a79, 'ALPHA: RONINS', 'ALPHAvRONIN'), + (0x43892e5c3066c04d8bd42e150c461b717396d26e, 'TPDAO - Exclusive Collection', 'TPDEC'), + (0x439851eba4d41a555f32336f99fb5e3110536200, 'Texas Rangers® Jeff Mathis C Base Static Gold 348 Uncommon', 'MLB-S221-U-B348-GOL'), + (0x439d676416cffd43e8659a8fd6bc082fac29bacc, 'Baby Leopards', 'BABYLEO'), + (0x439fe3a4670260f883858e358e8c2120be0e0813, 'San Francisco Giants® Sammy Long Base White 308 Common', 'MLB-22S1-C-B304-S-WHI'), + (0x43a0487d825808a96b6316daf51aea27cb5cf00f, 'Washington Nationals® Juan Soto Inception Base White 96 Common', 'MLB-INC21-C-IB96-WHT'), + (0x43a22d05858ef112adc15bb09d132fefbd07112d, 'Atlanta Braves™ Mike Soroka P Base Motion Vintage Stock 388 Super Rare', 'MLB-S221-S-B388-VS'), + (0x43a22ef1273765236fbbee3e99fa11dafc231914, 'Christopher Trimmel FCU Animation Gold Refractor S4-47 Legendary', 'BUND-21TS4-L-AS4-47-V-GOL'), + (0x43af1cd116ba48851867629bafbc7304dfacf34c, 'Detroit Tigers® Matthew Boyd Base White 128 Common', 'MLB-22S1-C-B127-S-WHI'), + (0x43b02c2f672e24216433076dd02564ae8abc3f7a, 'Eldritch Rising Sprites', 'ERS'), + (0x43b0bc16cc8ab7323f60501a2b796798803dfb80, 'American League™ Whit Merrifield Base Blue 1270 Common', 'MLB-22PRI-C-B190-M-BLU'), + (0x43b0c6d5633de9307e27813ef0c4d5450c20dec3, 'Milwaukee Brewers™ Team Cube 2.0 Team Colors 8 Legendary', 'MLB-22S1-L-TC28-M-TMC'), + (0x43b74fc63af40176247a5240d05309c9ef09dd3c, 'Chicago Cubs® Alec Mills P Base Static White 659 Common', 'MLB-S221-C-B659-WHI'), + (0x43baff2ef14beeff6208acfebcb15f83eb2610e4, 'FC Union Berlin Marvin Friedrich Top Players Gold 122 Super Rare', 'BUND-SC21-S-TP122-GLD'), + (0x43bcae8b17d83a15debec550c385f15b624f2b52, 'Paper Hans Animation Color 18 Rare', 'GPK-NFT22-R-A18-A-COL'), + (0x43bd27b53f25cc3eed783fe47b7a9e7be48a6189, 'Mile High Ape Club', 'MHC'), + (0x43c0f5818ebc6e1b31e86dc46027187d8cd6cc9b, 'nurturedSoul', 'NS'), + (0x43c5d695c20526e3cf3170a78a22d0e8e242a092, 'Atlanta Braves™ Travis d''Arnaud National League Base Golden 2 Super Rare', 'MLB-22ASG-S-B2-M-GLD'), + (0x43c7f9dbb05dee822c664eab5e6980f78dcbd4d1, 'Milwaukee Brewers™ Corbin Burnes Postseason Base White 22 Common', 'MLB-21POST-C-B22-S-WHI'), + (0x43c8aeb2aeff9ad565c41ec5ccc7246abfda08f7, 'Paper', 'PAPER'), + (0x43cede10e0e645ce7f4edff627b5961b39e0a863, 'Angels® Reid Detmers Base Vintage Stock 201 Super Rare', 'MLB-22S1-S-B200-M-VS'), + (0x43d14ad56265c5ad360fe463d5f9570b5d126e69, 'POP Ghosts', 'PG'), + (0x43d27abd3b724787d2d142e202f748e64fc47647, 'New York Mets® Jose Martinez 1B/OF Base Static Gold 625 Uncommon', 'MLB-S221-U-B625-GOL'), + (0x43d77cfc4ec15d5f271760d0ffa26fac7e6ad520, 'National League™ Jesse Winker Base Blue 1290 Common', 'MLB-22PRI-C-B219-M-BLU'), + (0x43d90bfed49117cd3f7b3494a92cc7e99543854c, 'Cleveland Guardians™ Jose Ramirez Base Pink 1009 Uncommon', 'MLB-22PRI-U-B10-M-PNK'), + (0x43d953ca951c401f376965d30ff5c505c4757983, 'Sascha Burchert SGF Animation Black Refractor S3-33 Epic', 'BUND-21TS3-E-AS3-33-V-BLA'), + (0x43dbb3d745555a47d5b7cde492c024aab0f6feed, 'Miami Marlins® Starling Marte Inception Base Blue 53 Uncommon', 'MLB-INC21-U-IB53-BLU'), + (0x43dce7c467b5377bed146a9888ae39532eb613d6, 'Rare Comic 32 1-32 Bazooka Joe 2021 NFT', 'BZK-R-32C'), + (0x43e0e7d93a7260ff05b0a7dc8e00f453e0ee0bf6, 'New York Mets® Pete Alonso HRD Reward Red 7 Rare', 'MLB-22ASGR-R-R7-M-RED'), + (0x43e115bb6ff9f06250958f65a07b7c711c919b42, 'Chibi Gigan Chibi Color 1 Epic', 'GDZ-GVG22-E-CH1-A-COL'), + (0x43e89c518078f0d83083a3e130d5b0a8f9b6dd2e, 'Chicago White Sox® Dylan Cease P Base Static White 435 Common', 'MLB-S221-C-B435-WHI'), + (0x43f356d9cbcd52353a34bb75987f757fdadbf977, 'Smolr Doomers', 'SMOLRDOOM'), + (0x43f7b8e7aa991f75690354769e14aeefc11460ab, 'Texas Rangers® Spencer Howard Base White 162 Common', 'MLB-22S1-C-B161-S-WHI'), + (0x440e2a437d1ba4a853b1f3a4a0dbb25b29770241, 'Maya Mask Animation Facsimile Signature Color 15 Super Rare', 'GPK-NFT22-S-AFS15-A-COL'), + (0x4429b1f4d1d47a72ec1b0b997638c37d8cce4d74, '1 Veteran''s Experience', '1VET'), + (0x4434cc920027c667f977d11a56cf587b4c358190, 'Toronto Blue Jays® Bo Bichette Inception Base Blue 93 Uncommon', 'MLB-INC21-U-IB93-BLU'), + (0x44355d171709b06ee507a33cc75dbc177318bb1c, 'MythicalAI', 'MYTH'), + (0x44399fa690934b1917fe3bec17bdd1553c04246c, 'Cincinnati Reds® Jesse Winker Base Blue 1176 Common', 'MLB-22PRI-C-B73-M-BLU'), + (0x443fd49078f5db948444d845ea966862315ec7b1, 'San Diego Padres™ Fernando Tatis Jr. Stars of MLB Chrome Night SMLBC-17 Legendary', 'MLB-22S1-L-SMLBC17-M-NIT'), + (0x4442d2414a66649604d29b280d942708bd413d42, 'Munch & Music Collection by Crypto Munch', 'MnMSC'), + (0x44461f51d2a4c12680f0bbf8aa9b23c2c5182e80, 'Miami Marlins® Braxton Garrett P Base Static Gold 433 Uncommon', 'MLB-S221-U-B433-GOL'), + (0x444f23d8c705429053238cf322679608ab0bb5cb, 'Toronto Blue Jays® Marcus Semien Base Pink 1193 Uncommon', 'MLB-22PRI-U-B82-M-PNK'), + (0x4461863894ed52242a85e507aa3d5587790718b1, 'Sheraldo Becker FCU Motion Rainbow Refractor S4-58 Super Rare', 'BUND-21TS4-S-MS4-58-V-RAI'), + (0x4464ebb3cf1bc5a1a66a2d3d83530305dff9be9b, 'NFTeapot', 'NFTEAPOT'), + (0x446698da7526e56ff6d60b665a06930b085e5037, 'Crystal Winter Animation Color 21 Rare', 'GPK-NFT22-R-A21-A-COL'), + (0x447bd4b4cc419b887d807c33c9024a9a96ad57f9, 'Breel Embolo BMG Animation Black Refractor S2-13 Epic', 'BUND-21TS2-E-AS2-13-V-BLA'), + (0x447bebe2b89f4591400f2913258ef2374b4d3ca4, 'Bayer 04 Leverkusen Jonathan Tah Base Players Team Color 21 Uncommon', 'BUND-SC21-U-BP21-TMC'), + (0x4482482f42e1f8c8e65e8ff5279fdb4ca321bc9c, 'Krazy Kats', 'KATS'), + (0x4485488708cb369eec61b021486e3cc7e66fb18c, 'Milwaukee Brewers™ Jake Cousins Base Vintage Stock 20 Super Rare', 'MLB-22S1-S-B20-M-VS'), + (0x448a19331aa71828193678904b2071c0f26145b9, 'Faith Fall Golden Animation Color 24 Epic', 'GPK-NFT22-E-GA24-A-COL'), + (0x4494e6ab68b5870d02857ac9352a5831f35992ac, 'Toronto Blue Jays® Steven Matz Base Independence Day RWB 276 Rare', 'MLB-22S1-R-B273-M-RWB'), + (0x44969995dad0a40358622f86fd8c8befe2c6bbb2, 'Tampa Bay Rays™ Tyler Glasnow P Base Motion Platinum 629 Epic', 'MLB-S221-E-B629-PLA'), + (0x449b2b17b530ccb2ff4d4d33b894ccd93957ed2a, 'Kansas City Royals® Whit Merrifield Base Independence Day RWB 245 Rare', 'MLB-22S1-R-B242-M-RWB'), + (0x44a2e99f0b3f0347ca43f82e88e223d631df555e, 'Cleveland Indians® Daniel Johnson Rookie and Future Phenoms Facsimile Signature White 13 Rare', 'MLB-INC21-R-RC13-WHT'), + (0x44a4d470f196e2f8766360682890ae024c5c54ce, 'St. Louis Cardinals® Adam Wainwright Wild Card Contenders Blue 31 Common', 'MLB-21POST-C-W31-M-BLU'), + (0x44a65a4663226351c608ff3a60a502bfc0193e99, 'Cleveland Indians® Delino DeShields OF Base Static Gold 602 Uncommon', 'MLB-S221-U-B602-GOL'), + (0x44a683ca59f145725e2041df64278af5b1180a87, 'Los Angeles Dodgers® Will Smith Base Glitch 83 Uncommon', 'MLB-22S1-U-B83-M-GLI'), + (0x44b16b4efc70878b5a28f12f7d74772e13f1fafb, 'Common Comic 32 1-32 Bazooka Joe 2021 NFT', 'BZK-C-32C'), + (0x44ba2b014086f57673d3a15663443df06c4667d6, 'Cincinnati Reds® Tyler Stephenson Base White 175 Common', 'MLB-22S1-C-B174-S-WHI'), + (0x44bb1d6d6183a29b95b8ec7edce69da4abc9b7bf, 'Cleveland Guardians™ Jose Ramirez Facsimile Signature Slab Gold 3022 Epic', 'MLB-22PRI-E-FS21-M-GLD'), + (0x44be5074c7a890161db9d054df4bd897ac6c938f, 'FSV Mainz 05 Jeremiah St. Juste Top Players Gold 129 Super Rare', 'BUND-SC21-S-TP129-GLD'), + (0x44c04a52d940a7dce215891429c33b9d085ae4fa, 'Toronto Blue Jays® Danny Jansen C Base Static Gold 597 Uncommon', 'MLB-S221-U-B597-GOL'), + (0x44c22a71e031b6391cb070c80469ccf8b8b42b79, 'Stickers', 'TGGSTICKER'), + (0x44c6e5590570438a03b58dc8dc0a0e7e8e878f38, 'San Francisco Giants® Sammy Long Base Glitch 308 Uncommon', 'MLB-22S1-U-B304-M-GLI'), + (0x44c75171672db125b1981cf7afe3a5ae3bdc1954, 'Milwaukee Brewers™ Freddy Peralta Base White 13 Common', 'MLB-22S1-C-B13-S-WHI'), + (0x44c990e01713c80db669d3aa1de455689d2c861e, 'Philadelphia Phillies® Adam Haseley OF Base Static Gold 590 Uncommon', 'MLB-S221-U-B590-GOL'), + (0x44c9d744b7bc4907d2002ed53a1e3e88427b5484, 'Cincinnati Reds® Tyler Stephenson Base Vintage Stock 175 Super Rare', 'MLB-22S1-S-B174-M-VS'), + (0x44cd1179221883027f177df1942d07274d42c1f0, 'Radar ghost', 'RDG'), + (0x44d67a2ed465cb7009685d13d95dce831049a072, 'Angels® Alex Cobb P Base Motion Rainbow 474 Rare', 'MLB-S221-R-B474-RAI'), + (0x44db567cafb8724ea235b19ec8c32daf346e9ec7, 'New York Mets® Edwin Diaz P Base Static Gold 498 Uncommon', 'MLB-S221-U-B498-GOL'), + (0x44db9f3e93afab1cb792723849dfc1e3fedf4057, 'Detroit Tigers® Daniel Norris P Base Static Gold 558 Uncommon', 'MLB-S221-U-B558-GOL'), + (0x44dc96c3d6446b87bd7a2890ec4dda206a87f897, 'Atlanta Braves™ Adam Duvall Base Glitch 279 Uncommon', 'MLB-22S1-U-B276-M-GLI'), + (0x44e33edd0afb22f3274ba9ad334f1b623052b643, 'DSC Arminia Bielefeld Cebio Soukou Base Players Team Color 82 Static Facsimile Signature Rare', 'BUND-SC21-R-BP82-SFS-TMC'), + (0x44e9c963b75e529013d18c217e51c7973e63403d, 'Tampa Bay Rays™ Wander Franco Base Vintage Stock 215 Super Rare', 'MLB-22S1-S-B212-M-VS'), + (0x44eea6e794f5a5fd7092511f395159a3beec5aa7, 'giveaway piece', 'gvw'), + (0x44efd40d15882207afe0fa7b585c9973b428eccb, 'Atlanta Braves™ Freddie Freeman Short Print White 236 Rare', 'MLB-22S1-R-SP46-M-WHI'), + (0x44fdebb87ee4cf7fe8e4e101c42871c742f3dbb4, 'Silvan Widmer M05 Top Players Facsimile Signature Team Color TK-24 Epic', 'BUND-22TK-E-TPTK-24-S-TMC'), + (0x4500bb356321ab1d7292875c89089090df58ebac, 'Tampa Bay Rays™ Joey Wendle Base White 145 Common', 'MLB-22S1-C-B144-S-WHI'), + (0x4500e9a2b9a204c9b50490f86177f58441c50bee, 'Angels® Shohei Ohtani Base Vintage Stock 1 Super Rare', 'MLB-22S1-S-B1-M-VS'), + (0x450f4510e1f381b54866a87987bed6031fc7d60e, 'Tampa Bay Rays™ Randy Arozarena Base Vintage Stock 196 Super Rare', 'MLB-22S1-S-B195-M-VS'), + (0x451331618e55ad3f15d435ab2111a3deacd32ef2, 'New York Yankees® Joey Gallo 1987 35th Anniversary Chrome T87C-40 Super Rare', 'MLB-22S1-S-1987AC30-M-CHR'), + (0x4513832928eb0ea00b99f22fade0f0d2630fb51a, 'LettersInFrame', 'LIN'), + (0x45172910f3618348fc59ce9b2b9b30ecdb227668, 'Christian Ramirez ABE Top Plays Purple SPTPL-06 Rare', 'SPFL-21SPSS-R-TPLSPTPL-06-V-PUR'), + (0x452b83741854913e3607a94c17e967b017754d12, 'Cincinnati Reds® Tony Santillan Base Glitch 111 Uncommon', 'MLB-22S1-U-B110-M-GLI'), + (0x452e5eb23a36a14b2999afa919c68595d3fde477, 'New York Yankees® Team Cube 2.0 Team Colors 18 Legendary', 'MLB-22S1-L-TC218-M-TMC'), + (0x453a4277ca029f1d2c822d17f639931469634d49, 'Los Angeles Dodgers® Will Smith Short Print White 83 Rare', 'MLB-22S1-R-SP18-M-WHI'), + (0x453cd48a44e23ed7bf7a26e2b9a6d885ed91e510, 'Marcus Thuram BMG Top Players Black TK-16 Common', 'BUND-22TK-C-TPTK-16-S-BLA'), + (0x454bf8bb334a774df2ccd2dc202a6e89138faee2, 'Tampa Bay Rays™ Mike Brosseau 2B/3B Base Motion Rainbow 427 Rare', 'MLB-S221-R-B427-RAI'), + (0x454d755fa85eb71211bd8d1338d7b71ab29e935e, 'The lands of Rytell', 'TLOR'), + (0x454de8c51dd0128c4f87228f163c3f7a73f16cd8, 'Art by William', 'ARTbyW'), + (0x455318748faa82902feddb0a88bf8bddc2b2c5dd, 'St. Louis Cardinals® Paul DeJong Inception Base White 88 Common', 'MLB-INC21-C-IB88-WHT'), + (0x455ea87df9a957bc29ab20eee0eb6ab05297ab65, 'Toronto Blue Jays® Marcus Semien Base Blue 1193 Common', 'MLB-22PRI-C-B82-M-BLU'), + (0x4562b70b06ec3c7848a52955eec848117e3d01ed, 'The Binary Girls', 'Binary'), + (0x456597732be57a3446a75f393948b32d705c125a, 'San Francisco Giants® Kris Bryant Base Vintage Stock 86 Super Rare', 'MLB-22S1-S-B86-M-VS'), + (0x45683e8b503c85447e782c98fd54234cd9a3b621, 'Renovation', 'Reno'), + (0x456c023919e54ddd06b5b355a20fc68ca78c4a56, 'Los Angeles Dodgers® David Price Base Vintage Stock 40 Super Rare', 'MLB-22S1-S-B40-M-VS'), + (0x457dfafe6d882a050d42ec4558575a326167e8f0, 'RECUR', 'RECUR'), + (0x457ff0b8e956b167fd43e873fe496b8157642c96, 'Seattle Mariners™ Logan Gilbert Base White 156 Common', 'MLB-22S1-C-B155-S-WHI'), + (0x4581dc0faea2583c06005b4c41674fa10ff62a6f, 'Houston Astros® Framber Valdez World Series Gold 8 Epic', 'MLB-21POST-E-WS8-M-GOL'), + (0x458a69cf51685a743fafeff4327fb42d09b929ed, 'MechaMurals', 'MECHM'), + (0x458dbc46591f147a6db6563ccbc56d68412556ac, 'CryptoRevolutionMastersSpecialNFT', 'CRMS'), + (0x459531b14b43bbd37f1eb18faf64a2fb718a42d6, 'Atlanta Braves™ Ronald Acuña Jr. Inception Base Black 6 Legendary', 'MLB-INC21-L-IB6-BLK'), + (0x4596462b53927b690d0d545742df3ca2918573a8, 'Godzilla in the City Traditional Art Black and White 5 Rare', 'GDZ-RAT21-R-TA5-A-BW'), + (0x4598f23a0c0c79fb00075303197ac1ce28f3f692, 'St. Louis Cardinals® Nolan Arenado 1987 35th Anniversary Chrome T87C-75 Super Rare', 'MLB-22S1-S-1987AC57-M-CHR'), + (0x45a1e0054a080b123b74c2aeeafd2d8e98d1f975, 'Chicago Cubs® Kris Bryant 3B Base Static Gold 660 Uncommon', 'MLB-S221-U-B660-GOL'), + (0x45a31b49294f0cdeb25ccbed84e999ae63f1959b, 'Aptos Ant Club', 'ATC'), + (0x45afbd6d8e8bcb8f060c79e811e52083b914120d, 'Uncommon Comic 68 2-20 Bazooka Joe 2021 NFT', 'BZK-U-68C'), + (0x45b3ce03fc60fdb3009c1223136b4906dd62c592, 'Eth Merge Jars', 'EMJAR'), + (0x45b5510cda7d51714652a9906676eb2515a106ce, 'Houston Astros® Jeremy Peña Divison Series Broadcast RWB 1084 Rare', 'MLB-22TNP-R-DSA2-M-RWB'), + (0x45b604344fa9f480c0d39a629e49df917cc4c1ab, 'St. Louis Cardinals® Adam Wainwright Base Glitch 34 Uncommon', 'MLB-22S1-U-B34-M-GLI'), + (0x45b7b7a7cc967a30448bef2fc57777da6b907898, 'Atlanta Braves™ Jorge Soler Postseason Base Navy 62 Uncommon', 'MLB-21POST-U-B62-M-NVY'), + (0x45bdb75c4d2a3661e3226e9b8cbe205429c1976f, 'Hertha Berlin Vladimir Darida Base Players Team Color 47 Uncommon', 'BUND-SC21-U-BP47-TMC'), + (0x45bdd36541106bc3965b123c005be23e73f1db08, 'Houston Astros® Chas McCormick Base White 135 Common', 'MLB-22S1-C-B134-S-WHI'), + (0x45be7834d330e712f99f468aea04f550f5b188f3, 'Joško Gvardiol RBL Base White S3-22 Common', 'BUND-21TS3-C-BS3-22-S-WHI'), + (0x45c92d8d46d5e379abc06217bd71dba864744f9e, 'Boston Red Sox® Tanner Houck P Facsimile Signature Static Red 635 Epic', 'MLB-S221-E-FS635-RED'), + (0x45cdcbbf66be018c660bb4393fc3f2063b67d368, 'Sport-Club Freiburg Jonathan Schmid Base Players White 38 Common', 'BUND-SC21-C-BP38-WHT'), + (0x45de077c25c9ba32bec219a94d9d45663bbfee40, 'SMASH CHEST', 'SMASHCHEST'), + (0x45e0aa8b17463e6fcb9c15d5087716729c844631, 'Orion Nebula', 'CrixusVac'), + (0x45f08b43b033dc57feeeef711def9a3210e47f36, 'New York Mets® Noah Syndergaard P Base Static White 631 Common', 'MLB-S221-C-B631-WHI'), + (0x45f52a2a9769a1c89ffb46fc40e172923a574c61, 'St. Louis Cardinals® Johan Oviedo P Base Motion Rainbow 535 Rare', 'MLB-S221-R-B535-RAI'), + (0x45ffdbdfea4968e5bc8e250c0f35c2dd99945330, 'Super Rare Baseball Card 3 Pesty Batter Bazooka Joe 2021 NFT', 'BZK-S-3B'), + (0x4610ee9e28de135155a3b60094156cc0567dabb0, 'Bored Eagle Club', 'BEC'), + (0x461ac2f8f4fd6270ab2d61eed19859103f5ca215, 'Erhan Mašović BOC Club Phemons Silver S4CPH-05 Super Rare', 'BUND-21TS4-S-CPHS4CPH-05-S-SLV'), + (0x461c6f894b5345ebd8cf092cbc241bdcc7d78d09, 'PDIEnterpriseERPandBackOffice', 'PDI2022'), + (0x461c75ee37ec7b334a777fc7fc5a85df1b6e203d, 'PrizeBondLink', 'PBL'), + (0x461dc4c92ab5dcc191c8ddbd4f3de3c1a215eeff, 'Luca Kilian KOE Club Phemons Silver S4CPH-13 Super Rare', 'BUND-21TS4-S-CPHS4CPH-13-S-SLV'), + (0x462566ba1a512dc646775b7ca64c7815434d9963, 'Toronto Blue Jays® Gloves are Hats Base Static White 539 Common', 'MLB-S221-C-B539-WHI'), + (0x46257e16337d70f8011a5f828a092f502acf033f, 'San Francisco Giants® Joey Bart Rookie and Future Phenoms Facsimile Signature Blue 68 Super Rare', 'MLB-INC21-S-RC68-BLU'), + (0x462f747c69a8e88afbd4e1acc7f042c38b28f1e4, 'Washington Nationals® Mason Thompson Base White 38 Common', 'MLB-22S1-C-B38-S-WHI'), + (0x4635e16d797780a0bab5ce7be6b5c801f73a7a03, 'METAMARBLES GEN0.a', 'MARBLE.a'), + (0x464255347109296c1c3a8a46f453c11e3f7e584d, 'Chicago White Sox® Liam Hendriks Division Series Bronze 32 Super Rare', 'MLB-21POST-S-D32-M-BRO'), + (0x4647ffe69c2d0c46cfaf27db73b15dcdf6511498, 'Angels® Mike Trout Facsimile Signature Blue 27 Uncommon', 'MLB-22S1-U-FS2-S-BLU'), + (0x464d8066646595943fc7a58375620be676a98e31, 'John Souttar HEA Base Purple SP-13 Super Rare', 'SPFL-21SPSS-S-BSP-13-A-PUR'), + (0x4657dd02f9b9ee5411cb1b5bc8fbe5813e045b95, 'Tampa Bay Rays™ Randy Arozarena OF Base Motion Platinum 600 Epic', 'MLB-S221-E-B600-PLA'), + (0x465a29cf70131154028a4a75659d48654007cf4b, 'Arizona Diamondbacks® Nick Ahmed SS Base Motion Vintage Stock 618 Super Rare', 'MLB-S221-S-B618-VS'), + (0x465ba32ed15157c4288e9211a11ac0179adfcbad, 'Philadelphia Phillies® Andrew McCutchen OF Base Motion Vintage Stock 431 Super Rare', 'MLB-S221-S-B431-VS'), + (0x465ca2294dd0e2a1c5bcfa242f0c15408d557dc7, 'Cleveland Indians® Aaron Civale Rookie and Future Phenoms Facsimile Signature Red 12 Epic', 'MLB-INC21-E-RC12-RED'), + (0x465e4ea9ebbc8f369fee23e00af595a8326e237c, 'Boston Red Sox® Nathan Eovaldi P Base Motion Rainbow 623 Rare', 'MLB-S221-R-B623-RAI'), + (0x466de7bd6c84d90c52046b3010667856a43fdc4a, 'FRAGMENTS', 'FRAGMENT'), + (0x466f2fd89cb22c6411905f3373b040862841aaf7, 'New York Yankees® Luis Gil 1987 35th Anniversary Wood T87-3 Common', 'MLB-22S1-C-1987A3-M-WD'), + (0x4677ee1dbc4492a375989a337b8bdbc84fcab399, 'Lucas Alario B04 Base White S4-45 Common', 'BUND-21TS4-C-BS4-45-S-WHI'), + (0x4684197345d8b17ea114e4535fa62f235b1701fb, 'Angels® Shohei Ohtani American League Base Golden 12 Super Rare', 'MLB-22ASG-S-B12-M-GLD'), + (0x46883d7ce91a1af33376fe0ec296edd8edb57e6a, 'Seattle Mariners™ Kyle Lewis Facsimile Signature Slab Gold 3035 Epic', 'MLB-22PRI-E-FS25-M-GLD'), + (0x468dd5ce77236a302a2adb4e2d7c5a955ce8772c, 'EmpireCastle', 'Hero'), + (0x46922ec3b06929629bfa62f439490e1f308b56c5, 'Houston Astros® Chas McCormick Base Vintage Stock 135 Super Rare', 'MLB-22S1-S-B134-M-VS'), + (0x4694141050265f1f3f8940474a3e70ebe68a87ff, 'Houston Astros® Zack Greinke Topps NOW White 1030 Rare', 'MLB-21NOW-R-TN1030-WHI'), + (0x469d9f1922bf1123e1bcb967d3834ad9eed679c6, 'Chicago White Sox® Cesar Hernandez Base Vintage Stock 28 Super Rare', 'MLB-22S1-S-B28-M-VS'), + (0x469f4bb2e10878ad471a9b03ba2a05f43e1a4447, 'Boston Red Sox® Shopping Cart Surf! Base Motion Rainbow 436 Rare', 'MLB-S221-R-B436-RAI'), + (0x46a56f4c1fab3aa3780e272c2af438c1c4b186bc, 'Christian Ramirez ABE Base Aqua SP-12 Uncommon', 'SPFL-21SPSS-U-BSP-12-A-AQU'), + (0x46a6c764999cb61f97164dec9e310ebbba5aefe6, 'Hertha Berlin Niklas Stark Base Players Team Color 49 Static Facsimile Signature Rare', 'BUND-SC21-R-BP49-SFS-TMC'), + (0x46ab4349406145c4b2e65339aad4fd267c6f4f78, 'Jude Bellingham DOR Base White S2-17 Common', 'BUND-21TS2-C-BS2-17-S-WHI'), + (0x46adf1815251972610f7ae225bac9e773de0df71, 'NFT Collection', 'NFTC'), + (0x46bd42694db7c4855fe199536f3e9f1b28829ed1, 'Detroit Tigers® Miguel Cabrera Inception Base White 31 Common', 'MLB-INC21-C-IB31-WHT'), + (0x46bfcbc87f6b2d1dc9251383bcf247a19a890b58, 'Texas Rangers® Nick Solak Base Vintage Stock 172 Super Rare', 'MLB-22S1-S-B171-M-VS'), + (0x46c421fb259ab88183bf487e38a425c09d2b4335, 'Skullios', 'SKLS'), + (0x46cef1b63fb0df4ff528a64854bfb1f785c34520, 'Joepegs Pumpkins', 'PUMPKIN'), + (0x46d9dfb6fd818a092adb325d731ee85f539720fe, 'FC Schalke 04 Malick Thiaw Young Stars Team Color 168 Super Rare', 'BUND-SC21-S-YS168-TMC'), + (0x46dcb63e75f7495fa0973990822675ae8ba5dfc4, 'Miami Marlins® Sixto Sanchez Gold Signings Facsimile Signature Gold 24 Epic', 'MLB-INC21-E-SS24-GLD'), + (0x46dddb259973f022b3256a88b2720f6a9fa841bb, 'FamousSquirrel', 'FS'), + (0x46df0bde0d35cfac4f9eeeecac6e56e97b7f7701, 'Super Rare Comic 39 1-39 Bazooka Joe 2021 NFT', 'BZK-S-39C'), + (0x46e6ea3a82792933cf8cd46898354ddc54bb3a63, 'Houston Astros® Yordan Alvarez Rookie and Future Phenoms Facsimile Signature White 30 Rare', 'MLB-INC21-R-RC30-WHT'), + (0x46e98a7c208e7d616215fd81194cded144d9020d, 'Around The World 🌎', 'AVAX'), + (0x46ecb2f3f595692fc653aaf33cc3754b990f7239, 'PixelNFT', 'PXL'), + (0x46ed229d0f68efcb5f7255baff3448632c105fdc, 'Scornful Eyes Girls', 'SEG'), + (0x46fc487a6bc2bcfaeb4b8cad772a2bec816c3426, 'New York Yankees® Gio Urshela Base Independence Day RWB 23 Rare', 'MLB-22S1-R-B23-M-RWB'), + (0x4710f5f8a066e0e8de113f811ab2b19b716cd7b9, 'Arizona Diamondbacks® Ketel Marte Base Independence Day RWB 275 Rare', 'MLB-22S1-R-B272-M-RWB'), + (0x47136f138818cdb08dd1609dc9a35a4e1916c47b, 'Boston Red Sox® Connor Wong Base Blue 1224 Common', 'MLB-22PRI-C-B148-M-BLU'), + (0x471502f8f1580f26b6e87405910d4a7db7e0c4a4, 'Boston Red Sox® Bobby Dalbec Wild Card Contenders Blue 2 Common', 'MLB-21POST-C-W2-M-BLU'), + (0x471755a30c0d4b14a59902642a6d9ff075277a05, 'Los Angeles Dodgers® Justin Turner 3B Base Static White 370 Common', 'MLB-S221-C-B370-WHI'), + (0x471d1c83b80ddef0728232b0c44bfae0001fa6c0, 'Saša Kalajdžic VFB Motion Rainbow Refractor S4-61 Super Rare', 'BUND-21TS4-S-MS4-61-V-RAI'), + (0x4735fc0c3d7d3f8e5df62b5645aa0c2ebdeca271, 'Snake Egg', 'EGG'), + (0x47362d7307f17fa9881092513bd128377a0410b3, 'Angels® Shohei Ohtani Facsimile Signature Blue 1 Uncommon', 'MLB-22S1-U-FS1-S-BLU'), + (0x4743704fe3dd343dee75926e58f09c2b5f9f362d, 'Patrik Schick B04 Animation Black Refractor S1-05 Epic', 'BUND-21TS1-E-AS1-05-V-BLA'), + (0x47437ba2752b9b53006ad6803baa3b82e05b5383, 'Detroit Tigers® Tarik Skubal Inception Base Red 32 Rare', 'MLB-INC21-R-IB32-RED'), + (0x4746b39b155c5bd1e812eec87451bd79cda9479b, 'ERC721 Mock contract', 'ERC721'), + (0x474b3ea64d438d80571eb3cccde5f168058ea7c1, 'Seattle Mariners™ Tom Murphy C Base Static White 632 Common', 'MLB-S221-C-B632-WHI'), + (0x475c7b22cbe0cca533c33773afaaed50814a4133, 'Atlanta Braves™ Ozzie Albies Postseason Base Navy 58 Uncommon', 'MLB-21POST-U-B58-M-NVY'), + (0x475cfeb21a5ad5fe776257e6ae9e43fc99165306, 'Boston Red Sox® Jarren Duran Base Pink 1213 Uncommon', 'MLB-22PRI-U-B134-M-PNK'), + (0x47619c6413bb3f2df2aea21b8d15bb47c4a855d2, 'Super Rare Comic 20 1-20 Bazooka Joe 2021 NFT', 'BZK-S-20C'), + (0x476248f30092e317c20959cebde83eca0d465f7b, 'RECUR', 'RECUR'), + (0x4763ace28ee11adeb601c162a96528958ceca999, 'Masaya Okugawa DSC Base White S3-25 Common', 'BUND-21TS3-C-BS3-25-S-WHI'), + (0x4763b1d5949aeff168efc8c85dd4baf035357d2e, 'Oakland Athletics™ Stephen Piscotty OF Base Static White 607 Common', 'MLB-S221-C-B607-WHI'), + (0x476514335a496bb7af65a8e326c8815014beb2f4, 'Houston Astros® Carlos Correa SS 1986 Anniversary Facsimile Signature Motion Chrome 86TC-95 Legendary', 'MLB-S221-L-1986AFS86TC-95-CHR'), + (0x476d60d676bfe80073f94032da29da0122293033, 'Penglloween', 'Peng'), + (0x477f52aadd7f9e5839416ea4cd1281de8e44669f, 'Godzilla RAT Pages 4 & 5 Comic Page Color 4 Super Rare', 'GDZ-RAT21-S-CP4-A-COL'), + (0x4786f2982eb96be0d41f0e40ff99fb49bfde69cd, 'Godzilla RAT Page 18 Comic Page Color 15 Rare', 'GDZ-RAT21-R-CP15-S-COL'), + (0x478cf7fa42e8dc3659fd3dc8163bd82169f70832, 'Toronto Blue Jays® Bo Bichette Base Vintage Stock 126 Super Rare', 'MLB-22S1-S-B125-M-VS'), + (0x4794e2878c47b4a04bb09c4720a908f8e2647620, 'Big Farm Coqs', 'BFC'), + (0x47abe777421f4ab3652f6fd9570fe34a1a17f56e, 'Colorado Rockies™ Kyle Freeland P Base Static White 615 Common', 'MLB-S221-C-B615-WHI'), + (0x47add399e6241f765ff20209b52f01166d99e458, 'Minnesota Twins® Alex Kirilloff Inception Base Blue 57 Uncommon', 'MLB-INC21-U-IB57-BLU'), + (0x47b78935b3d7111f72e1c0845f78c9af3863a44b, 'MYRIAD CREATURES.', 'MYRIAD'), + (0x47ba269910d4f7f32ffcb1dca778321295630a80, 'FC Augsburg Robert Gumny Young Stars Team Color 174 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS174-SFS-TMC'), + (0x47be7208a0197f3c4da869e543a23ef9cc9b9072, '2021 Topps Series 2 Baseball NFT Collection Standard Pack', 'MLB-S221-PACK-S'), + (0x47c2dc3914ebd3b7cfcd52fcd34b8b680b9598db, 'Los Angeles Dodgers® Max Scherzer Base White 310 Common', 'MLB-22S1-C-B306-S-WHI'), + (0x47d0840fe082ba472ce34897dd05d9266c11a157, 'National League™ Zack Wheeler Base Pink 1283 Uncommon', 'MLB-22PRI-U-B192-M-PNK'), + (0x47db14ad08ecc89563e13bd4e39a1df406ed3abf, 'Atlanta Braves™ Austin Riley Champs Gold 3 Legendary', 'MLB-21POST-L-C3-M-GOL'), + (0x47e038c0652c2743350b19c549373537ff223bbb, 'Seattle Mariners™ Jose Marmolejos OF Base Motion Rainbow 516 Rare', 'MLB-S221-R-B516-RAI'), + (0x47e417fbd4eeedd2e4f451c5df988b384cb03076, 'SamuraiggNFT', 'SGG'), + (0x47e9464b880fb84008bd199bafeb35bc7dd51312, 'Los Angeles Dodgers® Julio Urias Wild Card Contenders Blue 24 Common', 'MLB-21POST-C-W24-M-BLU'), + (0x47ebadc3b39eb7e284ee4031d036fdc9a84a5697, 'Boston Red Sox® Jarren Duran Short Print White 187 Rare', 'MLB-22S1-R-SP36-M-WHI'), + (0x47fdd5e90176b10be5bbbb7b3515ce2230a5703e, 'Christoph Baumgartner TSG Animation Black Refractor S4-55 Epic', 'BUND-21TS4-E-AS4-55-V-BLA'), + (0x48038c0d54f0d4a81d8363a7550ea832a37f95e3, 'Chicago Cubs® Kyle Hendricks P Base Static White 503 Common', 'MLB-S221-C-B503-WHI'), + (0x480986f1e49323271136ae9a283427f114f6000c, 'Kansas City Royals® Base Static White 608 Common', 'MLB-S221-C-B608-WHI'), + (0x480c0e290203690760aed64481788237f770a845, 'Pittsburgh Pirates® Ke''Bryan Hayes Base White 56 Common', 'MLB-22S1-C-B56-S-WHI'), + (0x4810bddeb3dd1af7031b4a8bec3fffdc5c5f2fc4, 'Seattle Mariners™ Cal Raleigh 1987 35th Anniversary Chrome T87C-16 Super Rare', 'MLB-22S1-S-1987AC13-M-CHR'), + (0x4813efc18232197ea0f585734288409b70a9f81d, 'Oakland Athletics™ Elvis Andrus Base Pink 1080 Uncommon', 'MLB-22PRI-U-B76-M-PNK'), + (0x48187e4969bfb3f5533b6b6e113705d5904b0e68, 'Houston Astros® Andre Scrubb P Facsimile Signature Static Blue 384 Super Rare', 'MLB-S221-S-FS384-BLU'), + (0x481f62a65477811c647fb01b296aff688eef063d, 'Leroy Sané BAY Base White S1-01 Common', 'BUND-21TS1-C-BS1-01-S-WHI'), + (0x481ffd2432805e475188f3541f8ad5ac27b483a2, 'Volcanic Eruption Comic Cover Color 3 Rare', 'GDZ-RAT21-R-CC3-S-COL'), + (0x4822cc6aac60b5eb1f0512925a33e021830d8072, 'Miami Marlins® Jesus Sanchez Gold Signings Facsimile Signature Gold 23 Epic', 'MLB-INC21-E-SS23-GLD'), + (0x4822da82f9fc59b03af4f52551ffa27f1af7dcef, 'Tampa Bay Rays™ Tyler Glasnow P Base Motion Rainbow 629 Rare', 'MLB-S221-R-B629-RAI'), + (0x48240c6bcbf92936810a4f635a5bd83845df48fa, 'REKT MONKEEZ', 'REKT'), + (0x482457e9f53daf33abbe5fe6c17d7adac6c0ad56, 'Philadelphia Phillies® Bryce Harper OF 1986 Anniversary Facsimile Signature Motion Chrome 86TC-25 Legendary', 'MLB-S221-L-1986AFS86TC-25-CHR'), + (0x4834e226f3a519ef4da6b3b69d7d5e00f6c56c53, 'Zander Clark STJ Top Saves Gold SPTS-06 Legendary', 'SPFL-21SPSS-L-TSSPTS-06-V-GOL'), + (0x48353f48bc4f7c4d97dda5662636d2cc44ed2272, 'Tampa Bay Rays™ Austin Meadows 2022 Definitive Gold 30 Legendary', 'MLB-22LEG-L-22DEF30-M-GLD'), + (0x483951c9e66e132f591bb155a77bad28b27cf418, 'Houston Astros® Jeremy Peña World Series Newspaper BW 1161 Common', 'MLB-22TNP-C-WSN5-M-BW'), + (0x483ea4d663cf9fe690a02007ab3bfc361c7e6477, 'New York Yankees® Jordan Montgomery P Base Motion Rainbow 630 Rare', 'MLB-S221-R-B630-RAI'), + (0x4841c8020c38a10820ea6bf7e946a84d0ba7bb65, '1955 Anguirus Rookie Card Color 6 Super Rare', 'GDZ-RAT21-S-RC6-S-COL'), + (0x48463dec9906b840a61c4f796366d6b48a546a39, 'FC Koln Florian Kainz Base Players White 67 Common', 'BUND-SC21-C-BP67-WHT'), + (0x4857abcd58ae3e502402b68d7101b9e828a79742, 'Baltimore Orioles® Zac Lowther Base White 133 Common', 'MLB-22S1-C-B132-S-WHI'), + (0x4857f5f52f6f0741decdf66989f77bd0788cb7cc, 'Kansas City Royals® Franchy Cordero OF Base Motion Vintage Stock 648 Super Rare', 'MLB-S221-S-B648-VS'), + (0x485bb6dea06e8277befa91840c03382424ea7c79, 'Rare Comic 47 1-47 Bazooka Joe 2021 NFT', 'BZK-R-47C'), + (0x485bdfcf23964d01444b72192a3d524427df2cf1, 'FC Schalke 04 Malick Thiaw Young Stars Team Color 168 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS168-SFS-TMC'), + (0x485e7590eb710defc3a1c2b74e4d01268af8a754, '11/8/15:44_1-1Phoenix 本番環境テスト', 'T2WEB'), + (0x48642453ef0e32d163bc66a4f6b761e1d11b4ac5, 'Baltimore Orioles® Cedric Mullins OF Base Motion Platinum 487 Epic', 'MLB-S221-E-B487-PLA'), + (0x48679cc3e1ff690974aa66ac11c607b430fc1de3, 'Cincinnati Reds® Base Motion Rainbow 587 Rare', 'MLB-S221-R-B587-RAI'), + (0x486856a99acb88d1eece9909f1936372112202c4, 'Cleveland Guardians™ Emmanuel Clase Base Independence Day RWB 190 Rare', 'MLB-22S1-R-B189-M-RWB'), + (0x48713c645795fd395d1e6f09b80f5c349fff6448, 'Chicago White Sox® South Side Strength Base Static Gold 486 Uncommon', 'MLB-S221-U-B486-GOL'), + (0x487399a44adb47a94516faeec1cfe22cae846de7, 'Jonas Wind WOB Ascendent Facsimile Signature Blue TK-41 Legendary', 'BUND-22TK-L-ASCTK-41-S-BLU'), + (0x4874fbbefb55573f07ca10cd7229c2dad129f6d9, 'Chicago White Sox® Yoan Moncada Postseason Base Navy 11 Uncommon', 'MLB-21POST-U-B11-M-NVY'), + (0x4884ccd6eb71ccfd131e792a83327b06df6bc476, 'Houston Astros® Alex Bregman Base Vintage Stock 68 Super Rare', 'MLB-22S1-S-B68-M-VS'), + (0x4885c09bf0f587cba7cf2e1f30e37aec1d675aeb, 'Mongen', 'MONGEN'), + (0x4893c0dc02323c61023a5a858f2d69eb78622354, 'Atlanta Braves™ Freddie Freeman 1987 35th Anniversary Wood T87-53 Common', 'MLB-22S1-C-1987A37-M-WD'), + (0x48947e4ca61b46cdf1599c4b6dbaa096718e89d6, 'Los Angeles Dodgers® Chris Taylor Division Series Bronze 42 Super Rare', 'MLB-21POST-S-D42-M-BRO'), + (0x489e237d6525a883ee698139d58f5cbf7c6088f2, 'St. Louis Cardinals® Nolan Arenado Stars of MLB Chrome Night SMLBC-25 Legendary', 'MLB-22S1-L-SMLBC24-M-NIT'), + (0x48a140614ab39544eb21a0eb152aac65425abcd1, 'Detroit Tigers® Matt Manning Short Print White 31 Rare', 'MLB-22S1-R-SP9-M-WHI'), + (0x48a517037dba97ca3376e62089b314be42dda489, 'Saša Kalajdžic VFB Animation Black Refractor S4-61 Epic', 'BUND-21TS4-E-AS4-61-V-BLA'), + (0x48a6270e23c62aefbf44039f7662bcec7da9e22d, 'Whiskey & Crabs', 'WCRABS'), + (0x48b1f2a29012f7b45e86b36169e4d49d7e38a3fa, 'New York Mets® Taijuan Walker Base White 312 Common', 'MLB-22S1-C-B308-S-WHI'), + (0x48b2a4effdbb13d153a749cb48d96b8d9ef12976, 'BRAIN', 'BRAIN'), + (0x48bf20bbd8da1df8bea7d1e55620a90b4772a217, 'San Francisco Giants® Johnny Cueto Base Vintage Stock 73 Super Rare', 'MLB-22S1-S-B73-M-VS'), + (0x48c0fd183d2a804c1b7eecd84266783ecf668f1d, 'Tampa Bay Rays™ Wander Franco Facsimile Signature Red 215 Rare', 'MLB-22S1-R-FS13-S-RED'), + (0x48c40aa489a193d14da56afdb9efc14de5b650c5, 'BunnyBots By Scapecase', 'SCAP'), + (0x48cbb1e6eb657dd28836a79472d6c97751c48413, 'NFTickit', 'NFTICKIT'), + (0x48e81d8339b5a949a116ba14e50d650b3dea6f5b, 'Miami Marlins® Chad Wallach C Base Static White 593 Common', 'MLB-S221-C-B593-WHI'), + (0x48fe2787a5d81737e907da71098ceeaceac81196, 'Kevin Trapp SGE Motion Aqua Refractor S2-14 Rare', 'BUND-21TS2-R-MS2-14-V-AQU'), + (0x490aec4225af7d79e1000ee787bd2c68f6b17e34, 'Chicago White Sox® Jose Abreu Base Blue 1067 Common', 'MLB-22PRI-C-B41-M-BLU'), + (0x49101a1defa14a7da6f166dfd8120ff58c30dbe8, 'Order', 'LP'), + (0x491820103d7e29d7309ba06994f3e7fd3e1daecb, 'TSG Hoffenheim Pavel Kaderábek Base Players Gold 28 Rare', 'BUND-SC21-R-BP28-GLD'), + (0x491eae4c749e74eca4df1e799f99eed1c81e734e, 'AI Nightmares', 'AINM'), + (0x4927e9bca0b8abae801cccb173300ee16270e0dd, 'Pittsburgh Pirates® Ke''Bryan Hayes Inception Base White 78 Common', 'MLB-INC21-C-IB78-WHT'), + (0x492f86a722b4a5bab3eea173669e5c9a2e67a98b, 'Texas Rangers® Nick Solak Base Independence Day RWB 172 Rare', 'MLB-22S1-R-B171-M-RWB'), + (0x494b38f9f903a72651571147cfca498ada6165cd, 'Los Angeles Dodgers® Mookie Betts Inception Base Red 49 Rare', 'MLB-INC21-R-IB49-RED'), + (0x494bdd9116c7fab77000484617d1a95b17be740f, 'Brawl of Legends - Kingdom Structures V2', 'BoL V2'), + (0x494dbad6717f1263abf683749f4d31b756433877, '2021 Topps MLB Postseason Standard Pack', 'MLB-21POST-PACK-S'), + (0x4961df6c9b65ba00d49d91e7f4fdc29bb359b5c3, 'New York Yankees® Trey Amburgey Base Independence Day RWB 263 Rare', 'MLB-22S1-R-B260-M-RWB'), + (0x496397354aa939766d07d3e92340988118844629, 'Smolr Joes', 'SMOLR'), + (0x49662696c0eb6d1c6695895df27f8e7f28aa00da, 'Houston Astros® Michael Brantley OF Base Static Gold 434 Uncommon', 'MLB-S221-U-B434-GOL'), + (0x4968b9cd54ab90d3bcce8d8974a0d22af1790655, 'CWT', 'CWT'), + (0x496c03e6d84dec6835506ae7dbe2733f97689613, 'New York Yankees® Anthony Rizzo Wild Card Contenders Blue 14 Common', 'MLB-21POST-C-W14-M-BLU'), + (0x496e6d190e281d13dd94582a27311612d5b1a6f9, 'American League™ Matt Olson Base Pink 1273 Uncommon', 'MLB-22PRI-U-B221-M-PNK'), + (0x498383f39eb40bf228cf679f5efa89e8ba233b51, 'Android Doodles', 'AndroidDoodl'), + (0x4986c43563c273807add53331d479a89dcd3a4f4, 'Masaya Okugawa DSC Base Red S3-25 Uncommon', 'BUND-21TS3-U-BS3-25-S-RED'), + (0x498feb43514af93255eb432db095b1053a462397, 'Super Rare Comic 8 1-8 Bazooka Joe 2021 NFT', 'BZK-S-8C'), + (0x4990554a80d7e762574ed20a2b352bf33a2a85ee, 'San Diego Padres™ Fernando Tatis Jr. Inception Base Red 79 Rare', 'MLB-INC21-R-IB79-RED'), + (0x499edaeda4f0c4e3113e46fc9fbae433777aed92, 'San Francisco Giants® Kris Bryant Popular Demand Facsimile Signature Teal 3502 Legendary', 'MLB-22PRI-L-PDFS10-M-TEA'), + (0x49b352179b59d5ce7ca156bc04364e72bbf989e2, 'Rare Comic 95 2-47 Bazooka Joe 2021 NFT', 'BZK-R-95C'), + (0x49bc09871719f9135e4157945eff414fbcfc39a6, 'Cincinnati Reds® Wade Miley P Base Motion Rainbow 638 Rare', 'MLB-S221-R-B638-RAI'), + (0x49bcb1c11034edad171e3af1bfaab6e69e1873a4, 'SlothAvatar', 'SlothAvatars'), + (0x49bf6cac47372daa7800c0b2820fcefed50147dc, 'Megalon Base Collectible Magenta 2 Common', 'GDZ-RAT21-C-B2-S-MAG'), + (0x49c329821c0344b27773b658863ceb6bc9596f89, 'Godzilla RAT Page 11 Comic Page Black and White 10 Uncommon', 'GDZ-RAT21-U-CP10-S-BW'), + (0x49c39050cdab3333bf81e61a902c1715a2dfec01, 'Baltimore Orioles® Spenser Watkins Base Pink 1215 Uncommon', 'MLB-22PRI-U-B160-M-PNK'), + (0x49c444a321ba83b04f3c45bf3d21a1501b04b2d5, 'Pisegol Voxel Buildings', 'PVB'), + (0x49c54e4bc0034ea69a75f378a4fb58f21c0a6b0f, 'Angels® Shohei Ohtani Second Place Palm Trees 6 Super Rare', 'MLB-22ASG-S-SEC6-M-PLM'), + (0x49c5db1028e56160233425e96e223d1ff8711e75, 'Kansas City Royals® Nicky Lopez Base Glitch 76 Uncommon', 'MLB-22S1-U-B76-M-GLI'), + (0x49c9c8fce26dbc026af6399a74103a6258775527, 'Detroit Tigers® Beau Burrows Rookie and Future Phenoms Facsimile Signature White 22 Rare', 'MLB-INC21-R-RC22-WHT'), + (0x49d2dfecd8ff1628238fc231d103756e7a7b7258, 'Top Floor NFT LP', 'TFNFTLP'), + (0x49d344fda4fdb566efb7fd0c6152738147368d5e, 'Tampa Bay Rays™ Vidal Brujan Base Independence Day RWB 25 Rare', 'MLB-22S1-R-B25-M-RWB'), + (0x49d71bfb179b2438cc383a23f93b9584b3ee8042, 'Queen of Nature', 'NN'), + (0x49db6162b8ecb395668aaca9b553de0eef082837, 'DSC Arminia Bielefeld Manuel Prietl Base Players Team Color 81 Static Facsimile Signature Rare', 'BUND-SC21-R-BP81-SFS-TMC'), + (0x49dd48b7919a2a2c07f178d428a41db04be011fa, 'Detroit Tigers® Zack Short Base Glitch 148 Uncommon', 'MLB-22S1-U-B147-M-GLI'), + (0x49df31cb33dc34b8d6230b0d266089c85022d6cd, 'Punk Stained Glass', 'PSG'), + (0x49e3c0457da73e8fc4b90558b137f1c4909b12f3, 'The Altitude Group Membership Card', 'ALTG'), + (0x49e91b7309d438547dc759693131f2887e8d62bf, 'San Diego Padres™ Joe Musgrove Base Vintage Stock 266 Super Rare', 'MLB-22S1-S-B263-M-VS'), + (0x49eecb4bfec1be63b87fd35dec1dde28ca3c4105, 'Houston Astros® Chas McCormick Base Blue 1220 Common', 'MLB-22PRI-C-B167-M-BLU'), + (0x4a01b4dca082967c1f3ab7dd2d70e7ca7c730c58, 'ilipika forest: The Keepers of Magic', 'ifkom'), + (0x4a032af3020e005c0f9fb9a142487a2f430966f6, 'Super Rare Comic 93 2-45 Bazooka Joe 2021 NFT', 'BZK-S-93C'), + (0x4a0686f44de89dcba4a64f86b4e75747954f4987, 'Atlanta Braves™ Ozzie Albies 2B Base Static Gold 500 Uncommon', 'MLB-S221-U-B500-GOL'), + (0x4a0999ec0a21e881a6c0057b0a2e22723f79fbf3, 'Bonsai', 'BNSI'), + (0x4a0f01807656c3a538dab8169025e9ee8015e30c, 'Los Angeles Dodgers® Clayton Kershaw Inception Base Blue 46 Uncommon', 'MLB-INC21-U-IB46-BLU'), + (0x4a1040e58e55f2c8eb08ab4b4b4c2008fe7f8a62, 'Philadelphia Phillies® Zack Wheeler Facsimile Signature Glitch 249 Epic', 'MLB-22S1-E-FS17-M-GLI'), + (0x4a2461309aa16b8562ef8067bbb0f01f5bcf9998, 'San Francisco Giants® Alex Dickerson OF Base Motion Platinum 616 Epic', 'MLB-S221-E-B616-PLA'), + (0x4a334714d9923df516e8dd510f86706599801c06, 'Houston Astros® Jose Altuve American League Base Blue 5 Rare', 'MLB-22ASG-R-B5-M-BLU'), + (0x4a35cb3cacbbb41012e0d8cbcc8f9ed037d8227d, 'Jan Thielmann KOE Ascendent Magenta TK-51 Uncommon', 'BUND-22TK-U-ASCTK-51-S-MAG'), + (0x4a35ff99b8e68ad1a044eb6270ab4d99101656ad, 'Atlanta Braves™ Ozzie Albies 2B All-Star Motion Purple 2 Epic', 'MLB-S221-E-AS2-PUR'), + (0x4a39aec8cf86dbf5393bf5441acc8ac64e752c30, 'AVANIME WARRIORS', 'AVANIMEWARR'), + (0x4a3f8cf704c84d4cf35033ebc6361994ab31e83c, 'Florian Wirtz B04 Motion Rainbow Refractor S2-11 Super Rare', 'BUND-21TS2-S-MS2-11-V-RAI'), + (0x4a584cc9abe44ac60364aea2ac3eb6bf2f496439, 'Pittsburgh Pirates® Jared Oliva OF Base Motion Vintage Stock 471 Super Rare', 'MLB-S221-S-B471-VS'), + (0x4a6260881f6deec024903c76acd495ed5262b1fd, 'Super Rare Comic 66 2-18 Bazooka Joe 2021 NFT', 'BZK-S-66C'), + (0x4a6a032b4ad4bb8583a2d647899077d2454ed7a0, 'San Francisco Giants® Sammy Long Base Independence Day RWB 308 Rare', 'MLB-22S1-R-B304-M-RWB'), + (0x4a6f7e1bd8c5d0f829fcd474b5fc7a06e6a40969, 'Godzilla RAT Page 14 Comic Page Black and White 12 Uncommon', 'GDZ-RAT21-U-CP12-S-BW'), + (0x4a75ad0292c5e7adc02913e58ff45ab3695c516c, 'Topps Series Tier 1 Challenge Reward Pack - 21-22 Bundesliga NFT Cards', 'BUND-21TSC-TIER1-R'), + (0x4a7cec1ddf10be463290c4cd677c7d65e90d5e28, 'San Francisco Giants® Tommy La Stella 2B Base Motion Platinum 462 Epic', 'MLB-S221-E-B462-PLA'), + (0x4a7e2ae59219da5f68c2ddfd754350e53d09b9ae, 'Chicago White Sox® Tim Anderson Division Series Bronze 26 Super Rare', 'MLB-21POST-S-D26-M-BRO'), + (0x4a87f8e6d3d5a3b1eb04a45dd1fb95085abc5d42, 'FC Bayern Munich Jamal Musiala Young Stars Team Color 146 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS146-SFS-TMC'), + (0x4a902b5be45b09f19705300bb7559464bdaf1b25, 'National League™ Freddie Freeman Base Pink 1288 Uncommon', 'MLB-22PRI-U-B216-M-PNK'), + (0x4a96379c826876e0e562862657f3af9a876da554, 'Tampa Bay Rays™ Mike Zunino Base Glitch 324 Uncommon', 'MLB-22S1-U-B320-M-GLI'), + (0x4aaa4c7498d555ecfc4e8c2764fbf61b0352a99c, 'Milwaukee Brewers™ Devin Williams P Base Motion Rainbow 485 Rare', 'MLB-S221-R-B485-RAI'), + (0x4aba06698d4262af32090c106b7f62483e3be7a0, 'Genesis Soulmeleons', 'Soulmeleons'), + (0x4abd058a2b0358193be805946616483684bb82f6, 'My Digital City', 'MDC'), + (0x4abe13863f7c84ab9fb405fb56b478223d6832fe, 'Milwaukee Brewers™ Keston Hiura Base Vintage Stock 265 Super Rare', 'MLB-22S1-S-B262-M-VS'), + (0x4ac4b0ebea9f16be471f6b0555a5b25d6349f4ac, 'Detroit Tigers® Robbie Grossman Base Vintage Stock 55 Super Rare', 'MLB-22S1-S-B55-M-VS'), + (0x4ac543e3c18f1201c608756b4981fc8387ffd9f7, 'Atlanta Braves™ Ozzie Albies Inception Base White 5 Common', 'MLB-INC21-C-IB5-WHT'), + (0x4ace011dc5bc9ef3ebd2bdc41072d4f376d1c6ad, 'Grischa Prömel TSG Color Splash Facsimile Signature Team Color TK-61 Legendary', 'BUND-22TK-L-CSTK-61-S-TMC'), + (0x4ad688df8339167e20d33bca3b6864a9340ad14b, 'Houston Astros® Jose Altuve 2B Base Static Gold 432 Uncommon', 'MLB-S221-U-B432-GOL'), + (0x4adb5ce3eee2912370fbb03dcdd71cc3d15730b3, 'Toronto Blue Jays® Taijuan Walker P Base Motion Rainbow 540 Rare', 'MLB-S221-R-B540-RAI'), + (0x4add457f846697d67ee645c07aed0e6217c06309, 'Chicago Cubs® Alec Mills P Base Motion Platinum 659 Epic', 'MLB-S221-E-B659-PLA'), + (0x4adf4d09074d638658662eca97a67fbb29ae7bd0, 'Washington Nationals® Mason Thompson Base Blue 1226 Common', 'MLB-22PRI-C-B182-M-BLU'), + (0x4ae3035aa78feca373413a259266131be4e2e2af, 'Moremoney Stable Lending 2', 'MMSL2'), + (0x4ae36a102a17d9e02fb80a9f5c87e63f0c4f2288, 'Atlanta Braves™ Charlie Morton Postseason Base Navy 63 Uncommon', 'MLB-21POST-U-B63-M-NVY'), + (0x4aedf75033bb4a5a1e55d856297acc4d574fef29, 'Tampa Bay Rays™ Tyler Glasnow Facsimile Signature Gold 3049 Super Rare', 'MLB-22PRI-S-FS48-M-GLD'), + (0x4af0a9d60fb1f79afed541be8c49935f85794863, 'Milwaukee Brewers™ Devin Williams Base White 26 Common', 'MLB-22S1-C-B26-S-WHI'), + (0x4af9e30b5548395cdbdb5b710db2c75af799441c, 'Los Angeles Dodgers® Julio Urias Postseason Base White 40 Common', 'MLB-21POST-C-B40-S-WHI'), + (0x4aff41e2bc68da30d293752f835afa9a777ca445, 'Pharaonique Warriors', 'PW'), + (0x4b063a1adc157ddf87a0ab39f3289e215b116663, '2021 Topps NOW World Series Game 1 Pack', 'MLB-21NOW-PACK-TN-GM1'), + (0x4b1155b71d18edd558e8b3f5fc69ca6413ea26ba, 'Toronto Blue Jays® Bo Bichette Base Pink 1059 Uncommon', 'MLB-22PRI-U-B53-M-PNK'), + (0x4b2b6eca990f55a610baca7d1499052649937bc5, 'Oakland Athletics™ Tony Kemp Base Vintage Stock 114 Super Rare', 'MLB-22S1-S-B113-M-VS'), + (0x4b2ba84626ac0ff0f396ae23f10ea7083e7660da, 'FC Koln Sebastian Andersson Base Players Gold 70 Rare', 'BUND-SC21-R-BP70-GLD'), + (0x4b3e1150805c083beadb50aa1909ccfc1447bf52, 'Chicago Cubs® Adbert Alzolay Rookie and Future Phenoms Facsimile Signature Red 8 Epic', 'MLB-INC21-E-RC8-RED'), + (0x4b3fc74dd5910a679852cf9a049590d6f3b61592, 'Gearheadz', 'GH'), + (0x4b4eb84b22b7971d1b191ec0d7bc7a3c60815f06, 'Chicago White Sox® Nick Madrigal Rookie and Future Phenoms Facsimile Signature Red 21 Epic', 'MLB-INC21-E-RC21-RED'), + (0x4b58a46a4b6ac58fdb16779156599d976906feb0, 'Philadelphia Phillies® Spencer Howard Inception Base Red 76 Rare', 'MLB-INC21-R-IB76-RED'), + (0x4b5be2ec3040280160cf76bebf6219e91e7dc03b, 'TESGG', 'GG'), + (0x4b66a87a06fbfae14eab6abf7b3608a2ecd07d84, 'Arizona Diamondbacks® Carson Kelly C Base Static White 447 Common', 'MLB-S221-C-B447-WHI'), + (0x4b77b94d33f2d081fa157017e665c53163bf2a9c, 'Magicbirds Gen 2 - The Spacebirds', 'MBIRDGEN2'), + (0x4b7c9358c986e50c1e0ce0309918f8122e43223d, 'Toronto Blue Jays® Vladimir Guerrero Jr. Inception Base Blue 95 Uncommon', 'MLB-INC21-U-IB95-BLU'), + (0x4b7d83f38f5151319a257ea857642f54ee831e41, 'Fins Skellie Chimps', 'FSC'), + (0x4b9e3ab1d2cedf3a6f69a1f1f4377647ab65f020, 'Boston Red Sox® Hunter Renfroe Postseason Base White 67 Common', 'MLB-21POST-C-B67-S-WHI'), + (0x4ba10cab11885f2f7430fcd01c2ce1e0eb204ef8, 'St. Louis Cardinals® Tommy Edman Wild Card Contenders Blue 29 Common', 'MLB-21POST-C-W29-M-BLU'), + (0x4ba53fa90f7402942ea24b0c4e5ab29167473ca3, 'Philadelphia Phillies® Bryce Harper Base Independence Day RWB 250 Rare', 'MLB-22S1-R-B247-M-RWB'), + (0x4ba62145af693ea7e19c485a6386cf27f3502c46, 'Baltimore Orioles® Bruce Zimmermann Base Glitch 157 Uncommon', 'MLB-22S1-U-B156-M-GLI'), + (0x4ba8c7e67bf86178783bc81fbd9ad262e260d03d, 'Dani Olmo RBL Top Players Facsimile Signature Team Color TK-06 Epic', 'BUND-22TK-E-TPTK-06-S-TMC'), + (0x4babcbbe2069df5e9005a688f6f04c55002189bf, 'San Diego Padres™ Joe Musgrove Base Pink 1154 Uncommon', 'MLB-22PRI-U-B123-M-PNK'), + (0x4bb017f2249e8f8fa41872509f53f52f1beafa5f, 'Milwaukee Brewers™ Christian Yelich Facsimile Signature Blue 288 Uncommon', 'MLB-22S1-U-FS20-S-BLU'), + (0x4bb2019e4bf3f9dcf3d4deed79eecf171e4c09fc, 'New York Yankees® DJ LeMahieu 2022 Definitive Gold 22 Legendary', 'MLB-22LEG-L-22DEF22-M-GLD'), + (0x4bb6e1ef9a77f5afcaacfaf38a609c58fa3906c1, 'Atlanta Braves™ Ronald Acuña Jr. Base Blue 1003 Common', 'MLB-22PRI-C-B93-M-BLU'), + (0x4bbbd5595a6627d7b9210ad9cd6926a3edbf6f68, 'New York Yankees® Gleyber Torres Wild Card Contenders Blue 13 Common', 'MLB-21POST-C-W13-M-BLU'), + (0x4bc32cba700829b98c864b3d9f1980906d971034, 'Angels® Mike Trout Facsimile Signature Red 27 Rare', 'MLB-22S1-R-FS2-S-RED'), + (0x4bc513b35669e4c27ea603ebe9fa26ef20d1b93d, 'Milwaukee Brewers™ Aaron Ashby Base Independence Day RWB 78 Rare', 'MLB-22S1-R-B78-M-RWB'), + (0x4bc5f0707fa677c4c7ac5a2e13d4ca6afb7487d7, 'Washington Nationals® Josiah Gray Facsimile Signature Slab Gold 3111 Epic', 'MLB-22PRI-E-FS18-M-GLD'), + (0x4bd0847b9d02fae30bee5c6ca425919117b371bc, 'Angels® Team Cube 2.0 Team Colors 27 Legendary', 'MLB-22S1-L-TC227-M-TMC'), + (0x4bd57a8170bc213d048ed7dfc583971fd3f7b0a6, 'associated-press:tracked-series-web-archives Custody Token', 'TSWACT'), + (0x4bd6a42f1dc4fe706e6a0a12f464e073afaa4e7d, 'PDIHostingandHardwareServices', 'PDI2022'), + (0x4be002c07b0d8dfb57ae2b0113004ef3d8501f3a, 'Detroit Tigers® Miguel Cabrera 2022 Definitive Gold 9 Legendary', 'MLB-22LEG-L-22DEF9-M-GLD'), + (0x4bf5bb0159f0ee78406b2a3d965bec3a89d15d6f, 'Gloom Punk Club', 'GloomvPunkvC'), + (0x4bf98336f78f0d16cd9d3264eee1637bb5331038, 'Houston Astros® Jose Altuve Base White 278 Common', 'MLB-22S1-C-B275-S-WHI'), + (0x4bfae6878690ef9eedb688902e20ad29856fa2ff, 'WeeRaptorZ', 'WRPTZ'), + (0x4bffbbdb0f1d355d78f4a85d62562ef0d2640542, 'Pittsburgh Pirates® Ben Gamel Base Vintage Stock 285 Super Rare', 'MLB-22S1-S-B282-M-VS'), + (0x4c0546cfb13b71e44b57482009ed9b898c18bd46, 'Minnesota Twins® Max Kepler Inception Base Red 61 Rare', 'MLB-INC21-R-IB61-RED'), + (0x4c0b1578016c4292219584779de929b5dbbeea8e, 'Detroit Tigers® Casey Mize Inception Base Blue 30 Uncommon', 'MLB-INC21-U-IB30-BLU'), + (0x4c0c609c9b54c2f637e7b98d72473a1f674310fb, 'San Francisco Giants® Anthony DeSclafani Base Vintage Stock 137 Super Rare', 'MLB-22S1-S-B136-M-VS'), + (0x4c0d2e517fb09dbf0d33aa656e24409ef41fac43, 'San Diego Padres™ Manny Machado Inception Base White 81 Common', 'MLB-INC21-C-IB81-WHT'), + (0x4c0f31f2e1890ecebea29859085f39c1cf87e6db, 'Tampa Bay Rays™ Vidal Brujan Short Print White 25 Rare', 'MLB-22S1-R-SP6-M-WHI'), + (0x4c143b2acda721d60f938332ff47b7e91f7b565d, 'Psych League', 'PLG'), + (0x4c18d4deb67e68d4515d5b612da6a5584a2584bd, 'OwloperBabyNFT', 'OWLBBYNFT'), + (0x4c1f1346d8ce64a09e93a83d685e64d5cfc2b804, 'Miami Marlins® Brian Anderson 3B/OF Base Motion Vintage Stock 439 Super Rare', 'MLB-S221-S-B439-VS'), + (0x4c238de6bc1030b9ebc90c6bd2eb02514fa1ecb6, 'Epic Baseball Card 7 Pat Batter Bazooka Joe 2021 NFT', 'BZK-E-7B'), + (0x4c283216b71caaf091c12bb29796e7a60466c7ca, 'Robert Lewandowski BAY Animation Black Refractor S4-36 Epic', 'BUND-21TS4-E-AS4-36-V-BLA'), + (0x4c2ab5aa1e6cd9ca793d8b0bfcbc82c502c48440, 'Los Angeles Dodgers® Julio Urias Base White 299 Common', 'MLB-22S1-C-B295-S-WHI'), + (0x4c3d8fa61388127d938ac85cd381e29e49ab7272, 'Bruce Anderson LFC Base Aqua SP-29 Uncommon', 'SPFL-21SPSS-U-BSP-29-A-AQU'), + (0x4c53035849eebd5a3a5b8be78cf767665b15625b, 'Boston Red Sox® Xander Bogaerts Division Series Bronze 12 Super Rare', 'MLB-21POST-S-D12-M-BRO'), + (0x4c54ed59d2b0a3e6c43e000e7560e810b6a95079, 'Philadelphia Phillies® J.T. Realmuto 2022 Definitive Gold 26 Legendary', 'MLB-22LEG-L-22DEF26-M-GLD'), + (0x4c57031401d5bacf1998d33b2dda794a7b5d1368, 'San Francisco Giants® Mike Yastrzemksi Short Print White 103 Rare', 'MLB-22S1-R-SP24-M-WHI'), + (0x4c599090075016e6e90a2a7bc4c6ffdec27a07e0, 'New York Mets® Taijuan Walker Base Independence Day RWB 312 Rare', 'MLB-22S1-R-B308-M-RWB'), + (0x4c6cbbbfb16197a0c3bcd57b0d4d420305b4bf9a, 'Boston Red Sox® Jose Iglesias Base White 15 Common', 'MLB-22S1-C-B15-S-WHI'), + (0x4c794d9ec45ae279ffc5a08988a48c56dbc2478b, 'Houston Astros® Carlos Correa Inception Base Red 34 Rare', 'MLB-INC21-R-IB34-RED'), + (0x4c7ce7760f10b1adb67ecf01ef51218a6f44bc7a, 'Boston Red Sox® Rafael Devers 1987 35th Anniversary Chrome T87C-23 Super Rare', 'MLB-22S1-S-1987AC19-M-CHR'), + (0x4c7dcdf8307c8fb242638111e8bc287ba5d8b2c2, 'Hertha Berlin Matteo Guendouzi Young Stars Team Color 163 Super Rare', 'BUND-SC21-S-YS163-TMC'), + (0x4c7e17ffc0563db586902022f9d434f5950f0527, 'TheCrypticWolves Zombies', 'WOLF'), + (0x4c82bc8d2ee79f4eb58813ea8a978faf9256d513, 'New York Mets® Marcus Stroman P Base Motion Rainbow 549 Rare', 'MLB-S221-R-B549-RAI'), + (0x4c8accf4c1764390c59a2a511cf4a6f1e9462396, 'VfB Stuttgart Gonzalo Castro Base Players White 86 Common', 'BUND-SC21-C-BP86-WHT'), + (0x4c9228aae27deb72a622955f0fe030ee2cd8ace7, 'Texas Rangers® Isiah Kiner-Falefa SS/3B Base Static White 397 Common', 'MLB-S221-C-B397-WHI'), + (0x4c9fa00e8962b0e9f6ad68e9674e55252f518ca3, 'UBHa', 'UBHa'), + (0x4ca678b99b350e4bcab0981b75113e75c438a65a, 'New York Yankees® Aaron Judge Base Independence Day RWB 99 Rare', 'MLB-22S1-R-B98-M-RWB'), + (0x4cac1db64e3204914827466e9f6e06a22661811a, 'smATM', 'smATM'), + (0x4cad424082506505f19b2d967e1ab52fca5d9249, 'Legend Lore', 'LL'), + (0x4cb0a0fcad02e7546597a695ce15207f8e4f6768, 'Godzilla Base Collectible Blue 10 Common', 'GDZ-RAT21-C-B10-S-BLU'), + (0x4cb13f8f6b40d191530b4f3708a907d04906ffb2, 'HeadCryptoMonkey{AVAX}', 'HCM'), + (0x4cb6f7f404d0474f0ca39363e5b0ca0d65e17787, 'Bayer 04 Leverkusen Florian Wirtz Young Stars Gold 153 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS153-AFS-GLD'), + (0x4cc2141b482500a32a088a490ff57aeccc593821, 'Jesper Lindström SGE Club Phemons Gold S4CPH-08 Legendary', 'BUND-21TS4-L-CPHS4CPH-08-V-GOL'), + (0x4cc99c49f03b18a43a72dc7e05b8c7edec2cb6d9, 'TSG Hoffenheim Robert Skov Base Players Gold 29 Rare', 'BUND-SC21-R-BP29-GLD'), + (0x4ccd269a27fbd2c4b2ed8330a510f8b2bbd27edc, 'Kansas City Royals® Whit Merrifield Base Blue 1013 Common', 'MLB-22PRI-C-B52-M-BLU'), + (0x4cce0cc393628f5b1bb0df8f10708509c1d498fd, 'New York Yankees® DJ LeMahieu 2B Base Motion Rainbow 350 Rare', 'MLB-S221-R-B350-RAI'), + (0x4cd3e8f0392d594b0fc068ee4f4ba57d5585663e, 'Romano Schmid SVW Ascendent Blue TK-53 Super Rare', 'BUND-22TK-S-ASCTK-53-S-BLU'), + (0x4cd6782f6fdecd6b99292c3d92d83c62dd5af41c, 'Borna Sosa VFB Animation Gold Refractor S3-27 Legendary', 'BUND-21TS3-L-AS3-27-V-GOL'), + (0x4ce25789d15901dea819ffdba2ebf29957f82579, 'Ashley Maynard-Brewer RSC Top Saves Purple SPTS-05 Rare', 'SPFL-21SPSS-R-TSSPTS-05-V-PUR'), + (0x4cecd342ecd706602cc5765260d348fa3921cd02, 'Ian Harkes DDU Top Plays Purple SPTPL-05 Rare', 'SPFL-21SPSS-R-TPLSPTPL-05-V-PUR'), + (0x4cfca5321d1a6b7b493e3ea358e121106518b266, '1964 King Ghidorah Rookie Card Color 2 Super Rare', 'GDZ-RAT21-S-RC2-S-COL'), + (0x4d00facb34955f36449802e6d57130c98286737b, 'Hamsa V1 Pool Tokens', 'HP-V1-PT'), + (0x4d07ad894032cdf1e8e097cc6d5f9cf5620e6d61, 'Minnesota Twins® Max Kepler Inception Base Blue 61 Uncommon', 'MLB-INC21-U-IB61-BLU'), + (0x4d0c00cbb33e9ccb00192ce41b721bbf35317ddc, 'Angels® Shohei Ohtani Super Short Print White 1 Super Rare', 'MLB-22S1-S-SSP1-M-WHI'), + (0x4d0f10639e36aab02a776b9655f2118e6967a8c6, 'Colorado Rockies™ Raimel Tapia Base Independence Day RWB 46 Rare', 'MLB-22S1-R-B46-M-RWB'), + (0x4d1694ff4e43903775d06dd72e3398720567bc56, 'New York Yankees® Giancarlo Stanton Divison Series Newspaper BW 1094 Common', 'MLB-22TNP-C-DSN4-M-BW'), + (0x4d1e89f5c585d75a537cc58e7817470fd3080f99, 'New York Yankees® Miguel Yajure Rookie and Future Phenoms Facsimile Signature White 57 Rare', 'MLB-INC21-R-RC57-WHT'), + (0x4d203a50f6df4bbbc5d95ba063b86fe9e2fe9480, 'Miami Marlins® Jazz Chisholm Jr. Generation NOW Team Colors GN-18 Epic', 'MLB-22S1-E-GN18-M-TMC'), + (0x4d38382a25f83c8b2ce3b7f11e375748a523d663, 'Jude Bellingham DOR Top Players Black TK-04 Common', 'BUND-22TK-C-TPTK-04-S-BLA'), + (0x4d3d98dbe57432f4fe418ca98e128788c4b1f994, 'Minnesota Twins® Alex Kirilloff Rookie and Future Phenoms Facsimile Signature White 49 Rare', 'MLB-INC21-R-RC49-WHT'), + (0x4d42be024062578da0a10622ff2227642217d62a, 'Kansas City Royals® Hanser Alberto 2B Base Motion Platinum 414 Epic', 'MLB-S221-E-B414-PLA'), + (0x4d452314f119dd3ffb0f88dff9aa870b878422c9, 'Joško Gvardiol RBL Ascendent Magenta TK-39 Uncommon', 'BUND-22TK-U-ASCTK-39-S-MAG'), + (0x4d47332eea7cb4f7918ab90119ebec2d4675b394, 'Cameron Carter-Vickers CEL Base White SP-04 Common', 'SPFL-21SPSS-C-BSP-04-A-WHI'), + (0x4d4c3963ec38a235c49a1194a64a3e605b80cc08, '2022 Topps MLB All-Star Pack', 'MLB-22ASG-PACK'), + (0x4d4fc8e49b045b7b3f16a2fc8480743a484d3d05, 'REDPILL', 'REDPILL'), + (0x4d50b67dae06380f21efb8bb692f65082fab7efd, 'San Diego Padres™ Dinelson Lamet P Base Motion Rainbow 418 Rare', 'MLB-S221-R-B418-RAI'), + (0x4d54b581e780045a14218f43ff2a084133776978, 'Atlanta Braves™ Austin Riley Regular Season Division Winners RWB 27 Rare', 'MLB-21POST-R-R27-M-RWB'), + (0x4d5a033ef4b507212109082ecc88cc7eb5b037f4, 'KuzaPets', 'KZP'), + (0x4d6d910879c6a7ac27e448d6a4633dfd6104022e, 'Uncommon Comic 70 2-22 Bazooka Joe 2021 NFT', 'BZK-U-70C'), + (0x4d72588a2e0054331ef49a21eb7a30c73bba194a, 'Minnesota Twins® Randy Dobnak Rookie and Future Phenoms Facsimile Signature Blue 51 Super Rare', 'MLB-INC21-S-RC51-BLU'), + (0x4d75b27376b27173c1f2ff76de5cf8dd3ef214cd, 'Varan Base Collectible Blue 19 Common', 'GDZ-RAT21-C-B19-S-BLU'), + (0x4d77e41f5ae3fe4a0f3cd62b58161c7124e22722, 'Sadgirlsnft', 'SDG'), + (0x4d7ceb9c5cd2f1a36cf73255d25905c189821eb6, 'American League™ 2021 RBI Leaders Base Glitch 202 Uncommon', 'MLB-22S1-U-B201-M-GLI'), + (0x4d863f83a0bef2be9fb3a91ef0bf179d38909b06, 'St. Louis Cardinals® Nolan Arenado Base Blue 1056 Common', 'MLB-22PRI-C-B116-M-BLU'), + (0x4d957f3f400e625a434d4ac4d3f0a4559b4f642c, 'Kansas City Royals® Salvador Perez Base Pink 1073 Uncommon', 'MLB-22PRI-U-B68-M-PNK'), + (0x4d99b6e11d23b67135b66d4766a22efaa98acfa8, 'Philadelphia Phillies® Adonis Medina P Base Static White 510 Common', 'MLB-S221-C-B510-WHI'), + (0x4d9d9a13914daf7cf1d266b0235fb3d7250a0956, 'Suat Serdar BSC Animation Gold Refractor S4-68 Legendary', 'BUND-21TS4-L-AS4-68-V-GOL'), + (0x4da26ad1ee815084c26ec4e993a5acea5cc9bede, 'Atlanta Braves™ Eddie Rosario Base Pink 1320 Uncommon', 'MLB-22PRI-U-B112-M-PNK'), + (0x4da82e1d515e3622b11c731b69d23e617b81272a, 'Cleveland Guardians™ Amed Rosario Base Pink 1069 Uncommon', 'MLB-22PRI-U-B3-M-PNK'), + (0x4da8e2a7ee8daa522722d6b7cea863cf0f4c7574, 'Los Angeles Dodgers® Cody Bellinger Postseason Base White 36 Common', 'MLB-21POST-C-B36-S-WHI'), + (0x4dae5cd418c684c095e95b8cf764a7725de45ac3, 'Boston Red Sox® Nathan Eovaldi P Base Motion Platinum 623 Epic', 'MLB-S221-E-B623-PLA'), + (0x4dbb3ff7ff1df50bf6d97232578eeeb79cb02609, 'AVAX Muscle Whitelist', 'AVAXMWL'), + (0x4dbbd2fc38e0c0b5e3c5258de73bfba2314392e8, 'Edmond Tapsoba B04 Limitless White Parallel TLC-03 Super Rare', 'BUND-22TLC-S-RLSSTLC-03-A-WHI'), + (0x4dc6ced3484699bd80ffc3b0204d2c8199e6da1f, 'SJJ GENESIS', 'SJJ'), + (0x4dc792e841ea0be7c78309d589e07785e3161721, 'FSV Mainz 05 Daniel Brosinski Base Players Gold 65 Rare', 'BUND-SC21-R-BP65-GLD'), + (0x4dc79fed2818a8c4e1489871b62a08316f7721c8, 'LegendsPixel', 'LEGP'), + (0x4dcae8387b22398cb9b348e6d2c6c9e23bfce3d7, 'CaptainV3', 'CPT'), + (0x4dd1d410e8800059b838f7b7b87d89dcf32f2f04, 'Chicago White Sox® Liam Hendriks Base White 268 Common', 'MLB-22S1-C-B265-S-WHI'), + (0x4dd8d7e78bc2e82184151d29fc6798c0db0f2d13, 'Bayer 04 Leverkusen Charles Aránguiz Base Players Gold 24 Rare', 'BUND-SC21-R-BP24-GLD'), + (0x4ddb74058721fedebcabe1b88206fce32cafda4c, 'Tampa Bay Rays™ Wander Franco Facsimile Signature Glitch 215 Epic', 'MLB-22S1-E-FS13-M-GLI'), + (0x4ddda3bcefdb86c46ebb731aad3dae6a4f29c87a, 'Philadelphia Phillies® Zack Wheeler Base White 249 Common', 'MLB-22S1-C-B246-S-WHI'), + (0x4ddf6bdefe3c1ceeb6cccd9edb4b82a65d320e15, 'Avaware Allen Collectible', 'AAC'), + (0x4de263fe2460a8208d2f200c355c72caec84e550, 'New York Yankees® Clarke Schmidt P Short Print Motion White 456 Super Rare', 'MLB-S221-S-SP456-WHI'), + (0x4dfdb6a7f7888265498716c5f4df323cc3906310, 'CyberBrokers', 'CB'), + (0x4e06a6469cdc105af5d743943dd3ff8e6a791715, 'New York Mets® Pete Alonso Base Glitch 315 Uncommon', 'MLB-22S1-U-B311-M-GLI'), + (0x4e080e5addc5037eeb327c1c820032a26db21cd8, 'Rare Comic 9 1-9 Bazooka Joe 2021 NFT', 'BZK-R-9C'), + (0x4e0ef81ed86c6501f7306fc648a04beaf88e0d93, 'VfB Stuttgart Wataru Endo Top Players Gold 144 Super Rare', 'BUND-SC21-S-TP144-GLD'), + (0x4e1bde07686f31f0439882b400eadc4cc85f6c20, 'Marcus Thuram BMG Animation Black Refractor S4-57 Epic', 'BUND-21TS4-E-AS4-57-V-BLA'), + (0x4e25bfa62483023fc4610cd0a1faeb1026607b8e, 'San Francisco Giants® Alex Wood P Base Motion Rainbow 643 Rare', 'MLB-S221-R-B643-RAI'), + (0x4e25c1c112514854e9a0fcafcb2587df0ba07ba3, 'Los Angeles Dodgers® Max Scherzer Championship Series Silver 30 Epic', 'MLB-21POST-E-CS30-M-SIL'), + (0x4e29ce013e361a3c5240f3cedbfb9a5b413f9319, 'Cleveland Indians® Josh Naylor OF Base Motion Rainbow 419 Rare', 'MLB-S221-R-B419-RAI'), + (0x4e33b4c6de3adb6f7c078d5ae33f2f4f97e8ff82, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Frozen in Time', 'GDZ-GVG22-PACK-R10'), + (0x4e3f77e9a1ff2d7ce8972798921cad042647f3f9, 'Benjamin Siegrist DDU Base Aqua SP-18 Uncommon', 'SPFL-21SPSS-U-BSP-18-A-AQU'), + (0x4e42f3233406e553aa6a06aa66dc971b85044f51, 'Neon Iconz', 'NEON'), + (0x4e435a936a623f0f41919e94c2c195110e593d0b, 'Ape Universe Ecosystem', 'ApeES'), + (0x4e488e74003831ac4344c3c34e4d9e0ad8bde3ef, 'Borussia Dortmund Marco Reus Top Players Gold 96 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP96-AFS-GLD'), + (0x4e50c02026005f67172ad052566099da16d5b58e, 'Ko Itakura BMG Color Splash White TK-62 Uncommon', 'BUND-22TK-U-CSTK-62-S-WHI'), + (0x4e5b48aa3a71cbe1938eaefb4b19f1fbec8a2ff4, 'Sad Words', 'KASS'), + (0x4e60f53a60b2a1b2d237bf01311c6ce8d25ae67a, 'St. Louis Cardinals® Paul DeJong Inception Base Blue 88 Uncommon', 'MLB-INC21-U-IB88-BLU'), + (0x4e617e8fe753a8397d4dc02eb3e96eaaed058acb, 'Cleveland Guardians™ Jose Ramirez American League Base Golden 7 Super Rare', 'MLB-22ASG-S-B7-M-GLD'), + (0x4e6e39540e01a63b2cfabefaa7750f127b9c46dc, 'hala-systems:submission-1-kharkiv-photos Custody Token', 'S1KPCT'), + (0x4e6ffeb4ec69f91699dce9e95a3c361ebdb73c0a, 'Kansas City Royals® Jorge Soler Inception Base Blue 40 Uncommon', 'MLB-INC21-U-IB40-BLU'), + (0x4e7685f5da46c93a892b75f91321ca60b004f42e, 'Connor Ronan SMI Base White SP-20 Common', 'SPFL-21SPSS-C-BSP-20-A-WHI'), + (0x4e7da1e64ac578f6a19e012dc1df33954c9e9c78, 'Minnesota Twins® Luis Arraez 2B Base Motion Rainbow 649 Rare', 'MLB-S221-R-B649-RAI'), + (0x4e8db522c31aa7f02cb361b5fa5fe9eebfd9c9ee, 'St. Louis Cardinals® Andrew Miller Base Glitch 39 Uncommon', 'MLB-22S1-U-B39-M-GLI'), + (0x4e8ea9c2fa438619b0d7e1dc0f72969514db7023, 'National League™ Brandon Crawford Base Pink 1292 Uncommon', 'MLB-22PRI-U-B197-M-PNK'), + (0x4ea166974e5323fdac014ed2b1bf112546e57529, 'New York Mets® Javier Baez Pure Power White 2110 Rare', 'MLB-22PRI-R-PP6-M-WHI'), + (0x4ea7c797916b64f635d726f53b7e757aa71c6d24, 'Ma Frog', 'FROG'), + (0x4eb1c0350c70c74ffa2a97405db133af9f14c67e, 'DSC Arminia Bielefeld Fabian Klos Base Players White 83 Common', 'BUND-SC21-C-BP83-WHT'), + (0x4eb5c87b082f995ab0e576633ca0ab7b27ff8546, 'Houston Astros® Cristian Javier Inception Base White 35 Common', 'MLB-INC21-C-IB35-WHT'), + (0x4eb75313d1417a057267ac4e7f74b02132e81fe0, 'VfB Stuttgart Gonzalo Castro Base Players Team Color 86 Static Facsimile Signature Rare', 'BUND-SC21-R-BP86-SFS-TMC'), + (0x4eb92d18077a8dd215ad2b488502663a5f34586a, 'JanusWorldCup', 'JWC'), + (0x4eb964b64b9176b61369d87c06455d562139d61e, 'St. Louis Cardinals® Paul DeJong Popular Demand Facsimile Signature Teal 3530 Legendary', 'MLB-22PRI-L-PDFS13-M-TEA'), + (0x4eba85e8650f4418d7ca620fdf054858e31c9a8a, 'CryptoPunks', 'cs'), + (0x4ec07dcca6bfd242718f6468ccbb933855265fe9, 'Eintracht Frankfurt Sebastian Rode Base Players White 43 Common', 'BUND-SC21-C-BP43-WHT'), + (0x4ec2b38485d1d81d30f99271519014f21df37ae0, 'San Francisco Giants® Joey Bart Inception Base Red 85 Rare', 'MLB-INC21-R-IB85-RED'), + (0x4eddff6c190ad2c640708fcad35ad771f257b842, 'Tampa Bay Rays™ Randy Arozarena Base Blue 1027 Common', 'MLB-22PRI-C-B77-M-BLU'), + (0x4ee542782327283bf9e90ba384c69ace472f8460, 'Common Comic 40 1-40 Bazooka Joe 2021 NFT', 'BZK-C-40C'), + (0x4eee2e86e85442d7735bca6e03043109f0edb5e3, 'Detroit Tigers® Miguel Cabrera Short Print White 194 Rare', 'MLB-22S1-R-SP37-M-WHI'), + (0x4eee90a420defcb5945821f095f44dda31d1c89b, 'Jonas Wind WOB Ascendent Magenta TK-41 Uncommon', 'BUND-22TK-U-ASCTK-41-S-MAG'), + (0x4ef624fa987166adf5f8e8a1e24a0af46dae3f81, 'Happy Hammy Club', 'Happy Hammy Club'), + (0x4efa2f2eb555e21501963eaafc82f5c5db0b4840, 'Super Rare Comic 49 2-1 Bazooka Joe 2021 NFT', 'BZK-S-49C'), + (0x4efaa740716f2ba05fa721e988c3ca107974b184, 'Sport-Club Freiburg Roland Sallai Young Stars Gold 160 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS160-AFS-GLD'), + (0x4efae1ad598213763c3395d265b607eb525483f0, 'Kansas City Royals® Nick Heath Rookie and Future Phenoms Facsimile Signature White 33 Rare', 'MLB-INC21-R-RC33-WHT'), + (0x4f00f6edf200d3fc75dc2c640eda6b15a5696785, 'Avax Steampunk Girl', 'ASPG'), + (0x4f04c26c340fea51db6cdfa58123681acc5b6f79, 'Minnesota Twins® Max Kepler Base Blue 1047 Common', 'MLB-22PRI-C-B20-M-BLU'), + (0x4f06e6f3a4abd29d6b51b92846642fdad9dda303, 'New York Mets® Dominic Smith 1B/OF Base Static Gold 546 Uncommon', 'MLB-S221-U-B546-GOL'), + (0x4f0b61e336c06f40ab5f197e28a65cdb28a71470, 'Boston Red Sox® Enrique Hernandez Base Glitch 90 Uncommon', 'MLB-22S1-U-B90-M-GLI'), + (0x4f0e3aae62ae852b0dd86fa26bc8add833fd5b7f, 'Milwaukee Brewers™ Kolten Wong Division Series Bronze 57 Super Rare', 'MLB-21POST-S-D57-M-BRO'), + (0x4f158264d57c15630ec5d1c500d881b6a1c6a951, 'Vishal', 'Vishal'), + (0x4f1598e7cf592e474961311ec534c159bac0f362, 'New York Mets® Pete Alonso Short Print White 315 Rare', 'MLB-22S1-R-SP66-M-WHI'), + (0x4f1e9e15ab03b2934640bae208926abf957d7bd0, 'BUNNY FRENS', 'BUNNY'), + (0x4f21125f7fa928b41940a71331ba612f5faeec15, 'RadarPunks', 'RDARPUNK'), + (0x4f2bc38a49ba3c9b320b8e1cd13d10746f829526, 'Miami Marlins® Corey Dickerson OF Base Motion Rainbow 541 Rare', 'MLB-S221-R-B541-RAI'), + (0x4f45c2c4edafff382e3c06dec8804c5035b97a36, 'Gothic DGNRT', 'GDGNRT'), + (0x4f50c0ce5446cbcd1b4a43118970e511fae9a085, 'Atlanta Braves™ Ian Anderson Regular Season Division Winners RWB 32 Rare', 'MLB-21POST-R-R32-M-RWB'), + (0x4f575c08f123c7674987f049a11af607b2efabe3, 'New York Mets® Jeff McNeil 2B/OF Facsimile Signature Static Blue 489 Super Rare', 'MLB-S221-S-FS489-BLU'), + (0x4f5dd09d1f366e966373758aed05d3d586b53a93, 'Order', 'LP'), + (0x4f5efd070a89b5f381ad379f9fca78a0f967ad27, 'Colorado Rockies™ Kyle Freeland Base Independence Day RWB 169 Rare', 'MLB-22S1-R-B168-M-RWB'), + (0x4f637256d86e003a2f28734ad6a0e2ce17b79db6, 'Los Angeles Dodgers® Cody Bellinger Postseason Base Red 36 Rare', 'MLB-21POST-R-B36-M-RED'), + (0x4f6837f1eb6da38201f59400767a92aad5dc7a92, 'TSG Hoffenheim Munas Dabbur Base Players Team Color 27 Uncommon', 'BUND-SC21-U-BP27-TMC'), + (0x4f6dda7534aff4d0f523bec02d2d027d4d6f27a2, 'Philadelphia Phillies® Scott Kingery 2B/OF Base Static White 464 Common', 'MLB-S221-C-B464-WHI'), + (0x4f766c43995b2a2ed81d0e0f414004c08bd4cc93, 'Christopher Nkunku RBL Motion Rainbow Refractor S4-41 Super Rare', 'BUND-21TS4-S-MS4-41-V-RAI'), + (0x4f77f71751dddf01baec80dfba2caf87c6e9cc01, 'Miami Marlins® Jesus Luzardo Base Glitch 11 Uncommon', 'MLB-22S1-U-B11-M-GLI'), + (0x4f81bc60baa4d6b5231b01d3d71fcb1607d31c86, 'St. Louis Cardinals® Paul DeJong Inception Base Red 88 Rare', 'MLB-INC21-R-IB88-RED'), + (0x4f901eff137e51cd102d27558cfd47e46dd861c2, 'Jamal Musiala BAY Limitless Gold Parallel TLC-01 Legendary', 'BUND-22TLC-L-RLSSTLC-01-A-GOL'), + (0x4f932595cffd2bbb647e4ffa44fb798417db8c6c, 'Bloody Clam', 'BLCM'), + (0x4f94c6633eb1630e70c4aa867b2ccef2b82f529f, 'New York Mets® Pete Alonso 1987 35th Anniversary Wood T87-76 Common', 'MLB-22S1-C-1987A54-M-WD'), + (0x4fa47b62d2bab8214afc8676aecc72b7b458d192, 'Legends Pixel', 'LGP'), + (0x4fa513ad7d2f6e0d093096eb2091f71299a20a73, 'Chicago White Sox® Eloy Jimenez Facsimile Signature Gold 3027 Super Rare', 'MLB-22PRI-S-FS10-M-GLD'), + (0x4fac433bc1bb56dea4b035cb2c84650bb746c596, 'Toronto Blue Jays® Bo Bichette Base Glitch 126 Uncommon', 'MLB-22S1-U-B125-M-GLI'), + (0x4fb99883d79ecd928dd964fe5d7b227e6e9f01f9, 'Cleveland Guardians™ Emmanuel Clase Base Glitch 190 Uncommon', 'MLB-22S1-U-B189-M-GLI'), + (0x4fbabbe2195ecbe57ac1947a84d85bb493e46259, 'Arne Maier FCA Color Splash White TK-67 Uncommon', 'BUND-22TK-U-CSTK-67-S-WHI'), + (0x4fbf94306790f4e6db28fb609e1f85cff64791e0, 'Kansas City Royals® Brady Singer Rookie and Future Phenoms Facsimile Signature Red 31 Epic', 'MLB-INC21-E-RC31-RED'), + (0x4fc4370a0e10f9e96016a1b5e2f9819024a850fd, 'San Francisco Giants® Base Static Gold 603 Uncommon', 'MLB-S221-U-B603-GOL'), + (0x4fd48520b2689dc791bf7b1dcb746b4cedb65ff0, 'Detroit Tigers® Tarik Skubal Inception Base White 32 Common', 'MLB-INC21-C-IB32-WHT'), + (0x4fd8a6a48c00f4bfd56ab851c45fa83ded0b7a0d, 'Milwaukee Brewers™ Devin Williams P Base Motion Platinum 485 Epic', 'MLB-S221-E-B485-PLA'), + (0x4fdcd2b3a267b7054f24f18f8cf815e7be5bf685, 'NotABot - V2', 'NOTBOT - V2'), + (0x4fde7fb0a59f7a198c1c12e92184e37d5e2250f6, 'Los Angeles Dodgers® Cody Bellinger Base Pink 1044 Uncommon', 'MLB-22PRI-U-B114-M-PNK'), + (0x4fe006cdd693c71633fafd0c3194da2542f52a04, 'Fatcat', 'FATCAT'), + (0x4fe2cd017e57be32133d0a93c4ded2e4ce9695c8, 'Boston Red Sox® Base Motion Rainbow 401 Rare', 'MLB-S221-R-B401-RAI'), + (0x4fe5956b96fd47b27b73c404a9f3acc0a49832f3, 'Pittsburgh Pirates® Rodolfo Castro Base Glitch 85 Uncommon', 'MLB-22S1-U-B85-M-GLI'), + (0x4fe8bc9e020d12563295bbaff14b4d7b73dd4ed0, 'Yann Sommer BMG Base White S4-39 Common', 'BUND-21TS4-C-BS4-39-S-WHI'), + (0x4fee485478ebafb13024af2fefe360c6bedd7760, 'San Francisco Giants® Joey Bart Generation NOW Team Colors GN-26 Epic', 'MLB-22S1-E-GN26-M-TMC'), + (0x4fef477a38640059e1783530d08bc5053af57612, 'Patrick Wimmer DSC Animation Black Refractor S4-44 Epic', 'BUND-21TS4-E-AS4-44-V-BLA'), + (0x4ff53d42514a45571b6c70c8aaaa6d187f723c95, 'Cincinnati Reds® Joey Votto Base Independence Day RWB 290 Rare', 'MLB-22S1-R-B287-M-RWB'), + (0x5002e34f902b3d831db1115c3f20924fdffdfa79, 'Uncommon Comic 77 2-29 Bazooka Joe 2021 NFT', 'BZK-U-77C'), + (0x500aff59d79827f12bd4618f5371bdc8f96ef7c1, 'Super Rare Comic 73 2-25 Bazooka Joe 2021 NFT', 'BZK-S-73C'), + (0x500c8d9ca41b332fe6fa5e896485781c63f6fccd, 'Minnesota Twins® Miguel Sano 1B/3B Base Motion Vintage Stock 383 Super Rare', 'MLB-S221-S-B383-VS'), + (0x500dba8c6d36487a0deb66096d0ef66a1892a4a1, 'St. Louis Cardinals® Nolan Arenado Base Glitch 87 Uncommon', 'MLB-22S1-U-B87-M-GLI'), + (0x50127f75b9d904ecca60399571a5e73bf0ae7f14, 'New York Yankees® Anthony Rizzo Short Print White 242 Rare', 'MLB-22S1-R-SP48-M-WHI'), + (0x501febde660e8ea2432c7f8e5d5039ebcb43f3d6, 'Toronto Blue Jays® Bo Bichette American League Base White 9 Uncommon', 'MLB-22ASG-U-B9-M-WHI'), + (0x502f955365a89175a57546593256054b0d90040a, 'Eintracht Frankfurt Martin Hinteregger Base Players White 42 Common', 'BUND-SC21-C-BP42-WHT'), + (0x5036a85460d1ba9338d4f46b0f3dd3d1595c1a78, 'Audio PFP', 'aPFP'), + (0x5043abbd7caacda65ef584d641d762edbf13d09d, 'Astro Golf', 'FORE'), + (0x5048dbf9c86d65c52803d62cdf111e43d79f5e73, 'Chicago White Sox® Tim Anderson SS 1986 Anniversary Facsimile Signature Motion Chrome 86TC-11 Legendary', 'MLB-S221-L-1986AFS86TC-11-CHR'), + (0x504c27770c07c95ec426e6d87f1e79e7a25a5e7a, 'Atlanta Braves™ Base Vintage Stock 164 Super Rare', 'MLB-22S1-S-B163-M-VS'), + (0x504c44bfad2f73fd02784089087515204e28996e, 'Atlanta Braves™ Dansby Swanson Regular Season Division Winners RWB 28 Rare', 'MLB-21POST-R-R28-M-RWB'), + (0x504da311a657a1d60fb59e8c7e46f878aa44715e, 'New York Yankees® Anthony Rizzo New Beginnings Team Colors 11 Legendary', 'MLB-INC21-L-NB11-TMC'), + (0x504dc61f40037614e3c7240efad621125ad22910, 'San Diego Padres™ Joe Musgrove P Base Static Gold 411 Uncommon', 'MLB-S221-U-B411-GOL'), + (0x5055a3f8896f44f299f8de26eaa110878293db99, 'Papyrus Syndrome', 'NGMI'), + (0x5055fcae44f103254050a995d02b0a8bb422bd07, 'Miami Marlins® Jesus Sanchez Rookie and Future Phenoms Facsimile Signature White 41 Rare', 'MLB-INC21-R-RC41-WHT'), + (0x5058a684c04e9e4a87d5930827470357cc4f0fe1, 'Tampa Bay Rays™ Brandon Lowe Inception Base White 91 Common', 'MLB-INC21-C-IB91-WHT'), + (0x506cca5fd2badece423089e339dbfcbd95c45801, 'Los Angeles Dodgers® Austin Barnes C Base Motion Platinum 367 Epic', 'MLB-S221-E-B367-PLA'), + (0x50711ee70969047e7c5dc0b6f6320239c32a4157, 'Major League Baseball® How Far? Base Independence Day RWB 320 Rare', 'MLB-22S1-R-B316-M-RWB'), + (0x50734649278e7f889a95345591d5bcf60fb31a45, 'New York Yankees® Jordan Montgomery P Base Static Gold 630 Uncommon', 'MLB-S221-U-B630-GOL'), + (0x507d32c7ed9e64ef199a4b630fc7de4dbaaeb764, 'Cleveland Guardians™ Jose Ramirez Base Vintage Stock 269 Super Rare', 'MLB-22S1-S-B266-M-VS'), + (0x507ec34936f7436311a6c174fcc991aeeb440b26, 'New York Yankees® Gerrit Cole Base Independence Day RWB 35 Rare', 'MLB-22S1-R-B35-M-RWB'), + (0x5080dd91411e0731a60c860c1dddde7a167152bf, 'New York Yankees® Deivi Garcia Inception Base Red 66 Rare', 'MLB-INC21-R-IB66-RED'), + (0x50810400dd1689d62dd0c0136426c9e041aa1811, 'Chicago White Sox® Yasmani Grandal Base White 284 Common', 'MLB-22S1-C-B281-S-WHI'), + (0x5097eb6ae77a2d5f080683a20ebb629c5e777e08, 'B.A.Y.C. THE CHIMPS', 'BAYCTHECHIMP'), + (0x509f3a28ac2b0819eccb7af09a367af8ad666c07, 'Minnesota Twins® John Gant Base Glitch 280 Uncommon', 'MLB-22S1-U-B277-M-GLI'), + (0x509fee0ffaa274114a1a5dac1de3576fd9ecfe9f, 'Baltimore Orioles® Ryan Mountcastle Rookie and Future Phenoms Facsimile Signature Red 4 Epic', 'MLB-INC21-E-RC4-RED'), + (0x50b0b09ea7cd3efd5e974cbcd38fede08e8d9e58, 'Crypto Dolls', 'CDOLLS'), + (0x50b37f053ade37ecd703f0975ec022aff1234c6f, 'Minnesota Twins® Josh Donaldson Base Vintage Stock 226 Super Rare', 'MLB-22S1-S-B223-M-VS'), + (0x50b4e4d063961f6c58d3c40e3fe018e0621a6a0c, 'Deez Nutz', 'DEEZNUTZ'), + (0x50b92396be63de7fbcc864dbb673c98c333bc236, 'Los Angeles Dodgers® Will Smith Rookie and Future Phenoms Facsimile Signature White 38 Rare', 'MLB-INC21-R-RC38-WHT'), + (0x50be1b48dc0d322d6220a2a30acce7b6070186f5, 'Toronto Blue Jays® Lourdes Gurriel Jr. American League Base Golden 17 Super Rare', 'MLB-22ASG-S-B17-M-GLD'), + (0x50bfe9309c70922dcf04b460a72e37350742929e, 'Wagyu Collection', 'WAGYU'), + (0x50c55c0e8ae7ca3b0d2858621ad5b473f9349dcd, 'Moonbeam Album NFT', 'MAT'), + (0x50d82f29d8744f875862e2352fff9bb223ebef92, 'Chicago White Sox® Yermin Mercedes Base Vintage Stock 141 Super Rare', 'MLB-22S1-S-B140-M-VS'), + (0x50d99d5e0e1f45d22fc416c60a2794b0345e1a9d, 'Niklas Dorsch FCA Animation Black Refractor S3-31 Epic', 'BUND-21TS3-E-AS3-31-V-BLA'), + (0x50dd0cb1939415e903f856f393c8ad3b67ebccee, 'Boston Red Sox® Xander Bogaerts Base Blue 1005 Common', 'MLB-22PRI-C-B80-M-BLU'), + (0x50e0956c08fe1a7364ddada6a9a00310529585e3, 'Rare Comic 73 2-25 Bazooka Joe 2021 NFT', 'BZK-R-73C'), + (0x50e1873f208817a61d81aa00650fa6ee0cd41474, 'Atlanta Braves™ Adam Duvall National League Base White 17 Uncommon', 'MLB-22ASG-U-B17-M-WHI'), + (0x50e1fcdf7c308c142456404ce8196617eff194dd, 'SV Werder Bremen Ludwig Augustinsson Base Players Gold 77 Rare', 'BUND-SC21-R-BP77-GLD'), + (0x50e614793934e6ceaf5fc8f9381352f194b34300, 'Christoph Baumgartner TSG Top Players Facsimile Signature Team Color TK-14 Epic', 'BUND-22TK-E-TPTK-14-S-TMC'), + (0x50e8b8d76b8886ee1b2841638dab7696d556e9ae, 'ERROR501', 'ER501'), + (0x50ee01f11acc45b7ac96a4126a39b46b3ef3e941, 'Seattle Mariners™ Base Motion Rainbow 599 Rare', 'MLB-S221-R-B599-RAI'), + (0x50ef1b5a502a26775d4d0e1c2dbf14556faa2b3c, 'FIVE0 NFTs', 'FIVE0'), + (0x50f3fe5252310915caf32e1facd19e0ca3d01f83, 'Chris Kane STJ Base Purple SP-23 Super Rare', 'SPFL-21SPSS-S-BSP-23-A-PUR'), + (0x50f43e209885cad54460650be955597e34706f63, 'Seattle Mariners™ Wild Card Broadcast RWB 1046 Rare', 'MLB-22TNP-R-WCA5-M-RWB'), + (0x50f519767dab90c0731a5e282b04e452259428d9, 'FC Augsburg Marco Richter Base Players Team Color 72 Uncommon', 'BUND-SC21-U-BP72-TMC'), + (0x511059095109440d368f7fb236b09ebed3269341, 'Philadelphia Phillies® Rhys Hoskins Championship Series Broadcast RWB 1123 Rare', 'MLB-22TNP-R-CSB6-M-RWB'), + (0x511c0c5a7631fd07003d12e6aa7440f80d38ae3f, 'Toronto Blue Jays® Santiago Espinal Rookie and Future Phenoms Facsimile Signature Red 78 Epic', 'MLB-INC21-E-RC78-RED'), + (0x512a94953206f86a87d37160f9e255a778c9a649, 'HeartManiaxNFT', 'HMNFT'), + (0x512c5b5ace7da7463a2256ca6d57730fbb0ae5f1, 'New York Mets® Dellin Betances P Base Motion Rainbow 385 Rare', 'MLB-S221-R-B385-RAI'), + (0x5133a18f72c339d890b59fe3b6acf5a361bb35fb, 'Greact Octos', 'GOC'), + (0x5134b0cf735f4822359254d76bc77a4ad41953ff, 'Baltimore Orioles® Trey Mancini Base Vintage Stock 79 Super Rare', 'MLB-22S1-S-B79-M-VS'), + (0x5136baebb8c6585b52cd747cd64c1b8a9b58c17d, 'ForeverBit', 'BIT4EVA'), + (0x513ef2f068145c76fdf70685c7ea5546f51fb3e7, 'Anguirus Base Collectible Magenta 9 Common', 'GDZ-RAT21-C-B9-S-MAG'), + (0x514150141fbf8f991b4f3089cdc8fe01c8a4dc48, 'New York Yankees® Anthony Rizzo Base Glitch 242 Uncommon', 'MLB-22S1-U-B239-M-GLI'), + (0x51435b0a934797cde5a74dd5847cad277881f254, 'Texas Rangers® Mike Foltynewicz Base Glitch 293 Uncommon', 'MLB-22S1-U-B290-M-GLI'), + (0x514b703c9c9968076d5836dd82e204ac3a9f9156, 'Chicago White Sox® Yasmani Grandal Postseason Base White 12 Common', 'MLB-21POST-C-B12-S-WHI'), + (0x5150436c7026919ec960b0d4cccf7827c8b2d4ae, 'Godzilla RAT Page 2 Comic Page Black and White 2 Uncommon', 'GDZ-RAT21-U-CP2-S-BW'), + (0x51511811e622a3cd6d6b992b76d5652e6fe1e2f2, 'Grischa Prömel FCU Base White S4-40 Common', 'BUND-21TS4-C-BS4-40-S-WHI'), + (0x515504add937f25da88876505c36d8a7e1fa3ded, 'San Francisco Giants® Logan Webb Postseason Base Navy 32 Uncommon', 'MLB-21POST-U-B32-M-NVY'), + (0x51586a6c3ebe816d966cfe662663c77abd42ce54, 'Cheersmas', 'CHMS'), + (0x515ac8542564e1eea60731b66e6f7c73e62deebc, 'Houston Astros® Luis Garcia P Base Static Gold 547 Uncommon', 'MLB-S221-U-B547-GOL'), + (0x515e8b7f7d58d059b6e64568036a5c18747b445b, 'The Robots', 'TheRobot'), + (0x515f479599e30b9622ad1047c9614efbfc888d49, 'Chicago White Sox® Jose Abreu Base Vintage Stock 84 Super Rare', 'MLB-22S1-S-B84-M-VS'), + (0x5160449bc5e3a738e5526830e2efce8d6bc83865, 'Tampa Bay Rays™ Brendan McKay Rookie and Future Phenoms Facsimile Signature Blue 73 Super Rare', 'MLB-INC21-S-RC73-BLU'), + (0x5162777d63ae57f0419137c25c63c058d659e23d, 'Ricki Lamie MOT Top Plays Purple SPTPL-24 Rare', 'SPFL-21SPSS-R-TPLSPTPL-24-V-PUR'), + (0x5163d561abe05b69ade42b6f26db7ea68bb7bcf3, 'San Diego Padres™ Ivan Castillo Base Glitch 140 Uncommon', 'MLB-22S1-U-B139-M-GLI'), + (0x5165472d081289bfe6f7d6d99835748db7956772, 'Opulence Massacre | Didem Soydan x Cassandra | curated by MUAFNFT', 'OM'), + (0x516628b75a5552d88cefa5ca9f5674caa55fc0f7, 'Happiness', 'HPNN'), + (0x516887e0d7814737153e29da0aac06a53a5e6bbc, 'Super Rare Comic 65 2-17 Bazooka Joe 2021 NFT', 'BZK-S-65C'), + (0x516e17f2474730f780fcb5e06304c436d322335d, 'Common Comic 37 1-37 Bazooka Joe 2021 NFT', 'BZK-C-37C'), + (0x51715d58411726ec63227e1c2acb6f8caad07169, 'LuckyDaoNFT', 'LuckyDao'), + (0x51788ec25d5a710300218c345c03eb9dd0c3b3dd, 'RP Mo Boosted NFT', 'RPMB'), + (0x517a1277bf2490cfdcfc1eb8b65a66a84062fac8, 'Boston Red Sox® Martin Perez Base Independence Day RWB 212 Rare', 'MLB-22S1-R-B210-M-RWB'), + (0x5187e9ba125ea70d8cfc2626008388ac8fea9dfd, 'Super Rare Comic 75 2-27 Bazooka Joe 2021 NFT', 'BZK-S-75C'), + (0x5189ef927e6798f68f9f3fc9690bf57d00d50823, 'Burning Bennie Facsimile Signature Color 6 Uncommon', 'GPK-NFT22-U-FS6-S-COL'), + (0x518c9ab0e53c91f972e50e513a89cae590d67b89, 'Super Rare Baseball Card 9 Joe Batter Bazooka Joe 2021 NFT', 'BZK-S-9B'), + (0x518d1093b94d34877e25a81c26913ec172412ce9, 'Arizona Diamondbacks® Tyler Gilbert Facsimile Signature Gold 3117 Super Rare', 'MLB-22PRI-S-FS49-M-GLD'), + (0x51932dfaf07032e7a8373ee77b89b73e8d49994e, 'Jonathan Burkardt M05 Motion Aqua Refractor S2-19 Rare', 'BUND-21TS2-R-MS2-19-V-AQU'), + (0x51942425d05b0df36f6ea27f8fdee050a6bf4cf8, 'Houston Astros® Alex Bregman Regular Season Division Winners RWB 19 Rare', 'MLB-21POST-R-R19-M-RWB'), + (0x519ee051bcbdfe72a419c51a934c3b6b8ca2c4cc, '2022 Topps Pristine Baseball NFT Collection All-Star Challenges Rewards Pack', 'MLB-22PRI-AS-REWARD-PACK'), + (0x51c8c2d681f944df5c06e539b8d6e4919a092e18, 'Liam Kelly MOT Base Aqua SP-25 Uncommon', 'SPFL-21SPSS-U-BSP-25-A-AQU'), + (0x51ca56680f5f7f9f3941dbea8bb4341c0b5a9d87, 'Evil Beanz', 'EVBZ'), + (0x51d3fcf711c46194bf1e8cd19413f12621335dc5, 'Stevan Jovetić BSC Animation Black Refractor S3-30 Epic', 'BUND-21TS3-E-AS3-30-V-BLA'), + (0x51e806457fe708ca9d23f292b8addf51cefa8a21, 'Heart of Midlothian F.C. HEA Club Crest Card Gold SPCCC-05 Epic', 'SPFL-21SPSS-E-CCCSPCCC-05-A-GOL'), + (0x51ecceaee47f2d6c9e559a9417117fe83a0cc813, 'Toronto Blue Jays® Base Independence Day RWB 109 Rare', 'MLB-22S1-R-B108-M-RWB'), + (0x51fd317f909a1768e9e801b08ac685bffbd88c71, 'St. Louis Cardinals® Nolan Arenado Facsimile Signature Blue 87 Uncommon', 'MLB-22S1-U-FS5-S-BLU'), + (0x520333863e40d3e007fe02030d88356bf0ff2879, 'Los Angeles Dodgers® Mookie Betts Second Place Beach 14 Epic', 'MLB-22ASG-E-SEC14-M-BCH'), + (0x52086d99e4c8815eef55aea63c3bdbc810643ac5, 'Rare Comic 101 2-53 Bazooka Joe 2021 NFT', 'BZK-R-101C'), + (0x520b1d50ecb4be59e5f4d793e1a5be64f94cf18c, 'Super Rare Comic 76 2-28 Bazooka Joe 2021 NFT', 'BZK-S-76C'), + (0x520de3472b680505bd00fd6954dc122cc2e68ed3, 'AIXS', 'AIXS'), + (0x5213cd06483433b2be76c96eb14f1a16cb18828a, 'Philadelphia Phillies® Vince Velasquez P Base Static Gold 653 Uncommon', 'MLB-S221-U-B653-GOL'), + (0x52160c572ba7f4823fefc0704507c053f61c2662, 'Detroit Tigers® Victor Reyes Base White 252 Common', 'MLB-22S1-C-B249-S-WHI'), + (0x52250ae6b522fd7213919c0cd9f781b4fa58a216, 'Tampa Bay Rays™ Yonny Chirinos P Base Static White 592 Common', 'MLB-S221-C-B592-WHI'), + (0x522585c4946f0887e7d44b0c27f80e0ede64ff56, 'Minnesota Twins® Byron Buxton 2022 Definitive Gold 18 Legendary', 'MLB-22LEG-L-22DEF18-M-GLD'), + (0x522c93530e39bdfa5257b5754bae29d91e655f72, 'Boston Red Sox® Jackie Bradley Jr. OF Base Motion Rainbow 568 Rare', 'MLB-S221-R-B568-RAI'), + (0x52315d83c542be17ec333a1316d8ff22a4845988, 'Minnesota Twins® Jorge Polanco Inception Base Black 59 Legendary', 'MLB-INC21-L-IB59-BLK'), + (0x5238046a5d129122dfebe03e7457f2a8cc070568, 'SPFL - 21-22 Shining Stars Digital Collectible NFT Card Pack', 'SPFL-21SPSS-PACK-SS'), + (0x5262338daf70106cacddc51f26915d6096d16100, 'PDIPayments', 'PDI2022'), + (0x52635e65e40e2107c9327ba989fbc0eeca0531b0, 'Graveyard', 'GRVYRD'), + (0x5265556924a7f8bbf2abe65f585d1724f9a2f7e3, 'Jonas Wind WOB Base Red S4-52 Uncommon', 'BUND-21TS4-U-BS4-52-S-RED'), + (0x526d5f1f1dde7ce4848e5baf40e637b012c35b8a, 'Toronto Blue Jays® Lourdes Gurriel Jr. Base Independence Day RWB 54 Rare', 'MLB-22S1-R-B54-M-RWB'), + (0x52762df36d18569cebad0c61ab17d42b2a5c7c60, 'Toronto Blue Jays® Tanner Roark P Base Static White 522 Common', 'MLB-S221-C-B522-WHI'), + (0x527b54a335101de3a30bfc72b27c7c1205533737, 'Love My NFT in AVAX', 'LUV'), + (0x5281fe6730679ae1585f08a769c9339c5285c2ca, 'Philadelphia Phillies® Aaron Nola P Base Motion Vintage Stock 537 Super Rare', 'MLB-S221-S-B537-VS'), + (0x529050471d6ce9fbe6321edfa6adf63612840393, 'Miami Marlins® Trevor Rogers Base Vintage Stock 24 Super Rare', 'MLB-22S1-S-B24-M-VS'), + (0x52944d6bc694c913e225e176de6181c8c2af2c89, 'Lost Soul', 'v'), + (0x529a3965a981e735432ba6a5cc70da13a2e91836, 'Texas Rangers® Isiah Kiner-Falefa Base Vintage Stock 93 Super Rare', 'MLB-22S1-S-B92-M-VS'), + (0x529b2943eec16774f90248c8bd4a107963728b00, 'PDISecuritySolutions', 'PDI2022'), + (0x52aa71ab5307f67834ea57bcdc03c00842e5841d, 'FC Schalke 04 Bastian Oczipka Base Players White 56 Common', 'BUND-SC21-C-BP56-WHT'), + (0x52adca84a39492c800cc0dce6f096f85c14d2b3b, 'Milwaukee Brewers™ Josh Hader Inception Base Red 56 Rare', 'MLB-INC21-R-IB56-RED'), + (0x52ae6d344c1f1f940088d9ead009f3c8e6ec17db, 'Grischa Prömel FCU Animation Black Refractor S4-40 Epic', 'BUND-21TS4-E-AS4-40-V-BLA'), + (0x52b1dd4e640ef7fca90d71d5af4a36d5d4f20d6f, 'Konrad Laimer RBL Base Red S1-04 Uncommon', 'BUND-21TS1-U-BS1-04-S-RED'), + (0x52b97fca4ea7e803a42ff6f01e67551aa0571215, 'Detroit Tigers® Miguel Cabrera Inception Base Blue 31 Uncommon', 'MLB-INC21-U-IB31-BLU'), + (0x52bdd86a606a41ec7735e09f04919f49307029cf, 'Zilla Wafers Wacky Package Color 1 Legendary', 'TOP-GVG22-L-RWP1-A-COL'), + (0x52be645f71c54efb75f3aa86c2e5c8d943007362, 'New York Mets® Andres Gimenez Inception Base Blue 62 Uncommon', 'MLB-INC21-U-IB62-BLU'), + (0x52c4325229d6e889c608ff157c6294c6d6143836, 'Super Rare Comic 55 2-7 Bazooka Joe 2021 NFT', 'BZK-S-55C'), + (0x52c62f5ad46d94a18e89fb4025359b87441fa4aa, 'Tampa Bay Rays™ Joey Wendle Base Blue 1182 Common', 'MLB-22PRI-C-B47-M-BLU'), + (0x52cba665341d0f28b39744787924600ec51e21c2, 'Angels® Base Static Gold 621 Uncommon', 'MLB-S221-U-B621-GOL'), + (0x52d001e1b2fb021a8d88a44c1eea26a92ed1eec6, 'Los Angeles Dodgers® Austin Barnes C Base Static White 367 Common', 'MLB-S221-C-B367-WHI'), + (0x52d57328df370d33fa354149485f601233deef6c, 'Rare Comic 65 2-17 Bazooka Joe 2021 NFT', 'BZK-R-65C'), + (0x52e3e3ea5b6e725336fb0795741fb805158f5a0a, 'Colorado Rockies™ Daniel Bard P Base Static White 376 Common', 'MLB-S221-C-B376-WHI'), + (0x52e9f2a55e7ccb3a5d0bec0e53cba8b149fbfeaa, 'Angels® Anthony Rendon Base Pink 1061 Uncommon', 'MLB-22PRI-U-B37-M-PNK'), + (0x52ee2e6be2e3a08005c678b2c7c70e2795515581, 'Dummy Gummyz', 'DMG'), + (0x52fd37df91c550f3e54d8aa3d79f01a6f2af1a58, 'Chicago Cubs® Team Cube 2.0 Team Colors 6 Legendary', 'MLB-22S1-L-TC26-M-TMC'), + (0x53038e6916851eeef3d0791144861a8c2fd46953, 'Milwaukee Brewers™ Keston Hiura Gold Signings Facsimile Signature Gold 25 Epic', 'MLB-INC21-E-SS25-GLD'), + (0x5305ac27b6b858b6cbd015916b0936d3a37a2893, 'The Florians', 'FLORIANS'), + (0x5307bf4758dc84823949d1588bba877b92d95e7e, 'Screw Cancer', 'SCRW'), + (0x531efa0f2d7f9eecdecf5150a0d9cea29aff7a0f, 'Maximilian Arnold WOB Motion Rainbow Refractor S4-67 Super Rare', 'BUND-21TS4-S-MS4-67-V-RAI'), + (0x531f56b102425ff386f52179e55d9077ca0f0bf9, 'Toronto Blue Jays® Tom Hatch Rookie and Future Phenoms Facsimile Signature White 79 Rare', 'MLB-INC21-R-RC79-WHT'), + (0x531fc569d35a98de778340a78ab1171bd193390e, 'Atlanta Braves™ Reward Red 1040 Epic', 'MLB-21NOW-E-R1040-RED'), + (0x5321c0bc0cc649363e984be3a6d62bb1cf3f8fed, 'Baltimore Orioles® Rio Ruiz 3B Base Motion Vintage Stock 369 Super Rare', 'MLB-S221-S-B369-VS'), + (0x5323eaa52f1c160b571991bcfcc1a3fdd86dc594, 'Red Banner Gud', 'RBGUD'), + (0x532950b9a49e3b37f355225c161dbcfeba4df37d, 'FSV Mainz 05 Jonathan Burkardt Young Stars Gold 170 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS170-AFS-GLD'), + (0x5329f2201c712b22a9fd07a263fd0abaa6d5a82b, 'FabeeoBreen-Avax', 'FBRN'), + (0x532b960dd7f6c258a4f265ab3b382ea61f644025, '1-3_Avalanche C-Chain_本番環境テスト', 'T2WEB'), + (0x532fea06324dcb0a95532308eba5f2860f13eb0e, 'Ian Lawlor DUD Top Saves Gold SPTS-11 Legendary', 'SPFL-21SPSS-L-TSSPTS-11-V-GOL'), + (0x5351a49b3e7f8a79adaf09fb52bf7b483352bd5d, 'OH NO! I F***ED THE METADATA!', 'FKM'), + (0x535239c758d84547f0ecae8e58fc4cdaf0f756a6, 'Muscle Whitelist', 'AVAXMWL'), + (0x5352c684a77271c65b60be2172d625ee0e87edf4, 'Geo721', 'GEO721'), + (0x5361996fb5fd460b92c49690177b92c218b52124, 'Atlanta Braves™ Adam Duvall Base Independence Day RWB 279 Rare', 'MLB-22S1-R-B276-M-RWB'), + (0x53627ed83f42dbfb0157ba0f387e139fe5b8356c, 'Houston Astros® Lance McCullers Jr. P Base Static White 610 Common', 'MLB-S221-C-B610-WHI'), + (0x537501cdb09ec4a0d1488f0ca1976a512d3fa7c7, 'NFT STARS COIN', 'NFTS'), + (0x53824c6c00b3b7ff44f7859d907be34d2f72ad9c, 'Atlanta Braves™ Adam Duvall Base White 279 Common', 'MLB-22S1-C-B276-S-WHI'), + (0x53870b0bb4dfe42260c472c356b8f33bfb384882, 'Washington Nationals® Jakson Reetz Base Vintage Stock 61 Super Rare', 'MLB-22S1-S-B61-M-VS'), + (0x538f6fb3c81578930472049584e414aa2366a170, 'Houston Astros® Zack Greinke P Base Motion Rainbow 463 Rare', 'MLB-S221-R-B463-RAI'), + (0x539251e878d1fa284b57fc2e93b37d9c4cbaa49b, 'SMOLL RH', 'SR'), + (0x5398661f682d0ba1a6ba7ec8671fdb4781a93354, 'Pittsburgh Pirates® Bryan Reynolds OF Base Motion Vintage Stock 564 Super Rare', 'MLB-S221-S-B564-VS'), + (0x53a1a842f19a776fcfa9b0cb01d50192c03140c9, 'Sascha Burchert SGF Motion Rainbow Refractor S3-33 Super Rare', 'BUND-21TS3-S-MS3-33-V-RAI'), + (0x53a339cc2c2ac5cd0ccacb92cc73a36ed860fdeb, 'Rare Comic 88 2-40 Bazooka Joe 2021 NFT', 'BZK-R-88C'), + (0x53a339cd862ecf1a9e346d50dcba81d520c567f5, '111 Amazing Art', 'ArtNFT'), + (0x53aa3a2d7150560c0300c71604bdd91fa249c060, 'APAPhotoshoot', 'APAPS1'), + (0x53ab0fe88a601fe8e23c9b07e10cdc553cb7e23c, 'Deneme', 'Den'), + (0x53ab8dc69feb6bea57962fa15040d0566a9c61dd, 'Tampa Bay Rays™ Tyler Glasnow Base Blue 1087 Common', 'MLB-22PRI-C-B28-M-BLU'), + (0x53b4851f1768e639f8c66046366251f2614f8234, 'Degen Gamepiece Deux', 'dGAMEd'), + (0x53b5f8877b46dcb16a93dc82a3e5d97aa2054e70, 'Kansas City Royals® Carlos Santana 1B Base Static Gold 513 Uncommon', 'MLB-S221-U-B513-GOL'), + (0x53b965138a0675a90e8dab9ab4c922c2717c5215, 'The Age of NFTs', 'AONFTs'), + (0x53c639509a1cf6a244dec57f71d47bb0c8944b01, 'Rodrigo Zalazar S04 Color Splash White TK-70 Uncommon', 'BUND-22TK-U-CSTK-70-S-WHI'), + (0x53c6f24d9b47129fc25a60908d85446d42e71a8c, 'FC Augsburg André Hahn Base Players Team Color 71 Uncommon', 'BUND-SC21-U-BP71-TMC'), + (0x53cdb4b89ef1344a59016112ed52560ee560ad49, 'Camp Kaiju Monster Collage Color 4 Legendary', 'GDZ-RAT21-L-RMC4-A-COL'), + (0x53ddef767b341180682184c9ad524e641210469e, 'Cyborg Y00ts - Brokers', 'BRK'), + (0x53f501834bfc4cf6399b135f06f825d83310ba84, 'Cleveland Indians® Delino DeShields OF Base Motion Vintage Stock 602 Super Rare', 'MLB-S221-S-B602-VS'), + (0x5401ba1d6295995b5fa896aa8c50c3c033e5001d, 'Atlanta Braves™ Jorge Soler Postseason Base White 62 Common', 'MLB-21POST-C-B62-S-WHI'), + (0x5406a81624879b1d426d705af5bd16dffaf2d1e8, 'Philadelphia Phillies® 2021 Topps MLB Inception Set Completion Reward Team Colors 21 Epic', 'MLB-21INCSC-E-21INCSCR21-M-TC'), + (0x540a6d0cb44583408c581e715a89f4e37f860511, 'WolfyAngels', 'WOAN'), + (0x541c485995acb58a6dcdec7ab4ef6c2d6432f92d, 'Philadelphia Phillies® Rhys Hoskins Championship Series Newspaper BW 1123 Common', 'MLB-22TNP-C-CSN6-M-BW'), + (0x5420f192ef58575a15e2c4e5fde5020370769fba, 'Angels® Jared Walsh 1B Base Motion Vintage Stock 575 Super Rare', 'MLB-S221-S-B575-VS'), + (0x542448ab6454736216b700f66e6c506b0d735124, 'Houston Astros® Ronnie Dawson Base Independence Day RWB 231 Rare', 'MLB-22S1-R-B228-M-RWB'), + (0x5429e707d9a0a66ff39635f3fd31c6147efc3289, 'Colorado Rockies™ Kyle Freeland P Base Motion Rainbow 615 Rare', 'MLB-S221-R-B615-RAI'), + (0x542a3cea8b3c0440837c9569e4852e2f3ef01b1b, 'eqeqweqwe', 'eqweqw'), + (0x54353e3a9a684baefe87f4c3e4c816ab55910743, 'Atlanta Braves™ Travis d''Arnaud Base Glitch 4 Uncommon', 'MLB-22S1-U-B4-M-GLI'), + (0x54378d90ef6dbb6f2e87a9d404fedf8b42f312c8, 'Oakland Athletics™ Matt Olson 2022 Definitive Gold 24 Legendary', 'MLB-22LEG-L-22DEF24-M-GLD'), + (0x54387525076f4840574f8973a57a711944755e60, 'EXFLEX Juice Tier', 'EXFJ'), + (0x54409bfda59f60a5f35fbd69cb60efcebf6f8a13, 'Arizona Diamondbacks® Zac Gallen P Facsimile Signature Static Red 440 Epic', 'MLB-S221-E-FS440-RED'), + (0x544575dad584eb16fb310295870a5b726ad66719, 'Houston Astros® Justin Verlander Inception Base Black 37 Legendary', 'MLB-INC21-L-IB37-BLK'), + (0x54566b6ccf18f268edfde690543e8a09ee8fa0ce, 'Robert Lewandowski BAY Awards Red TSC-23 Legendary', 'BUND-21TSC-L-RAWTSC-23-A-RED'), + (0x5459b09f902cf88c6f461e995baed4eeea159b90, 'American League™ Teoscar Hernandez Base Blue 1267 Common', 'MLB-22PRI-C-B200-M-BLU'), + (0x5460ee3fac092e4607be066072443295e85a0aa9, 'Pixel Wizard Guild', 'PWG'), + (0x546563acbb07de52a6bd6b734fcc5845919822d1, 'Niklas Dorsch FCA Top Players Facsimile Signature Team Color TK-26 Epic', 'BUND-22TK-E-TPTK-26-S-TMC'), + (0x54661ebd2c8f7143086275f542b1f157c11b49c7, 'Rare Comic 59 2-11 Bazooka Joe 2021 NFT', 'BZK-R-59C'), + (0x5466f0d61d4a198fe7aad00c07b8d92a3cf69301, 'Los Angeles Dodgers® Keibert Ruiz Inception Base Red 48 Rare', 'MLB-INC21-R-IB48-RED'), + (0x546823b0a805512aa9b08b6ee653b4cbd8fa79bb, 'Alassane Plea BMG Base Red S3-24 Uncommon', 'BUND-21TS3-U-BS3-24-S-RED'), + (0x546b879d658a2969cefb9ed53a1d80ab37390ab6, 'Tom Parkes LFC Top Plays Gold SPTPL-08 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-08-V-GOL'), + (0x54716f9289176850c103b15c598c2c1a35d05615, 'Demo Avax NFT Collection', 'DEMOAVAX'), + (0x54768ae78653c71145e6e4c06cc1c4bc3866d817, 'Moonmug', 'MUG'), + (0x547fb77e1bf1f74b73af5c38f480e2439a881876, 'Chicago Cubs® 2021 Topps MLB Inception Set Completion Reward Team Colors 5 Epic', 'MLB-21INCSC-E-21INCSCR5-M-TC'), + (0x5483527ed84fa4ffcf5a66206ca3b401a66c132a, 'Yann Sommer BMG Motion Rainbow Refractor S4-39 Super Rare', 'BUND-21TS4-S-MS4-39-V-RAI'), + (0x548a86976c29029fe00b4dea587c020357628bc4, 'Texas Rangers® Jonah Heim C Base Static Gold 628 Uncommon', 'MLB-S221-U-B628-GOL'), + (0x548c2623be2fd02a70ee31ddbec8f17240d7a728, 'Cloudheadz Pixels', 'CLOUDPIXELS'), + (0x5492473a23a9f76c33c10a597805580f7d6121c2, 'Arizona Diamondbacks® Drew Ellis Base White 298 Common', 'MLB-22S1-C-B294-S-WHI'), + (0x5492c64a4f1d55617b38a05c369e0b4b648ab204, 'The Funky Horse Pub', 'TFHP'), + (0x54a5503a305fde037e4afa1b93d3fc7b5fa6b399, 'Tampa Bay Rays™ Josh Fleming Postseason Base Navy 7 Uncommon', 'MLB-21POST-U-B7-M-NVY'), + (0x54a8ff6e9f0ee338d81c81fd1850bd0b253ce665, 'New York Mets® Dominic Smith 1B/OF Base Motion Rainbow 546 Rare', 'MLB-S221-R-B546-RAI'), + (0x54b17eb76cf3b02af937638d53043eeb1cf6c08b, 'Mushroom Art', 'Murt'), + (0x54b4136c2904041cbdfedbd0db46ad8b12d92038, 'Aquameridian Sharkaphant NFT', 'AQMS'), + (0x54b50b7fe02500e9dab22bd19b6173b63397fe1f, 'Celestial', 'XCELEST'), + (0x54c72f923832e8443c37f7803dae6cbbdd33c5bb, 'Houston Astros® Cristian Javier World Series Broadcast RWB 1149 Rare', 'MLB-22TNP-R-WSB3-M-RWB'), + (0x54c953568912524e677375d7e0acbef56bd7a512, 'St. Louis Cardinals® Dylan Carlson Rookie and Future Phenoms Facsimile Signature White 70 Rare', 'MLB-INC21-R-RC70-WHT'), + (0x54cae30e1762815ffec1c61d6c99b5126148c793, 'Niclas Füllkrug SVW Top Players Facsimile Signature Team Color TK-34 Epic', 'BUND-22TK-E-TPTK-34-S-TMC'), + (0x54ceb249f10f30404f844ddfbd1c930ced1e7a89, 'Pittsburgh Pirates® Cole Tucker Rookie and Future Phenoms Facsimile Signature Blue 64 Super Rare', 'MLB-INC21-S-RC64-BLU'), + (0x54d44053f1756ba7abb08f359689d111baf9d542, 'Godzilla RAT Pages 12 & 13 Comic Page Color 11 Super Rare', 'GDZ-RAT21-S-CP11-A-COL'), + (0x54d949bdddb9d98c0327661973f03cc757fe9703, 'Staked PixCat', 'SPCAT'), + (0x54e0ecfcaec858ce6263efb92cbb9f23c5a3773b, 'Hallowed Darkness', 'HDRK'), + (0x54e2f2cad55efb24703aae2712b30fe5d261f35a, '1954 Godzilla Rookie Card Color 1 Super Rare', 'GDZ-RAT21-S-RC1-S-COL'), + (0x54e49edc1af74a0f32515aa64bdef7ad35544994, 'New York Mets® Jonathan Villar 2B/SS Base Motion Vintage Stock 479 Super Rare', 'MLB-S221-S-B479-VS'), + (0x54e957e991546a40032bbf18ba5fc2a627d2dcee, 'The Chocolate Factory', 'CHOC'), + (0x55022b8846c7515369a46d7f405c18802d6c409f, 'DegenFairies', 'DF'), + (0x5507bea75921c64beff7cb4aad2215c35f8eb436, 'King Ghidorah and Godzilla Base Collectible Blue 17 Common', 'GDZ-RAT21-C-B17-S-BLU'), + (0x5509067de8635a7e727e0950c9b57c5d2d71efef, 'Frozen Walrus Commemorative Coin', 'FWCOIN'), + (0x5512dcac5d4e8a95047b886493fe781c60ee570a, 'Chicago Cubs® Willson Contreras Pure Power Facsimile Signature Reward White 3313 Legendary', 'MLB-22PRICR-L-PPR8-M-WHI'), + (0x55151675ddf33179f3faef0709615601df0b22a2, 'Degen Saitama', 'DegenSaitama'), + (0x551632ffc1b9ce2ebc670632879ca171c667dd52, 'San Diego Padres™ Jake Arrieta Base Independence Day RWB 214 Rare', 'MLB-22S1-R-B211-M-RWB'), + (0x5522f489842c09b8c90da26026bbf888c5fe4d0b, 'St. Louis Cardinals® Harrison Bader Base Vintage Stock 225 Super Rare', 'MLB-22S1-S-B222-M-VS'), + (0x552ef95f1091c0603d9cb6c3754c551af9e00afa, 'St. Louis Cardinals® Matt Carpenter 3B Base Static White 566 Common', 'MLB-S221-C-B566-WHI'), + (0x553684e783d50d856000e7debf8e204be973632f, 'Houston Astros® Alex Bregman Popular Demand Facsimile Signature Slab Teal 3512 Legendary', 'MLB-22PRI-L-PDFS1-M-TEA'), + (0x55384325b08b554495cb0555e857749d87b20f94, 'ChadDoge Santa Clause', 'CDXMAS'), + (0x5558703a6bd03130941a4fd5795291012c9fa9d7, 'Diamond', 'DMND'), + (0x555da7e7ff0738285a52808971c0cc4589e02755, 'explorations', 'xplr'), + (0x555dcbf67689c16483eaf31ddf14df900c121fd1, 'National League™ Juan Soto Base Pink 1294 Uncommon', 'MLB-22PRI-U-B215-M-PNK'), + (0x555f74c2be2a02a04279c2d7e052e36d9773255e, 'Kansas City Royals® Base Motion Platinum 608 Epic', 'MLB-S221-E-B608-PLA'), + (0x556a97b5a292dae08f6e4f3dc759d57f704bac46, 'Pittsburgh Pirates® Keone Kela P Base Motion Vintage Stock 351 Super Rare', 'MLB-S221-S-B351-VS'), + (0x557892fbc9e8217a10a9fda4a05ecb78c1eb7e68, 'Milwaukee Brewers™ Freddy Peralta Base Glitch 13 Uncommon', 'MLB-22S1-U-B13-M-GLI'), + (0x5578f9be383807286884e12f85914d534c16d0fc, 'Shrimpy''s Music Shrimps', 'SHRIMP'), + (0x557a81b1409bdc76f2bb0090e5b1fedeab44f92a, 'Moussa Diaby B04 Animation Gold Refractor S4-56 Legendary', 'BUND-21TS4-L-AS4-56-V-GOL'), + (0x55827385dba142450f7e7b771076755492e55242, 'New York Yankees® Deivi Garcia Rookie and Future Phenoms Facsimile Signature White 56 Rare', 'MLB-INC21-R-RC56-WHT'), + (0x5584f87d4ecbfad2325ae9887c3a5ab953cfae29, 'Manu Koné BMG Ascendent Magenta TK-44 Uncommon', 'BUND-22TK-U-ASCTK-44-S-MAG'), + (0x558845ce60d4abe692fdc64745e8eea1a871d52b, 'St. Louis Cardinals® Yadier Molina Base Blue 1026 Common', 'MLB-22PRI-C-B39-M-BLU'), + (0x5589ffa73a9dd9797d2f3d2377e20dff7080faf3, 'Kansas City Royals® Hunter Dozier 3B/OF Base Motion Platinum 443 Epic', 'MLB-S221-E-B443-PLA'), + (0x558ce7fd37c4074eae190b406eb166ea1f78a665, 'St. Louis Cardinals® Paul Goldschmidt National League Base Blue 3 Rare', 'MLB-22ASG-R-B3-M-BLU'), + (0x558dc892c2065dcf24251a3d9425e6efe1fa7a22, 'Pittsburgh Pirates® Max Kranick Base Independence Day RWB 325 Rare', 'MLB-22S1-R-B321-M-RWB'), + (0x558e34c7f08d8bfa16a9971c62ab92e48156225e, 'Baltimore Orioles® Cedric Mullins OF Base Motion Vintage Stock 487 Super Rare', 'MLB-S221-S-B487-VS'), + (0x5598fefd84da43602e5214cf12d4f3557691f042, 'Houston Astros® Base Motion Vintage Stock 545 Super Rare', 'MLB-S221-S-B545-VS'), + (0x559a396d1d8a3a6f88e16f97860578f4c4d03ed2, 'VfL Wolfsburg Kevin Mbabu Base Players White 32 Common', 'BUND-SC21-C-BP32-WHT'), + (0x559cc020324557194fe828240955ebfc9118d3dd, 'Yann Sommer BMG Base Red S4-39 Uncommon', 'BUND-21TS4-U-BS4-39-S-RED'), + (0x559dd28bb7c7fac4f6d26a55e830536e02fbf235, 'Woo-yeong Jeong SCF Motion Rainbow Refractor S1-06 Super Rare', 'BUND-21TS1-S-MS1-06-V-RAI'), + (0x55a41741a5f737ce420156081f9145b444d41636, 'Plant A Tree NFT', 'PATNFT'), + (0x55a6f3dce4a0365217330ec0819305ee884bbdfb, 'smol nanaz', 'NANA'), + (0x55a9c0e1c92d4b4617ac699bd1c20162a01e5e6c, 'Colorado Rockies™ Trevor Story SS Base Static Gold 475 Uncommon', 'MLB-S221-U-B475-GOL'), + (0x55aeca14605922d2d48c7fdd0f1369943680e079, 'Los Angeles Dodgers® Max Scherzer Short Print White 310 Rare', 'MLB-22S1-R-SP65-M-WHI'), + (0x55b029214d270709f55b0672c35e296343deba30, 'IN THE AGE OF DIGITAL SKIN', 'DS'), + (0x55bdaff7b3914268a1fdfea33b3855ab8307e1d7, 'Boston Red Sox® Hunter Renfroe Base Vintage Stock 174 Super Rare', 'MLB-22S1-S-B173-M-VS'), + (0x55c00ad06e08eb43b52aff3ebc567b3d751dc176, 'A Bavarian Autumn', 'BAVAUT'), + (0x55c019dedcc72733a12f4906fc86bf0059b617ab, 'Oakland Athletics™ Matt Olson 1B 1986 Anniversary Facsimile Signature Motion Chrome 86TC-45 Legendary', 'MLB-S221-L-1986AFS86TC-45-CHR'), + (0x55c190cf0542a663cbe77d8317cb66b3ac84b1e4, 'Janni Serra DSC Base Red S4-48 Uncommon', 'BUND-21TS4-U-BS4-48-S-RED'), + (0x55c4468b86dd53654fe4b6278f4cf3c2ba4dffa3, 'Angels® Kurt Suzuki Base Independence Day RWB 171 Rare', 'MLB-22S1-R-B170-M-RWB'), + (0x55c797defc5d5dc91c767d27daaf7f450c29e257, 'DSC Arminia Bielefeld Manuel Prietl Base Players Gold 81 Rare', 'BUND-SC21-R-BP81-GLD'), + (0x55d39c46bc551df96365ceb16669eb1cf49fa570, 'Detroit Tigers® Robbie Grossman OF Base Static White 509 Common', 'MLB-S221-C-B509-WHI'), + (0x55d9d6215c13f7ee2776e9171cf493287341e3d5, 'Konstantinos Mavropanos VFB Base Red S2-15 Uncommon', 'BUND-21TS2-U-BS2-15-S-RED'), + (0x55db21ee1a14ef31ae498397259be72f90e2564c, 'Rapperz', 'Raprz'), + (0x55e254d5c2ae07b5d433ba06dfddbc9e6508f101, 'Houston Astros® Michael Brantley Postseason Base Navy 55 Uncommon', 'MLB-21POST-U-B55-M-NVY'), + (0x55e343c27b794e7fcfebef4bea3de24093418c50, 'Moremoney Stable Lending 2', 'MMSL2'), + (0x55e81f1da688198384d61a21d90b865264b33a98, 'Dani Olmo RBL Top Players Team Color TK-06 Rare', 'BUND-22TK-R-TPTK-06-S-TMC'), + (0x55f34958450bec8e214d65cc49bc918ae4428d73, 'Chicago White Sox® Tim Anderson Facsimile Signature Blue 64 Uncommon', 'MLB-22S1-U-FS3-S-BLU'), + (0x55f95aa886fcbe14ec71400be66fb7c523c37312, 'San Diego Padres™ Tommy Pham OF Base Motion Rainbow 399 Rare', 'MLB-S221-R-B399-RAI'), + (0x55fd419fdfb8843f8ae15ad610aa96b4ae2cdc95, 'Oakland Athletics™ Sean Murphy C Facsimile Signature Static Blue 349 Super Rare', 'MLB-S221-S-FS349-BLU'), + (0x55fd93a0f9fbe3b05691f1e32b3b02f8f6d0ec9c, 'Super Rare Comic 16 1-16 Bazooka Joe 2021 NFT', 'BZK-S-16C'), + (0x55fe53013e5f257eab1b68f9f605b2a952642f2b, 'Chicago Cubs® Austin Romine C Base Static White 342 Common', 'MLB-S221-C-B342-WHI'), + (0x56009e2d0f9a3cba0bdd6c893652e25e5e55d2fb, 'Minnesota Twins® Twins® Up The Middle Base Static White 553 Common', 'MLB-S221-C-B553-WHI'), + (0x5602dcf31f081e360454bc36003262bc2f95a7ac, 'Liam Kelly MOT Base Purple SP-25 Super Rare', 'SPFL-21SPSS-S-BSP-25-A-PUR'), + (0x560e39ddb641324a260ff7d7d4f86fa5c66d9652, 'Fief Craftsman Wooden Crates', 'WoodenCrates'), + (0x561d04b4b91d1afc9d2df75aac987bb8f3e9fa0d, 'HiveFive Side Collection', 'HFSC'), + (0x561e557f80297ef743197255ea38d955bff9cba1, 'Proof of Sw3g', 'POS'), + (0x5622883f17de343da2ee16de7d0ae9a504e83a2b, 'Aarón Martín M05 Animation Gold Refractor S4-53 Legendary', 'BUND-21TS4-L-AS4-53-V-GOL'), + (0x5622af7872f863b8b089aba1c1cc1b31f628481e, 'probably wrong 1Offs', '1Off'), + (0x5627dbf993a31cf1433da8f9723304ae83003c8b, 'Mothra Riverscape Traditional Art Black and White 4 Uncommon', 'GDZ-RAT21-U-TA4-S-BW'), + (0x5640d1dc9d2b93bf22eb59f68c2596e5bc83decc, 'New York Yankees® Estevan Florial OF Base Motion Vintage Stock 406 Super Rare', 'MLB-S221-S-B406-VS'), + (0x5651f210db1d73bd5b7902e2a2bb475d3baa0fa8, 'Hodor the HODLer Animation Facsimile Signature Color 17 Super Rare', 'GPK-NFT22-S-AFS17-A-COL'), + (0x5652669673a8a970fa3eefc63f4fc1b511e3e1d6, 'Houston Astros® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 11 Legendary', 'MLB-21S2SC-L-21S2SCR11-M-TC'), + (0x5659e77ec3fe199cff249f0111677ef184cd90a9, 'Texas Rangers® Khris Davis DH Base Motion Platinum 584 Epic', 'MLB-S221-E-B584-PLA'), + (0x565f298abb846df620e7635c033a7086dd94d587, 'Marvin Ducksch SVW Top Players Team Color TK-33 Rare', 'BUND-22TK-R-TPTK-33-S-TMC'), + (0x56694f1ec7b76a9e0329155411d5efaaf7dfae0b, 'New York Yankees® Giancarlo Stanton Postseason Base White 74 Common', 'MLB-21POST-C-B74-S-WHI'), + (0x566c02f5e5493fb14809c1b549084d63efb86128, 'TheCrypticWolves Colorful Series', 'WOLF'), + (0x567c598b439ff97f4e0309300bffd0169456521e, 'Milwaukee Brewers™ Corbin Burnes P Base Static White 619 Common', 'MLB-S221-C-B619-WHI'), + (0x5681f613f7ca3a70bc5fce0e5e4cf100c08af296, 'American League™ Marcus Semien Base Blue 1263 Common', 'MLB-22PRI-C-B208-M-BLU'), + (0x568911ce10bab2165221c776ccd23ed7a4a4e787, 'Miami Marlins® Sandy Alcantara P Base Static White 594 Common', 'MLB-S221-C-B594-WHI'), + (0x56894e2a94a4f514bba32afadae16448c35b5341, 'San Diego Padres™ Ryan Weathers Base Vintage Stock 70 Super Rare', 'MLB-22S1-S-B70-M-VS'), + (0x568ae9d31d55e9d2135f54324c9ae8e80317cee0, 'Philadelphia Phillies® Bryce Harper Base Pink 1021 Uncommon', 'MLB-22PRI-U-B60-M-PNK'), + (0x568ec491453f5a95c1631f9a9cf09f6a86975762, 'Cosmic Void', 'VOID'), + (0x569073c15e2fce1b11a44f91db0e0296cb5c8227, 'UC22-PDISecuritySolutions', 'PDI2022'), + (0x569aa0a9ac274f442416cfbc7431e96668fbaccd, 'Los Angeles Dodgers® Mookie Betts Pure Power Slab White 2108 Epic', 'MLB-22PRI-E-PP5-M-WHI'), + (0x56a98bed8438e87519e0882d64dade1820a5bc6d, 'Jonathan Burkardt M05 Club Phemons Team Color S4CPH-15 Epic', 'BUND-21TS4-E-CPHS4CPH-15-V-TMC'), + (0x56a9a00aece39f22da77c308519ec1ca9e2d6326, 'New York Mets® Pete Alonso 1987 35th Anniversary Chrome T87C-60 Super Rare', 'MLB-22S1-S-1987AC45-M-CHR'), + (0x56ad2f7bf60d6cf123c0bd62751d4ae8faf2a53e, 'Pittsburgh Pirates® Ke''Bryan Hayes 3B Base Static White 644 Common', 'MLB-S221-C-B644-WHI'), + (0x56b3687fc881a17b01a13ebab25770f9502911ec, 'Houston Astros® Base Motion Rainbow 545 Rare', 'MLB-S221-R-B545-RAI'), + (0x56bacca232c8300d568189d460d99f9e5ce4135e, 'Milwaukee Brewers™ Josh Hader Inception Base Blue 56 Uncommon', 'MLB-INC21-U-IB56-BLU'), + (0x56c51bb666874c055172277d1ced3479cc3a7da8, 'Angels® Shohei Ohtani Short Print White 1 Rare', 'MLB-22S1-R-SP1-M-WHI'), + (0x56cc55947e0ee281cb3af3fcc7408b6d4b6af92a, 'Smolr Doomers', 'SMOLRDOOM'), + (0x56cd8097ccf8bda6d4056655ed825d54434d6f33, 'Punks', 'PUNKS'), + (0x56d24022fd463f1427301804f5c4289d5095ac63, 'Kamacuras Base Collectible Blue 7 Common', 'GDZ-RAT21-C-B7-S-BLU'), + (0x56d7535a4d46549b3d5ce743530bd640ebcd5c4d, 'VfB Stuttgart Marc-Oliver Kempf Base Players Team Color 87 Uncommon', 'BUND-SC21-U-BP87-TMC'), + (0x56dd17d3da76564e63ef35a72cd45cb919401196, 'Managers', 'MNG'), + (0x56dd4550bf859727858658d020f4b6f91e3049fc, 'Atlanta Braves™ Ozzie Albies 2B Short Print Motion White 500 Super Rare', 'MLB-S221-S-SP500-WHI'), + (0x56e06b9d4fe9e9e7e6b7021546ae474b8d60cfb5, 'Miami Marlins® Garrett Cooper 1B Base Motion Platinum 565 Epic', 'MLB-S221-E-B565-PLA'), + (0x56e35049dfbe97f9525079ffa19ccc5faf822286, 'Minnesota Twins® Jorge Polanco SS Base Static White 598 Common', 'MLB-S221-C-B598-WHI'), + (0x56eb21a0a7dbfac23b7ed60d2720b5f333527ac2, 'Miami Marlins® Nick Neidert Rookie and Future Phenoms Facsimile Signature White 44 Rare', 'MLB-INC21-R-RC44-WHT'), + (0x56efa395e63d964cc05a3f3822c6c206e6eda523, 'Kansas City Royals® Whit Merrifield Inception Base White 41 Common', 'MLB-INC21-C-IB41-WHT'), + (0x56f1b824b06a5ccf93f72d817b1a4b0de3df58ea, 'Minnesota Twins® Ryan Jeffers Silver Signings Facsimile Signature Silver 27 Super Rare', 'MLB-INC21-S-SS27-SLV'), + (0x56f33e5f72eb756e44598991ab22d9c0e2ddbfc4, 'Drunk Dads', 'DRUNK'), + (0x56f366939d1d41bfc0815146dcec9b4ac8808de6, 'San Diego Padres™ Jake Cronenworth Rookie and Future Phenoms Facsimile Signature Black 66 Legendary', 'MLB-INC21-L-RC66-BLK'), + (0x56fd0bfef24e0526cd3dd641cdaaf31cba2d957f, 'Europe Trip 2021', 'EU21VA'), + (0x57006dc36a667e6b480cb834039a17fed353bcb7, 'JellyTree', 'JELLYTREE'), + (0x57067ec31c0f73abbc5542c414dec53e9c673211, 'New York Mets® Pete Alonso 2022 Definitive Gold 19 Legendary', 'MLB-22LEG-L-22DEF19-M-GLD'), + (0x5706d653b26ab8a1ca6f012433f7e61bf2d02e32, 'Godzilla RAT Page 3 Comic Page Color 3 Rare', 'GDZ-RAT21-R-CP3-S-COL'), + (0x570ac38ecb3fa76e1feaeb1d8450a149154b2ace, 'Common Comic 62 2-14 Bazooka Joe 2021 NFT', 'BZK-C-62C'), + (0x571154a63acc852feca23fc41d950532bb5347b7, 'Texas Rangers® Brock Holt Base Vintage Stock 113 Super Rare', 'MLB-22S1-S-B112-M-VS'), + (0x57190735e3f8acb19b8df00a7bdeb041f92295af, 'Super Rare Comic 100 2-52 Bazooka Joe 2021 NFT', 'BZK-S-100C'), + (0x571aa4caaa7e538104d5d5e74be299e055eda2ef, 'Rare Comic 41 1-41 Bazooka Joe 2021 NFT', 'BZK-R-41C'), + (0x571dffb60ceebae295c8d1696eb05e6f0ae9292e, 'Jurgen Ekkelenkamp BSC Club Phemons Silver S4CPH-11 Super Rare', 'BUND-21TS4-S-CPHS4CPH-11-S-SLV'), + (0x572318c0938d33d7e27da8a41a76fda195e2d44e, 'ForeverHexx', 'HEXX4EVA'), + (0x5727462c1fbac9fb5f37304b56d36cceaac0b817, 'Los Angeles Dodgers® Will Smith Base Vintage Stock 83 Super Rare', 'MLB-22S1-S-B83-M-VS'), + (0x572c8137a91614e682725f15b8652b56e2626d44, 'Dinos Escap', 'DEP'), + (0x57343af05173fb50218ad6e507424fdf8088da53, 'New York Yankees® Rougned Odor Base Glitch 5 Uncommon', 'MLB-22S1-U-B5-M-GLI'), + (0x57372510578e4d2c7248ee0070e469772743a73a, 'CyberstellaDot', 'CSDOT'), + (0x573c61b609941c4207b66894be7e8f881eccb42f, 'metapep', 'METAPEP'), + (0x574021c00e2c70db8b8b02521e8f151fb443d5a3, 'San Diego Padres™ Base Independence Day RWB 124 Rare', 'MLB-22S1-R-B123-M-RWB'), + (0x5747d8927a689d233720c1b59165d253c32c5cc2, 'National League™ 2021 RBI Leaders Base Independence Day RWB 181 Rare', 'MLB-22S1-R-B180-M-RWB'), + (0x574a314d58c659e7edd5d4f746e5d6bb01596c3a, 'FC Bayern Munich David Alaba Base Players Team Color 1 Static Facsimile Signature Rare', 'BUND-SC21-R-BP1-SFS-TMC'), + (0x575332ed9dece66cbcc7a040c7d1ffb486d12442, 'Los Angeles Dodgers® Max Scherzer Base Glitch 310 Uncommon', 'MLB-22S1-U-B306-M-GLI'), + (0x5757833d3ccd4ca4be22558aef0dd71736156d6e, 'Laura', 'LAURA'), + (0x57666b5c07430084de2edcac3e2e8a4a5c53104c, 'Veggies', 'VEGGIE'), + (0x576ea99f1e6623e02bfee98167425359e38ac087, 'Miami Marlins® Jordan Yamamoto Rookie and Future Phenoms Facsimile Signature Red 43 Epic', 'MLB-INC21-E-RC43-RED'), + (0x57739b983046a87c4d35f3cdb7d9a1f1c4376a31, 'Chicago White Sox® Luis Robert Generation NOW Team Colors GN-10 Epic', 'MLB-22S1-E-GN10-M-TMC'), + (0x57787fc5071b948f69dae5aada3f96d1b8fcdf1e, 'Fuzzy Fukkerz', 'FZYFKRZ'), + (0x577db58733c0b4d7949220e70b249cbb09a74824, 'San Francisco Giants® Kevin Gausman Postseason Base Navy 30 Uncommon', 'MLB-21POST-U-B30-M-NVY'), + (0x578c8862f8e61cd956dcc5e39daba73cc2ae3e15, 'Angels® Jared Walsh 1B Base Static Gold 575 Uncommon', 'MLB-S221-U-B575-GOL'), + (0x578f260fd25a5989678328ae98ea60c1c5fb17fb, 'Baltimore Orioles® Pedro Severino Inception Base Blue 8 Uncommon', 'MLB-INC21-U-IB8-BLU'), + (0x57913e963edb059ebd494287032a4630bac4bded, 'Houston Astros® Enoli Paredes P Base Static Gold 569 Uncommon', 'MLB-S221-U-B569-GOL'), + (0x579255983f70c59c0ac05483c4a792c83ffe93dc, 'Colorado Rockies™ Raimel Tapia OF Base Motion Vintage Stock 359 Super Rare', 'MLB-S221-S-B359-VS'), + (0x579269a5b4b2341cf309f4a2b51c5b4f06678208, 'Philadelphia Phillies® Wild Card Newspaper BW 1038 Common', 'MLB-22TNP-C-WCN3-M-BW'), + (0x5795284e6b116c7a601e8d2e71b14b1fce9846f1, 'Toronto Blue Jays® Vladimir Guerrero Jr. Facsimile Signature Blue 300 Uncommon', 'MLB-22S1-U-FS23-S-BLU'), + (0x579af2e1a60d262d8ad5dba5ca681832e00cc9d1, 'Frequency', 'FRQncy'), + (0x57ae2f287ea585d541a1ddf7051b4a4013bf0aad, 'Common Comic 84 2-36 Bazooka Joe 2021 NFT', 'BZK-C-84C'), + (0x57ba5b8e8ed1f955800094af4d1b33e9ec9c7901, 'San Diego Padres™ Luis Campusano C Base Motion Rainbow 381 Rare', 'MLB-S221-R-B381-RAI'), + (0x57c73d093e1b3eb5e576b146995f94eca0b79942, 'Chicago White Sox® Garrett Crochet P Super Short Print Motion White 362 Epic', 'MLB-S221-E-SSP362-WHI'), + (0x57c9c11233bc8ac4aa2ae04d32ce06930a9a04a8, 'Gemini Gene Base Color 12 Common', 'GPK-NFT22-C-B12-S-COL'), + (0x57ca33ccc9b9846cb27847951bb79b04c99ac822, 'Seattle Mariners™ Kyle Lewis Base Blue 1025 Common', 'MLB-22PRI-C-B51-M-BLU'), + (0x57cb629818e3d77bffff881853a2deb04b3ef164, 'Common Comic 71 2-23 Bazooka Joe 2021 NFT', 'BZK-C-71C'), + (0x57cd6ac437bd2a85ffaff7c5f0da946bf207ebc7, 'Los Angeles Dodgers® Corey Seager Base Pink 1094 Uncommon', 'MLB-22PRI-U-B96-M-PNK'), + (0x57d4ff4bc74b60da295f05eb3dea69c86dfcd0d0, 'San Francisco Giants® Kris Bryant Base Glitch 86 Uncommon', 'MLB-22S1-U-B86-M-GLI'), + (0x57d81df86a23bbe6218f6e29989ff8adee8b9f3a, 'Borussia Monchengladbach Yann Sommer Top Saves Team Color TS-4 Epic', 'BUND-SC21-E-TSTS-4-TMC'), + (0x57da03e5da08ddfd50f9d7233d6daecffb2c80c3, 'FSV Mainz 05 Stefan Bell Base Players White 63 Common', 'BUND-SC21-C-BP63-WHT'), + (0x57db5297cb69864dc29bf768fb3b8f1e4f677a37, 'Angels® Shohei Ohtani Generation NOW Team Colors GN-6 Epic', 'MLB-22S1-E-GN6-M-TMC'), + (0x57df7f100e5b13b5aecfc033837b524dc926b872, 'Los Angeles Dodgers® Mookie Betts 1987 35th Anniversary Chrome T87C-43 Super Rare', 'MLB-22S1-S-1987AC32-M-CHR'), + (0x57e1e60a4a600d165c9cf28969d3d1d80fadee8c, 'Eye Candy Digital Golden Animation Color 4 Epic', 'GPK-NFT22-E-GA4-A-COL'), + (0x57e59fed9a0963c9b281511a458fb8814dae71fb, 'Chicago White Sox® Zack Burdi P Base Static White 483 Common', 'MLB-S221-C-B483-WHI'), + (0x57e8911b0d8ae6484aba003b816c5e35cc6b86e4, 'NFT Wild', 'NFWI'), + (0x57e99671c470bdd1b985e4774ef04bfa9776368d, 'Fake collection tst vrf', 'tst'), + (0x57fd1c9e81402d0e7fce64678b94f463a319e0be, 'TimeFrogsBanners', 'TFROGSBANNER'), + (0x5803cf981e8fb942b13d795860bf13159a087c14, 'TSG Hoffenheim Diadie Samassékou Base Players Team Color 26 Uncommon', 'BUND-SC21-U-BP26-TMC'), + (0x580480125414251ca86616b1c308ce0c59d02a0b, 'Tampa Bay Rays™ Wander Franco 1987 35th Anniversary Chrome T87C-58 Super Rare', 'MLB-22S1-S-1987AC43-M-CHR'), + (0x5808161ed31d284a3d72a802a51a9155f69fb0f4, 'New York Yankees® Aaron Judge American League Base Blue 13 Rare', 'MLB-22ASG-R-B13-M-BLU'), + (0x5808ea7d522e64f3e35e2adec32267f58670f358, 'Butterflies', 'ABF'), + (0x5814faa3de8dd2402fb7694ac26eff259ebe67a9, 'Pittsburgh Pirates® Ke''Bryan Hayes Inception Base Red 78 Rare', 'MLB-INC21-R-IB78-RED'), + (0x581db8ed5df0d0c35cf3f3a5ec9c9a8683857a0f, 'FarmerWin', 'FWIN'), + (0x582242ea898849a73084b8e6d022b51f821e2bd3, 'We3 Toronto Dinner Club: Women in Web3', 'We3TorontoDinnerClub'), + (0x5822a74a58304d8e89cb45ebadb56ec8f0db31a8, 'Angels® David Fletcher 2B/SS Base Motion Platinum 624 Epic', 'MLB-S221-E-B624-PLA'), + (0x58252bb7d3318d248eefba3582edb2dcd94d3d7f, 'SOLITUDE', 'SLT'), + (0x582d2cabbf6cebe7ff78d1c79b34e789df0485fd, 'Godzilla RAT Page 14 Comic Page Color 12 Rare', 'GDZ-RAT21-R-CP12-S-COL'), + (0x58387d3491ae1d7523feeb7d1cb42e1ec0ed76dc, 'Arizona Diamondbacks® Taylor Widener P Base Static White 481 Common', 'MLB-S221-C-B481-WHI'), + (0x583ef6215c651aa6419483189574a1e3a953dc92, 'Common Comic 76 2-28 Bazooka Joe 2021 NFT', 'BZK-C-76C'), + (0x584483db4d25ef9bb87a3e0d2faf9185b747fe37, 'St. Louis Cardinals® Tyler O''Neill OF Base Motion Vintage Stock 477 Super Rare', 'MLB-S221-S-B477-VS'), + (0x584903e34a4f3cfe0ee724e92902b555a6de5b43, 'Detroit Tigers® Daniel Norris P Base Motion Vintage Stock 558 Super Rare', 'MLB-S221-S-B558-VS'), + (0x584eee825464f1c80b10efb336f47e130551c40d, 'Los Angeles Dodgers® Max Muncy 1B/2B 1986 Anniversary Static Team Colors 86B-49 Super Rare', 'MLB-S221-S-1986A86B-49-TMC'), + (0x58528dc069697878e77e092b152be3662451a089, 'Chicago White Sox® Dylan Cease P Base Motion Rainbow 435 Rare', 'MLB-S221-R-B435-RAI'), + (0x5852ca6468e126b8cbb738d8567722b334b0a0af, 'Los Angeles Dodgers® Trea Turner Base Blue 1090 Common', 'MLB-22PRI-C-B65-M-BLU'), + (0x5855124c579383ddb944d3e93d7511a6f629951c, 'Right Clickers', 'RCLK'), + (0x5857ad98d347b176e437444bebad473c9083b1fe, 'Keys to the Metaverse', 'K2M'), + (0x585fb21cb473c6583501206851fee2a509dcffa3, 'VfL Wolfsburg Renato Steffen Base Players Team Color 34 Uncommon', 'BUND-SC21-U-BP34-TMC'), + (0x586141674c1d440cdeadd1ac8feb1c9fa9ee2c72, 'Megalon Base Collectible Blue 2 Common', 'GDZ-RAT21-C-B2-S-BLU'), + (0x58694fcb724afa84a934cb5b03384aebaf788e44, 'San Francisco Giants® Kris Bryant Regular Season Division Winners RWB 41 Rare', 'MLB-21POST-R-R41-M-RWB'), + (0x587652687053204ef08d5852ed77f3d20a724af3, 'Oakland Athletics™ Base Glitch 210 Uncommon', 'MLB-22S1-U-B208-M-GLI'), + (0x587f9ee006606e7b2da7cbe16432093753c6cf78, 'owls', 'OWLS'), + (0x588618da72ae6c262d967320c2d94ae0863b0d6d, 'Takuma Asano BOC Base Red S4-65 Uncommon', 'BUND-21TS4-U-BS4-65-S-RED'), + (0x588a686ea6f86571f8ec87fe080638d9c197f9df, 'Peintures Mouvantes', 'PM'), + (0x5891736b3881ccc74b46b62cc0d7ef0f6bb9b700, 'Common Comic 59 2-11 Bazooka Joe 2021 NFT', 'BZK-C-59C'), + (0x58962247288b9fa5b45222936168c6c0942c0a23, 'Borussia Monchengladbach Florian Neuhaus Young Stars Team Color 151 Super Rare', 'BUND-SC21-S-YS151-TMC'), + (0x589c08c48ee75f337f995a4b8279c67ae8422b7c, 'user', 'user'), + (0x589cdfaa690e9df774933dafc03be66048173f36, 'Debut Collection', 'DABU'), + (0x589ecc18254f5ae3f68366ed3fddb750e544e8e8, 'Houston Astros® Yordan Alvarez World Series Broadcast RWB 1158 Rare', 'MLB-22TNP-R-WSB6-M-RWB'), + (0x589f6c548d3a1e729c5a9785ddceb7f5e07fc03a, 'Curo Art', 'CR'), + (0x58b117e1b7b704b6f8b4095e5a79936190d9f803, 'Chicago White Sox® Lucas Giolito Postseason Base Red 13 Rare', 'MLB-21POST-R-B13-M-RED'), + (0x58b283330fddfe95c3c33f146f5d11f09b27e1bc, 'Matthias Ginter SCF Color Splash White TK-64 Uncommon', 'BUND-22TK-U-CSTK-64-S-WHI'), + (0x58b74411d33a1f7fb32b90b99738110e16fcf368, 'Atlanta Braves™ Ian Anderson Postseason Base White 64 Common', 'MLB-21POST-C-B64-S-WHI'), + (0x58b87df79486f046fed86f10bd9a53dae1b398f2, 'Houston Astros® Michael Brantley Postseason Base White 55 Common', 'MLB-21POST-C-B55-S-WHI'), + (0x58c4134f0dab544fe52d00a33faf791d55a61d4f, 'CheeseGame: Cows', 'COW'), + (0x58c71e1014d412ea520613dcd716993399f856ef, 'Toronto Blue Jays® Vladimir Guerrero Jr. Rookie and Future Phenoms Facsimile Signature White 80 Rare', 'MLB-INC21-R-RC80-WHT'), + (0x58cd18174aeba605459f0bfad10ed9b05711a25d, 'American League™ Adolis Garcia Base Pink 1301 Uncommon', 'MLB-22PRI-U-B193-M-PNK'), + (0x58d31b68152f9ae626af4b01a2ce58b8c7a0f61f, 'Baltimore Orioles® Hanser Alberto Inception Base White 7 Common', 'MLB-INC21-C-IB7-WHT'), + (0x58d51e3e2239392a3f8d6622b791022cfd222fb5, '1/1 NFT Collection', 'PAFA'), + (0x58d83849de6375859a7506e7c1ddc2c62f300429, 'The Debut', 'TD'), + (0x58e33ca35b91f809f8db13fd3b9f24c855e4fb28, 'Zombie Avalanche', 'ZombA'), + (0x58e6269ccce37b6e5abe7cad1fc5082853945b26, 'Edmond Tapsoba B04 Limitless Rainbow Parallel TLC-03 Epic', 'BUND-22TLC-E-RLSSTLC-03-A-RBW'), + (0x58edf40d89e5f638bdec42cdb58d39df11375b02, 'Los Angeles Dodgers® Max Scherzer Postseason Base White 38 Common', 'MLB-21POST-C-B38-S-WHI'), + (0x58fb9740ff9680ca72525db393fe174e456c80b6, 'Mornigstar Champions', 'MSC'), + (0x5905b5d8d492a17b922292b64b41b75aad1a5342, 'Wolfi Land''s Artists Collection', 'WAC'), + (0x5907f36fc8710efc9d2f2e81de8fb4332a589f05, 'Useless Land', 'TRASH'), + (0x591b3963ed495f6b5ed3bc00148695f5f8ad7ffb, 'Cincinnati Reds® Joey Votto Facsimile Signature Red 290 Rare', 'MLB-22S1-R-FS21-S-RED'), + (0x59248244095d69d9b8b9ecfa76171f53b8520c29, 'Branimir Hrgota SGF Animation Gold Refractor S4-50 Legendary', 'BUND-21TS4-L-AS4-50-V-GOL'), + (0x5926fbb1f2b1b5af349b34c72da299d57bf367b7, 'Los Angeles Dodgers® Champion Fireworks Base Motion Rainbow 490 Rare', 'MLB-S221-R-B490-RAI'), + (0x592952e2535ebd99504de1ae8fc9a2c0b4b0a9bd, 'FC Schalke 04 Benito Raman Base Players Team Color 59 Static Facsimile Signature Rare', 'BUND-SC21-R-BP59-SFS-TMC'), + (0x5929db6f25c24315fbdcf77a8c4583c425bb43ea, 'Chicago White Sox® Yermin Mercedes Base Glitch 141 Uncommon', 'MLB-22S1-U-B140-M-GLI'), + (0x592a620abd148a3480cd3fea7e64e9ba6e27fdde, 'Miami Marlins® Garrett Cooper 1B Base Static White 565 Common', 'MLB-S221-C-B565-WHI'), + (0x593d50136bc47263df72039888ea264f2392255e, 'Peaches N Strawbs', 'PNS'), + (0x593f6a3898a6621170c5e41470afda1601c8f790, 'Chicago White Sox® Gavin Sheets Base White 12 Common', 'MLB-22S1-C-B12-S-WHI'), + (0x593fff15d9b13e96c9db9ad9e48a222cb86da0d4, 'Atlanta Braves™ William Contreras Second Place Palm Trees 13 Super Rare', 'MLB-22ASG-S-SEC13-M-PLM'), + (0x5941de9bcde0fc383f42effdf8dd4142b755983d, 'Baltimore Orioles® Trey Mancini Popular Demand Facsimile Signature Slab Teal 3533 Legendary', 'MLB-22PRI-L-PDFS16-M-TEA'), + (0x594451230204ee15afd9130cfc30a218511c8f00, 'Sport-Club Freiburg Christian Günter Base Players Team Color 36 Uncommon', 'BUND-SC21-U-BP36-TMC'), + (0x5950c0bea36c9d1bbff731bd40dec4e682a89ee3, 'VfB Stuttgart Sasa Kalajdžić Top Players Gold 143 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP143-AFS-GLD'), + (0x595797140ab6885259aa48a90fc6c33a334b78c4, 'HidoxiSoko', 'HidoxiSoko'), + (0x5957dc20e2489d9d18e704577c9fbabcfbfa26a4, 'Milwaukee Brewers™ Christian Yelich 1987 35th Anniversary Wood T87-71 Common', 'MLB-22S1-C-1987A50-M-WD'), + (0x59588629787340fe0ebb3d4ecb76561432920128, 'Tampa Bay Rays™ Randy Arozarena Postseason Base White 2 Common', 'MLB-21POST-C-B2-S-WHI'), + (0x595ee65180ae28edc4292dde672fc97c79e9dd07, 'RB Leipzig Nordi Mukiele Base Players White 13 Common', 'BUND-SC21-C-BP13-WHT'), + (0x5965b982f02d8d1305ad5a01259790fcf1d53423, 'Reo Hatate CEL Base Aqua SP-05 Uncommon', 'SPFL-21SPSS-U-BSP-05-A-AQU'), + (0x5973d62d0ea5e2c617a27752e51dc7d9640e7b3a, 'Lost Worlds x DCentral Miami', 'LOSTWORLD'), + (0x598bc24f1b904b37fbacb8d3b9b2f689a494d1e3, 'Rare Comic 78 2-30 Bazooka Joe 2021 NFT', 'BZK-R-78C'), + (0x5998144cd20550a8efd2a4f82eba44ba773f6476, 'Texas Rangers® Jonah Heim Base Glitch 230 Uncommon', 'MLB-22S1-U-B227-M-GLI'), + (0x59995eaf7a7d57ca1265032bceb2fd0a16b3aee3, 'American League™ Matt Olson Base Blue 1273 Common', 'MLB-22PRI-C-B221-M-BLU'), + (0x599b3528ec8994ec1d9b533b6502cd5f074a66d0, 'Wooyeong Jeong SCF Ascendent Blue TK-46 Super Rare', 'BUND-22TK-S-ASCTK-46-S-BLU'), + (0x599e72d19b056b7db5cba9deb15529ad9022ac5c, 'Rare Comic 16 1-16 Bazooka Joe 2021 NFT', 'BZK-R-16C'), + (0x59a042deb038a390dc85ee1deff135cbc6b17bca, 'St. Johnstone F.C. STJ Club Crest Card Gold SPCCC-08 Epic', 'SPFL-21SPSS-E-CCCSPCCC-08-A-GOL'), + (0x59a4e07d2bc3b42e02cb286f27bd97b7b9709e11, 'KrakenCaptainsBoxPack', 'KRAKEN-CAPTAINS-BOX-PACK-OF-THREE'), + (0x59a877ea76d5eae8f6e1ee2fec5230727b3e3dea, 'PrizeBond', 'PZB'), + (0x59b18b765eebeb3fa5bbc75047f2b611e830b168, 'NFT TCG: Knights and Mages', 'NFTTCGKMV1'), + (0x59b7d84c5c8f5877d500b394946885e4fccce77a, 'Joško Gvardiol RBL Animation Black Refractor S3-22 Epic', 'BUND-21TS3-E-AS3-22-V-BLA'), + (0x59be5fb3d2dfdf9554b4c6a8f7e9507c4d81d4c8, 'John Souttar HEA Top Plays Gold SPTPL-20 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-20-V-GOL'), + (0x59bfcb5bb79bf2663a68bf8e8191f56a201b6c97, 'Super Rare Comic 81 2-33 Bazooka Joe 2021 NFT', 'BZK-S-81C'), + (0x59cb6d21e145ffd5b88e06c5d61776bb90b04da4, 'American League™ Cedric Mullins Base Blue 1276 Common', 'MLB-22PRI-C-B214-M-BLU'), + (0x59eb456430540759e4e4ba803901e8dd75b9b6cb, 'Angels® Reid Detmers 1987 35th Anniversary Chrome T87C-61 Super Rare', 'MLB-22S1-S-1987AC46-M-CHR'), + (0x59f93788d3c548b5a34f04db45d90fa717917822, 'Atlanta Braves™ Ronald Acuña Jr. Base Vintage Stock 200 Super Rare', 'MLB-22S1-S-B199-M-VS'), + (0x59fa28b154fd31b15cb70ed53aba87030c967e3f, 'Toronto Blue Jays® Hyun-Jin Ryu Base White 297 Common', 'MLB-22S1-C-B293-S-WHI'), + (0x5a0ea9ca9fe599747aeb9a52ed715e175d9acc23, 'DinoPass by Avax Dinos', 'DinoPass'), + (0x5a12ab67b4627c2bc06dba651df710b122a634eb, 'Miami Marlins® Bryan De La Cruz Base Pink 1308 Uncommon', 'MLB-22PRI-U-B179-M-PNK'), + (0x5a20306783fb4f7ef2b4c59b2fba321a82755cde, 'Kansas City Royals® Brady Singer Inception Base Red 39 Rare', 'MLB-INC21-R-IB39-RED'), + (0x5a23763cf8df128c185579c8165d8d0298acfa19, 'Rugmie Whales', 'RUGWHALE'), + (0x5a4cf851bdbbce98c60125478f2337ded8639214, 'New York Mets® Jose Martinez 1B/OF Base Motion Rainbow 625 Rare', 'MLB-S221-R-B625-RAI'), + (0x5a4da32ca55f9fa1e61b9243ed4a63b9d9aac1b8, 'Last X Gen', 'LXG'), + (0x5a57f8b654ff355c71502ed167e0b006b16dc124, 'Pittsburgh Pirates® Kevin Kramer 2B Base Motion Platinum 344 Epic', 'MLB-S221-E-B344-PLA'), + (0x5a6091c69ab5fda2419bda48b14eb7490b9b6f20, 'Chicago Cubs® Base Motion Vintage Stock 529 Super Rare', 'MLB-S221-S-B529-VS'), + (0x5a6a627cddd6b855787047021f51ab72775f9cb7, 'Chicago White Sox® Liam Hendriks Base Independence Day RWB 268 Rare', 'MLB-22S1-R-B265-M-RWB'), + (0x5a7397d0fd27f77d7b4f212d3922b97f7ba72cf9, 'Gassie Infinity Animation Color 2 Rare', 'GPK-NFT22-R-A2-A-COL'), + (0x5a781026b0650d6f36a4395ed75b7b43a1c3b840, 'Philadelphia Phillies® Jojo Romero P Base Motion Platinum 508 Epic', 'MLB-S221-E-B508-PLA'), + (0x5a879c63245f1c7b4d189d7e4d518cca71ac0560, 'San Francisco Giants® Brandon Crawford Base Blue 1054 Common', 'MLB-22PRI-C-B46-M-BLU'), + (0x5a935db88d44359d467af98c5234467d3c0d0509, 'Atlanta Braves™ Ronald Acuña Jr. Super Short Print White 200 Super Rare', 'MLB-22S1-S-SSP9-M-WHI'), + (0x5a9382eea61a8a06a3901a47f42ebd154a6605a1, 'Colorado Rockies™ Trevor Story SS Base Static White 475 Common', 'MLB-S221-C-B475-WHI'), + (0x5a93a09b83a72aef574e7c5c8ab4dc2b79e7ac95, 'Borussia Monchengladbach Jonas Hofmann Base Players Gold 17 Rare', 'BUND-SC21-R-BP17-GLD'), + (0x5a93c1d27e65a1f9539fab9b742e6fd19e023b61, 'Joe Hart CEL Top Saves Purple SPTS-07 Rare', 'SPFL-21SPSS-R-TSSPTS-07-V-PUR'), + (0x5aa1c44157a2748c0ce6083e67ddc496803a2c25, 'Jacob Bruun Larsen TSG Animation Gold Refractor S4-54 Legendary', 'BUND-21TS4-L-AS4-54-V-GOL'), + (0x5aa823241d8daf54496f3e69924587ae7e0164ff, 'FSV Mainz 05 Edimilson Fernandes Base Players White 61 Common', 'BUND-SC21-C-BP61-WHT'), + (0x5ab5ca8e8c4fa6bd65231f8046e0c650f3f6da5e, 'Crows', 'CRW'), + (0x5abb0133ab8dd3c722f4a4968babbcaf9903aec0, 'Toronto Blue Jays® Vladimir Guerrero Jr. American League Base Blue 3 Rare', 'MLB-22ASG-R-B3-M-BLU'), + (0x5ac4373293bd93dcb31e76113e64a20dd0a70833, 'Miami Marlins® Fish out of Water Base Motion Platinum 530 Epic', 'MLB-S221-E-B530-PLA'), + (0x5ac9abdf368aaaa8df9fb729f3c0eed15c98cf29, 'Seeds of Knowledge', 'KWL'), + (0x5ace61c698d9e1bbb79c12afeb6a4a2ec5dfd197, 'Chicago White Sox® Jose Abreu Postseason Base Navy 9 Uncommon', 'MLB-21POST-U-B9-M-NVY'), + (0x5acfa923d4258e6ac44105517fde0c3bce3b66fb, 'Houston Astros® José Altuve Topps NOW White 1018 Rare', 'MLB-21NOW-R-TN1018-WHI'), + (0x5ad3ba5f27aa9e4322789e27e8e54c3d49d073f8, 'nft team', 'TEAM'), + (0x5ae3d3b384b73e29b96cf1e4b58479236143ab6b, 'Milwaukee Brewers™ Luis Urias Postseason Base Red 21 Rare', 'MLB-21POST-R-B21-M-RED'), + (0x5aed498b2352d2375a99b9b5da246a1ec2ac2078, 'St. Louis Cardinals® Base Vintage Stock 247 Super Rare', 'MLB-22S1-S-B244-M-VS'), + (0x5af477e5db909d1eb823575da7b93da6abf823f3, 'St. Louis Cardinals® Kwang-Hyun Kim P Base Motion Vintage Stock 482 Super Rare', 'MLB-S221-S-B482-VS'), + (0x5af990311ad4997bb7605bf06da7b7b456c7112c, 'New York Mets® Michael Conforto OF Base Motion Vintage Stock 517 Super Rare', 'MLB-S221-S-B517-VS'), + (0x5afca7c55e160c8491e55058bcc1b11c4cdf2632, 'Seattle Mariners™ Marco Gonzales Base White 112 Common', 'MLB-22S1-C-B111-S-WHI'), + (0x5afed2a92a08c0dc2a7c75dda0ec4c1a77d49529, 'Condo NFT Collection', 'CONFT'), + (0x5b005bde998345d2a90d7097cd8d731a193ebe39, 'Hot Coin Summer Animation Facsimile Signature Color 23 Super Rare', 'GPK-NFT22-S-AFS23-A-COL'), + (0x5b046d30641557efaa881de4762184fc626851dc, 'Angels® Jared Walsh Base Pink 1235 Uncommon', 'MLB-22PRI-U-B166-M-PNK'), + (0x5b092a7e827d72cf06d0b1db93683b514f1ea12b, 'Classic Americana', 'HSCA'), + (0x5b09cd5e6f039bb6fb1240a05857abc0a75da8e1, 'Orbit Finance Loyalty', 'OFLN'), + (0x5b119275d0ef0647c85febcabbd6f2264c27c2f3, 'Houston Astros® Kyle Tucker OF Base Motion Rainbow 617 Rare', 'MLB-S221-R-B617-RAI'), + (0x5b11ee04ca84a83f2d858c4374c8e9769ef93afa, 'ChihuahuaX NFT', 'CHIHUAX'), + (0x5b1537bb0aa19dcaa87d630d373f4d49ae69b534, 'Zander Clark STJ Top Saves Purple SPTS-06 Rare', 'SPFL-21SPSS-R-TSSPTS-06-V-PUR'), + (0x5b1c495a3cc7d3f055fcf3ad53e783f6df1936fc, 'Ruby', 'RUBY'), + (0x5b24e9447ad5ee1da3602a0ebe5b304d821339e5, 'Hashi', 'Hashi'), + (0x5b3351e28f4334126f0236a334d6043da0161dc0, 'New York Yankees® Aaron Judge Facsimile Signature Gold 3005 Super Rare', 'MLB-22PRI-S-FS1-M-GLD'), + (0x5b45f19130f90b6164d382178c2a618659e9d8d5, 'Miami Marlins® Isan Diaz 2B Base Static White 364 Common', 'MLB-S221-C-B364-WHI'), + (0x5b479de0b48bdeabb01d1b218bb84094b1128b83, 'Godzilla RAT Page 15 Comic Page Color 13 Rare', 'GDZ-RAT21-R-CP13-S-COL'), + (0x5b520b4097f49798c2bd8d126350ed1ab3d24527, 'nft revenue share', 'rev'), + (0x5b53a9b58c962385f4dec0d34ce8b7960212d508, 'Oakland Athletics™ Matt Olson Base Vintage Stock 149 Super Rare', 'MLB-22S1-S-B148-M-VS'), + (0x5b571a93c57e98819d054d112821a9dc3d8981e0, 'New York Mets® Andres Gimenez Silver Signings Facsimile Signature Silver 28 Super Rare', 'MLB-INC21-S-SS28-SLV'), + (0x5b6965d4ff415491a6ce2f8e9e1b983b84a6a3d7, 'Philadelphia Phillies® Aaron Nola Facsimile Signature Slab Gold 3061 Epic', 'MLB-22PRI-E-FS3-M-GLD'), + (0x5b6c68d3d11a74c243c464e617d269cd792e60e8, 'NTXCertificate', 'NTXC'), + (0x5b6d26c5842cf0681f9e8116fc0b2880537a4c08, 'Borussia Dortmund Emre Can Base Players Team Color 7 Uncommon', 'BUND-SC21-U-BP7-TMC'), + (0x5b6f106576ac2a3f47eadc17ce32025251e3e6e3, 'FC Schalke 04 Matthew Hoppe Young Stars Team Color 167 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS167-SFS-TMC'), + (0x5b882454d14464c635aeae100a8280e54acb5ec4, 'San Francisco Giants® Brandon Crawford Base Glitch 117 Uncommon', 'MLB-22S1-U-B116-M-GLI'), + (0x5b8ce75f38322556ce113db06d3f9e0573b8c191, 'Chicago White Sox® Lucas Giolito Division Series Bronze 29 Super Rare', 'MLB-21POST-S-D29-M-BRO'), + (0x5bbcd906f5bf1e9b7acf2fcafdcbc3a20e94fa28, 'Rare Comic 72 2-24 Bazooka Joe 2021 NFT', 'BZK-R-72C'), + (0x5bc037545649431ca2bf8c504fabbab73cdab16b, 'Boston Red Sox® Bobby Dalbec Base Independence Day RWB 7 Rare', 'MLB-22S1-R-B7-M-RWB'), + (0x5bc21ad2964971e3427bb971a3d4ab1aeabef321, 'dexalot origins', 'ddf'), + (0x5bd17a563b3cd57594c4be5bc77c230920262c36, 'Chicago White Sox® Yoan Moncada Base Blue 1096 Common', 'MLB-22PRI-C-B110-M-BLU'), + (0x5be1673a2d8ddfd70f9f59615ccc384851aa4f7c, 'Oakland Athletics™ Daulton Jefferies P Base Motion Platinum 656 Epic', 'MLB-S221-E-B656-PLA'), + (0x5bf1418f1b72bc28b756364c2bec481ba8cd73e0, 'Kalyani', 'Kalyani'), + (0x5bf18ca2793ac22bf8849a27dd5c46182e4e7f6b, 'Bad Boys', 'BadBoy'), + (0x5c128c9f5abc418b686f7799cf32a3ee3b04305a, 'Houston Astros® Jason Castro C Base Static White 620 Common', 'MLB-S221-C-B620-WHI'), + (0x5c1d864d0d58512eda7a81cc8aea978fa900f6ea, 'St. Louis Cardinals® Base Static White 478 Common', 'MLB-S221-C-B478-WHI'), + (0x5c26066e01743d28ca06e5837cbff4c012f83419, 'Miami Marlins® Jazz Chisholm SS Short Print Motion White 538 Super Rare', 'MLB-S221-S-SP538-WHI'), + (0x5c2bd63e85e5cb5158a2f38109fcae1816b8424b, 'Purple Jelly Eyes', 'PurpleJellyEyes'), + (0x5c2fa43d4e9ad921118d70589d61f521de57ee4c, 'Miami Marlins® Anthony Bender Base Glitch 160 Uncommon', 'MLB-22S1-U-B159-M-GLI'), + (0x5c41bf24f2352059cd221a584c8dc84e63b7d277, 'Los Angeles Dodgers® Cody Bellinger Wild Card Contenders Blue 20 Common', 'MLB-21POST-C-W20-M-BLU'), + (0x5c49153b8505ac21d3c5c73de07343d279e0287c, 'Vladimír Darida BSC Animation Black Refractor S4-37 Epic', 'BUND-21TS4-E-AS4-37-V-BLA'), + (0x5c4c6a32aa98f26ba4a45abba3ed3cf27d9eebe3, 'Danny Mullen DUD Top Plays Gold SPTPL-18 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-18-V-GOL'), + (0x5c4ca945d6e9a26c48e330a3529bee85789c75e7, 'Christopher Nkunku RBL Awards Red TSC-24 Legendary', 'BUND-21TSC-L-RAWTSC-24-A-RED'), + (0x5c4e85b74a4968b1a207dc407a7f8059413715fd, 'Depression Awareness Collection', 'DAC'), + (0x5c526845732fe86a59339699b6071c1b75829d74, 'Psyber-X Bronze Beta Access Pass', 'PSYRPASS'), + (0x5c536869c173166abf1589390ef7af41b6c7a655, 'Angels® Ty Buttrey P Base Motion Vintage Stock 363 Super Rare', 'MLB-S221-S-B363-VS'), + (0x5c54e66c7def6677c5331273b63d18c0b5b8d1a3, 'Atlanta Braves™ Freddie Freeman Topps NOW White 1039 Rare', 'MLB-21NOW-R-TN1039-WHI'), + (0x5c5a50e853ac1fa333302dfe8fd8b44c5afc9cf4, 'Mooooooo', 'MOO'), + (0x5c5c3fc77e120a02b049364612a5ebe4b6f349c9, 'Washington Nationals® Max Scherzer Inception Base White 98 Common', 'MLB-INC21-C-IB98-WHT'), + (0x5c5c65ca257097bbe6342789ab419e223d93aeb1, 'San Diego Padres™ Base Static White 604 Common', 'MLB-S221-C-B604-WHI'), + (0x5c5f2cd079bd265f5e464d5a5f8bf190925db23e, 'Chungus Among Us', 'CHUNGUS'), + (0x5c630aa4bd18b0f175e78d3806440851001b53b3, 'Founders Pass', 'FP'), + (0x5c7c41153d83ed0f2f16e2e83085d20c6a41b842, 'Common Comic 75 2-27 Bazooka Joe 2021 NFT', 'BZK-C-75C'), + (0x5c8005af257244b2b0e6c770594b7a805fea1b04, 'Philadelphia Phillies® Rhys Hoskins Base Pink 1051 Uncommon', 'MLB-22PRI-U-B120-M-PNK'), + (0x5c8199be77c7b6d48e38eea8f2c25005ca11c94d, 'FC Schalke 04 Benito Raman Base Players Team Color 59 Uncommon', 'BUND-SC21-U-BP59-TMC'), + (0x5c838e6ac924cd3de44d57b782118e57cfe53a56, 'FSV Mainz 05 Leandro Barreiro Young Stars Team Color 169 Super Rare', 'BUND-SC21-S-YS169-TMC'), + (0x5c84a5f6fbd058695742995c470bab7e143d7fd2, 'Atlanta Braves™ Kyle Muller 2022 Inception Gold 1 Legendary', 'MLB-22LEG-L-22INC1-M-GLD'), + (0x5c851304e8ed97db1e3165fb6a5efd7ba768dd68, 'New York Mets® Pete Alonso Generation NOW Team Colors GN-21 Epic', 'MLB-22S1-E-GN21-M-TMC'), + (0x5c8bfd993a31e37caacfad0f7ad0de3abafac406, 'Boston Red Sox® Bobby Dalbec Postseason Base Red 66 Rare', 'MLB-21POST-R-B66-M-RED'), + (0x5c94358de45644921f752b664c601affb87f50e4, 'Serge Gnabry BAY Top Players Facsimile Signature Team Color TK-01 Epic', 'BUND-22TK-E-TPTK-01-S-TMC'), + (0x5c959b26deba326c8d091aced6c511ba19f6d52a, 'New York Mets® Jose Martinez 1B/OF Base Motion Vintage Stock 625 Super Rare', 'MLB-S221-S-B625-VS'), + (0x5c9bc82271cf13c16db89e9c496a4323eda818ff, 'Wizard Wizards', 'WIZA'), + (0x5ca77cdc04893f2545bd6f0e164882bd061cb7b0, 'Chicago White Sox® Carlos Rodon Base Vintage Stock 282 Super Rare', 'MLB-22S1-S-B279-M-VS'), + (0x5cb09a4f99bc8b88ed17cef1a2587e6a246ebeb3, 'American League™ 2021 Strikeout Leaders Base Independence Day RWB 138 Rare', 'MLB-22S1-R-B137-M-RWB'), + (0x5cb100f2b3f9583cc8037fae8fb5c0852d163f01, 'Atlanta Braves™ Picture Time Base Static White 372 Common', 'MLB-S221-C-B372-WHI'), + (0x5cbf0dec3349702eade32208be1acd6511049712, 'VfB Stuttgart Marc-Oliver Kempf Base Players Team Color 87 Static Facsimile Signature Rare', 'BUND-SC21-R-BP87-SFS-TMC'), + (0x5cc0060177a5f5a06fc39ca727c033a6210c1b68, 'American League™ Jose Ramirez Base Pink 1274 Uncommon', 'MLB-22PRI-U-B211-M-PNK'), + (0x5cc91e2659417e9f1d097438c45d6f61551c40af, 'Angels® Anthony Rendon Base Blue 1061 Common', 'MLB-22PRI-C-B37-M-BLU'), + (0x5ccbb1dd46236e07ee721ecccfa64e9aefce5a32, 'San Francisco Giants® Tommy La Stella Base Vintage Stock 241 Super Rare', 'MLB-22S1-S-B238-M-VS'), + (0x5cccf262585e5f43b3447e803594a08bfaec109a, 'Kansas City Royals® Greg Holland P Base Motion Rainbow 467 Rare', 'MLB-S221-R-B467-RAI'), + (0x5ccf446094fe55971731d861e25c37f256de116c, 'San Diego Padres™ Jake Arrieta Base Glitch 214 Uncommon', 'MLB-22S1-U-B211-M-GLI'), + (0x5cd710d5278a5f5d67839933fb093e6f61b7e548, 'PDIInsightsandAnalytics', 'PDI2022'), + (0x5cd9b24af91ea1d0cb44254373f91f5e5cd2128f, 'FC Koln Benno Schmitz Base Players Team Color 66 Static Facsimile Signature Rare', 'BUND-SC21-R-BP66-SFS-TMC'), + (0x5cdb080b2333e24eaf8d7f0ed08c6c898f6b7b37, 'San Francisco Giants® Brandon Crawford 2022 Definitive Gold 29 Legendary', 'MLB-22LEG-L-22DEF29-M-GLD'), + (0x5ce9862bcd51b701d817e15bb9184f517f3a6da6, 'Atlanta Braves™ Jorge Soler Championship Series Silver 22 Epic', 'MLB-21POST-E-CS22-M-SIL'), + (0x5ceffc36dbf138d50fcd4afadd3efc08b4eccfd3, 'FarmHoods', 'FRHD'), + (0x5cf4c31881abb9a474012da9ef5a900004d11011, 'Common Comic 29 1-29 Bazooka Joe 2021 NFT', 'BZK-C-29C'), + (0x5cf7b65d9f065e419086e75238957b45dae90ef6, 'Boston Red Sox® Eduardo Rodriguez Base White 192 Common', 'MLB-22S1-C-B191-S-WHI'), + (0x5cfa0ddd897ed4f5999d67712c7987fa03adfa1c, 'Toronto Blue Jays® Nate Pearson Base Glitch 289 Uncommon', 'MLB-22S1-U-B286-M-GLI'), + (0x5cfb377a9b07bd55ecaf944fb22cbfd3a89a5357, 'My NFT Token', 'MNT'), + (0x5d055a33f072873c9a281252fdb7c2ef96a6969e, 'Lucky Box', 'BOX'), + (0x5d09d363befa0d24988c9c2b6afd2619d4f2e6d6, '2021 MLB Challenge Reward AL Rookie of the Year Pack', 'MLB-21REWARD-PACK-ALROY'), + (0x5d0a65f1d64612fd3b610d234d650bf493740295, 'Angels® Mike Trout Facsimile Signature Gold 3002 Super Rare', 'MLB-22PRI-S-FS34-M-GLD'), + (0x5d1529a227aa7302709afcb245be26e80f6d8bd3, 'TheCrypticWolf', 'WOLF'), + (0x5d180d6ffd9433c3eaa7cab9e92f0a1ef1a0b2a1, 'Oakland Athletics™ Matt Olson Base Pink 1050 Uncommon', 'MLB-22PRI-U-B118-M-PNK'), + (0x5d22c73c194445d6a1537a2539c3652d3dc9c6b9, 'Houston Astros® Kyle Tucker OF Base Motion Vintage Stock 617 Super Rare', 'MLB-S221-S-B617-VS'), + (0x5d2623b8e8852bfe6b26ac6b24c75c5d4b07d2e2, 'Chicago Cubs® Base Motion Rainbow 529 Rare', 'MLB-S221-R-B529-RAI'), + (0x5d2c300ff2bcfb551a40126afd09d3c71350966a, 'St. Louis Cardinals® Harrison Bader Postseason Base Navy 46 Uncommon', 'MLB-21POST-U-B46-M-NVY'), + (0x5d337e8abcf5763b81900607dce80ba08cc1062b, 'Houston Astros® Jose Altuve American League Base White 5 Uncommon', 'MLB-22ASG-U-B5-M-WHI'), + (0x5d3faf70e878efc2e2bdaa86fca20cf46ed515ed, 'Daichi Kamada SGE Animation Gold Refractor S4-42 Legendary', 'BUND-21TS4-L-AS4-42-V-GOL'), + (0x5d44bf68a258304d3d3ae81101914bdf8ecd86b0, 'Houston Astros® Yuli Gurriel Postseason Base Navy 54 Uncommon', 'MLB-21POST-U-B54-M-NVY'), + (0x5d4e9956573cc0ecb6c1f207df22d34d48849c91, 'Nft1AnTerraBioDao', 'TBIO1AN'), + (0x5d52c6d407a2cd937eafcb6571b9a71a6b02f3d9, 'Baltimore Orioles® Spenser Watkins Base Blue 1215 Common', 'MLB-22PRI-C-B160-M-BLU'), + (0x5d622abea8b9f063fdd32dec40cc36a295dd12ac, 'Seattle Mariners™ Cal Raleigh Base White 277 Common', 'MLB-22S1-C-B274-S-WHI'), + (0x5d657464fd813d11e6485e6f22af19f02ff3171b, 'Fake collection tst vrf', 'tst'), + (0x5d6a699f8020b7ec23c8ee66f1eaa2f2b177dd39, 'New York Mets® Jeff McNeil 2B/OF Base Motion Rainbow 489 Rare', 'MLB-S221-R-B489-RAI'), + (0x5d6c886e70639480a6a07a8fcf2073f24a2ab807, 'Atlanta Braves™ Cristian Pache Inception Base Red 2 Rare', 'MLB-INC21-R-IB2-RED'), + (0x5d7951bf595de186d4b1f174357f065b3f0cc675, 'Miami Marlins® Starling Marte Inception Base White 53 Common', 'MLB-INC21-C-IB53-WHT'), + (0x5d82f2ce7e07b9704aae2de5535ec4395abfeea1, 'King Ghidorah Mountainscape Traditional Art Black and White 10 Uncommon', 'GDZ-RAT21-U-TA10-S-BW'), + (0x5d89082921e024ba710be057f18f42264d68dbd1, 'Djibril Sow SGE Animation Gold Refractor S3-34 Legendary', 'BUND-21TS3-L-AS3-34-V-GOL'), + (0x5d8bf7fcf69132a1b3598ebea1ff61611753a8ae, 'Angels® Jose Iglesias SS Base Static Gold 346 Uncommon', 'MLB-S221-U-B346-GOL'), + (0x5d908ad77e0582557606483a8f314b5a8ff3cf42, 'Washington Nationals® Mason Thompson Base Glitch 38 Uncommon', 'MLB-22S1-U-B38-M-GLI'), + (0x5d9a941e50eecca85226a668accbf3addfe57679, 'Boston Red Sox® Bobby Dalbec Postseason Base Navy 66 Uncommon', 'MLB-21POST-U-B66-M-NVY'), + (0x5d9c2792d2e1dc9c32988234513a29f3babeab7f, 'Ross McCrorie ABE Base Aqua SP-10 Uncommon', 'SPFL-21SPSS-U-BSP-10-A-AQU'), + (0x5db06698d6b89c8eeb0850964e980fcb5f9db6a0, 'Toronto Blue Jays® Santiago Espinal Second Place Beach 3 Epic', 'MLB-22ASG-E-SEC3-M-BCH'), + (0x5dbb960c995c232af4843f5deebca51075cdb65a, 'San Francisco Giants® Kris Bryant 1987 35th Anniversary Wood T87-73 Common', 'MLB-22S1-C-1987A52-M-WD'), + (0x5dbda49fe234f71d806a52caab27e7a49b2c0356, 'Pit Demons', 'PITDEMONS'), + (0x5dc0b21cd4bf2546793880bf73220c8729b84a3d, 'Common Comic 5 1-5 Bazooka Joe 2021 NFT', 'BZK-C-5C'), + (0x5dc91c3effd812d239e2d99b38ab0354bd0469a4, 'Bayer 04 Leverkusen Charles Aránguiz Base Players White 24 Common', 'BUND-SC21-C-BP24-WHT'), + (0x5dca7abef7f27bad872e2012797ae32e78e43d57, 'Godzilla Toppsicle Color 1 Legendary', 'GDZ-RAT21-L-TP1-A-COL'), + (0x5dce29f20630dd1bdd562f1c2965b91d66a2397a, 'Boston Red Sox® Enrique Hernandez OF/2B Base Motion Rainbow 465 Rare', 'MLB-S221-R-B465-RAI'), + (0x5dd4dd0dd9178fb4c93f65fa60d7d0c2f8cf5910, 'Vladimír Darida BSC Motion Aqua Refractor S4-37 Rare', 'BUND-21TS4-R-MS4-37-V-AQU'), + (0x5dda41ab241a74a11f88e69c1632a603ef10291b, 'FC Augsburg FCA Insert Pennant Team Color S4P-12 Uncommon', 'BUND-21TS4-U-IS4P-12-S-TMC'), + (0x5de79c73585253718b77fe7058442d99db7c527f, 'FC Augsburg André Hahn Base Players White 71 Common', 'BUND-SC21-C-BP71-WHT'), + (0x5deb2162e3a809e74c5c047eb760b03480df1e2d, 'San Diego Padres™ Ivan Castillo Base Vintage Stock 140 Super Rare', 'MLB-22S1-S-B139-M-VS'), + (0x5df36a4e61800e8cc7e19d6fea2623926c8ef960, 'TALES FROM THE SCRIBBLE WARLOCK', 'WARLOCK'), + (0x5df5524caca2aa8ce1bf9c91b8ccd855e9b13837, 'St. Louis Cardinals® Dylan Carlson Inception Base Blue 86 Uncommon', 'MLB-INC21-U-IB86-BLU'), + (0x5dfde60326c30dd490befb9d2dcb461bfe84071a, 'Los Angeles Dodgers® Moving On! Base White 238 Common', 'MLB-22S1-C-B235-S-WHI'), + (0x5dff17cbfe6527a861be91e4419d4ce203c683e1, 'Seattle Mariners™ Shed Long 2B/OF Base Motion Platinum 345 Epic', 'MLB-S221-E-B345-PLA'), + (0x5dffeeef1f588feabfca2033d8b6059bc771d6b0, 'Miami Marlins® Braxton Garrett P Base Static White 433 Common', 'MLB-S221-C-B433-WHI'), + (0x5e075991b1a5b2380efc211a7255c5ff1a713bbb, 'New York Mets® James McCann Base Vintage Stock 256 Super Rare', 'MLB-22S1-S-B253-M-VS'), + (0x5e0a2f578190abae0bab969686bcad405519e13c, 'Kamacuras Base Collectible Magenta 7 Common', 'GDZ-RAT21-C-B7-S-MAG'), + (0x5e0a822382938d381450cf14b039c8d11e69d78f, 'Common Comic 28 1-28 Bazooka Joe 2021 NFT', 'BZK-C-28C'), + (0x5e0af5261c3633e2c6ba2591c4b262cee92891dd, 'Houston Astros® Jose Altuve 2B Base Motion Rainbow 432 Rare', 'MLB-S221-R-B432-RAI'), + (0x5e0f28dce6ad387467a74e261a44cf3d2830fb65, 'Oakland Athletics™ Matt Olson Base White 149 Common', 'MLB-22S1-C-B148-S-WHI'), + (0x5e0fcd75be1bd08660246c13ddce8a4fd846d5df, 'Gigan 1972 Rookie Card Color 1 Super Rare', 'GDZ-GVG22-S-RC1-S-COL'), + (0x5e0fd9716d99ffb362877cb07f5d0624f8503943, 'NFT Garden', 'NFTG'), + (0x5e104f5fb29ee935b1d29c3645a91e326a6a8d9d, 'Joško Gvardiol RBL Motion Rainbow Refractor S3-22 Super Rare', 'BUND-21TS3-S-MS3-22-V-RAI'), + (0x5e1cfd80fbd3451e6a946c6b82bfe73b564fa18b, 'Godzilla Rage Across Time Collection Challenge 1 Reward Pack', 'GDZ-RAT21-PACK-R1'), + (0x5e20ce36606887a692f0837622f27681d4a00148, 'Oakland Athletics™ Stephen Piscotty OF Base Motion Rainbow 607 Rare', 'MLB-S221-R-B607-RAI'), + (0x5e252f193ff1fe905a030fa6607dad398f38e9c8, 'Hertha Berlin Dedryck Boyata Base Players Team Color 46 Uncommon', 'BUND-SC21-U-BP46-TMC'), + (0x5e26f45f1d077b23ecc548c2d857fd038ac95746, 'Milwaukee Brewers™ Christian Yelich Postseason Base Navy 18 Uncommon', 'MLB-21POST-U-B18-M-NVY'), + (0x5e28bf36cbc9dfac4fcf85de61a60cc381b31f29, 'Avalanchick Halloween', 'AVCKHW'), + (0x5e294969df9fe9475e6e0af9bdaad5b18552c90e, 'Baltimore Orioles® Pedro Severino Base Vintage Stock 72 Super Rare', 'MLB-22S1-S-B72-M-VS'), + (0x5e31ea6e191c60f8ada665fe1a3c9ceb66c5bd1b, 'Houston Astros® Jose Altuve 2B Base Static White 432 Common', 'MLB-S221-C-B432-WHI'), + (0x5e3207e95b14bdbc7f9fa96dba96d0249a0ddb99, 'Godzilla vs. Gigan Fight Night Poster Color 1 Epic', 'GDZ-GVG22-E-RFP1-S-COL'), + (0x5e3c360cfb8938938ab2b9fd87151681bd77b105, 'Terran Art', 'Vison'), + (0x5e3da6a455e130edb2c95b7ebdf81fa6136b287e, 'Patrick Wimmer DSC Club Phemons Team Color S4CPH-01 Epic', 'BUND-21TS4-E-CPHS4CPH-01-V-TMC'), + (0x5e4112b13c92f5e1a8569c30c8ecfcf4481fd491, 'Minnesota Twins® Andrelton Simmons Base White 306 Common', 'MLB-22S1-C-B302-S-WHI'), + (0x5e45d08ca0c1224091116fe3ee21850f5237cb0f, 'Rare Comic 87 2-39 Bazooka Joe 2021 NFT', 'BZK-R-87C'), + (0x5e46ec1108ab26e954d369275968d167d64ca8c9, 'Bampie', 'PIE'), + (0x5e4f65482cfca4fc520961a30b65099bb6c8aa77, 'Arizona Diamondbacks® Taylor Widener P Base Motion Vintage Stock 481 Super Rare', 'MLB-S221-S-B481-VS'), + (0x5e54fa7a12cc84964ff5be94ce6f1e5f0ab91801, '@Sernur Collection', 'NPC015'), + (0x5e57ab2919b8dd1d094d0151ef38ffb0227df8d8, 'Philadelphia Phillies® City of Walk-Off Love Base White 321 Common', 'MLB-22S1-C-B317-S-WHI'), + (0x5e6416b1cbe1602410a50e69bc8380399ea2b7f2, 'San Diego Padres™ Tommy Pham OF 70th Anniversary Facsimile Signature Motion Platinum 399 Legendary', 'MLB-S221-L-70AFS399-PLA'), + (0x5e676d656366089ca420bc831d04fbfc91c30c92, 'Super Rare Animated Comic 6 Tech Talk Bazooka Joe 2021 NFT', 'BZK-S-6A'), + (0x5e68b58c5d1691cfe32b28a68ec2febb8d3a936f, 'Cincinnati Reds® Wade Miley Base White 203 Common', 'MLB-22S1-C-B202-S-WHI'), + (0x5e69b283e985d1b13a613a96bbc44f5b2bca236c, 'St. Louis Cardinals® Lars Nootbaar Base Vintage Stock 58 Super Rare', 'MLB-22S1-S-B58-M-VS'), + (0x5e708711f86127d53f5c99c59a26434591553e25, 'Toronto Blue Jays® Hyun-Jin Ryu Short Print White 297 Rare', 'MLB-22S1-R-SP60-M-WHI'), + (0x5e76a123c718702379473be7eeacbda7e8bb2e6b, 'Vladimír Darida BSC Base Red S4-37 Uncommon', 'BUND-21TS4-U-BS4-37-S-RED'), + (0x5e7b862684da00ad5809a4b3746fceb82692dddb, 'Nico Schlotterbeck SCF Motion Aqua Refractor S4-62 Rare', 'BUND-21TS4-R-MS4-62-V-AQU'), + (0x5e85c05b6a29361b835ce8d4dee99a1e4abbeba4, 'Callum Hendry STJ Top Plays Purple SPTPL-23 Rare', 'SPFL-21SPSS-R-TPLSPTPL-23-V-PUR'), + (0x5e910ee4e725a270e24f281ddbb5bd9e4afeb25d, 'Erhan Mašović BOC Club Phemons Gold S4CPH-05 Legendary', 'BUND-21TS4-L-CPHS4CPH-05-V-GOL'), + (0x5e974fd9bf3a384d9317dae44fdaad20d7eac136, 'HuskyJoe Hat', 'HUSKYJOEHAT'), + (0x5eb6632531022fe7c90771ebce0154a6bca20d2c, 'FC Schalke 04 Salif Sané Base Players White 60 Common', 'BUND-SC21-C-BP60-WHT'), + (0x5eb7df1cac4a98d196319b9a4c8652b702b0b9c7, 'Vault Key', 'VK'), + (0x5ec06203a3505c8ee18005b56d9f249abbbdc0a3, 'Super Rare Comic 56 2-8 Bazooka Joe 2021 NFT', 'BZK-S-56C'), + (0x5ec609322f3f2a8598853558acd267ae5480b695, 'Atlanta Braves™ Kyle Muller 1987 35th Anniversary Chrome T87C-35 Super Rare', 'MLB-22S1-S-1987AC27-M-CHR'), + (0x5ec9acb47ebf2174bcacdd2ac81680f2eeb2ccef, 'Cincinnati Reds® Nick Castellanos OF Base Motion Platinum 365 Epic', 'MLB-S221-E-B365-PLA'), + (0x5ecf9e3c13f5307e4ae5293860ea50b735612a1c, 'GBM Land', 'GBML'), + (0x5ed29a4b0c6175c8b744fd02021bdb10ae721158, 'Common Comic 64 2-16 Bazooka Joe 2021 NFT', 'BZK-C-64C'), + (0x5eddc2fd19094b70cfae00c3a6b73d3f42f398a5, 'Tampa Bay Rays™ Vidal Brujan Base Blue 1212 Common', 'MLB-22PRI-C-B180-M-BLU'), + (0x5ee0dc2f21a79c3e0e5dde4ff9547658ca2ba2de, 'Degen Gamepiece', 'dGAME'), + (0x5ee187960d98c28abe4bd269e8f63502dd33e786, 'Philadelphia Phillies® Base Motion Platinum 428 Epic', 'MLB-S221-E-B428-PLA'), + (0x5ee77aa6ef41a69c2225b092ee1d22fa1c587172, 'Line ballers', 'LBLR'), + (0x5ee8bb100869e746a214b6529c6d0069e6097ca1, 'Erling Haaland DOR Motion Rainbow Refractor S1-02 Super Rare', 'BUND-21TS1-S-MS1-02-V-RAI'), + (0x5ee9c6e8f0c1ae5ccecfe101bfd804176cf35104, 'Boston Red Sox® Nathan Eovaldi Division Series Bronze 14 Super Rare', 'MLB-21POST-S-D14-M-BRO'), + (0x5eeacfcc7aceb158ee50402c94755d3a9243f258, 'Houston Astros® Framber Valdez Postseason Base Navy 56 Uncommon', 'MLB-21POST-U-B56-M-NVY'), + (0x5ef1a4b2b6dc5655343fc4a6e7cbb5449ebd2cde, 'Miami Marlins® Brian Anderson Base White 19 Common', 'MLB-22S1-C-B19-S-WHI'), + (0x5ef382435eeafea00f5efb1dedd205b7ea48306f, 'Major League Baseball® How Far? Base Vintage Stock 320 Super Rare', 'MLB-22S1-S-B316-M-VS'), + (0x5ef401f705bec92b21be9502cfd4a3a418980b9f, 'American League™ 2021 Strikeout Leaders Base Vintage Stock 138 Super Rare', 'MLB-22S1-S-B137-M-VS'), + (0x5efb27dcd2207d48a09065b7c433e3a40b4d8a7f, 'Philadelphia Phillies® Andrew McCutchen Inception Base Blue 73 Uncommon', 'MLB-INC21-U-IB73-BLU'), + (0x5f071d007da645b061dbbb739c562bbe6862e3b5, 'Uncommon Comic 59 2-11 Bazooka Joe 2021 NFT', 'BZK-U-59C'), + (0x5f1730172d417b96475d02efe8d85966d5accd0c, 'St. Louis Cardinals® Matt Carpenter 3B Base Motion Rainbow 566 Rare', 'MLB-S221-R-B566-RAI'), + (0x5f197d73a6f1902d6f15cf6749e369c69873f28f, 'Spaghet Weapons', 'Weapon'), + (0x5f1a9af356ae9ee725dcaa6a2001c7e3cc9be3dd, 'Boston Red Sox® Eduardo Rodriguez Postseason Base Red 71 Rare', 'MLB-21POST-R-B71-M-RED'), + (0x5f1ca62c1c76f8571c4609f0de5e8fa0679a0eb6, '2sh0xava', '2sh0'), + (0x5f224607a3d0ef0471773f6c2ec5f1c315590304, 'Tampa Bay Rays™ Brandon Lowe Inception Base Red 91 Rare', 'MLB-INC21-R-IB91-RED'), + (0x5f2d40efc46ab7c416507a99a3dc84978804a501, 'FSV Mainz 05 Leandro Barreiro Young Stars Team Color 169 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS169-SFS-TMC'), + (0x5f30473133e6e1e2f030439153eb57cb0ca3d3fc, '2021 Topps Bazooka Joe NFT Collectibles Premium Pack', 'BZK-PACK-P'), + (0x5f3c6e8e50c4e16f6d74b9af627ed70104bddece, 'Miami Marlins® Chad Wallach C Base Motion Rainbow 593 Rare', 'MLB-S221-R-B593-RAI'), + (0x5f44f814fd91a1a2f89f5a7972b1afdffe37c37f, 'Uncommon Comic 50 2-2 Bazooka Joe 2021 NFT', 'BZK-U-50C'), + (0x5f479860c334285ce391c219767905ea6e43509b, 'Gigan''s Roar (Millennium Era) Sound Byte Color 2 Super Rare', 'GDZ-GVG22-S-RSB2-A-COL'), + (0x5f495f882e49b2790d93e0cf5104b5906e8358b9, 'St. Louis Cardinals® Jack Flaherty 1987 35th Anniversary Chrome T87C-82 Super Rare', 'MLB-22S1-S-1987AC63-M-CHR'), + (0x5f5265b4efd6ed0694b709d8486ff79758d4ec29, 'Miami Marlins® Jazz Chisholm Jr. Short Print White 6 Rare', 'MLB-22S1-R-SP2-M-WHI'), + (0x5f538c9dad867405b6e4300f9099329c3cf177f1, 'Crypto Raccoons', 'CR'), + (0x5f53ffa49db87dfe432048d92abf850b4960eefb, 'GemGame', 'GEMGAME'), + (0x5f564ac1f0bc1712ba1f9a6db74eea92234a8a67, 'LFG Bears', 'LFGB'), + (0x5f5c73e21f14ce1b39cbaab3247ad6484e508a4d, 'Uncommon Comic 46 1-46 Bazooka Joe 2021 NFT', 'BZK-U-46C'), + (0x5f5cb3bed983a118bf9150312ae34ef8e1f973d6, 'Arizona Diamondbacks® Ketel Marte Base Vintage Stock 275 Super Rare', 'MLB-22S1-S-B272-M-VS'), + (0x5f5eb8b4103c4b52fa3329555e4583d17b5b0d6b, 'Muscle Whitelist', 'AVAXMWL'), + (0x5f6333f5b30077ad819fa3c04eb2cb2f6fa49d3f, 'Washington Nationals® Luis Garcia Rookie and Future Phenoms Facsimile Signature White 82 Rare', 'MLB-INC21-R-RC82-WHT'), + (0x5f6479c4d46253fe3a7eb43041f40f76716c502f, 'Oakland Athletics™ Matt Chapman Base Pink 1020 Uncommon', 'MLB-22PRI-U-B94-M-PNK'), + (0x5f669abb727dc62ac1d0b58eb87cd4bfd462aa3c, 'Jazz Light House', 'JLH'), + (0x5f6765d7393fb735520d9b0439afc4a2c5075110, 'Gonzalo Castro DSC Base Red S4-43 Uncommon', 'BUND-21TS4-U-BS4-43-S-RED'), + (0x5f67e24993d10f9d04e3ff2c3185278db101ccf9, 'Angels® Jared Walsh Base Vintage Stock 154 Super Rare', 'MLB-22S1-S-B153-M-VS'), + (0x5f6bcd948f372c0a1b23adcd1afc6e21c2e4655c, 'Texas Rangers® Spencer Howard Base Vintage Stock 162 Super Rare', 'MLB-22S1-S-B161-M-VS'), + (0x5f6cab3935aa5cab63271cdc9826879d3f52087f, 'Rare Comic 86 2-38 Bazooka Joe 2021 NFT', 'BZK-R-86C'), + (0x5f77e5e30f2826ae95e5bca9b9fbfe39195f23e1, 'SV Werder Bremen Niklas Füllkrug Base Players Gold 78 Rare', 'BUND-SC21-R-BP78-GLD'), + (0x5f7a30885cffbbb1e8e51155459628a79a257a10, 'azuki', 'ai'), + (0x5f7c430bfb0462f869be160641c841aee49b8a24, 'Lewis Ferguson ABE Base White SP-11 Common', 'SPFL-21SPSS-C-BSP-11-A-WHI'), + (0x5f9019b4ea6a23f4e2fa0120edf98caca5306c05, 'Pittsburgh Pirates® Rodolfo Castro Base Pink 1227 Uncommon', 'MLB-22PRI-U-B150-M-PNK'), + (0x5fa80bb5c4a2d7d066e6596ebeb2b44711201aa4, 'Surreal Psychedelic Art Collective Experience', 'S.P.A.C.E.'), + (0x5facfb28bc47c9dc2435038e3169d1fdfa12af4b, 'Campfire Usernames', 'FIRE'), + (0x5fbad008bd2c9c90544f9b70544367eb5c00bf04, 'Ellyes Skhiri KOE Top Players Facsimile Signature Team Color TK-30 Epic', 'BUND-22TK-E-TPTK-30-S-TMC'), + (0x5fc155fe808fd416957befa89e91d9934d46caaa, 'Grischa Prömel FCU Animation Gold Refractor S4-40 Legendary', 'BUND-21TS4-L-AS4-40-V-GOL'), + (0x5fc32658960bea5c0665c2e65738c4ab27936ba0, 'Kansas City Royals® Brad Keller P Base Motion Vintage Stock 544 Super Rare', 'MLB-S221-S-B544-VS'), + (0x5fc498b2cb8abcd35435ee62b404ad4afbe66c79, 'Minnesota Twins® Alex Kirilloff Base Pink 1248 Uncommon', 'MLB-22PRI-U-B142-M-PNK'), + (0x5fc6a6a11152c00f89406d5c75284716ff2c442f, 'GangSol', 'GangSol'), + (0x5fcc630a8dc891b86b9679ac739bc26f0376bcde, 'Togg Teknoloji Kampus Acilis Toreni', 'TTK Acilis'), + (0x5fcd9e6fcf3eeaf42e2fad50f5adac4947d88806, 'Philadelphia Phillies® Andrew McCutchen OF Base Motion Rainbow 431 Rare', 'MLB-S221-R-B431-RAI'), + (0x5fcf45a17e0cdd410d2bd004f8898811e761f9e6, 'Meemoo', 'Meemoo'), + (0x5fdc87e9cf6067821acd34817291fb1e8761c97b, 'Super Rare Comic 38 1-38 Bazooka Joe 2021 NFT', 'BZK-S-38C'), + (0x5fdcfb753925e3450d08d75a2da060ed79c07a7e, 'Wrapped ACTA NFT', 'ACTA-NFT'), + (0x5fe184349f81d6f10d750cd1d82d42e281720566, 'Los Angeles Dodgers® Trea Turner Postseason Base White 37 Common', 'MLB-21POST-C-B37-S-WHI'), + (0x5ff13cdd02c52a8fe4657132d2a6af8f615d8155, 'St. Louis Cardinals® Tommy Edman Postseason Base Navy 45 Uncommon', 'MLB-21POST-U-B45-M-NVY'), + (0x6004f8a27afd6d7ffbfa95ab9f369ae4c945e4d1, 'Marco Reus DOR Top Players Facsimile Signature Team Color TK-03 Epic', 'BUND-22TK-E-TPTK-03-S-TMC'), + (0x60057f019eb55b224be252eb6d7abdafcda1d620, 'fdgfsd', 'dgfsd'), + (0x60072d69694f60e87c6e0f6031812823a1dc133c, 'St. Louis Cardinals® Dylan Carlson Inception Base White 86 Common', 'MLB-INC21-C-IB86-WHT'), + (0x600a90d3cdb6ea6a6f6d191a5e0f6e11182f44de, 'Texas Rangers® Brock Holt Base White 113 Common', 'MLB-22S1-C-B112-S-WHI'), + (0x600ea64f353085a0df6fba7335086951ee90f36f, 'BitWitches Haunted', 'BWH'), + (0x6013cb861bf655ac4be5899a26a64aa99177b230, 'Good Vibes Required', 'SKC'), + (0x602c007cdea30080b72e23404c2720e5c5d64e57, 'Chicago White Sox® Dallas Keuchel P Base Motion Platinum 488 Epic', 'MLB-S221-E-B488-PLA'), + (0x604b86514c8a413bf64c680d816f556f3ec3401a, 'Seattle Mariners™ Kendall Graveman P Base Motion Vintage Stock 340 Super Rare', 'MLB-S221-S-B340-VS'), + (0x604d48b51a9aa64ba731667497031b1fd00d7451, 'Obsession', 'OBSS'), + (0x606123fc1aedb235c61f40dd3fc18c22534aea6c, 'KnivesLegacySoldiers', 'SOLDIERS'), + (0x6062ab2e676e66a18967a2d768d4569d7b7e870e, 'PPXLand', 'PML'), + (0x6062e6f2ce4551c9c26f604606c6a10e02b1611b, 'Chicago Cubs® Kris Bryant Inception Base Blue 16 Uncommon', 'MLB-INC21-U-IB16-BLU'), + (0x606479c15ad96a5418df4038cf29e5efff621309, 'Pittsburgh Pirates® Ke''Bryan Hayes Base Independence Day RWB 56 Rare', 'MLB-22S1-R-B56-M-RWB'), + (0x6086c14ed7154c31183bdfe05fe2a42b0ae0a51f, 'St. Louis Cardinals® Adam Wainwright Base Independence Day RWB 34 Rare', 'MLB-22S1-R-B34-M-RWB'), + (0x6086cdef2a96ed8aa357dee3c9da132ad3164d7a, 'St. Louis Cardinals® Jake Woodford P Base Motion Rainbow 451 Rare', 'MLB-S221-R-B451-RAI'), + (0x608ad13b9037f4cb371fc35e67987a4038ce3c86, 'Cleveland Guardians™ Emmanuel Clase Base White 190 Common', 'MLB-22S1-C-B189-S-WHI'), + (0x60956f29bae058f4ab1758e3df3ea4e7acf923b2, 'Rare Comic 3 1-3 Bazooka Joe 2021 NFT', 'BZK-R-3C'), + (0x60985de07f327475aea7e07115c3de16a602d53f, 'Unmoved Music NFT', 'UMN'), + (0x609c393906ea8caf30a0bd56a4c6fffed9107666, 'Avlancheetah', 'AVAC'), + (0x609c65b5037daa18b43a702179a3f60de139ae50, 'Ferdy Card ID', 'FCI'), + (0x60c1472ec6d80305e75a8f941e3af837cafbd656, 'Super Rare Comic 31 1-31 Bazooka Joe 2021 NFT', 'BZK-S-31C'), + (0x60c21d3211805e47a0343db471f73c6c884012d3, 'Pittsburgh Pirates® Rodolfo Castro Base White 85 Common', 'MLB-22S1-C-B85-S-WHI'), + (0x60c9aa7797259d6efa60b940e0a3d194341acf7a, 'Chicago White Sox® Lucas Giolito Facsimile Signature Red 291 Rare', 'MLB-22S1-R-FS22-S-RED'), + (0x60d27f3888b5e780164feae2bae9bd9f324d82bc, 'Washington Nationals® Luis Garcia Inception Base White 97 Common', 'MLB-INC21-C-IB97-WHT'), + (0x60d68584d1cbe9d5587b6cc91df1d39a49817b9b, 'Minnesota Twins® Jose Berrios Inception Base Blue 60 Uncommon', 'MLB-INC21-U-IB60-BLU'), + (0x60dacd3a7a960c0d606c6cde38717440bee994a7, 'Boston Red Sox® Kyle Schwarber Base Blue 1184 Common', 'MLB-22PRI-C-B18-M-BLU'), + (0x60dbf38d3ebd7b586fbed0dcfeb5eec2d033de7b, 'Fomo Lag', 'FomoLag'), + (0x60e1897db03114467b06e67463690d31421278ef, 'Max Stryjek LFC Base White SP-30 Common', 'SPFL-21SPSS-C-BSP-30-A-WHI'), + (0x60e52d6ebf9c97ab85f09e61bfb98f11c88df2a7, 'Miami Marlins® Sixto Sanchez Inception Base Red 52 Rare', 'MLB-INC21-R-IB52-RED'), + (0x60ec1e570e6c12086763959bd3e3fb384cf75a47, 'Toronto Blue Jays® Vladimir Guerrero Jr. First Place Skyline 2 Legendary', 'MLB-22ASG-L-FIR2-M-SKY'), + (0x60f57a35d5a6734e6878dbd13f2d266dd1db048c, 'Los Angeles Dodgers® Justin Turner Postseason Base Red 35 Rare', 'MLB-21POST-R-B35-M-RED'), + (0x61038804e8303ec06ac6cfedf3bb4ecda9f691a4, 'Baltimore Orioles® John Means Base Independence Day RWB 253 Rare', 'MLB-22S1-R-B250-M-RWB'), + (0x611384593a4e28afdcdffab9a2f5e29d5a1b821b, 'Pittsburgh Pirates® Steven Brault Base Glitch 307 Uncommon', 'MLB-22S1-U-B303-M-GLI'), + (0x6113c14842f1824c82348c4ba9a400898b3d3349, 'Tampa Bay Rays™ Mike Zunino C Base Motion Vintage Stock 430 Super Rare', 'MLB-S221-S-B430-VS'), + (0x612cdea5deb749094d87918641c0ff65de8e0e8a, 'St. Louis Cardinals® Yadier Molina Postseason Base White 41 Common', 'MLB-21POST-C-B41-S-WHI'), + (0x612d6b023f530a99a213a9632e88ebfdc8797292, 'Pittsburgh Pirates® Rodolfo Castro Short Print White 85 Rare', 'MLB-22S1-R-SP19-M-WHI'), + (0x612d75e75b1a6969e9aeac791927668586ddb3a7, 'Los Angeles Dodgers® Max Scherzer Postseason Base Navy 38 Uncommon', 'MLB-21POST-U-B38-M-NVY'), + (0x6135b37a6e9caecfae45163c90596884750b5ed1, 'Atlanta Braves™ Picture Time Base Motion Rainbow 372 Rare', 'MLB-S221-R-B372-RAI'), + (0x613a8a48c1dbb08c983c92582e2295ac60d42382, 'Atlanta Braves™ Picture Time Base Motion Vintage Stock 372 Super Rare', 'MLB-S221-S-B372-VS'), + (0x613dc313d88f30e2d9c08817e77d3852681aebf2, 'Avalanche Friends Collectible', 'AFC'), + (0x613f36626e9164ae730141b3556b0d7331455453, 'FC Augsburg Michael Gregoritsch Base Players Team Color 73 Uncommon', 'BUND-SC21-U-BP73-TMC'), + (0x6145baad4026096b99245a85d2f067fabad9b599, 'Houston Astros® Yordan Alvarez Inception Base Blue 38 Uncommon', 'MLB-INC21-U-IB38-BLU'), + (0x6149753392c37d06960c30affe3a4c18cddcd2c6, 'Anason İşleri 2022', 'Aİ'), + (0x614e006c44fc8f93cd5d70910a57b486bc0535aa, 'SV Werder Bremen Leonardo Bittencourt Base Players Team Color 76 Static Facsimile Signature Rare', 'BUND-SC21-R-BP76-SFS-TMC'), + (0x6150770413c1b3354e3ff289d83c5135616908ba, 'Common Comic 38 1-38 Bazooka Joe 2021 NFT', 'BZK-C-38C'), + (0x6150efd743a8599171b08bb0f9a8fd72046d0570, 'Monstro City', 'MNS'), + (0x6151c629a0da3b02a744f1a1b9406123772b2c0a, 'Detroit Tigers® Miguel Cabrera Base White 194 Common', 'MLB-22S1-C-B193-S-WHI'), + (0x6165d57b8a6c7c050200e5d81d67be9deaf5d194, 'Los Angeles Dodgers® Kenley Jansen P Base Motion Vintage Stock 347 Super Rare', 'MLB-S221-S-B347-VS'), + (0x616ab645fd0de4aecc78ff84a63c459f04d2c273, 'Chicago Cubs® Jason Heyward Base White 323 Common', 'MLB-22S1-C-B319-S-WHI'), + (0x616da86e0131045d270be9853c544d62ddde1a1e, 'Djibril Sow SGE Animation Black Refractor S3-34 Epic', 'BUND-21TS3-E-AS3-34-V-BLA'), + (0x617237386a5dffc342e0c98ebdc4bd3950ffe26f, 'Kansas City Royals® Hanser Alberto 2B Base Static White 414 Common', 'MLB-S221-C-B414-WHI'), + (0x6176ba2cdf66e5fdd3551da793d2803131a51cb8, 'Happy Ducks', 'HPDK'), + (0x61785da6875c9998e66cde26ee0dac724372e5a7, 'Mechavax Banners', 'BNRS'), + (0x617a0f8132d08c58e090999d5f9572cc8c37ae2f, 'Rare Comic 62 2-14 Bazooka Joe 2021 NFT', 'BZK-R-62C'), + (0x6189cd42bd0c65cd4affa46adfc1449cdfaea39a, 'Toronto Blue Jays® Randal Grichuk OF Base Motion Rainbow 352 Rare', 'MLB-S221-R-B352-RAI'), + (0x618efc30d59fa91f2977587d0b42d205a5e9b1fc, 'Boston Red Sox® Christian Arroyo 2B Base Motion Vintage Stock 338 Super Rare', 'MLB-S221-S-B338-VS'), + (0x6198bbd38892e0d25df1e5cad655a1030eb23c59, 'Arizona Diamondbacks® Alex Young P Base Static White 532 Common', 'MLB-S221-C-B532-WHI'), + (0x619dc8b51b3260c7b59c841e1a1baf4facd87d72, 'Philadelphia Phillies® Jojo Romero P Base Motion Rainbow 508 Rare', 'MLB-S221-R-B508-RAI'), + (0x619f3f956ed19baca24fcb40c8df489f95d1f11f, 'VfL Wolfsburg Xaver Schlager Base Players Gold 33 Rare', 'BUND-SC21-R-BP33-GLD'), + (0x61a277a822a2a9da459f9e8f33527151f8159c2a, 'Houston Astros® Jose Altuve Facsimile Signature Glitch 278 Epic', 'MLB-22S1-E-FS19-M-GLI'), + (0x61a6d939adfd66f3cca2c8e198b3d8f46ab74da6, 'Detroit Tigers® Matthew Boyd Base Independence Day RWB 128 Rare', 'MLB-22S1-R-B127-M-RWB'), + (0x61ab131a626574a52f407bbee025167a6dfdec83, 'FC Union Berlin Christian Gentner Base Players White 55 Common', 'BUND-SC21-C-BP55-WHT'), + (0x61b90287505e0bceacdebae5093d3a1cb036acb8, 'Houston Astros® Carlos Correa Base Pink 1042 Uncommon', 'MLB-22PRI-U-B74-M-PNK'), + (0x61be24fe756bad3f98f0ac3474ba5e280aa20b10, 'Artificial Intelligence Art', 'Artificial Intelligence Art'), + (0x61c09c86964676b3f8f63c92a0b2b1464c89294c, 'Miami Marlins® Jazz Chisholm Jr. Base Vintage Stock 6 Super Rare', 'MLB-22S1-S-B6-M-VS'), + (0x61c43a57d218540106a511085860e91e2f637af8, 'Seattle Mariners™ Jake Fraley OF Base Motion Rainbow 402 Rare', 'MLB-S221-R-B402-RAI'), + (0x61cfaccf9df3bdf98c6a464ca6f729fc1e6b605c, 'Yellow Snowballs', 'YELLOWSNOWBALLS'), + (0x61d2b8adac3b2997226e21f2c3309fbe3ea40ff4, 'New York Mets® Carlos Carrasco P Base Motion Vintage Stock 655 Super Rare', 'MLB-S221-S-B655-VS'), + (0x61d95283cda7985b691b8af4299ebd05f18b4fa7, 'Tampa Bay Rays™ Brandon Lowe Postseason Base White 1 Common', 'MLB-21POST-C-B1-S-WHI'), + (0x61da163ad07aa406d1cb1cdb636902051c8b111b, 'New York Yankees® Luis Severino P Base Motion Rainbow 577 Rare', 'MLB-S221-R-B577-RAI'), + (0x61e44a12d88a9cf2fe63e1dd106afc897c32fbb6, 'Los Angeles Dodgers® Max Muncy 2022 Definitive Gold 15 Legendary', 'MLB-22LEG-L-22DEF15-M-GLD'), + (0x61f2c4e1017cf7e2e571e7c4c453ff72a86b2230, 'RB Leipzig Amadou Haidara Base Players White 15 Common', 'BUND-SC21-C-BP15-WHT'), + (0x61fa43c5b182824b5196d7936c0e9a895dbe0c01, 'CryptoPukes Animation Facsimile Signature Color 3 Super Rare', 'GPK-NFT22-S-AFS3-A-COL'), + (0x61fd28c7a915cb88e10e4827bfea6407a0085096, 'Houston Astros® José Urquidy Topps NOW White 1035 Rare', 'MLB-21NOW-R-TN1035-WHI'), + (0x6200113112f292e96b50fe5ce87347bcfd348bd9, 'Boston Red Sox® Xander Bogaerts Inception Base Blue 12 Uncommon', 'MLB-INC21-U-IB12-BLU'), + (0x6215a2db1ffcd3f1d4cc4cdf4ddf75e8ad750962, 'American League™ Whit Merrifield Base Pink 1270 Uncommon', 'MLB-22PRI-U-B190-M-PNK'), + (0x621e47e83ddea8c654a9cf92eda119ba9e0eb5cf, 'Cowlfi', 'COWLFI'), + (0x6220ce2e5ef548074100df4010bc5689cf5cb7ff, 'Archaeological Graveyard', 'ARG'), + (0x623063826ce766021d566fd64476a0dbe9a96e23, 'Baltimore Orioles® Jahmai Jones 2B Base Motion Rainbow 507 Rare', 'MLB-S221-R-B507-RAI'), + (0x6235666559c766ad58e53e12f5d0210804873c81, 'Founder Node Booster Tier III', 'Founder Node Booster Tier III'), + (0x623d274ae9782ac1f0ea1aa9027a6361462c9087, 'Texas Rangers® Sam Huff C Base Static Gold 654 Uncommon', 'MLB-S221-U-B654-GOL'), + (0x623df37c8a93f982f7c4670505d0a1ed59a508dd, 'Bored Worker', 'AVAX'), + (0x623e4d95987b1cf14e4a7256f0cb0734e9753b0e, 'Oakland Athletics™ A.J. Puk P Base Static White 636 Common', 'MLB-S221-C-B636-WHI'), + (0x6241e4da1f036a2586e4c2ce81eae7a430fd12ad, 'UC22-PDIWebServicesandInnovation', 'PDI2022'), + (0x6248ade68b9f82acb75619cb73bb9f2695f06c44, 'Miami Marlins® Pablo Lopez P Base Static White 634 Common', 'MLB-S221-C-B634-WHI'), + (0x62538d76b36f2cd44b015298070582f537df04d9, 'San Francisco Giants® Buster Posey Inception Base White 84 Common', 'MLB-INC21-C-IB84-WHT'), + (0x62549495e9c2331c2b7bd2e7ff886aa7bbc5b48e, 'Pittsburgh Pirates® Kevin Newman SS Base Motion Rainbow 502 Rare', 'MLB-S221-R-B502-RAI'), + (0x625e0669839919be636d0023500171bf9776f3c2, 'St. Louis Cardinals® Harrison Bader Base Independence Day RWB 225 Rare', 'MLB-22S1-R-B222-M-RWB'), + (0x6264b83a1965cb24873dc33129b9c52899a737ec, 'Philadelphia Phillies® Scott Kingery 2B/OF Base Static Gold 464 Uncommon', 'MLB-S221-U-B464-GOL'), + (0x62716fdfff55ae68e7f6d7f401d701999e1f1b27, 'Seattle Mariners™ Kyle Lewis Base Glitch 206 Uncommon', 'MLB-22S1-U-B205-M-GLI'), + (0x627796cf6ce53c031695f08f81599d952a4315d1, 'Silvan Widmer M05 Animation Gold Refractor S3-23 Legendary', 'BUND-21TS3-L-AS3-23-V-GOL'), + (0x62892b9672b0481d6a7e0e7da9c783e5f25716fd, 'Atlanta Braves™ Eddie Rosario Topps NOW White 1014 Rare', 'MLB-21NOW-R-TN1014-WHI'), + (0x62946bf7301d5c0e350c2f52b208096bff6ff97b, 'Los Angeles Dodgers® Will Smith Base White 83 Common', 'MLB-22S1-C-B83-S-WHI'), + (0x6299c27931d4848254384b46d731e00895b9e416, 'Oakland Athletics™ Matt Olson Base Independence Day RWB 149 Rare', 'MLB-22S1-R-B148-M-RWB'), + (0x629fb531a769a9da23fc116ca9bf2fb094a1b647, 'TSG Hoffenheim Stefan Posch Base Players Team Color 30 Static Facsimile Signature Rare', 'BUND-SC21-R-BP30-SFS-TMC'), + (0x62a0d0863352ca32ddd471571925a6bb51b6558e, 'San Francisco Giants® Brandon Crawford Base Vintage Stock 117 Super Rare', 'MLB-22S1-S-B116-M-VS'), + (0x62a382d49e8be54619fdeab84cdf53e3330e7f0c, 'Cincinnati Reds® Jesse Winker 2022 Definitive Gold 6 Legendary', 'MLB-22LEG-L-22DEF6-M-GLD'), + (0x62a6e514aaca486e356084ca01ac337138511f18, 'New York Yankees® Gary Sanchez Base Pink 1191 Uncommon', 'MLB-22PRI-U-B67-M-PNK'), + (0x62ac81daa5ac7719613d4cafc580aa0a0fa51c11, 'Baltimore Orioles® Jorge Mateo Base White 89 Common', 'MLB-22S1-C-B89-S-WHI'), + (0x62b91a05eeafe22c5ce264c6fc544a07df668fdc, 'Djibril Sow SGE Motion Rainbow Refractor S3-34 Super Rare', 'BUND-21TS3-S-MS3-34-V-RAI'), + (0x62bba02534bce10ffde6bdd419eefba40b7a4ec5, 'Kansas City Royals® Greg Holland Base Glitch 52 Uncommon', 'MLB-22S1-U-B52-M-GLI'), + (0x62be02b85e2e173b2d3e69df5ec6d6044b1e14d4, 'Baltimore Orioles® Trey Mancini Base Blue 1034 Common', 'MLB-22PRI-C-B13-M-BLU'), + (0x62c54394e4c946edfe232019a8ed73aae27afc76, 'Baltimore Orioles® Keegan Akin Base Independence Day RWB 328 Rare', 'MLB-22S1-R-B324-M-RWB'), + (0x62c7622189f52fa6786022e85e6ca292ae690522, 'PDI2022BusinessReview-Platform', 'PDI2022'), + (0x62ca88c2621cf18addff55d28e7abc5a8c325ccb, 'Degis x Trader Joe', 'DTJ'), + (0x62cc1ad87740758caaa9eeec783fd5f606b89476, 'Pasta', 'PASTA'), + (0x62cc4e826f28b7eeb69aab9f5757b71b4a6603a6, 'Super Rare Comic 3 1-3 Bazooka Joe 2021 NFT', 'BZK-S-3C'), + (0x62d78fa09b961594e50852609265b6e7e2e7b3bf, 'The 3d Cinema', 'OTH'), + (0x62da49d4af42a903958279a97a4ae6c78c17d267, 'New York Mets® Pete Alonso Second Place Beach 9 Epic', 'MLB-22ASG-E-SEC9-M-BCH'), + (0x62dd83dad5f1132c2e2a56083bd59ac1e8e435bb, 'Cincinnati Reds® Jose Garcia SS Base Motion Platinum 374 Epic', 'MLB-S221-E-B374-PLA'), + (0x62e3f793f7a720e5dff56742d04d529db5345315, 'St. Louis Cardinals® Dylan Carlson Gold Signings Facsimile Signature Gold 37 Epic', 'MLB-INC21-E-SS37-GLD'), + (0x62eda5c03c55f6a2fc0529baba582e8d3f38ad4c, 'LuckyDaoNFT', 'LuckyDao'), + (0x62f0a5fa89f50ed1c5a96f7a7573e12abba85da5, 'Common Comic 85 2-37 Bazooka Joe 2021 NFT', 'BZK-C-85C'), + (0x62f94589a01b2b50e1933c60cfa2d7708be14d14, 'Christopher Trimmel FCU Top Players Facsimile Signature Team Color TK-28 Epic', 'BUND-22TK-E-TPTK-28-S-TMC'), + (0x630e96a0aa876c617357e05eb7652696e6e63fdf, 'Djibril Sow SGE Top Players Black TK-11 Common', 'BUND-22TK-C-TPTK-11-S-BLA'), + (0x6317efa9533d37e211491e359e04227380b34c1c, 'Neonnitas Wallpapers', 'NEONWP'), + (0x631dab4ed15ee3354ee0447642f83a06803ac840, 'Bullish Node NFTs', '$bulls'), + (0x632429b9c5c658b996fa73a2425eae5f07ac1c13, 'Luca Kilian KOE Color Splash Team Color TK-69 Super Rare', 'BUND-22TK-S-CSTK-69-S-TMC'), + (0x6326829c41cce174f04dc981479cd442d4402d22, 'Uncommon Comic 96 2-48 Bazooka Joe 2021 NFT', 'BZK-U-96C'), + (0x632fffcfd6c7ab39339899fc0a45d517d7e4562e, 'DCG Key 1', 'DCGKEY1'), + (0x6335b7f03faa77ab885fca7a5b32e0019c8d3a79, 'Papa Ferraris Barnyard', 'YALL'), + (0x6335ee1764b170fffe36426311b7bc10e3b5c28b, 'FractalTrees', 'TREE'), + (0x6340794d58a07880bf650d67585560265ee3a74f, 'Angels® 2021 Topps MLB Inception Set Completion Reward Team Colors 13 Epic', 'MLB-21INCSC-E-21INCSCR13-M-TC'), + (0x6344c601feea67ab2084c11cd3bbe75af98772b7, 'Ermedin Demirović FCA Ascendent Facsimile Signature Blue TK-49 Legendary', 'BUND-22TK-L-ASCTK-49-S-BLU'), + (0x634d6df614b4084822fce109b56ebd1b7d59f5ff, 'THE PEOPLE PASSING BY US', 'PEOPLE'), + (0x634fe5d574a9bdd7e2b85e66adab0454f60c9594, 'Milwaukee Brewers™ Devin Williams Rookie and Future Phenoms Facsimile Signature Blue 47 Super Rare', 'MLB-INC21-S-RC47-BLU'), + (0x63543d655e1b2849b8f4ec68eb5455b29e977ec9, 'Eviliens Gen 0', 'EVLNS'), + (0x635448b7e4d686207aadc9835b7eef34949191ea, 'AI Imagination', 'AIMAGINE'), + (0x6357a3d5ace8ddfade720f691ea3411ef86f0476, 'Angels® Mike Trout Top 5 Cinema 4 Legendary', 'MLB-22ASG-L-T54-M-CIN'), + (0x635d5a87e9af899a639db4d2c8a88ccc0a1b3cda, 'Forester NFT', 'FORESTER'), + (0x635f85f43cbc9be23f8993292e13ef6fc1c016c1, 'Jake Carroll MOT Top Plays Purple SPTPL-16 Rare', 'SPFL-21SPSS-R-TPLSPTPL-16-V-PUR'), + (0x636457133b40e0325a7a4098725b6fbee2d92db4, 'Houston Astros® Base Static White 545 Common', 'MLB-S221-C-B545-WHI'), + (0x63679dc90041cf384a2892659e18ce2a1dccd3d3, 'RB Leipzig Christopher Nkunku Base Players White 11 Common', 'BUND-SC21-C-BP11-WHT'), + (0x636800a3265c91f4481366d43cedc32f825a3f42, 'Colorado Rockies™ German Marquez P All-Star Motion Purple 9 Epic', 'MLB-S221-E-AS9-PUR'), + (0x63888e63d0fc67616aa90b7ecdc905a4681116fb, 'Pixel World', 'PXW'), + (0x638cc661a7a8fbdcf01804c866a12beca5f89ca3, 'Marcus Thuram BMG Motion Rainbow Refractor S4-57 Super Rare', 'BUND-21TS4-S-MS4-57-V-RAI'), + (0x63a3c91cd86cf97d4db5ed82b675fa185a1d3d43, 'Milwaukee Brewers™ Josh Hader Inception Base White 56 Common', 'MLB-INC21-C-IB56-WHT'), + (0x63a6ae78e921a86b9da5feacecc6a83a2aa02594, 'Sport-Club Freiburg Dominique Heintz Base Players Team Color 37 Static Facsimile Signature Rare', 'BUND-SC21-R-BP37-SFS-TMC'), + (0x63a87d2b2319740fb736cbfb8aecb946f693d8b2, 'Mechavax Shortseries #04', 'MASS04'), + (0x63b222914cf096e772e384ed70a691389c7b0d4d, 'Philadelphia Phillies® J.T. Realmuto Base White 180 Common', 'MLB-22S1-C-B179-S-WHI'), + (0x63b9ff1002e02b1e1e1d5f5f084118d936a164e3, 'Uncommon Comic 92 2-44 Bazooka Joe 2021 NFT', 'BZK-U-92C'), + (0x63d2c9dd48d10dc51636bd56d0b35b51deb73ee2, 'Baltimore Orioles® Pedro Severino Base Glitch 72 Uncommon', 'MLB-22S1-U-B72-M-GLI'), + (0x63d69cd50ad57becbcf9ebe7f3cf3deef0b717e7, 'NFT Garden', 'NFTG'), + (0x63e9a4f10ca8c780243d43692304fd36eb908da1, 'Pittsburgh Pirates® Bryan Reynolds OF All-Star Motion Purple 15 Epic', 'MLB-S221-E-AS15-PUR'), + (0x63f0e9582250dad5bb92e964ddd49a85d4085610, 'DSC Arminia Bielefeld Amos Pieper Young Stars Team Color 178 Super Rare', 'BUND-SC21-S-YS178-TMC'), + (0x63f1e942ad3773273aa47968ea341dcaa4e54e1a, 'Regan Charles-Cook RSC Base Aqua SP-36 Uncommon', 'SPFL-21SPSS-U-BSP-36-A-AQU'), + (0x63f5e2cf082ad1281d27724023922684989c00eb, 'Super Rare Baseball Card 8 Tex Batter Bazooka Joe 2021 NFT', 'BZK-S-8B'), + (0x63fff3087a5f0521ee1cba3351250a717660b61e, 'Mothra Riverscape Traditional Art Color 4 Rare', 'GDZ-RAT21-R-TA4-S-COL'), + (0x6401173e1eed7fcc37895dd3ced4aa157e280491, 'Boston Red Sox® Enrique Hernandez Base Independence Day RWB 90 Rare', 'MLB-22S1-R-B90-M-RWB'), + (0x640a04ee1303fca3a6d2665d4932cd69f4efe69c, 'Augear', 'Augear'), + (0x6410100ad463f658f4734da20a6bdfe118780b68, 'Miami Marlins® Zach Pop Base White 108 Common', 'MLB-22S1-C-B107-S-WHI'), + (0x6416f7789bf3321cb747b4ea32117386b9959428, 'Anthony Modeste KOE Motion Aqua Refractor S2-18 Rare', 'BUND-21TS2-R-MS2-18-V-AQU'), + (0x6417019169629cf035b4fe6c8a5a2ffedce24a82, 'Atlanta Braves™ Ian Anderson Silver Signings Facsimile Signature Silver 1 Super Rare', 'MLB-INC21-S-SS1-SLV'), + (0x6419b3befd8b918048333289911565197e96b345, 'Kaiju Space Trip Monster Collage Color 3 Legendary', 'GDZ-RAT21-L-RMC3-A-COL'), + (0x64266a662f52a3b71b18631b8a6bef8d60d96e99, 'RB Leipzig Tyler Adams Young Stars Team Color 150 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS150-SFS-TMC'), + (0x6428828670941e4460b04b191434213c17ebf0be, 'Ryan Kent RFC Top Plays Purple SPTPL-11 Rare', 'SPFL-21SPSS-R-TPLSPTPL-11-V-PUR'), + (0x642ce57772d94ffebbfec06d37169d859e7932a4, 'Jonathan Burkardt M05 Ascendent Blue TK-48 Super Rare', 'BUND-22TK-S-ASCTK-48-S-BLU'), + (0x643b0b897ba8f03db65d4804f5dd56cdbe763c4e, 'Cleveland Guardians™ Ernie Clement Base Blue 1201 Common', 'MLB-22PRI-C-B171-M-BLU'), + (0x644bac370e5483c39bf446f19f67d20cbb311c78, 'St. Louis Cardinals® Jack Flaherty Inception Base Red 87 Rare', 'MLB-INC21-R-IB87-RED'), + (0x644e8067a6595760cf9aebb40615d1900a7cbc51, 'New York Yankees® James Paxton P Base Motion Platinum 542 Epic', 'MLB-S221-E-B542-PLA'), + (0x6450da6b63164611bf6c49cdd7f1cad6384ba344, 'Cleveland Indians® James Karinchak P Base Motion Platinum 361 Epic', 'MLB-S221-E-B361-PLA'), + (0x6453329857eb7abe47f785918c5fbd7100101a57, 'Bayer 04 Leverkusen Edmond Tapsoba Base Players Team Color 23 Uncommon', 'BUND-SC21-U-BP23-TMC'), + (0x64561de1a477599c113161907459b1ccb25f941a, 'Chicago White Sox® Jake Burger Base Blue 1209 Common', 'MLB-22PRI-C-B135-M-BLU'), + (0x645f421331f1ba0956d0c9f87037e401ce1ff70c, 'Kevin van Veen MOT Base White SP-26 Common', 'SPFL-21SPSS-C-BSP-26-A-WHI'), + (0x64679dd202f7fe6b1e4fb8cca5f615f320e3275e, 'Houston Astros® Yordan Alvarez Divison Series Newspaper BW 1057 Common', 'MLB-22TNP-C-DSN3-M-BW'), + (0x646e22ce3f46a260766be521bbb718c832183083, 'Eintracht Frankfurt Sebastian Rode Base Players Team Color 43 Static Facsimile Signature Rare', 'BUND-SC21-R-BP43-SFS-TMC'), + (0x64719597ef3e6acda8054688c79b0aa351a3eb7c, 'Aarón Martín M05 Base Red S4-53 Uncommon', 'BUND-21TS4-U-BS4-53-S-RED'), + (0x64776f6fa3768b5776149bf170a6d88048cdc3c8, 'Milwaukee Brewers™ Mark Mathias OF Base Motion Rainbow 421 Rare', 'MLB-S221-R-B421-RAI'), + (0x6479c0339ad91ce1675ca1ff4b93dc6a2e8ea806, 'Milwaukee Brewers™ Keston Hiura Rookie and Future Phenoms Facsimile Signature White 48 Rare', 'MLB-INC21-R-RC48-WHT'), + (0x647d049a66b127d148e2c3f406cfbc8c21e163e5, 'Chicago Cubs® Willson Contreras Facsimile Signature Gold 3023 Super Rare', 'MLB-22PRI-S-FS54-M-GLD'), + (0x6491b1eed4f3c6fa5123f0687f6e6baf5636b1fe, 'Altitude Group Membership Card', 'ALTG'), + (0x64992198b48312ec37ee17ce305baf5a7836fcb9, 'Hertha Berlin Sami Khedira Base Players Team Color 50 Uncommon', 'BUND-SC21-U-BP50-TMC'), + (0x64a183ff8841ea3822c40fe5453c14eab5e78b5d, 'Philadelphia Phillies® Andrew McCutchen OF Base Static White 431 Common', 'MLB-S221-C-B431-WHI'), + (0x64a1a9f90142ab512e9de05417a1a383c3a4353c, 'VfB Stuttgart Marc-Oliver Kempf Base Players Gold 87 Rare', 'BUND-SC21-R-BP87-GLD'), + (0x64a1e7ec577ffe4af77776c5029acee05d985453, 'Rare Baseball Card 7 Pat Batter Bazooka Joe 2021 NFT', 'BZK-R-7B'), + (0x64a8b1eb54f4431f5917d4f448304aa77541fcd7, 'Wataru Endō VFB Top Players Facsimile Signature Team Color TK-17 Epic', 'BUND-22TK-E-TPTK-17-S-TMC'), + (0x64aa274cc08c4bea41905987855353b4b1b86497, 'Sidboy', 'SID'), + (0x64b3342f202f3071a1db1803b949f10088c8bc54, 'Toronto Blue Jays® Hyun-Jin Ryu P Base Static White 379 Common', 'MLB-S221-C-B379-WHI'), + (0x64bc69dd358bab164c1dc2c9c303d8d3ac29fd3b, 'BOWNER', 'BOWNER'), + (0x64c119864d133979c2981af8b690031426fecfef, 'Los Angeles Dodgers® Justin Turner Base Glitch 257 Uncommon', 'MLB-22S1-U-B254-M-GLI'), + (0x64c439738d34ca714e3ea35324cb6f81e64c5cb7, 'Baltimore Orioles® Rio Ruiz 3B Base Static Gold 369 Uncommon', 'MLB-S221-U-B369-GOL'), + (0x64ce879e0141ac76087eec97a34a07219c31d35e, 'Smol Estates', 'ESTATE'), + (0x64cf3848502971a42132a8c0f783ae10f0d9765c, 'Holograph Collection', 'HLGRH'), + (0x64d56b4b6c844015ec07e52a1267d5d5d4f4e5bd, 'Yak x BenQi: BTC AVAI Vault', 'Yak x BenQi: BTC AVLT'), + (0x64daddbcf0ddceb05734ae11da0a7f2c90e7d945, 'New York Yankees® Estevan Florial OF Base Static Gold 406 Uncommon', 'MLB-S221-U-B406-GOL'), + (0x64dbd0ee26a39279a49aee84206c76c9a7d316f9, 'Wrapped Cryptopunks', 'WC'), + (0x64dc731544e67d4005a7e0159f90f7dfb55b20e8, 'Cincinnati Reds® Jesse Winker Pure Power White 2114 Rare', 'MLB-22PRI-R-PP8-M-WHI'), + (0x64edc0a87708aedbe6ebdc3632d018ff277e0b0a, 'Whoops!!', 'MRI ART'), + (0x64ee420c0bdb13d0fbd69de5fc053f07a3079062, 'Chicago White Sox® Gavin Sheets Base Glitch 12 Uncommon', 'MLB-22S1-U-B12-M-GLI'), + (0x64f0a1d817d61a8e67f6bdb6752290d1cdcbcc25, 'Minnesota Twins® Andrelton Simmons SS Base Motion Rainbow 380 Rare', 'MLB-S221-R-B380-RAI'), + (0x64f36eea4f5f8404a1053181457d1767b51ed30d, 'Boston Red Sox® Rafael Devers Generation NOW Team Colors GN-9 Epic', 'MLB-22S1-E-GN9-M-TMC'), + (0x64f5b608e7656a11cc6368f1307bd34cb96cbfbc, 'Texas Rangers® Jonah Heim C Base Motion Vintage Stock 628 Super Rare', 'MLB-S221-S-B628-VS'), + (0x64fe61b650a2f3eef4f74bede47aa453bfaf29bb, 'New York Mets® Dominic Smith 1B/OF Base Motion Platinum 546 Epic', 'MLB-S221-E-B546-PLA'), + (0x64fec1537ce16488f78b472c47a2c66104133920, 'Avaware Allen Collectible', 'AAC'), + (0x6500b1ac576a6f57e6acdbe02da45d0bc38e834b, 'Joe Newell HIB Base Aqua SP-09 Uncommon', 'SPFL-21SPSS-U-BSP-09-A-AQU'), + (0x6506e376320e83ede746aaf8bc785761b2425c3f, 'Los Angeles Dodgers® Moving On! Base Vintage Stock 238 Super Rare', 'MLB-22S1-S-B235-M-VS'), + (0x6511829e21d3a9fb44098e63da236a7920935cfd, 'DSC Arminia Bielefeld Cedric Brunner Base Players White 85 Common', 'BUND-SC21-C-BP85-WHT'), + (0x65140800deb2837a72c2d9edb1909253d83a7e33, 'Common Comic 66 2-18 Bazooka Joe 2021 NFT', 'BZK-C-66C'), + (0x6515fc198b65fc9a0622a89f2bf26392a5983697, 'BEAUTIFUL FREEDOM', 'BFR'), + (0x65221b6654ac8a20211f5a3a177fc6792c930fd0, 'Mel Hearts Creations', 'Mel'), + (0x6526eeb9ec795cb977bfde34dbc877f33f69c868, 'XOXO', 'XOXO'), + (0x652dd2258fca228c8756e4fa2f32002ff82f306a, 'Uncommon Comic 45 1-45 Bazooka Joe 2021 NFT', 'BZK-U-45C'), + (0x652e695ab715c7b54fa8eaecd113d2343c3fb141, 'Bundesliga 2020-2021 Season Celebration NFT Collection Standard Pack', 'BUND-SC21-PACK-S'), + (0x65319150fea17b023aa5d99088ec23dd50345574, 'Atlanta Braves™ William Contreras Facsimile Signature Letter Booklet Team Color 2 Legendary', 'MLB-INC21-L-LB2-TMC'), + (0x6541307d8397274b688595c228e991a30ca41eba, 'Seattle Mariners™ Marco Gonzales Base Vintage Stock 112 Super Rare', 'MLB-22S1-S-B111-M-VS'), + (0x654c910b67bf2a27044c70c70a52c6f266afbc93, 'Angels® Base Vintage Stock 159 Super Rare', 'MLB-22S1-S-B158-M-VS'), + (0x6553fafcdeab1e4a9fa61d674d7ac47042e55467, 'Strange Things', 'AVAX'), + (0x655a375891cbcecaa10daa0859c7d12a9ad4be74, 'Baltimore Orioles® Bruce Zimmermann Base Vintage Stock 157 Super Rare', 'MLB-22S1-S-B156-M-VS'), + (0x656147a2741ddde4cca1a370bd611ba9aa537ecb, 'Washington Nationals® Josiah Gray Fresh Faces White 2220 Rare', 'MLB-22PRI-R-FF6-M-WHI'), + (0x6563dcdb481ed93bed8259559c5390564d084858, 'Faith Fall Golden Animation Facsimile Signature Color 24 Legendary', 'GPK-NFT22-L-GAFS24-A-COL'), + (0x6564c9135bd6dc619eae81a07af884f6fa9471a4, 'Common Comic 17 1-17 Bazooka Joe 2021 NFT', 'BZK-C-17C'), + (0x6566d163f11ef0f6072ca628fb4dd3eee5c2d3c0, 'PDI2022BusinessReview', 'PDI2022'), + (0x65686575a64c2663d132b93d781ca5b6d3b7ddd3, 'Houston Astros® Zack Greinke Topps NOW White 1023 Rare', 'MLB-21NOW-R-TN1023-WHI'), + (0x65709a5534a896e6ed03c82132028ff8d0fc7436, 'Toronto Blue Jays® Gloves are Hats Base Motion Rainbow 539 Rare', 'MLB-S221-R-B539-RAI'), + (0x65721e0c38653fdd98ec15f93ce845290a6dbc9f, 'Chicago White Sox® Yoan Moncada Postseason Base Red 11 Rare', 'MLB-21POST-R-B11-M-RED'), + (0x657b0bdd69b18b480d9478489acfb2f87b2f6f2d, 'New York Yankees® Anthony Rizzo Facsimile Signature Red 242 Rare', 'MLB-22S1-R-FS16-S-RED'), + (0x657df78cb3c9a0d80495027919f0343f798570e9, 'Minnesota Twins® Byron Buxton Popular Demand Facsimile Signature Slab Teal 3501 Legendary', 'MLB-22PRI-L-PDFS3-M-TEA'), + (0x657f574fc4e763da23b06b9bfb2c9765cb7e69a7, 'nadine''s dreams & other things', 'DREAMS'), + (0x6584680324aa7318e60bed1d67d47a7f713b8a36, 'Super Rare Comic 22 1-22 Bazooka Joe 2021 NFT', 'BZK-S-22C'), + (0x6588578aef687f1bae512aef935e767f99fe8bce, 'Toronto Blue Jays® Nate Pearson Rookie and Future Phenoms Facsimile Signature Black 77 Legendary', 'MLB-INC21-L-RC77-BLK'), + (0x658a34dfa035b2cb95ce939113da973e417e0209, 'The Pink', 'TP'), + (0x6590f37d81c7566e69c8e16cbbbccf1f62f0d238, 'MISC', 'MISC'), + (0x6591b69fd45ba7f314e0d1762d1806069dc4e8dc, 'AVAXADSC', 'AADSC'), + (0x65a1d0e3bdc646a343a8fcb2cee5e92e2b1ddcb3, 'Atlanta Braves™ Ronald Acuña Jr. First Place Skyline 14 Legendary', 'MLB-22ASG-L-FIR14-M-SKY'), + (0x65a3db74de3e18af0782f7e081a9f4ab20cfdecb, 'Degen Traders', 'DEG'), + (0x65a61d9d5ef0b7dc9676161f394dbc141192d9a2, 'CREW', 'CREW'), + (0x65aa52f65ad7ac2636c75f4676464af03e6e0a99, 'Milwaukee Brewers™ Keston Hiura Rookie and Future Phenoms Facsimile Signature Red 48 Epic', 'MLB-INC21-E-RC48-RED'), + (0x65b8fd9464c742156db3731f098fcaf9aa7da8c5, 'Chicago Cubs® Austin Romine C Base Motion Platinum 342 Epic', 'MLB-S221-E-B342-PLA'), + (0x65c899aa4f42334c8244267ffaea0c0839daf26e, 'Super Rare Comic 41 1-41 Bazooka Joe 2021 NFT', 'BZK-S-41C'), + (0x65ca0e4381e591477090e0d5427296dd7c4dc949, 'Chicago White Sox® Base White 255 Common', 'MLB-22S1-C-B252-S-WHI'), + (0x65cbf532a8c999a0ad9273800038107f16d6e253, 'Colorado Rockies™ Jon Gray Base Independence Day RWB 161 Rare', 'MLB-22S1-R-B160-M-RWB'), + (0x65e252deb29c8e44aa4a406fc9704bc6bf3a8d3c, 'Chicago White Sox® Eloy Jimenez Popular Demand Facsimile Signature Slab Teal 3514 Legendary', 'MLB-22PRI-L-PDFS5-M-TEA'), + (0x65e538a57038770b2d8aad93d8806faf827f57d7, 'Cincinnati Reds® Mike Moustakas 2B Base Motion Vintage Stock 368 Super Rare', 'MLB-S221-S-B368-VS'), + (0x65ea46c6d3f716dd2bea19347a61d503c99b40f2, 'New York Yankees® Clint Frazier Base Vintage Stock 101 Super Rare', 'MLB-22S1-S-B100-M-VS'), + (0x65ea4b9998a07b821e80cf2913f7a6267fe2a06b, 'Chicago White Sox® Lucas Giolito 1987 35th Anniversary Wood T87-87 Common', 'MLB-22S1-C-1987A63-M-WD'), + (0x65ebf875247c6e9831a23136dd5ed57f17b2e2fa, '2022 Topps Pristine Baseball NFT Collection Premium Pack', 'MLB-22PRI-PREMIUM-PACK'), + (0x65fdc29cdcaf2c8a36dd1b7dd48b50dbd6e43429, 'San Diego Padres™ Ha-Seong Kim SS Base Motion Rainbow 398 Rare', 'MLB-S221-R-B398-RAI'), + (0x66061dd930ec9a6bb189b6fcfc588ad3dcfc538c, 'Animal Archetypes', 'ANIARCH'), + (0x6613cb8161f8e125f9a78e3c204f1b6c6238ef1e, 'San Diego Padres™ Ha-Seong Kim Base White 188 Common', 'MLB-22S1-C-B187-S-WHI'), + (0x661721ab01db1d233943e721d57f7fad2d96f4ef, 'St. Louis Cardinals® Tommy Edman Postseason Base White 45 Common', 'MLB-21POST-C-B45-S-WHI'), + (0x661fa3d1e4ec695df272cac83b72b6b674128f38, 'Chicago Cubs® Willson Contreras National League Base Blue 1 Rare', 'MLB-22ASG-R-B1-M-BLU'), + (0x662edb13a8580deec4dec41db25cf20695b52ca2, 'Pittsburgh Pirates® Josh Bell Inception Base Blue 77 Uncommon', 'MLB-INC21-U-IB77-BLU'), + (0x662f6cfb7682c9163ea1c817f678e66306846ce9, 'Milwaukee Brewers™ Brandon Woodruff Division Series Bronze 63 Super Rare', 'MLB-21POST-S-D63-M-BRO'), + (0x6643ce2f9073c41d2ab42eca9a1e3f91d8408fc8, 'Minnesota Twins® Jorge Polanco Inception Base White 59 Common', 'MLB-INC21-C-IB59-WHT'), + (0x6647093cda77a211be470e5eb3cd26202da2a41f, 'Rugpull Detective', 'RPRPD'), + (0x66479eee85fe9acdcc303a6d96962f2d44767486, 'Tokyo Gacha Girls - WL Orb', 'TGGWLORB'), + (0x665b3a6e1fdb2c015764edfe8704c00f84318d46, 'San Diego Padres™ Ryan Weathers P Base Static Gold 335 Uncommon', 'MLB-S221-U-B335-GOL'), + (0x665be43af98b7cd8967aa8486d8c3f443c04c3c1, 'VfL Wolfsburg Xaver Schlager Base Players Team Color 33 Static Facsimile Signature Rare', 'BUND-SC21-R-BP33-SFS-TMC'), + (0x6669bf00738b12e7ed02a9e581c617ed2139fc7e, 'Sport-Club Freiburg Lucas Höler Base Players Gold 39 Rare', 'BUND-SC21-R-BP39-GLD'), + (0x667d6b6b3e28c7ffb164fbb5341a4f1921b41306, 'Arizona Diamondbacks® Drew Ellis Base Vintage Stock 298 Super Rare', 'MLB-22S1-S-B294-M-VS'), + (0x667f8d50a01f7377ed92f8d6f48600a23362301b, 'Crystal Women', 'CW'), + (0x6683f9d35350beb66231f1500837bc2a8a0a220d, 'theUdderSide', 'UDDERSIDE'), + (0x668553f7f1cb3b5044edb0858b56e93155864077, 'Chicago White Sox® Lance Lynn Postseason Base Navy 15 Uncommon', 'MLB-21POST-U-B15-M-NVY'), + (0x6689f44b221ecbf08dd39185f224b7503d4bd670, 'Elementals', 'ELEM'), + (0x6692c806794c16b33787e3c8bfe217b739a579d9, 'PrizeBond', 'PZB'), + (0x66932712d4d6f965126506ace9915d473980a2d6, 'Washington Nationals® Josiah Gray Base White 43 Common', 'MLB-22S1-C-B43-S-WHI'), + (0x669a08e4512fb754909334a4eb6f97a7bd8a9c45, 'Oakland Athletics™ Sean Murphy Rookie and Future Phenoms Facsimile Signature Blue 59 Super Rare', 'MLB-INC21-S-RC59-BLU'), + (0x66a18e072efb95ee3e2468f71981c00eaddb97a2, 'RB Leipzig Tyler Adams Young Stars Team Color 150 Super Rare', 'BUND-SC21-S-YS150-TMC'), + (0x66a6e12d5735bbcff61889c332f14c89f7a0b676, 'Erling Haaland DOR Base White S1-02 Common', 'BUND-21TS1-C-BS1-02-S-WHI'), + (0x66ad925995de332cd54d510e8142cc356b6c6bd7, 'St. Louis Cardinals® Nolan Arenado Base Pink 1056 Uncommon', 'MLB-22PRI-U-B116-M-PNK'), + (0x66af9050fc31d862d41f61f3d809f4872aba51a0, 'EggsMare', 'EGM'), + (0x66b5b5ee258d4803df7c873d3daa12c22b24ecfa, 'Miami Marlins® Bryan De La Cruz Base Vintage Stock 22 Super Rare', 'MLB-22S1-S-B22-M-VS'), + (0x66b920890876f95259e148c9225ed8ee0c1d6ca5, 'Taiwo Awoniyi FCU Club Phemons Team Color S4CPH-16 Epic', 'BUND-21TS4-E-CPHS4CPH-16-V-TMC'), + (0x66c9bdb1faa7d72d6dd9c5a4510034724caa997c, 'New York Yankees® Estevan Florial OF Base Motion Platinum 406 Epic', 'MLB-S221-E-B406-PLA'), + (0x66d467153bbaf4c0e2051790298e2650e78dc106, 'Colorado Rockies™ Ryan McMahon 2B Base Static Gold 445 Uncommon', 'MLB-S221-U-B445-GOL'), + (0x66e17d565b8a27b2e12edc56a94b3ef3359cd280, 'Uncommon Comic 36 1-36 Bazooka Joe 2021 NFT', 'BZK-U-36C'), + (0x66e78d4c375cc5e2f1e5b7957160b98eb3a39753, 'Seattle Mariners™ Tom Murphy C Base Static Gold 632 Uncommon', 'MLB-S221-U-B632-GOL'), + (0x66e964334ac0644a29cf1766a203f507146a9026, 'Fantasy & Demons', 'FnD'), + (0x66f2c1a620f0a35751725742f93a7d6c9cc081b0, 'Tampa Bay Rays™ Shane McClanahan P Base Motion Rainbow 408 Rare', 'MLB-S221-R-B408-RAI'), + (0x66f703e48f68c03fffee0eaee7be2fe411cb3713, 'Avalanche Hills Muscle Cars', 'AHMC'), + (0x66f7482e865e0e40c214127d79d31aad2a819240, 'Miami Marlins® Chad Wallach C Base Motion Platinum 593 Epic', 'MLB-S221-E-B593-PLA'), + (0x66fcf6d7dd8ffda625848ceb63ac5026a3bdd715, 'MATTE Presents A Party 3.0', 'MPP3'), + (0x66fd943b2d86098bb14175f4d44e5556002a9c4a, 'Kansas City Royals® Jackson Kowar 1987 35th Anniversary Chrome T87C-96 Super Rare', 'MLB-22S1-S-1987AC70-M-CHR'), + (0x67039e940dfd952e0510d89006a6dff9a9256567, 'Boston Red Sox® J.D. Martinez Base Vintage Stock 182 Super Rare', 'MLB-22S1-S-B181-M-VS'), + (0x6705f0c08a4b17a2f319264677267121ce401eab, 'Miami Marlins® Jazz Chisholm Jr. Base White 6 Common', 'MLB-22S1-C-B6-S-WHI'), + (0x670e10a852196773ffee9f04fc4ec722993886da, 'Twisted Fairy Tales', 'TTS'), + (0x67177bb75a62ea9c5b0e72122465164884664592, 'Minnesota Twins® Joe Ryan 2022 Inception Gold 9 Legendary', 'MLB-22LEG-L-22INC9-M-GLD'), + (0x6727b5173ba7d307c080838475c256ded0fce427, 'Houston Astros® Kyle Tucker Division Series Bronze 21 Super Rare', 'MLB-21POST-S-D21-M-BRO'), + (0x672f466b13ee1856c32f8bd956730d8eff28bf16, 'Good Mornings', 'GMS'), + (0x6740215a14b5ef8741b9c027f8a48634860ac5f6, 'Philadelphia Phillies® J.T. Realmuto Base Blue 1100 Common', 'MLB-22PRI-C-B16-M-BLU'), + (0x674512c96557c053c092d9418e0e8b8f45ef1229, 'Wood Elf', 'RWE'), + (0x674a768a648e8f67ea809d7e552cb44ac040b332, 'Toronto Blue Jays® Vladimir Guerrero Jr. 1987 35th Anniversary Wood T87-80 Common', 'MLB-22S1-C-1987A58-M-WD'), + (0x6752d37af3c05dd407d6f614015a77c6e35e394e, 'Pixel RGB NFT', 'RGBNFT'), + (0x6754d2f8e41d6551f8c195478883b0754948cde7, 'Miami Marlins® Isan Diaz 2B Base Motion Platinum 364 Epic', 'MLB-S221-E-B364-PLA'), + (0x6756805f127d10ff045611481c03543c2ba88e64, 'Uth-Hector KOE Animation Duos TSC-18 Epic', 'BUND-21TSC-E-RATSC-18-A-DUO'), + (0x67577abfea91861d00ef93552c1f451e8819cb07, 'Milwaukee Brewers™ Christian Yelich Base White 288 Common', 'MLB-22S1-C-B285-S-WHI'), + (0x675f8aeb9525f5ad7c41861efb525c270c400500, 'Water & Ink', 'W&I'), + (0x676537bd52e843d2ddebb1c8551168363ad73c80, 'Ryan Sweeney DUD Top Plays Gold SPTPL-12 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-12-V-GOL'), + (0x676c16895a8d5342e609121b696a47dbef4999df, 'Milwaukee Brewers™ Corbin Burnes Postseason Base Red 22 Rare', 'MLB-21POST-R-B22-M-RED'), + (0x676d1bdc79e1c8c09907f64e2fda7e794c7ee3fe, 'Colorado Rockies™ Raimel Tapia Base Blue 1040 Common', 'MLB-22PRI-C-B36-M-BLU'), + (0x676d83be22bd5a2710f8ea29f427dc650be9d384, 'Toronto Blue Jays® Bo Bichette Generation NOW Team Colors GN-29 Epic', 'MLB-22S1-E-GN29-M-TMC'), + (0x67707d0363f8d11989119f0675d40af7cd4d08f4, 'Marvin Ducksch SVW Top Players Facsimile Signature Team Color TK-33 Epic', 'BUND-22TK-E-TPTK-33-S-TMC'), + (0x677b0f872cd0b8ca3fe0651c4ca2c03cafa44f21, 'Angels® Raisel Iglesias Base Glitch 173 Uncommon', 'MLB-22S1-U-B172-M-GLI'), + (0x6788b66bc0eb0750d2cc98d4278607a4ca661b67, 'Water and ink', 'W&I'), + (0x678f26cec94a0f5fea4bda9503b9263f0e78888e, 'AVA Lamp Facsimile Signature Color 8 Uncommon', 'GPK-NFT22-U-FS8-S-COL'), + (0x6793a7c1262cc8fdfc36de1bc6b1ac1df3ffad34, 'ChickenScratch', 'CHKSC'), + (0x67984ec008efb842f522b2308890b025a19a2436, 'Tampa Bay Rays™ Wander Franco Postseason Base White 4 Common', 'MLB-21POST-C-B4-S-WHI'), + (0x67998c2b0446df708eb72f90e775eaae6d9812f4, 'Avax Designer Turtles', 'ADT'), + (0x679a26727d354855a72a88801412778360190ad3, 'Philadelphia Phillies® Zach Eflin P Base Motion Platinum 460 Epic', 'MLB-S221-E-B460-PLA'), + (0x679cc86bd01af2635cdfdc3b088552ca8353f11c, 'Cleveland Guardians™ Shane Bieber Facsimile Signature Gold 3029 Super Rare', 'MLB-22PRI-S-FS44-M-GLD'), + (0x67a28c31fe4c4ffad44987ec0dab4a5c17f8d752, 'Atlanta Braves™ Dansby Swanson Postseason Base White 60 Common', 'MLB-21POST-C-B60-S-WHI'), + (0x67a56eef30320b73d1fe9596193cc07355995700, 'FC Augsburg Robert Gumny Young Stars Team Color 174 Super Rare', 'BUND-SC21-S-YS174-TMC'), + (0x67acdfcb61dace9ecd0a1769182078932dbc5d88, 'Dodoor AVAX', 'DA'), + (0x67ae34b24a6f7456db3fdba224c65d9478b48e3b, 'Chicago Cubs® Jason Heyward OF Base Motion Platinum 501 Epic', 'MLB-S221-E-B501-PLA'), + (0x67bc4cc06cd1fa6e2faf7e96f0ae6098ba923076, 'Gerrit Holtmann BOC Base White S1-08 Common', 'BUND-21TS1-C-BS1-08-S-WHI'), + (0x67be34ead6857f1a2405b4e3ef731e187441a18a, 'Texas Rangers® Sam Huff C Base Static White 654 Common', 'MLB-S221-C-B654-WHI'), + (0x67c3f1b06c1716b12dfa8e12d85fd0a6484ce762, 'San Francisco Giants® Alex Dickerson OF Base Motion Rainbow 616 Rare', 'MLB-S221-R-B616-RAI'), + (0x67c4046932712bbac193e1f05ff8be6a4f1a4543, 'Baltimore Orioles® Jorge Mateo Base Vintage Stock 89 Super Rare', 'MLB-22S1-S-B89-M-VS'), + (0x67ce5edb351700d2d77e7f49b80a533bba253ed8, 'CannaFox.io', 'Pool 2'), + (0x67d48b42e53c066bc620c384ce88426651f5eadf, 'Christoph Baumgartner TSG Base White S4-55 Common', 'BUND-21TS4-C-BS4-55-S-WHI'), + (0x67d8071dcd49f543e1b16c4e0469d21d99a8a2b7, 'Seattle Mariners™ Base Static White 599 Common', 'MLB-S221-C-B599-WHI'), + (0x67dcbe8de945d8034da1e7c8a90b4559fc28198c, 'Chicago White Sox® Edwin Encarnacion DH Base Motion Rainbow 559 Rare', 'MLB-S221-R-B559-RAI'), + (0x67dd59812288872aca1565b8f3efe75e722d3898, 'RISE', 'Eldritch Rising'), + (0x67e24b73b486ab7d553329fc5a755f0e2c409c84, 'Los Angeles Dodgers® Cody Bellinger Base Blue 1044 Common', 'MLB-22PRI-C-B114-M-BLU'), + (0x67e5a177501d68805422d58945f3c54866b626c1, 'Milwaukee Brewers™ Luis Urias Postseason Base White 21 Common', 'MLB-21POST-C-B21-S-WHI'), + (0x67ed92ff151e7da7238deb7cdc942040443d0b1a, 'Joshua Kimmich BAY Top Players Black TK-02 Common', 'BUND-22TK-C-TPTK-02-S-BLA'), + (0x67fd9621210fa251b68629ebd3cc1241ffc31453, 'Colorado Rockies™ Trevor Story Short Print White 260 Rare', 'MLB-22S1-R-SP53-M-WHI'), + (0x6803b3e5207748510ac0ed02b17262883b894bcd, 'Boston Red Sox® Tanner Houck Silver Signings Facsimile Signature Silver 5 Super Rare', 'MLB-INC21-S-SS5-SLV'), + (0x68074c9a7e774940d6fe1bff3e6dc62f7323ff5f, 'Kevin Nisbet HIB Base White SP-08 Common', 'SPFL-21SPSS-C-BSP-08-A-WHI'), + (0x680aaac931fe58c54ed956583633ea33c4da8b42, 'Miami Marlins® Elieser Hernandez Base Glitch 9 Uncommon', 'MLB-22S1-U-B9-M-GLI'), + (0x680b0c6df650246323d3836a535dc05df7351a39, 'Seattle Mariners™ Evan White Inception Base White 82 Common', 'MLB-INC21-C-IB82-WHT'), + (0x680ec71cc3464b6a027a8205e3c723604cfaebbd, 'Secret Stickmen Squad', 'STIK'), + (0x680ef6fdb02ce0d8c467c204b45223fe44e48ca0, 'Detroit Tigers® Miguel Cabrera Topps NOW Aqua 83 ', 'MLB-22NOW-R-TN1-M-AQU'), + (0x6815dc39ef47b819982aa59e9f43053f4350e29f, 'Boston Red Sox® Travis Shaw Base Independence Day RWB 88 Rare', 'MLB-22S1-R-B88-M-RWB'), + (0x681cbfe7d636cdf007193de5a4eda6cb53e57481, 'Grischa Prömel FCU Motion Rainbow Refractor S4-40 Super Rare', 'BUND-21TS4-S-MS4-40-V-RAI'), + (0x68270bca24ec5a5bb5f9b6af386eba5d82bc54aa, 'Seattle Mariners™ Rafael Montero P Base Motion Vintage Stock 637 Super Rare', 'MLB-S221-S-B637-VS'), + (0x683376e4dd2cb8ef758c4c3f0815c083380dfd4a, 'Rulers of Earth (Double Wide) Comic Cover Color 2 Epic', 'GDZ-GVG22-E-CC2-A-COL'), + (0x68343234651ea60558e1f0c05c62b38c5d636cd0, 'Houston Astros® Jose Altuve Short Print White 278 Rare', 'MLB-22S1-R-SP57-M-WHI'), + (0x6840d91bc7e974d5a9345bbe696c7ab5434bea09, 'Arizona Diamondbacks® Taylor Widener P Base Static Gold 481 Uncommon', 'MLB-S221-U-B481-GOL'), + (0x6841fc9f534e5391d93fe8ec7d4b40dec17444b9, 'André Hahn FCA Base White S4-49 Common', 'BUND-21TS4-C-BS4-49-S-WHI'), + (0x684cbc08b5549757a17748de702a592898684cb4, 'Epic Animated Comic 4 Memories Bazooka Joe 2021 NFT', 'BZK-E-4A'), + (0x68555cdd93a531645f2f99bd58d4a278ebd7c1ae, 'Uncommon Comic 25 1-25 Bazooka Joe 2021 NFT', 'BZK-U-25C'), + (0x68575c3bf045e65647b252a4c61fd5f6f549224d, 'Daksinga’s Art', 'DART'), + (0x685ca2b3b60021934e73db6205049870c2051da6, 'Tampa Bay Rays™ Brett Phillips OF Base Static White 586 Common', 'MLB-S221-C-B586-WHI'), + (0x68601545efb4ab6f3ffb723debee71ea9899b615, 'CC0 BEARS', 'BEARS'), + (0x6869c3b9c151fd02e886d5f3b09006853e0b3124, 'New York Mets® Andres Gimenez Rookie and Future Phenoms Facsimile Signature White 53 Rare', 'MLB-INC21-R-RC53-WHT'), + (0x686da4814668f61dead6d8e805ca3700c239634c, 'Cleveland Guardians™ Josh Naylor Base Vintage Stock 77 Super Rare', 'MLB-22S1-S-B77-M-VS'), + (0x687272ca056e8bcb045649535ecf373fdf684b8a, 'Hertha Berlin Nemanja Radonjic Base Players Gold 48 Rare', 'BUND-SC21-R-BP48-GLD'), + (0x6877b87fea3939cbf02873c28426e293a9bd1b44, 'Arizona Diamondbacks® Carson Kelly C Base Motion Vintage Stock 447 Super Rare', 'MLB-S221-S-B447-VS'), + (0x687df0ca8db45b0068e13fdfab49e1ac66a9dd23, 'Houston Astros® Yordan Alvarez Rookie and Future Phenoms Facsimile Signature Red 30 Epic', 'MLB-INC21-E-RC30-RED'), + (0x6887f88e2d8ba2bcf7eb4e3e9f052d56744d5748, 'DashLeague', 'DLNFT'), + (0x688a26bfd9df3cdebc59715fa6d9287a324a6036, 'Aerial Views', 'DRNE'), + (0x688cb84701b157c31fcebf8bdfb1dfde32cd1563, 'VfL Wolfsburg Ridle Baku Young Stars Team Color 158 Super Rare', 'BUND-SC21-S-YS158-TMC'), + (0x689529bed9eef3d960d219126c849fe967cc249f, 'Boston Red Sox® Christian Arroyo 2B Base Motion Platinum 338 Epic', 'MLB-S221-E-B338-PLA'), + (0x68969547990cf7787a27c2925bbeefebb15b03c3, 'Moussa Diaby B04 Top Players Facsimile Signature Team Color TK-07 Epic', 'BUND-22TK-E-TPTK-07-S-TMC'), + (0x68a44b47ed3281db8f196fae085df8b08b03b657, 'Moussa Diaby B04 Top Players Team Color TK-07 Rare', 'BUND-22TK-R-TPTK-07-S-TMC'), + (0x68b4f199c8c5610dd81e7ca731b9bb0893a678fe, 'Atlanta Braves™ Adam Duvall Topps NOW White 1028 Rare', 'MLB-21NOW-R-TN1028-WHI'), + (0x68bc9d081bfff5f2b1c7d780fd3770459d891420, 'NW Doge Pound', 'NWDOGGY'), + (0x68bca1b0945943d6ae7309ca4bf21f76c0a1f4f4, 'Common Comic 103 2-55 Bazooka Joe 2021 NFT', 'BZK-C-103C'), + (0x68c3e636c983f54fcc6a15771cb84b42eb9c84be, 'Chicago Cubs® Craig Kimbrel P Base Motion Platinum 579 Epic', 'MLB-S221-E-B579-PLA'), + (0x68cc0d465e682edde870830aec8298c59e713e1c, 'Arizona Diamondbacks® Zac Gallen P Base Motion Rainbow 440 Rare', 'MLB-S221-R-B440-RAI'), + (0x68cffc6ec1c41ce60091ed46594106fb4ad3be69, 'American League™ Aaron Judge Base Blue 1266 Common', 'MLB-22PRI-C-B209-M-BLU'), + (0x68d1207408d91f0ed58baebc729b28461f4b545e, 'Los Angeles Dodgers® Walker Buehler Postseason Base Navy 39 Uncommon', 'MLB-21POST-U-B39-M-NVY'), + (0x68d2e2db5924b44ef851411825fd57d7ebfac5a7, 'Gladiator Finance', 'GLADNFT'), + (0x68d68d91cc4d7d8061888c9bd5cea18820c18cec, 'Spooktacular Game Piece', 'MPGP'), + (0x68ed1ad2b7a444c91c65d31254483f50ee823b27, 'Mutant Ape Yacht Club', 'cc'), + (0x68eddf82333eafdeddf658c0d1494a900cab19b7, 'Houston Astros® Framber Valdez Postseason Base White 56 Common', 'MLB-21POST-C-B56-S-WHI'), + (0x68f0078705650e0d1e96412a046f7697d4212638, 'Angels® Justin Upton OF Base Motion Platinum 527 Epic', 'MLB-S221-E-B527-PLA'), + (0x68f00a4f7893dd44fdadd9bd6ac578e75f624438, 'Rare Comic 28 1-28 Bazooka Joe 2021 NFT', 'BZK-R-28C'), + (0x68f14b0960e6388698edbbb94dcfc3e37b002a94, 'Texas Rangers® Sam Huff C 1986 Anniversary Static Team Colors 86B-31 Super Rare', 'MLB-S221-S-1986A86B-31-TMC'), + (0x68fc9091c436f6cd6807d1ced23131e6dc8caee5, 'Bold Point profile', 'BPP'), + (0x690d9e1fb86c51244259212d49f4bd51e5328b43, 'Turkish fight club', 'TRUCK'), + (0x69180de809cceb3e5006831c150eeeb6156c064b, 'San Diego Padres™ Fernando Tatis Jr. Inception Base Blue 79 Uncommon', 'MLB-INC21-U-IB79-BLU'), + (0x6926a8ff3d52ff7d2a6aeed868a9115418a4d67b, 'Kansas City Royals® Carlos Santana 1B Base Motion Platinum 513 Epic', 'MLB-S221-E-B513-PLA'), + (0x692e558648db577622d6b6282c513eb42ec81014, 'Wickedmanv3', 'WKMV3'), + (0x6939ae7ec081fcf180b53737579a753bed03504c, 'Colorado Rockies™ Brendan Rodgers Base Glitch 232 Uncommon', 'MLB-22S1-U-B229-M-GLI'), + (0x693b0932af0529001ae68231cbf4726d765e89be, 'New York Mets® Taijuan Walker Base Glitch 312 Uncommon', 'MLB-22S1-U-B308-M-GLI'), + (0x69557f138c3c3260607b97c3e49c2dfb509ca574, 'New York Mets® Jacob deGrom Base Pink 1018 Uncommon', 'MLB-22PRI-U-B2-M-PNK'), + (0x69581899946e476623787cedbe436ee2d919f1eb, 'Milwaukee Brewers™ Freddy Peralta Base Pink 1241 Uncommon', 'MLB-22PRI-U-B168-M-PNK'), + (0x6963814b8e4bb81a0107e2e33a3b5bb08e1296c2, 'Pittsburgh Pirates® Ke''Bryan Hayes 3B Super Short Print Motion White 644 Epic', 'MLB-S221-E-SSP644-WHI'), + (0x69706468b46c17d7f0c39e8411f1aeab81f84c62, 'Jamie Leweling FCU Ascendent Magenta TK-50 Uncommon', 'BUND-22TK-U-ASCTK-50-S-MAG'), + (0x6977ef7891d8dacc273906cf01148b631cea662b, 'Adventures Of Platon', 'AOPN'), + (0x697967f8a068f6334beb93d99f8f9cea129d649e, 'Andy''s Pool', 'WW1'), + (0x6979d45cb8c38319d4945193a534b76d24b5f3fb, 'St. Louis Cardinals® Jordan Hicks P Base Static White 536 Common', 'MLB-S221-C-B536-WHI'), + (0x69807f1e0de9d9917435291dfec0e425d46b912e, 'Colorado Rockies™ Trevor Story 1987 35th Anniversary Chrome T87C-21 Super Rare', 'MLB-22S1-S-1987AC17-M-CHR'), + (0x69933905f2b0a8d9425ba825f217a59fff64e378, 'Chris Führich VFB Club Phemons Team Color S4CPH-17 Epic', 'BUND-21TS4-E-CPHS4CPH-17-V-TMC'), + (0x69943c3ccc9344e0df0d8e1113f40450d2c6e09b, 'New York Yankees® Gerrit Cole 1987 35th Anniversary Chrome T87C-94 Super Rare', 'MLB-22S1-S-1987AC68-M-CHR'), + (0x699d9981e8e96fa5dac66b35a443f614880ba839, 'Konstantinos Mavropanos VFB Animation Gold Refractor S2-15 Legendary', 'BUND-21TS2-L-AS2-15-V-GOL'), + (0x69a168530dd350fbf7367f7a2b94dcf3f5bb6fed, 'St. Louis Cardinals® Jordan Hicks P Base Motion Rainbow 536 Rare', 'MLB-S221-R-B536-RAI'), + (0x69a3ddf615fd5d8b2a19ead19b4c9b011d6c06f3, 'Miami Marlins® Alex Vesia Rookie and Future Phenoms Facsimile Signature Blue 39 Super Rare', 'MLB-INC21-S-RC39-BLU'), + (0x69a712f8dfb75d493f41d23d7a73a006e63b4b9f, 'Miami Marlins® Trevor Rogers P Base Motion Rainbow 563 Rare', 'MLB-S221-R-B563-RAI'), + (0x69a911d14adfffe01b77145291c8bc5437d894c6, 'Arizona Diamondbacks® Carson Kelly Base Independence Day RWB 177 Rare', 'MLB-22S1-R-B176-M-RWB'), + (0x69a9362f57487e3b84ae6742ec361328fcaf8851, 'New York Yankees® Anthony Rizzo Facsimile Signature Blue 242 Uncommon', 'MLB-22S1-U-FS16-S-BLU'), + (0x69a9390537e3d00863f9ea69d78f2b96bd17623d, 'Chicago White Sox® Tim Anderson Facsimile Signature Glitch 64 Epic', 'MLB-22S1-E-FS3-M-GLI'), + (0x69ad10d0f579297f20bb800267d69cff51e81aab, 'Lucas Tousart BSC Top Players Facsimile Signature Team Color TK-21 Epic', 'BUND-22TK-E-TPTK-21-S-TMC'), + (0x69afd34b3e8d3c8fbbe88f8080b80251313eb3ae, 'King Ghidorah Fly-by Traditional Art CMYK Offset 7 Super Rare', 'GDZ-RAT21-S-TA7-A-CMYK'), + (0x69b220d6a3c8896bfc22f09ed6a5a82fd86dcbdf, 'Atlanta Braves™ William Contreras National League Base Blue 12 Rare', 'MLB-22ASG-R-B12-M-BLU'), + (0x69b3e4a78ae89d63a3b116652622ef0baffcac02, 'Common Comic 41 1-41 Bazooka Joe 2021 NFT', 'BZK-C-41C'), + (0x69b5af70c9699fa139d42aa988c0ce33289e1c91, 'Atlanta Braves™ Eddie Rosario Base Glitch 153 Uncommon', 'MLB-22S1-U-B152-M-GLI'), + (0x69b6e497a036baa56ff0c0be926389b9ba62dc1d, 'Holograph Collection', 'HLGRH'), + (0x69b83ca128f8906ea7f85a4ccd07d17d5e155df6, 'TimeShuffle Founders Pass', 'FOUNDERS'), + (0x69bc90ae180bb769450c8e10781138502506517a, 'Chicago White Sox® Luis Robert Base Vintage Stock 107 Super Rare', 'MLB-22S1-S-B106-M-VS'), + (0x69bcb6c71ff97c4f670a152810b1c877bd061a0b, 'Dreams n Nightmares', 'Dnn'), + (0x69c8e1310652a21e06f1ccc1adedde8554a430f2, 'Web3andMetaverse', 'PDI2022'), + (0x69d53b5d292474a8456cd13ceee1f1d01f3c6c6d, 'Mr.W Addictions', 'MRWA'), + (0x69d9f3ad58a2c4e5ad6ff97b1f3fd3d7d2295f3d, 'smolr doomers', 'SD'), + (0x69dafb5b9abda80a8160f700ab26eb710a253bb4, 'Jan Thielmann KOE Base Red S4-38 Uncommon', 'BUND-21TS4-U-BS4-38-S-RED'), + (0x69dd409fbeed3ab56249399507fff5ff9bc5e601, 'Philipp Förster BOC Color Splash Facsimile Signature Team Color TK-72 Legendary', 'BUND-22TK-L-CSTK-72-S-TMC'), + (0x69e2c18fd0cab62fc23ed6e5ab373283a796d5bb, 'Colorado Rockies™ Ryan McMahon Base White 132 Common', 'MLB-22S1-C-B131-S-WHI'), + (0x69e5440bbe3efcb0b5161628053150f9a79d2c30, 'Angels® Shohei Ohtani 2022 Inception Gold 7 Legendary', 'MLB-22LEG-L-22INC7-M-GLD'), + (0x69e7b026950d038cf619bfa92f30151cf081aaaa, 'Godzilla Mountainscape Traditional Art Color 3 Epic', 'GDZ-RAT21-E-TA3-A-COL'), + (0x69e7ca9f079a8c6258a15e2b46bbd95791f39e4a, 'Polar Lucky Box', 'PLB'), + (0x69e9dd4339d7d5299f14a1fac14c340f434ccd2f, 'Pittsburgh Pirates® Rodolfo Castro Base Vintage Stock 85 Super Rare', 'MLB-22S1-S-B85-M-VS'), + (0x69f5bd8b513e4de2ce2b69392fc84c2c0131f728, 'San Francisco Giants® Mike Yastrzemski 1987 35th Anniversary Chrome T87C-41 Super Rare', 'MLB-22S1-S-1987AC31-M-CHR'), + (0x69fb007cfabc064c06d910053339e2f49210eb9e, 'Navigating Through the Pain', 'NTP'), + (0x69fc4559e7e7bba217266bff67e626c51e20b9a1, 'Milwaukee Brewers™ Jake Cousins Base White 20 Common', 'MLB-22S1-C-B20-S-WHI'), + (0x69fd8c8324fc88250af40c6149512dbb3be6aff4, 'Toronto Blue Jays® Team Cube 2.0 Team Colors 20 Legendary', 'MLB-22S1-L-TC220-M-TMC'), + (0x6a077784562bd376c6028fdc5b1c63276d01bfd1, 'Avafers', 'AFRS'), + (0x6a1c401c6a9928b4d40ed0c8d8214ba2a2794541, 'Images Of Feet', 'FEET'), + (0x6a1fb2b140be4fefa9ab4120bc60b9466e3c866e, 'New York Yankees® Base Glitch 121 Uncommon', 'MLB-22S1-U-B120-M-GLI'), + (0x6a2da33d33de63bc32d3372389576de01b3315dc, 'Baltimore Orioles® Hold Me Back, Bro! Base Motion Platinum 578 Epic', 'MLB-S221-E-B578-PLA'), + (0x6a440da02b720812e6cf02c1e0cb6a04071c4c1a, 'Baltimore Orioles® Trey Mancini Popular Demand Facsimile Signature Teal 3533 Legendary', 'MLB-22PRI-L-PDFS16-M-TEA'), + (0x6a46e8e2d27993df2491896ec37d242e797f067f, 'Philadelphia Phillies® Zack Wheeler Base Pink 1242 Uncommon', 'MLB-22PRI-U-B184-M-PNK'), + (0x6a484558ba9cccedd6f79d5cad271a7ba54dc8fe, 'Kaiju Thunderstorm Comic Cover Color 1 Rare', 'GDZ-RAT21-R-CC1-S-COL'), + (0x6a5b10b0c05a75c3dd6255a8239d79cd76f4eded, 'Monkey club', 'MCLUB'), + (0x6a5c8004ca0c076a89e2230e65c37350dece72d1, 'National League™ Freddy Peralta Base Blue 1284 Common', 'MLB-22PRI-C-B196-M-BLU'), + (0x6a61dd25adcfbef4182683a05226b060c9d8a7c8, 'Baltimore Orioles® Bruce Zimmermann Base Independence Day RWB 157 Rare', 'MLB-22S1-R-B156-M-RWB'), + (0x6a6653a465b150f2ebb35956f249ba31802264f2, 'Super Rare Comic 102 2-54 Bazooka Joe 2021 NFT', 'BZK-S-102C'), + (0x6a66b83335f426dc1cebf588f437bb3dc714aa08, 'LILA', 'LILA'), + (0x6a7cb0202a5fa119ef9b3537ff704d71476692cc, 'Evil Dreams', 'ED'), + (0x6a81866c94efc097e75abcbcddd3e8b63ebebe93, 'Snowball NFT Snow Ball Head', 'SNOBNFTSNOWBALLHEAD'), + (0x6a81afb6b89502abda979dbf20a09fe15a06e588, 'St. Louis Cardinals® Dylan Carlson Rookie and Future Phenoms Facsimile Signature Blue 70 Super Rare', 'MLB-INC21-S-RC70-BLU'), + (0x6a982950c8123fd62b59088b239e7a215114e129, 'Animals X', 'Animals'), + (0x6a984dfa13c0de9bddb81ea0abf64dbc5bd89ee6, 'Super Rare Comic 4 1-4 Bazooka Joe 2021 NFT', 'BZK-S-4C'), + (0x6a9cc7ec7a9c9416cdec63eead02cdf8ab647449, 'Philadelphia Phillies® Ian Kennedy Base Vintage Stock 102 Super Rare', 'MLB-22S1-S-B101-M-VS'), + (0x6ab964344adc1a1185fa5306c688542eb6a59ad7, 'Common Comic 30 1-30 Bazooka Joe 2021 NFT', 'BZK-C-30C'), + (0x6ad52c10ce3b42635bb35fb3fe7403edf293010f, 'Tampa Bay Rays™ Shane McClanahan Base Independence Day RWB 244 Rare', 'MLB-22S1-R-B241-M-RWB'), + (0x6ad7ed18f66c1280f02c8f5a23d13844f73abd05, 'Tampa Bay Rays™ Austin Meadows Base Blue 1238 Common', 'MLB-22PRI-C-B149-M-BLU'), + (0x6adbbf36fa198141d083921a8dc436f03c1974d7, 'Chicago White Sox® Jake Burger Fresh Faces Facsimile Signature Reward White 3436 Legendary', 'MLB-22PRIASG-L-FFR14-M-WHI'), + (0x6af72393a5109f7a03e63129b4e7f17fe8fe94c6, 'Philadelphia Phillies® Zach Eflin P Base Static Gold 460 Uncommon', 'MLB-S221-U-B460-GOL'), + (0x6af77d842b84060625eca7aea3c3e25152ebb6f2, 'Philadelphia Phillies® Kyle Gibson Base Pink 1244 Uncommon', 'MLB-22PRI-U-B165-M-PNK'), + (0x6afdfcfb331ba93a1a537f09b56d12758e4afcda, 'Boston Red Sox® Alex Verdugo Rookie and Future Phenoms Facsimile Signature Black 5 Legendary', 'MLB-INC21-L-RC5-BLK'), + (0x6afe5f63786265dd374ad5500e793bad13bda18a, 'Artbish DeadOwlBishhh', 'Dobh'), + (0x6b135283afaf29a4dd3d672523d81a1206e0eb4e, 'Chicago White Sox® Dallas Keuchel P Base Static White 488 Common', 'MLB-S221-C-B488-WHI'), + (0x6b145290e6da2e52e8e9bd39bbcca1b591ea725d, 'PrizeBond', 'PB'), + (0x6b16639137f017898a5bd711c450da6f33ff3d11, 'Cheese Cow', 'COW'), + (0x6b33d6f8c76bd86ba63422002259d898a9883d1e, 'Philadelphia Phillies® Ian Kennedy Base White 102 Common', 'MLB-22S1-C-B101-S-WHI'), + (0x6b3719591d6715a14e10ed82f426d46908ffb989, 'Baltimore Orioles® Keegan Akin P Base Static White 562 Common', 'MLB-S221-C-B562-WHI'), + (0x6b3d91de082dc0d6f0e666f5dde14fa06f054631, 'Epic Baseball Card 3 Pesty Batter Bazooka Joe 2021 NFT', 'BZK-E-3B'), + (0x6b4b43d614495b015c5da2f910534af33cf825be, 'Chicago Cubs® Nico Hoerner Silver Signings Facsimile Signature Silver 6 Super Rare', 'MLB-INC21-S-SS6-SLV'), + (0x6b53269e9de4e35c0c72038c4dfc929f7ee868cf, 'Washington Nationals® Max Scherzer Inception Base Blue 98 Uncommon', 'MLB-INC21-U-IB98-BLU'), + (0x6b544786db2600b8dafbd295ab917e615691b021, 'Detroit Tigers® Tarik Skubal Inception Base Blue 32 Uncommon', 'MLB-INC21-U-IB32-BLU'), + (0x6b5b73c80cb5430e6c8f715a2986c5aa315aeb21, 'Staked Legendary YieldKey', 'LYKSTK'), + (0x6b609133fcf0fc3b4f8f55c2d4460620ccd6afb1, 'Cleveland Indians® Aaron Civale Rookie and Future Phenoms Facsimile Signature Black 12 Legendary', 'MLB-INC21-L-RC12-BLK'), + (0x6b8a53906e4d4adf078e4dab5b59f0ea8284f7a8, 'Oakland Athletics™ Mitch Moreland Base Independence Day RWB 42 Rare', 'MLB-22S1-R-B42-M-RWB'), + (0x6b8b8f7e43eabef6c12a36642971e021e91272f3, 'Angels® Anthony Rendon Inception Base Blue 42 Uncommon', 'MLB-INC21-U-IB42-BLU'), + (0x6b8e0d2c25c209b557caf6a992f6f052c51db531, 'New York Yankees® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 19 Legendary', 'MLB-21S2SC-L-21S2SCR19-M-TC'), + (0x6b8fbd3185ee7055dac59d6c62c638403f14edf0, 'Dejan Ljubicic KOE Animation Black Refractor S4-69 Epic', 'BUND-21TS4-E-AS4-69-V-BLA'), + (0x6b97773376334bc6a19e3069f7157facd3c7ef53, 'DRUNK DADS AT CAMP', 'BEER'), + (0x6b9d165b083adf50b9b0bcde44df2d46a0f27f6a, 'Colorado Rockies™ Ryan McMahon 2B Base Motion Vintage Stock 445 Super Rare', 'MLB-S221-S-B445-VS'), + (0x6b9d8cfe5f0cdf8a9e6ec53b1f17fe6bd23748b3, 'Pittsburgh Pirates® Ben Gamel Base White 285 Common', 'MLB-22S1-C-B282-S-WHI'), + (0x6baa6f98d19dc114bfa1357f0becc81294cb9091, 'Los Angeles Dodgers® Mookie Betts Pure Power White 2108 Rare', 'MLB-22PRI-R-PP5-M-WHI'), + (0x6bb0ef4e9a20c7e0494eaf0376a5a91754e8f4fe, 'San Diego Padres™ Jake Cronenworth Divison Series Broadcast RWB 1089 Rare', 'MLB-22TNP-R-DSA5-M-RWB'), + (0x6bb5ff1e20dea59e0a8a16bba52591694ab56b73, 'Kansas City Royals® Nicky Lopez Base Vintage Stock 76 Super Rare', 'MLB-22S1-S-B76-M-VS'), + (0x6bbe563edcc00938c29403f9ef77d9743d5859c8, 'Texas Rangers® Mike Foltynewicz Base Independence Day RWB 293 Rare', 'MLB-22S1-R-B290-M-RWB'), + (0x6bc071bfb840f61a16e6bc0ae7fa53cf896415c7, 'Miami Marlins® Corey Dickerson OF Base Static Gold 541 Uncommon', 'MLB-S221-U-B541-GOL'), + (0x6bca431faff98c2397c8a7a11eb1736f17686dc2, 'Enter Ferrets', 'EFERRE'), + (0x6bcab247c599cfe2502f281f5b5b9434acbca4f8, 'American League™ Salvador Perez Base Blue 1261 Common', 'MLB-22PRI-C-B213-M-BLU'), + (0x6bd120602aab9bd1e6471e746ed7c05bdcb5d0a3, 'Cleveland Indians® James Karinchak P Base Static Gold 361 Uncommon', 'MLB-S221-U-B361-GOL'), + (0x6be6371195b0bfb1db886148197bdda5e165bba3, 'Super Rare Comic 36 1-36 Bazooka Joe 2021 NFT', 'BZK-S-36C'), + (0x6bf48d51893992521f55eb3bbc5d93ab9c18616c, 'Golden 2022 ASG Event Exclusive Super Rare', 'MLB-22ASGEVENT-S-22ASGR4-M-GLD'), + (0x6bf57ef9938597366f8e4fde831409ba7abadf93, 'Cleveland Guardians™ Shane Bieber Base White 21 Common', 'MLB-22S1-C-B21-S-WHI'), + (0x6bf6acf59d082faf0eb466cbb094a971de120898, 'Rare Comic 52 2-4 Bazooka Joe 2021 NFT', 'BZK-R-52C'), + (0x6bfbba97fcac2280fe883f16d45b6d9d1e6f5b4d, 'Super Rare Baseball Card 5 Herman Pitcher Bazooka Joe 2021 NFT', 'BZK-S-5B'), + (0x6bfcd10a0f11060028307b9127d59fc56466d9fb, 'Imagination by Design', 'Life'), + (0x6c0b40aff40594d42511e880c6855af5323c67da, 'Christopher Nkunku RBL Base White S4-41 Common', 'BUND-21TS4-C-BS4-41-S-WHI'), + (0x6c0d047d310a891e2547e2d155f6985872d167a2, 'Miami Marlins® Jazz Chisholm Jr. 1987 35th Anniversary Wood T87-77 Common', 'MLB-22S1-C-1987A55-M-WD'), + (0x6c1cbbf47b846cb1989fd6b6ccb3013a624726be, 'Africa', 'gLW'), + (0x6c1d4914e70babed9a9c3b98972e3267812addf1, 'Godzilla RAT Pages 16 & 17 Comic Page Color 14 Super Rare', 'GDZ-RAT21-S-CP14-A-COL'), + (0x6c2834c9b8394dfc7f271da35a482e51a36acc4b, 'FC Augsburg Marco Richter Base Players Team Color 72 Static Facsimile Signature Rare', 'BUND-SC21-R-BP72-SFS-TMC'), + (0x6c2b05fe3c15c6f619e80e4d824a8142fbbb6b4f, 'WAXy William Facsimile Signature Color 7 Uncommon', 'GPK-NFT22-U-FS7-S-COL'), + (0x6c2d3fd9d2d9cb00ea9f811c88cd5bc334d26f54, 'Kansas City Royals® Jackson Kowar 1987 35th Anniversary Wood T87-28 Common', 'MLB-22S1-C-1987A23-M-WD'), + (0x6c3659c1e40cdc55f6a96553aed7a29081a9952b, 'New York Mets® Noah Syndergaard P Base Motion Platinum 631 Epic', 'MLB-S221-E-B631-PLA'), + (0x6c3e6021c9618b2a141a9b84592a968d492da95c, 'FC Union Berlin Max Kruse Top Players Gold 121 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP121-AFS-GLD'), + (0x6c4897d3d7ad08b9fb243ccde1d581ddd5a65b68, 'Immortalizer', 'IMMORTALIZER'), + (0x6c51b7ee3d6e1c747a7e8eac6cebb7b3c2b4a15b, 'San Diego Padres™ Austin Nola C/1B Base Static Gold 448 Uncommon', 'MLB-S221-U-B448-GOL'), + (0x6c5721ad7f50788c50f4e66124cf861dcf6e64f0, 'PrizeBondLink', 'PBL'), + (0x6c57f424334cedf535c67139a35d5769385fd0d2, 'Godzilla Offshore Traditional Art CMYK Offset 1 Super Rare', 'GDZ-RAT21-S-TA1-A-CMYK'), + (0x6c5fdc3ad5ad76fd0a6dfac3b8f4fcacbdecc2ba, 'Colorado Rockies™ Dom Nunez Base Vintage Stock 193 Super Rare', 'MLB-22S1-S-B192-M-VS'), + (0x6c6585bd6713261d66904ebf1270842f7da783ff, 'Jude Bellingham DOR Base Red S2-17 Uncommon', 'BUND-21TS2-U-BS2-17-S-RED'), + (0x6c68a06b7af75778ecdc99406ddbeefa335f4df6, 'Baltimore Orioles® Cedric Mullins Base Vintage Stock 94 Super Rare', 'MLB-22S1-S-B93-M-VS'), + (0x6c68d3df3355f8eacafa91f56b9cf564a2ab54ca, 'DSC Arminia Bielefeld Stefan Ortega Moreno Top Players Gold 139 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP139-AFS-GLD'), + (0x6c6d47eb3a2a09dfac91c45e31caf6c26ec158e6, 'Miami Marlins® Zach Pop Base Glitch 108 Uncommon', 'MLB-22S1-U-B107-M-GLI'), + (0x6c7a88e8833650e66043250098e1a8c38c207752, 'Houston Astros® Enoli Paredes Rookie and Future Phenoms Facsimile Signature Blue 29 Super Rare', 'MLB-INC21-S-RC29-BLU'), + (0x6c7db95951b4cee0115e60080abe5e14aa84354e, 'Chicago Cubs® Anthony Rizzo Inception Base Red 13 Rare', 'MLB-INC21-R-IB13-RED'), + (0x6c844f635105ddd2c4dd944d531bb704714aa975, 'Tampa Bay Rays™ Tyler Glasnow Base Pink 1087 Uncommon', 'MLB-22PRI-U-B28-M-PNK'), + (0x6c88b876953a7ecd6b7897b2e7a659a9c0943d4b, 'FSV Mainz 05 Daniel Brosinski Base Players Team Color 65 Static Facsimile Signature Rare', 'BUND-SC21-R-BP65-SFS-TMC'), + (0x6c88e4ba17bf3a0de94b2b8ab44cf52b32b5dda4, 'Lukas Nmecha WOB Top Players Facsimile Signature Team Color TK-09 Epic', 'BUND-22TK-E-TPTK-09-S-TMC'), + (0x6c8923c9c3bddcda64c9d2f16d2a09a67f0122a7, 'San Diego Padres™ Dinelson Lamet P Base Static White 418 Common', 'MLB-S221-C-B418-WHI'), + (0x6c8ce9fc3e243cbee0210d6a597aef6ad80c9815, 'KimiNani Genesis', 'KMI'), + (0x6c968fb661478a8ee46ca9ac5c54ec86cef56710, 'Toronto Blue Jays® George Springer Popular Demand Facsimile Signature Teal 3519 Legendary', 'MLB-22PRI-L-PDFS6-M-TEA'), + (0x6ca025d28b660565070e38743b4966f62941bb2d, 'FC Schalke 04 Amine Harit Top Players Gold 124 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP124-AFS-GLD'), + (0x6ca2e836e468a4821b5a47eb47c2c82d1cf1e664, 'PFP Masks', 'PFPMASKS'), + (0x6ca310599430b805cad6eafd53aed605ed4b39d4, 'Atlanta Braves™ Freddie Freeman Inception Base Red 3 Rare', 'MLB-INC21-R-IB3-RED'), + (0x6ca5a68afb9d7c133f87072905867def2f6174cf, 'Fight Night Poster #2 Lobby Card Black and White 2 Rare', 'GDZ-GVG22-R-LC2-S-BW'), + (0x6cacb54146b087a8d294936564facf46c855d45f, 'New York Yankees® HR Handoff Base Static Gold 646 Uncommon', 'MLB-S221-U-B646-GOL'), + (0x6cb1c84cc8ab24e77e58a991778a1fd513e12358, 'OhayouNFT', 'GM'), + (0x6cb9bcf77b943b5b95e7d02c096f9c829c8dee5e, 'Street Genesis', 'StreetGenes'), + (0x6cc083e8a9cb1f17b0057cfcc8a665a3e7b1b994, 'Philadelphia Phillies® Rafael Marchan C Short Print Motion White 622 Super Rare', 'MLB-S221-S-SP622-WHI'), + (0x6cc1b13b2eff2f8602b6e89b615e97e09bd7002a, 'CornStars', 'CS'), + (0x6cc22b66dd6fa1d1b39953bde7cd61360970370b, 'Cincinnati Reds® Mike Moustakas 2B Base Static White 368 Common', 'MLB-S221-C-B368-WHI'), + (0x6cc6266feca87428c14786c192219ca8af78c13f, 'Cleveland Indians® Cleveland Indians® Base Static Gold 459 Uncommon', 'MLB-S221-U-B459-GOL'), + (0x6cd1f344179a63db41831a2e8f90da43256a77a0, 'Rodan Base Collectible Blue 18 Common', 'GDZ-RAT21-C-B18-S-BLU'), + (0x6cdadecd5e5904c4f436ea876e13237fe06dca42, 'Tampa Bay Rays™ Yonny Chirinos P Base Motion Rainbow 592 Rare', 'MLB-S221-R-B592-RAI'), + (0x6cdd07ffb7a82cbe49baa4fe47ce5bd8ae52dad2, 'Cleveland Guardians™ Shane Bieber Base Vintage Stock 21 Super Rare', 'MLB-22S1-S-B21-M-VS'), + (0x6cde5bd4e593de39846bdcf7b4175c723a03fc68, 'strangers', 'STG'), + (0x6cdf22dcacb4983cd39bcfadd54287ab391a3d7f, 'MP4 Collectible Prod', 'MPCC'), + (0x6ce101d4c41ce91bad9e79ad0c48882807b382c4, 'Cincinnati Reds® Jesse Winker Base Vintage Stock 81 Super Rare', 'MLB-22S1-S-B81-M-VS'), + (0x6ce3d9f7a3b1d5424a892993a189d21feda63f6a, 'Kansas City Royals® Emmanuel Rivera Base White 18 Common', 'MLB-22S1-C-B18-S-WHI'), + (0x6ce559b5226ccd5ea73ef79b1fe84452fcee9d42, 'Houston Astros® Alex Bregman Division Series Bronze 19 Super Rare', 'MLB-21POST-S-D19-M-BRO'), + (0x6ce6a08e467072477dceb8a7cede763d18a6ab16, 'Van Buren Records Ring', 'VBRR'), + (0x6ce7c3e849c6451fb1e4b0c86301b5c516b881a9, 'Los Angeles Dodgers® Chris Taylor Postseason Base Red 34 Rare', 'MLB-21POST-R-B34-M-RED'), + (0x6cee5f2a7092cc9ef05206336d2143908162abd9, 'FC Schalke 04 Omar Mascarell Base Players White 58 Common', 'BUND-SC21-C-BP58-WHT'), + (0x6cf0c378f48d1bda32b81bd2cf2487bc48553c67, 'Texas Rangers® Jonah Heim Base Vintage Stock 230 Super Rare', 'MLB-22S1-S-B227-M-VS'), + (0x6cf21e71a4c0ba9dbcb09f609090eff3ff31983c, 'Rare Comic 56 2-8 Bazooka Joe 2021 NFT', 'BZK-R-56C'), + (0x6cfbe001d491ba92aeff4fb30ace047c40e8c6c2, 'Anguirus and Godzilla Base Collectible Magenta 3 Common', 'GDZ-RAT21-C-B3-S-MAG'), + (0x6cfdec2e32ec45fd900853fafe67349f75daf35f, 'American League™ Tim Anderson Base Pink 1272 Uncommon', 'MLB-22PRI-U-B223-M-PNK'), + (0x6d0445886baa62e779f91730561e95fbb00bc270, 'Chicago Cubs® Kyle Hendricks Base Vintage Stock 168 Super Rare', 'MLB-22S1-S-B167-M-VS'), + (0x6d04cc7be3dff5c7361a66fafb3a9e893e623f4f, 'FC Union Berlin Robin Knoche Base Players Team Color 52 Static Facsimile Signature Rare', 'BUND-SC21-R-BP52-SFS-TMC'), + (0x6d04e3fd90d1cb2fa15dffb54d522a6c749db382, 'Tons of Rock', 'TONS'), + (0x6d07709a30fce07901b2a6d8e1d6e6ac17eb96de, 'Alchemist Crucible v1', 'CRUCIBLE-V1'), + (0x6d23abfdab25a8a4f48b1f3564db3217d4ac3c15, 'Los Angeles Dodgers® Cody Bellinger Inception Base Red 47 Rare', 'MLB-INC21-R-IB47-RED'), + (0x6d23ae500b9dabdc7be00828c8a86f4b0e88af81, 'St. Louis Cardinals® Kwang-Hyun Kim Base White 151 Common', 'MLB-22S1-C-B150-S-WHI'), + (0x6d2971c8132c8e17cdf044be97d5ccfe893f8f9e, 'AVAX LOTTO', 'AL'), + (0x6d3238c61ad2959d53411cef797a170a8c19f448, 'BMTLSC', 'BMTLSC'), + (0x6d44ce6d3b830993b0d7a8e343cf2a0c84e7e99e, 'Detroit Tigers® Casey Mize Fresh Faces Facsimile Signature Reward White 3408 Legendary', 'MLB-22PRIASG-L-FFR6-M-WHI'), + (0x6d4af504bf13f0d08dd93e019365eea31cc93f30, 'Philadelphia Phillies® Aaron Nola P Base Motion Rainbow 537 Rare', 'MLB-S221-R-B537-RAI'), + (0x6d4f2e51418f13e4b3c2f3a7a6ef0d681bc324b3, 'Arizona Diamondbacks® Luke Weaver Base Independence Day RWB 273 Rare', 'MLB-22S1-R-B270-M-RWB'), + (0x6d4fcfe0317a29dbb0d54235e62d8b917d31c335, 'Oakland Athletics™ Mitch Moreland Base Glitch 42 Uncommon', 'MLB-22S1-U-B42-M-GLI'), + (0x6d5443a61f7650b294f5eac3190de981e8eefce4, 'DSC Arminia Bielefeld Marcel Hartel Base Players Team Color 84 Static Facsimile Signature Rare', 'BUND-SC21-R-BP84-SFS-TMC'), + (0x6d5570d217b532cf97c6d2044b3f55ba27411afe, 'Chicago Cubs® Willson Contreras Base Independence Day RWB 147 Rare', 'MLB-22S1-R-B146-M-RWB'), + (0x6d58af4cb8b59b7116661d25485487db09ea82bc, 'Super Rare Comic 86 2-38 Bazooka Joe 2021 NFT', 'BZK-S-86C'), + (0x6d5bb14043d76790d0dc9c5da1e229d15c9cdabb, 'Serge Gnabry BAY Top Players Team Color TK-01 Rare', 'BUND-22TK-R-TPTK-01-S-TMC'), + (0x6d5d3d0ec78b6d06e6685ce5d28bd26f1b8d2cc2, 'Texas Rangers® Curtis Terry Base Pink 1216 Uncommon', 'MLB-22PRI-U-B170-M-PNK'), + (0x6d5e21c6c6aeb7ebecc6461f66e0db9f7943f57a, 'Boston Red Sox® Xander Bogaerts Postseason Base Red 68 Rare', 'MLB-21POST-R-B68-M-RED'), + (0x6d67a81a31dc7cae17772fd832c88d477736bb03, 'Kansas City Royals® Salvador Perez Base Independence Day RWB 219 Rare', 'MLB-22S1-R-B216-M-RWB'), + (0x6d6b90e57319ff3774f3eb86cc7e65c7f13d1dbe, 'Washington Nationals® Stephen Strasburg P Base Static White 400 Common', 'MLB-S221-C-B400-WHI'), + (0x6d717e5ea7855e0abf4ad60007ddf3f9744773c2, 'TSG Hoffenheim Robert Skov Base Players White 29 Common', 'BUND-SC21-C-BP29-WHT'), + (0x6d7324d9037ff4254e3a414561b2bcb1a6cf4f96, 'Baltimore Orioles® Cedric Mullins Base Glitch 94 Uncommon', 'MLB-22S1-U-B93-M-GLI'), + (0x6d7376d0ec744e91146b5d776928a40b23ba96f4, 'Godzilla RAT Page 18 Comic Page Color 15 Super Rare', 'GDZ-RAT21-S-CP15-A-COL'), + (0x6d7c8a55bc4cd0252d6f5243dc80f2f9616b21d1, 'Hodor the HODLer Golden Animation Color 17 Epic', 'GPK-NFT22-E-GA17-A-COL'), + (0x6d81e4c84d81f03753814100e470ae41511edd53, 'Oakland Athletics™ Jordan Weems P Base Motion Vintage Stock 570 Super Rare', 'MLB-S221-S-B570-VS'), + (0x6d81fc809e1ca673f0385ffc6d390d3906e521ae, 'Eintracht Frankfurt Sebastian Rode Base Players Team Color 43 Uncommon', 'BUND-SC21-U-BP43-TMC'), + (0x6d8ab2a7c3df22c255864f02ce37cabf68520089, 'Cleveland Indians® Jose Ramirez 3B All-Star Motion Purple 8 Epic', 'MLB-S221-E-AS8-PUR'), + (0x6d93200d825edf033832fb44f6fdceb6e92f407c, 'Pittsburgh Pirates® Rodolfo Castro 1987 35th Anniversary Chrome T87C-67 Super Rare', 'MLB-22S1-S-1987AC49-M-CHR'), + (0x6d93543544fbf686b6e635004b787f86b5544b12, 'Miami Marlins® Jordan Yamamoto Rookie and Future Phenoms Facsimile Signature White 43 Rare', 'MLB-INC21-R-RC43-WHT'), + (0x6d93a96d5d0648325921f2a7399f81b3d067c0db, 'Kansas City Royals® Hanser Alberto Base Glitch 53 Uncommon', 'MLB-22S1-U-B53-M-GLI'), + (0x6d946a1c00525dbba8c7a9b2431a8de13d0e394d, 'Atlanta Braves™ Cristian Pache Base Glitch 233 Uncommon', 'MLB-22S1-U-B230-M-GLI'), + (0x6da992b2d5ee24eb4dfd72972790132d39f8dfff, 'Atlanta Braves™ William Contreras C Base Motion Vintage Stock 390 Super Rare', 'MLB-S221-S-B390-VS'), + (0x6daf9723e7e1d82ee7844b1ba083fb29ad1bd08b, 'Chicago White Sox® Team Cube 2.0 Team Colors 21 Legendary', 'MLB-22S1-L-TC221-M-TMC'), + (0x6dafad98e6c3e7b35da28bf9c49b55b5d3d18e8e, 'Cracker Bob', 'CRKRS'), + (0x6dbc6a113ba7ae39079e9d1a579b3c0fd2fa9ad5, 'Miami Marlins® Jazz Chisholm SS 1986 Anniversary Static Team Colors 86B-9 Super Rare', 'MLB-S221-S-1986A86B-9-TMC'), + (0x6dcd94b13d44e986249b5902b622bf701f831273, 'CamoGens', 'CG'), + (0x6dd41e3ab72d33ee5dcef08ac9444412f27c8fcf, 'Godzilla RAT Page 10 Comic Page Color 9 Rare', 'GDZ-RAT21-R-CP9-S-COL'), + (0x6dff6c9a01158ad1915b910ccc25f01dfad5a09d, 'BiggerMINDS Public', 'BM'), + (0x6e021ddb72aa2fde0907780d463f35b66a55406d, 'Jamie McCart STJ Base Purple SP-22 Super Rare', 'SPFL-21SPSS-S-BSP-22-A-PUR'), + (0x6e0d256e0e28d72e0d14383d80ff21e24e7ba1c0, 'Philadelphia Phillies® Didi Gregorius SS Base Motion Vintage Stock 561 Super Rare', 'MLB-S221-S-B561-VS'), + (0x6e1875d7f7240abea625443d37f9d0da765966bf, 'Washington Nationals® Josiah Gray Base Independence Day RWB 43 Rare', 'MLB-22S1-R-B43-M-RWB'), + (0x6e19a31c20a88c470a920b08b5b209207b850780, 'Arizona Diamondbacks® Drew Ellis Base Independence Day RWB 298 Rare', 'MLB-22S1-R-B294-M-RWB'), + (0x6e2428328c44c0e498cb6109918ef5071710e887, 'National League™ 2021 RBI Leaders Base Vintage Stock 181 Super Rare', 'MLB-22S1-S-B180-M-VS'), + (0x6e29796c8fc85f8ce18e88f08ae334dc470b13a8, 'SV Werder Bremen Leonardo Bittencourt Base Players Gold 76 Rare', 'BUND-SC21-R-BP76-GLD'), + (0x6e29c9867e2188049cf85547444427160ce6d580, 'Wonder World Toys', 'MWT'), + (0x6e4631bf607698b3e9ef4f6ce1345b58dfb0d44b, 'Water Bear', '100k'), + (0x6e4c607fa2f535e68f3bc8ab630f8983db291b70, 'New York Mets® Marcus Stroman Short Print White 259 Rare', 'MLB-22S1-R-SP52-M-WHI'), + (0x6e53e4d40e440390e6f9a0d0989744c5a2a3098f, 'FC Union Berlin Robin Knoche Base Players Team Color 52 Uncommon', 'BUND-SC21-U-BP52-TMC'), + (0x6e5691d4181f446fcfd9d9f65b6c817e72543f25, 'Crypty Chain Baby Chainer', 'CCBC'), + (0x6e61f96ce2718b0eb9e4cdff57fc9ec7923b3109, 'Chicago Cubs® Kris Bryant 3B Base Static White 660 Common', 'MLB-S221-C-B660-WHI'), + (0x6e659fc3672b66565550f073da3e640603237d34, 'Common Comic 63 2-15 Bazooka Joe 2021 NFT', 'BZK-C-63C'), + (0x6e665f0c69bfa5494284f5240d92ca0616530282, 'Chad Doge Supers: DNA Vials', 'VIAL'), + (0x6e67998008626331ff256c04210dd626a4d214c0, 'Cyberpunks Hall of Fame', 'CPHOF'), + (0x6e6e27009bf01f0b6a6a06f3dfb174ce0dde21e7, 'Cleveland Indians® Cleveland Indians® Base Motion Platinum 459 Epic', 'MLB-S221-E-B459-PLA'), + (0x6e6fc253b28420ea2c0dfcfb21f16f9df46b2d3e, 'C57-T', 'C57T'), + (0x6e75e2a324de7c56ccb378f4377bd8552ca36528, 'Angels® Mike Trout Base Independence Day RWB 27 Rare', 'MLB-22S1-R-B27-M-RWB'), + (0x6e9097a6e8953ca5619c998a455ef7157ad157a0, 'Obsession', 'OBSS'), + (0x6e9159a73e4e8cdf2c292194896cec1357a4f4a8, 'The Commune', 'COMM'), + (0x6e9f6eab4c83646c10f205d2811ee3fce6b18bc2, 'Airdrop Angel Animation Facsimile Signature Color 14 Super Rare', 'GPK-NFT22-S-AFS14-A-COL'), + (0x6ea22761d2fff7f70faded5539c4cfea637b27e9, 'Cleveland Indians® Franmil Reyes DH Base Motion Vintage Stock 341 Super Rare', 'MLB-S221-S-B341-VS'), + (0x6ea2b3a7ab048b0bba7453ffc76f95b07c635bf0, 'Houston Astros® Lance McCullers Jr. P Base Static Gold 610 Uncommon', 'MLB-S221-U-B610-GOL'), + (0x6eab76fd0f09c876968cbfef082ff292cf3f7276, 'St. Louis Cardinals® Nolan Arenado 1987 35th Anniversary Wood T87-2 Common', 'MLB-22S1-C-1987A2-M-WD'), + (0x6eb2b553d5fa19fd36acc7fc03dfd79e88be2325, 'FC Bayern Munich Jamal Musiala Young Stars Team Color 146 Super Rare', 'BUND-SC21-S-YS146-TMC'), + (0x6ebcf0e4708f265f53454e7086d75b289eb83310, 'Minnesota Twins® Andrelton Simmons SS Base Motion Platinum 380 Epic', 'MLB-S221-E-B380-PLA'), + (0x6ec27a4a9d5829fbb7cfc3440983bfa87e873f41, 'HC Fortunes of Ventuna', 'HCFoV'), + (0x6ec4961323ad1da959ac2ebc47f877ea5eaebd91, 'Avalanche Friends Collectible', 'AFC'), + (0x6ec49e68955a40f35305114e7942347868d8b7b7, 'Baltimore Orioles® Ryan Mountcastle Rookie and Future Phenoms Facsimile Signature White 4 Rare', 'MLB-INC21-R-RC4-WHT'), + (0x6ec587a64731ec3b186924f2290ab9ee864b2f9b, 'Detroit Tigers® Gregory Soto Base Independence Day RWB 17 Rare', 'MLB-22S1-R-B17-M-RWB'), + (0x6ec6ab6c138f5e7c4ba0073515f2d119518128c8, 'Chicago White Sox® Codi Heuer Rookie and Future Phenoms Facsimile Signature White 15 Rare', 'MLB-INC21-R-RC15-WHT'), + (0x6ec899f47f72a4e758f6a854e48b7c4ada5ad782, 'Pittsburgh Pirates® Jacob Stallings Base White 286 Common', 'MLB-22S1-C-B283-S-WHI'), + (0x6ecce9054f0c60a9bbef027b506be84b8da710c5, 'Dinosaurs Degen', 'DDS'), + (0x6ed3a947c0fb18560e28304ba9691d2b27c4a133, 'St. Louis Cardinals® Yadier Molina-Albert Pujols Wild Card Broadcast RWB 1049 Rare', 'MLB-22TNP-R-WCA6-M-RWB'), + (0x6ed55c1559c5b02658aa38ac75ea6fe95bb061eb, 'Erling Haaland DOR Animation Gold Refractor S1-02 Legendary', 'BUND-21TS1-L-AS1-02-V-GOL'), + (0x6ed8ed70e4750b82ca92335c687648c2e8f74e54, 'Detroit Tigers® Bryan Garcia Rookie and Future Phenoms Facsimile Signature Blue 23 Super Rare', 'MLB-INC21-S-RC23-BLU'), + (0x6ed9aec8253a63777907e712fbc615a07aafb6aa, 'Arizona Diamondbacks® David Peralta OF Base Static White 640 Common', 'MLB-S221-C-B640-WHI'), + (0x6ede4c1bd463e6387895f28b29e230026e55fae0, 'Marmoush-Mangala VFB Animation Duos TSC-09 Epic', 'BUND-21TSC-E-RATSC-09-A-DUO'), + (0x6ee8e29d2f5c6044c8a7be0e40688c5165aed1c3, 'Los Angeles Dodgers® Max Muncy Base Pink 1178 Uncommon', 'MLB-22PRI-U-B42-M-PNK'), + (0x6eece2d58c362791cf2e31ee0a07850eeca7a0b5, 'Tampa Bay Rays™ Randy Arozarena Facsimile Signature Blue 196 Uncommon', 'MLB-22S1-U-FS10-S-BLU'), + (0x6efc0c3990082975744354882c548789ebd792b2, '2021 MLB Challenge Reward AL MVP Pack', 'MLB-21REWARD-PACK-ALMVP'), + (0x6f2bc262c53d60b289666c3882ee7dbdb4b3310c, 'CryptoCookies', 'FORTUNE'), + (0x6f2bcf2499d9dc3dca1e188a66183589ff2ff028, 'Philadelphia Phillies® Nick Castellanos World Series Broadcast RWB 1135 Rare', 'MLB-22TNP-R-WSB9-M-RWB'), + (0x6f3140174ed9997e925d4d8db545502ccfc379a5, '0ldMEN', '0LDMEN'), + (0x6f34049132553e791bb81d49213be65e4d13f271, 'Reo Hatate CEL Base Purple SP-05 Super Rare', 'SPFL-21SPSS-S-BSP-05-A-PUR'), + (0x6f36f179ca1c1556f253c9cde17033464b0e7c26, 'Uncommon Comic 43 1-43 Bazooka Joe 2021 NFT', 'BZK-U-43C'), + (0x6f3864963ea910a41b262746995cf64603d5f72c, 'SleeFi Jewel', 'JEWEL'), + (0x6f3d7099b56f4a96c8660ebdbcccd1508a441769, 'Texas Rangers® Yonny Hernandez 2022 Inception Gold 15 Legendary', 'MLB-22LEG-L-22INC15-M-GLD'), + (0x6f4999dd66ea4e40f6371c524354ea9f93874cd2, 'wolfclub', 'wolfclub'), + (0x6f4b14c3660b8ccbefa6ca4e66c49e7371b0bd7f, 'Godzilla RAT Page 20 Comic Page Color 17 Rare', 'GDZ-RAT21-R-CP17-S-COL'), + (0x6f4ca7733f4c4fe0d6ca30657fa2747f253bd8a6, 'Super Rare Comic 54 2-6 Bazooka Joe 2021 NFT', 'BZK-S-54C'), + (0x6f51d780a54eb8a56b18f5a31483852ef30180b0, 'Uncommon Comic 91 2-43 Bazooka Joe 2021 NFT', 'BZK-U-91C'), + (0x6f52fad7d162c8bc888a3a6daceb18e21cd2df7b, 'VfB Stuttgart Darko Churlinov Base Players White 88 Common', 'BUND-SC21-C-BP88-WHT'), + (0x6f6057f3f03a5ded867e1c19adc6b023c27bc916, 'King Ghidorah Strikes Traditional Art Black and White 6 Rare', 'GDZ-RAT21-R-TA6-A-BW'), + (0x6f651d38c42086137af5b89b758ecbe0b3cda609, 'Chicago White Sox® Jose Abreu 1B 1986 Anniversary Static Team Colors 86B-18 Super Rare', 'MLB-S221-S-1986A86B-18-TMC'), + (0x6f67391eae8437b72a274d1bc81c8feea67ef455, 'Pittsburgh Pirates® Max Kranick Facsimile Signature Gold 3101 Super Rare', 'MLB-22PRI-S-FS30-M-GLD'), + (0x6f694bbc38b1cc4c4d21a52017c64c1545998a80, 'Sproutcoin Spring Golden Animation Color 22 Epic', 'GPK-NFT22-E-GA22-A-COL'), + (0x6f6ece05384ced525e4416bb31f3256261cecb8a, 'Cleveland Indians® Austin Hedges C Base Static White 572 Common', 'MLB-S221-C-B572-WHI'), + (0x6f6f87ed4f4d98b1e6a19871b942e9659a8a69d3, 'Miami Marlins® Trevor Rogers P Base Motion Vintage Stock 563 Super Rare', 'MLB-S221-S-B563-VS'), + (0x6f7310b08e6356ec554e2dba2d37a98cca71874b, 'San Diego Padres™ Jake Cronenworth 2B/1B Base Static White 371 Common', 'MLB-S221-C-B371-WHI'), + (0x6f83eec5bd306f583a8cf53629a08e4cb7b20e23, 'Arizona Diamondbacks® Stuart Fairchild Base Vintage Stock 163 Super Rare', 'MLB-22S1-S-B162-M-VS'), + (0x6f924e3184725904d4f3e450ce3b19c54c2796a0, 'Uncommon Comic 6 1-6 Bazooka Joe 2021 NFT', 'BZK-U-6C'), + (0x6f993a2c825fe93a0b2fb4a2ec7832d181c37d19, 'Seattle Mariners™ Shed Long 2B/OF Base Motion Vintage Stock 345 Super Rare', 'MLB-S221-S-B345-VS'), + (0x6fa465006f1c03fa2f44209707c825aeb0d83049, 'New York Mets® Michael Conforto Base White 37 Common', 'MLB-22S1-C-B37-S-WHI'), + (0x6fa47e8cc008869439552562fa2bcfa8ebb5d7f4, 'ConcerningRobots', 'CRB'), + (0x6fa87f516844085d573caecee70373d5c001e7d0, 'Tampa Bay Rays™ Wander Franco Facsimile Signature Slab Gold 3067 Epic', 'MLB-22PRI-E-FS55-M-GLD'), + (0x6fa935c4a67eacfc801cc0cfc1113539807d7763, 'Philadelphia Phillies® J.T. Realmuto Base Pink 1100 Uncommon', 'MLB-22PRI-U-B16-M-PNK'), + (0x6fb2073f48428e192eb834c9b9b0ddddb163e72e, 'Uncommon Comic 47 1-47 Bazooka Joe 2021 NFT', 'BZK-U-47C'), + (0x6fb33aeae7ff615cca155f10c31fed9313cbe0e8, 'Sport-Club Freiburg Philipp Lienhart Base Players Team Color 40 Static Facsimile Signature Rare', 'BUND-SC21-R-BP40-SFS-TMC'), + (0x6fc7921db7454fec3c64019048cb4b92028a0016, 'EYFF 2023 Early Access Token', 'EAT'), + (0x6fca0808e8dd4c0e280b4f24b62071238639a734, 'The Official bone heads', 'BONEHEAD'), + (0x6fcb1740346f6cf8ceab8dd3afd4a5f0f574227f, 'Philadelphia Phillies® Zach Eflin Base Independence Day RWB 179 Rare', 'MLB-22S1-R-B178-M-RWB'), + (0x6fcbbdb21fd9fa1ff94733f561a230e161d7d63a, 'Pittsburgh Pirates® Oneil Cruz Facsimile Signature Gold 3083 Super Rare', 'MLB-22PRI-S-FS36-M-GLD'), + (0x6fcce3ca2011799e2c5757487ff3233c9c15b9a4, 'Rare Comic 43 1-43 Bazooka Joe 2021 NFT', 'BZK-R-43C'), + (0x6fd138913719f7126c1faf11aa8e4c439eb98928, 'Super Rare Comic 88 2-40 Bazooka Joe 2021 NFT', 'BZK-S-88C'), + (0x6fd5b363da4f2baed18358e94a55c627004acaa6, 'San Diego Padres™ Slam Diego™ Returns Base White 125 Common', 'MLB-22S1-C-B124-S-WHI'), + (0x6fd6813c241ee8541bdb40c679eef68c4f35f520, 'Mothra Riverscape Traditional Art CMYK Offset 4 Uncommon', 'GDZ-RAT21-U-TA4-S-CMYK'), + (0x6fdc4d130ea162ff3082fa777eb5d12c28297f75, 'FRENS', 'FRNS'), + (0x6fe044d875d2ac5df8f9467f3078cf1b1c2d31cc, 'Godzilla RAT Page 2 Comic Page Color 2 Rare', 'GDZ-RAT21-R-CP2-S-COL'), + (0x6fe27f16c96cfad96fd14b20af592023efda4f02, 'Gambit Founders Club Platinum Ticket', 'GFCPT'), + (0x6fe487ed30e1774ff5ff0146e79d51ce7c9838d8, 'Christmas Mint Pass', 'CHRISTMAS2022'), + (0x6ff3653dbf4569d00321d1b1997f393bfaf027ec, 'Houston Astros® Yuli Gurriel Postseason Base White 54 Common', 'MLB-21POST-C-B54-S-WHI'), + (0x6ff3912b7786d7b32382072d26e9a865e83b683a, 'Rare Comic 40 1-40 Bazooka Joe 2021 NFT', 'BZK-R-40C'), + (0x6ff5fdf5be8bd84a0007c3c100d21f0d29476bcb, 'St. Louis Cardinals® Team Cube 2.0 Team Colors 10 Legendary', 'MLB-22S1-L-TC210-M-TMC'), + (0x6ffbd2965da53a8c0ce32944fad99b700ac0f70c, 'Avalanche Friends Collectible', 'AFC'), + (0x70049c1a8db5c9d5a7c7ce5834fe2f4e158debac, 'RB Leipzig Nordi Mukiele Base Players Team Color 13 Uncommon', 'BUND-SC21-U-BP13-TMC'), + (0x7016cf74de99bc2f328bcc5f150b2de752599cc6, 'San Francisco Giants® Anthony DeSclafani P Base Motion Platinum 614 Epic', 'MLB-S221-E-B614-PLA'), + (0x70197ccc4e403c3f31e67b910891a581aded84c8, 'Epic Animated Comic 1 Burglar Alarm Bazooka Joe 2021 NFT', 'BZK-E-1A'), + (0x702666bb06c719262fa90cc2e18d7b8ce08dc7a7, 'Belac''s First Collection', 'BELAC'), + (0x702d78704a6aecde189d5cc2c87aa434e0b7440c, 'Kansas City Royals® Whit Merrifield Inception Base Red 41 Rare', 'MLB-INC21-R-IB41-RED'), + (0x70306117039c6cf9419b5a65cb8c62b87571f325, 'New York Yankees® Aaron Judge Judge 62nd Home Run Gold 1012 Legendary', 'MLB-22TNP-L-HR621-M-GLD'), + (0x704065bc3248ccbd3cd5fa8c1dae73be4e1ede35, 'Atlanta Braves™ Adam Duvall OF Base Motion Vintage Stock 601 Super Rare', 'MLB-S221-S-B601-VS'), + (0x7040aca80f2da108625d7aba892cbeb074eee96e, 'Pittsburgh Pirates® Miguel Yajure P Base Static White 612 Common', 'MLB-S221-C-B612-WHI'), + (0x7040fb9b24b313589af573709e52231f0ce4c774, 'Washington Nationals® Base Glitch 218 Uncommon', 'MLB-22S1-U-B215-M-GLI'), + (0x7045ea8dee81d26a5f462503016b546831a904a7, 'Rulers of Earth #2 Comic Cover Color 2 Legendary', 'GDZ-GVG22-L-RCC2-A-COL'), + (0x704b267f9563c8720d3199330436c35d3cd147d4, 'WoodElf', 'RWE'), + (0x704f9295a5de3626a4305842883fe74d47aa5ae5, 'James Penrice LFC Young Stars Red SPYS-10 Epic', 'SPFL-21SPSS-E-YSSPYS-10-A-RED'), + (0x70549b25468eaeddb79bb1024e903e68eba6c36f, 'Combat Apes', 'CA'), + (0x70608dd65e94ecc8eeddef52dd50ed8bc484d4c0, 'Sky Life', 'PGYD'), + (0x706190bb082899911887ee5e3959bddbc0f24c9b, 'GearHeadz', 'GH'), + (0x7062d4b4c91ab3171d4632aac91c840bfb85645b, 'Kansas City Royals® Hanser Alberto 2B Base Motion Vintage Stock 414 Super Rare', 'MLB-S221-S-B414-VS'), + (0x7064eead0ea5183efc48086573b7286bf4640940, 'Boston Red Sox® Chris Sale Inception Base Blue 11 Uncommon', 'MLB-INC21-U-IB11-BLU'), + (0x706b3b4fa9e69a2d1ad9b48793507981df22d250, 'Miami Marlins® Jordan Holloway Rookie and Future Phenoms Facsimile Signature Blue 42 Super Rare', 'MLB-INC21-S-RC42-BLU'), + (0x706bda8cb30ece0ea0258bebf9fcc51d1a3a0240, 'Atlanta Braves™ Jorge Soler WS Redemption Gold 1011 Rare', 'MLB-21NOW-R-WS1011-GOL'), + (0x706cf966e2d477fabf9dfafc7ff69b024ab3f3ee, 'Kansas City Royals® Greg Holland P Base Static White 467 Common', 'MLB-S221-C-B467-WHI'), + (0x706fabeb462fd64305a4c65f0ee7fd034dcad20c, 'Pittsburgh Pirates® Jacob Stallings Base Vintage Stock 286 Super Rare', 'MLB-22S1-S-B283-M-VS'), + (0x7072e23ec30359b01bf56e555623de62a59d90b1, 'VfB Stuttgart Darko Churlinov Base Players Team Color 88 Static Facsimile Signature Rare', 'BUND-SC21-R-BP88-SFS-TMC'), + (0x7076550c7ad4b7c548716174cda8982c558dc0a7, 'Washington Nationals® Juan Soto Pure Power Facsimile Signature Reward White 3305 Legendary', 'MLB-22PRICR-L-PPR1-M-WHI'), + (0x707bd974a23e4d667197711399f8c1f7cced2b54, 'Ganja Tools', 'TOOLS'), + (0x707c5a0dd0bee7ea5e7bbdf89919ad31c63b1db0, 'Chicago White Sox® Gavin Sheets Base Vintage Stock 12 Super Rare', 'MLB-22S1-S-B12-M-VS'), + (0x7082146875a70930ebf71035946243ce230acf6a, 'Philadelphia Phillies® Jojo Romero P Base Static Gold 508 Uncommon', 'MLB-S221-U-B508-GOL'), + (0x7084e42f1ef1974ff6f2dda3576c5b8690b6f65c, 'FC Union Berlin Robert Andrich Top Players Gold 123 Super Rare', 'BUND-SC21-S-TP123-GLD'), + (0x7089fa0563bf1e991ac6f83d12abc9b64378e3c5, 'Baltimore Orioles® Keegan Akin Base Glitch 328 Uncommon', 'MLB-22S1-U-B324-M-GLI'), + (0x7092ea580eec3cc26a471fa205528b12b7bb1cb6, 'Alien Doodle', 'AD'), + (0x709e83f2d2442257d4a500deb3f4e8aa31f78d19, 'Miami Marlins® Jordan Holloway Rookie and Future Phenoms Facsimile Signature White 42 Rare', 'MLB-INC21-R-RC42-WHT'), + (0x709f435630e313cdabf16836e59bffd13078144e, 'Chicago White Sox® Andrew Vaughn Base White 120 Common', 'MLB-22S1-C-B119-S-WHI'), + (0x70b004f1b9de09539c76441899d5e99afb114053, 'Cincinnati Reds® Tony Santillan Base Independence Day RWB 111 Rare', 'MLB-22S1-R-B110-M-RWB'), + (0x70b7cfdff3c212b7c34931024343f717f6e8fc00, 'Godzilla Destroys the City Traditional Art Black and White 2 Rare', 'GDZ-RAT21-R-TA2-A-BW'), + (0x70ba43959b7bad364515ea64e18f6e000c8ee038, 'Washington Nationals® Juan Soto Rookie and Future Phenoms Facsimile Signature Blue 81 Super Rare', 'MLB-INC21-S-RC81-BLU'), + (0x70c602f9237241b9048f0f098776fbd0b5139bb4, 'Branimir Hrgota SGF Animation Black Refractor S4-50 Epic', 'BUND-21TS4-E-AS4-50-V-BLA'), + (0x70d4b3c603b41116bd353391c79a98a814f7d8df, 'Danny Mullen DUD Top Plays Purple SPTPL-18 Rare', 'SPFL-21SPSS-R-TPLSPTPL-18-V-PUR'), + (0x70d9584604d6e22e161d20ed74bacfc3d293dab8, 'Detroit Tigers® C.J. Cron 1B Base Motion Vintage Stock 504 Super Rare', 'MLB-S221-S-B504-VS'), + (0x70e30da6a4212584c0adec5911caf4d05efba416, 'PRONFT', 'PFT'), + (0x70e4d25e2e4105d853d4a17c1a6a51880040a89e, 'Robert Lewandowski BAY Animation Gold Refractor S4-36 Legendary', 'BUND-21TS4-L-AS4-36-V-GOL'), + (0x70eaf22c2143cf0be6880cf3fe6852afe2e37465, '2021 Topps MLB Inception NFT Collection Premium Pack', 'MLB-INC21-PACK-P'), + (0x70ee5dccb70b0319c98c36bf2a008131ee952441, 'Texas Rangers® Nick Solak Base White 172 Common', 'MLB-22S1-C-B171-S-WHI'), + (0x70f7362dd60f1bb041d74339ab3622774b7067f4, 'Niklas Dorsch FCA Top Players Team Color TK-26 Rare', 'BUND-22TK-R-TPTK-26-S-TMC'), + (0x7109a02d983fc0f75134ff9774bef0767471a156, 'San Diego Padres™ Adam Frazier Base Independence Day RWB 304 Rare', 'MLB-22S1-R-B300-M-RWB'), + (0x710af9b068bd6a8c0f0c37895cf21643f8fc6147, 'Atlanta Braves™ Travis d''Arnaud Base Independence Day RWB 4 Rare', 'MLB-22S1-R-B4-M-RWB'), + (0x7112a4fd6aca4a39b01d6960a8c7654c21639c31, 'CoolieSkulls', 'CS'), + (0x7114d18d1f7fce2cac63551c9cf66f507a2f4d7f, 'Chicago Cubs® Patrick Wisdom Base White 271 Common', 'MLB-22S1-C-B268-S-WHI'), + (0x711864b8c1dfb065829aa2959af3089009464eea, 'Max Stryjek LFC Top Saves Purple SPTS-03 Rare', 'SPFL-21SPSS-R-TSSPTS-03-V-PUR'), + (0x711881c857ddccbdf431e5caf67a4faad3b2b334, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Rookie Collector', 'GDZ-GVG22-PACK-R6'), + (0x7119c5a2934514be0e4efdbc1f83ddf239add464, 'Christian Ramirez ABE Base White SP-12 Common', 'SPFL-21SPSS-C-BSP-12-A-WHI'), + (0x711c62c4e25e3003ab4bdde0dfb608110902c058, 'Cincinnati Reds® Jonathan India Base Blue 1231 Common', 'MLB-22PRI-C-B159-M-BLU'), + (0x71204b466168de672614b29408dea3865e104997, 'Erhan Mašović BOC Ascendent Magenta TK-54 Uncommon', 'BUND-22TK-U-ASCTK-54-S-MAG'), + (0x7122b8d1c5ce7aa66911835d91faf2a83b5ea83c, 'GIVE TACTICAL RETREAT YOUR ENERGY', 'TRE'), + (0x712e24b156b9ca6a367b97c289d3e0671e62ea19, 'Taiwo Awoniyi FCU Animation Black Refractor S1-10 Epic', 'BUND-21TS1-E-AS1-10-V-BLA'), + (0x712f0ff3d68edbd7f1471b3f7a88785f7bbc86c2, 'Sean Goss MOT Base White SP-27 Common', 'SPFL-21SPSS-C-BSP-27-A-WHI'), + (0x713236bd094206b3ccc406da92f91bf87f79ddf1, 'Márton Dárdai BSC Ascendent Magenta TK-47 Uncommon', 'BUND-22TK-U-ASCTK-47-S-MAG'), + (0x7134f3f08619034969dd9eae1a7d0fe6c0039054, 'PDIOfferNetwork', 'PDI2022'), + (0x71393d2873edeb547d0dded8e8be17a34e8b0617, 'Connor Ronan SMI Base Aqua SP-20 Uncommon', 'SPFL-21SPSS-U-BSP-20-A-AQU'), + (0x714045580446624c0b0a69e6f264a546aa3f28cf, 'Boston Red Sox® Jonathan Arauz Rookie and Future Phenoms Facsimile Signature Blue 7 Super Rare', 'MLB-INC21-S-RC7-BLU'), + (0x71419b39bd2dca46698d9e2153482e43fc3b93df, 'Los Angeles Dodgers® David Price Base Glitch 40 Uncommon', 'MLB-22S1-U-B40-M-GLI'), + (0x7146efff95384548bc4c0b44eb8789863fc77d9d, 'Atlanta Braves™ Kyle Muller Base White 30 Common', 'MLB-22S1-C-B30-S-WHI'), + (0x714fac0f6785c761aca9dcfc98e2777bb06565f9, 'Tampa Bay Rays™ Brendan McKay Rookie and Future Phenoms Facsimile Signature Red 73 Epic', 'MLB-INC21-E-RC73-RED'), + (0x715214b24bd63757e0b46f342484451cef8da53f, 'Boston Red Sox® Xander Bogaerts SS Base Static Gold 476 Uncommon', 'MLB-S221-U-B476-GOL'), + (0x71561ff4642ac069eea8aee0666710c14dbc2d3b, 'Godzilla RAT Page 19 Comic Page Color 16 Super Rare', 'GDZ-RAT21-S-CP16-A-COL'), + (0x7156d76ea8053181b9c5c852090eb67012532f1b, 'Kansas City Royals® Jorge Soler DH/OF Base Static Gold 389 Uncommon', 'MLB-S221-U-B389-GOL'), + (0x71598125f9140fc718bc578e33ee80a348f4daba, 'Topps Series Tier 3 Challenge Reward Pack - 21-22 Bundesliga NFT Cards', 'BUND-21TSC-TIER3-R'), + (0x715c2dbcd050854bcab97cd540fa7b6481d43c97, 'Milwaukee Brewers™ Kolten Wong Postseason Base Red 17 Rare', 'MLB-21POST-R-B17-M-RED'), + (0x716cf9223883855bd08375decddab19c4ad960d4, 'Oakland Athletics™ Chris Bassitt P Base Static Gold 626 Uncommon', 'MLB-S221-U-B626-GOL'), + (0x716d38fd56e3b7ee736d77e79cc14a04ce6bad9d, 'Rare Comic 38 1-38 Bazooka Joe 2021 NFT', 'BZK-R-38C'), + (0x716eb19794363d3b14d8c9688e6cbaa46e57ff48, 'Atlanta Braves™ Ozzie Albies Regular Season Division Winners RWB 26 Rare', 'MLB-21POST-R-R26-M-RWB'), + (0x717d8fbf9d80da89dba2883a4dee73b747ad6325, 'Maya Mask Base Color 15 Common', 'GPK-NFT22-C-B15-S-COL'), + (0x717e6eb9b4b3909e3e7526b0b653e2df8079b86c, 'San Francisco Giants® Kris Bryant Postseason Base White 25 Common', 'MLB-21POST-C-B25-S-WHI'), + (0x71801469f018894634b41e2e9454bd8f2c5134de, 'SKYNET_AI', 'SKYNET'), + (0x7199fdc8352390a25cb211694181ffe20b6f80d4, 'Atlanta Braves™ Joc Pederson Regular Season Division Winners RWB 29 Rare', 'MLB-21POST-R-R29-M-RWB'), + (0x719a9022ce201eaa7d3f5d7db4456e5de240c1f5, 'New York Yankees® Gerrit Cole Base Blue 1049 Common', 'MLB-22PRI-C-B103-M-BLU'), + (0x71a1ee22d5b56ee8d041fe26880c94d076502587, 'Godzilla RAT Page 9 Comic Page Color 8 Rare', 'GDZ-RAT21-R-CP8-S-COL'), + (0x71a23611be45af8c5605d680eeb57d7a11607ca7, 'VfB Stuttgart Borna Sosa Young Stars Team Color 179 Super Rare', 'BUND-SC21-S-YS179-TMC'), + (0x71a9d85a095db9ae2f8b437c28b2d324e3a29745, 'New York Yankees® Gio Urshela Postseason Base White 76 Common', 'MLB-21POST-C-B76-S-WHI'), + (0x71af1aace1b69bcb0c27a2989ce22b3f8e660af9, 'Schöpf-Wimmer DSC Animation Duos TSC-07 Epic', 'BUND-21TSC-E-RATSC-07-A-DUO'), + (0x71af899041326482a1cea842431feb3b7afa49ea, '1. FC Köln KOE Insert Pennant Team Color S4P-14 Uncommon', 'BUND-21TS4-U-IS4P-14-S-TMC'), + (0x71d5100dd4911ce6d1ef2b9a24afdae9e6e4109f, 'fb', 'fb'), + (0x71dec071afdad7812d0da1e61b5df4afd80482b5, 'Washington Nationals® Ryan Zimmerman 1B Base Motion Rainbow 461 Rare', 'MLB-S221-R-B461-RAI'), + (0x71eb1bdcbe24e4442a07d619df43d79f5499ce4a, 'Histograph Timelines', 'HistT'), + (0x71ee5180a08858dcee0fca7e28f65cdf47ea2d48, 'New York Yankees® Luis Gil Base Independence Day RWB 131 Rare', 'MLB-22S1-R-B130-M-RWB'), + (0x71f0aeaad3c0e1d03be42c6e0ddeb9f5a6d9205f, 'St. Louis Cardinals® Dakota Hudson P Base Static Gold 455 Uncommon', 'MLB-S221-U-B455-GOL'), + (0x71f49e95a9b4a3b09dd60ea847793a5f69f831c0, 'gg2', 'gg2'), + (0x71f564a8c4ed0283cec29d98559eb712147bc521, 'Eintracht Frankfurt Tuta Young Stars Team Color 162 Super Rare', 'BUND-SC21-S-YS162-TMC'), + (0x71f80b28c4baf5fb4586a77c16c3fa138ac8f391, 'Atlanta Braves™ Joc Pederson Division Series Bronze 53 Super Rare', 'MLB-21POST-S-D53-M-BRO'), + (0x7203e0c03348b99f537bd1fb8e4b183eb9c80ad4, 'DEJEN CATS', 'DEJENCATS'), + (0x7204e26c663c0ce316f156a7b67ffe640dd31a05, 'Naouirou Ahamada VFB Ascendent Magenta TK-45 Uncommon', 'BUND-22TK-U-ASCTK-45-S-MAG'), + (0x720aea0c4a9dffdb9b3eda12f6c437cb5588f892, 'DSC Arminia Bielefeld Fabian Klos Base Players Team Color 83 Static Facsimile Signature Rare', 'BUND-SC21-R-BP83-SFS-TMC'), + (0x7214b121f771c7a9a214cd203ce23fb1c7f3ee47, 'San Diego Padres™ Tommy Pham OF Facsimile Signature Static Blue 399 Super Rare', 'MLB-S221-S-FS399-BLU'), + (0x721ddd72d32f6176a5bb89035a7917048ad7785b, 'Cincinnati Reds® Mike Moustakas Base Glitch 60 Uncommon', 'MLB-22S1-U-B60-M-GLI'), + (0x72234075901511a94e5b5fc0c745854834e12655, 'Alpha', 'ArtiAlpha'), + (0x7224c7cf5a8861557c9eec09cd083a3d26a5dcc3, 'TSG Hoffenheim Christoph Baumgartner Young Stars Team Color 155 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS155-SFS-TMC'), + (0x7227a99d233a13015aba71e6dbe88af6b6bc3cc6, 'Hodor the HODLer Facsimile Signature Color 17 Uncommon', 'GPK-NFT22-U-FS17-S-COL'), + (0x722913ddea76641661da33583bd7ad4f52fc4873, 'Common Comic 18 1-18 Bazooka Joe 2021 NFT', 'BZK-C-18C'), + (0x722a7e8669f6a1fac018f16ffdbcffd27af3fe22, 'Sebastian Griesbeck SGF Motion Aqua Refractor S4-59 Rare', 'BUND-21TS4-R-MS4-59-V-AQU'), + (0x722c1e0d097ba63880334132449b46d830149a7d, 'Cincinnati Reds® Tony Santillan Facsimile Signature Slab Gold 3099 Epic', 'MLB-22PRI-E-FS51-M-GLD'), + (0x7249632be3a64acc265c91ea28f95f0b258c5912, 'Mystery Box', 'UTBMysteryBox'), + (0x724c52e5fbc94c430870163da90ff46410d9047e, 'Luca Kilian KOE Club Phemons Team Color S4CPH-13 Epic', 'BUND-21TS4-E-CPHS4CPH-13-V-TMC'), + (0x72564a549107068c3ba211e69bf631d1787bcc33, 'NereusShapeshiftersNft', 'NSN'), + (0x725e34d8f6391fb60fc2f0fc25638e6954f3a84a, 'New York Mets® Dominic Smith 1B/OF Base Motion Vintage Stock 546 Super Rare', 'MLB-S221-S-B546-VS'), + (0x726ccc8f15cdc0a838b1731cd37681e59a910d9e, 'Detroit Tigers® Willi Castro SS Base Motion Vintage Stock 339 Super Rare', 'MLB-S221-S-B339-VS'), + (0x72720b53efb90e60f4b04b55341276c06fb11778, 'FC Union Berlin Sheraldo Becker Base Players Gold 53 Rare', 'BUND-SC21-R-BP53-GLD'), + (0x727e3b61fca80064a3c6cc91d9fd1edd915db43e, 'Philadelphia Phillies® Team Cube 2.0 Team Colors 4 Legendary', 'MLB-22S1-L-TC24-M-TMC'), + (0x728faf5d0db0b68e9ef4e7d6556067f150d938a4, 'San Francisco Giants® Jeff Samardzija P Base Static Gold 382 Uncommon', 'MLB-S221-U-B382-GOL'), + (0x7294a275c8b76ee5d16ef950f01cb81b7867a5cf, 'Toronto Blue Jays® Bo Bichette Short Print White 126 Rare', 'MLB-22S1-R-SP26-M-WHI'), + (0x729e61e9c164c1e201f648a1f7d337c1d8d9d6eb, 'Where Are You Go (WAYG)', 'WAYG'), + (0x72a085229f96476f036510c490d7b5d7f79f6d5c, 'Common Comic 10 1-10 Bazooka Joe 2021 NFT', 'BZK-C-10C'), + (0x72aebbfbadab358250adf73b430510a6b5fee7ec, 'St. Louis Cardinals® Nolan Arenado Wild Card Contenders Blue 26 Common', 'MLB-21POST-C-W26-M-BLU'), + (0x72b05e358e07cd18ecc79ac5533b2832c7ba2f38, 'Pittsburgh Pirates® Colin Moran Base White 317 Common', 'MLB-22S1-C-B313-S-WHI'), + (0x72b080e33addb97ed82d60edb95e2067bfded3c5, 'New York Mets® James McCann Base Independence Day RWB 256 Rare', 'MLB-22S1-R-B253-M-RWB'), + (0x72b476bee82833b2be25ea8b50d6150bf255d4a9, 'Boston Red Sox® Nathan Eovaldi P Base Static White 623 Common', 'MLB-S221-C-B623-WHI'), + (0x72be03c4e740b26b83178816d6148184097abc7b, 'Pixel RGB NFT', 'RGBNFT'), + (0x72c3c15c72d5105c064b3e2dcddcd8b9cee19455, 'Super Rare Comic 14 1-14 Bazooka Joe 2021 NFT', 'BZK-S-14C'), + (0x72c49cd33f5d58674fb1b459ee2f268a52fc7f42, 'Minnesota Twins® Ryan Jeffers C Base Static Gold 552 Uncommon', 'MLB-S221-U-B552-GOL'), + (0x72c859b0861e3403275832e3ba485514bb74f734, 'WICKEDMANV2', 'WDM2'), + (0x72cb25fb8e7fb9980c682dc640864f8c8d2239dc, 'Tampa Bay Rays™ Josh Fleming P Base Motion Rainbow 526 Rare', 'MLB-S221-R-B526-RAI'), + (0x72d0345494c52830302259b8b6300df60bef3f25, 'Cleveland Guardians™ Jose Ramirez Pure Power Slab White 2117 Epic', 'MLB-22PRI-E-PP12-M-WHI'), + (0x72d80f5cd38702aa515cb1852e488be179cc9cff, 'Boston Red Sox® Bobby Dalbec Base Glitch 7 Uncommon', 'MLB-22S1-U-B7-M-GLI'), + (0x72df982622efa56a2080427917471d77f6347f20, 'Philadelphia Phillies® Freddy Galvis Base Vintage Stock 67 Super Rare', 'MLB-22S1-S-B67-M-VS'), + (0x72e4f549e3eadfdf6814d4cdf393981e9ccfa874, 'National League™ 2021 Batting Average Leaders Base Vintage Stock 59 Super Rare', 'MLB-22S1-S-B59-M-VS'), + (0x72e64b77e35fa95221941a53da27ad90c18af53a, 'San Diego Padres™ Trent Grisham Divison Series Newspaper BW 1076 Common', 'MLB-22TNP-C-DSN6-M-BW'), + (0x72e7846ebde40a144ef1079a8329a3019917473a, 'Atlanta Braves™ William Contreras C Base Static Gold 390 Uncommon', 'MLB-S221-U-B390-GOL'), + (0x72f76fbe5e0a69bc9e9ccf7be8ddc82e8e43780e, 'Los Angeles Dodgers® Chris Taylor Wild Card Contenders Blue 18 Common', 'MLB-21POST-C-W18-M-BLU'), + (0x72fd12f15a9dca2c918d1e65af7c1ff3f315c24c, 'Eintracht Frankfurt Kevin Trapp Top Saves Team Color TS-9 Epic', 'BUND-SC21-E-TSTS-9-TMC'), + (0x7309c48dcca29d5cfe5637800123e488360652d8, 'Arizona Diamondbacks® Nick Ahmed SS Base Static Gold 618 Uncommon', 'MLB-S221-U-B618-GOL'), + (0x7318a4eacf05ab92cc323fb84cbc61c574c74596, 'Pittsburgh Pirates® Miguel Yajure P Base Motion Rainbow 612 Rare', 'MLB-S221-R-B612-RAI'), + (0x7318f21436e4b05489976d984d8eff7b660ee276, 'Milwaukee Brewers™ Luis Urias Regular Season Division Winners RWB 37 Rare', 'MLB-21POST-R-R37-M-RWB'), + (0x731c8a63d6b44a476a45eb6a6d15aaa1c6bba919, 'Magic World', 'MagicWorld'), + (0x73232877311e9b425631b591da0258b282248861, 'Boston Red Sox® Matt Barnes P All-Star Motion Purple 6 Epic', 'MLB-S221-E-AS6-PUR'), + (0x73254bc37ce17f5817bf745823878094eea4ce7f, 'Milwaukee Brewers™ Christian Yelich Inception Base Red 54 Rare', 'MLB-INC21-R-IB54-RED'), + (0x73316d0ec20f28190d62901b1d2ac2ecf717a66f, 'Houston Astros® Michael Brantley Base Pink 1234 Uncommon', 'MLB-22PRI-U-B181-M-PNK'), + (0x733357c6649364673180643af758e30cd259a7a9, 'Hertha Berlin Matteo Guendouzi Young Stars Gold 163 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS163-AFS-GLD'), + (0x7336a6bc88f18f793ca068a3f34d86c5a4fa7b43, 'FC Union Berlin Taiwo Awoniyi Young Stars Team Color 166 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS166-SFS-TMC'), + (0x73409a73e69f84e02ac2a3b24b3c7eef5ba1b4fd, 'Dominik Szoboszlai RBL Base Red S2-16 Uncommon', 'BUND-21TS2-U-BS2-16-S-RED'), + (0x7340d2980e7ddfb3926777f5cf9a7c6a440e4886, 'The Great 100 Wonders', '100WONDERS'), + (0x7348201b9d7c375788fac05a1c8f044d9239f353, 'San Diego Padres™ Yu Darvish Short Print White 309 Rare', 'MLB-22S1-R-SP64-M-WHI'), + (0x734b85ec4a24eff77d3453e5db0d419d2e120fb1, 'Carmella Santiago', 'RPCS'), + (0x73546d72ca4ff0b618bc567a2e4928b8f0c2b95e, 'SV Werder Bremen Jiri Pavlenka Top Players Gold 137 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP137-AFS-GLD'), + (0x73611268c15ecb1bd47a8152000602b141adb7ba, 'Oakland Athletics™ Sean Manaea Base White 281 Common', 'MLB-22S1-C-B278-S-WHI'), + (0x73639194e660dfe38cd96d36ae957b0fad18f9a6, 'Boston Red Sox® Rafael Devers Pure Power White 2116 Rare', 'MLB-22PRI-R-PP10-M-WHI'), + (0x7372469ba960e2576a21afe23737080c4bdf7d9e, 'CU DUCKS', 'CUDS'), + (0x7379809fbb1dba1899f2e716a0174efedf67281f, 'Dare', 'Dare'), + (0x73807b54c7967951b72faf62ab87a2835a2954f5, 'Chz&Friends Collectibles', 'Chz&F'), + (0x73833a2e93054ba305ed9d924149cd99e1d8fe0f, 'Toronto Blue Jays® Taijuan Walker P Base Motion Platinum 540 Epic', 'MLB-S221-E-B540-PLA'), + (0x738ab80a8a74719101e2a4d7eb8e23e8f769ca32, 'Houston Astros® Kyle Tucker 1987 35th Anniversary Wood T87-8 Common', 'MLB-22S1-C-1987A6-M-WD'), + (0x7399aa3a21a523ea0065288643654f14bead57fe, 'Oakland Athletics™ Matt Chapman Inception Base White 70 Common', 'MLB-INC21-C-IB70-WHT'), + (0x7399f012100f03d9903488984cdfa70d07f8f4a0, 'Common Comic 31 1-31 Bazooka Joe 2021 NFT', 'BZK-C-31C'), + (0x73a09314dd77643af3d2990210cdd198129b6c0c, 'Mafia Club', 'BFMC'), + (0x73a726222b7c828dd9ca5da6bcb63b20aaa6c517, 'Los Angeles Dodgers® Trea Turner Postseason Base Navy 37 Uncommon', 'MLB-21POST-U-B37-M-NVY'), + (0x73a755378788a4542a780002a75a7bae7f558730, 'AVAX MAI Vault', 'AVXMVT'), + (0x73ab1d2b4146772aa0555e6f553d2a5ccc612f0c, 'New York Yankees® Aaron Judge 2022 Definitive Gold 20 Legendary', 'MLB-22LEG-L-22DEF20-M-GLD'), + (0x73ad2de374d6764a48fc42e3f254a5c41216f876, 'Regan Charles-Cook RSC Base White SP-36 Common', 'SPFL-21SPSS-C-BSP-36-A-WHI'), + (0x73adf6ad5c5560553bef6626f190ff5137f6474f, 'Tampa Bay Rays™ Shane McClanahan Postseason Base Red 8 Rare', 'MLB-21POST-R-B8-M-RED'), + (0x73b193a4747ceb6e894a878bc6226abb82b1cbd0, 'St. Louis Cardinals® Paul Goldschmidt Inception Base Blue 89 Uncommon', 'MLB-INC21-U-IB89-BLU'), + (0x73d0ffd6eec1b86cdc3c10633d6e1dfce791b312, 'Los Angeles Dodgers® Andre Jackson Base Independence Day RWB 258 Rare', 'MLB-22S1-R-B255-M-RWB'), + (0x73d5375a913fb1b12d5d2aa6833d5f9a499e24aa, 'Los Angeles Dodgers® Mookie Betts 1987 35th Anniversary Wood T87-4 Common', 'MLB-22S1-C-1987A4-M-WD'), + (0x73e260eeaf3ccfb341a791b0603cdcec25699996, 'New York Yankees® Aaron Judge Top 5 Cinema 1 Legendary', 'MLB-22ASG-L-T51-M-CIN'), + (0x73f1014da74de8cc12e9e5e1c316fc9b091999cd, 'Uncommon Comic 85 2-37 Bazooka Joe 2021 NFT', 'BZK-U-85C'), + (0x740e6fca5be9a04f3874eea17cb1ade00b95706e, 'Evan Ndicka SGE Ascendent Facsimile Signature Blue TK-42 Legendary', 'BUND-22TK-L-ASCTK-42-S-BLU'), + (0x740ef4cf534cc0f51ce8023d3c74648a4ab5b3fe, 'Chicago White Sox® Luis Robert Rookie and Future Phenoms Facsimile Signature White 20 Rare', 'MLB-INC21-R-RC20-WHT'), + (0x7419e7d15ad5655837609278c70da0c929ccf373, 'Moo Milk Collectibles', '3DCOW'), + (0x741b3e8a9d3c8c6db51bc6ddbca456261311f0cc, 'Chicago White Sox® Dylan Cease P Base Static Gold 435 Uncommon', 'MLB-S221-U-B435-GOL'), + (0x7421105ea38da0a9fca53b7be34e895988633f77, 'Mario Götze SGE Color Splash White TK-60 Uncommon', 'BUND-22TK-U-CSTK-60-S-WHI'), + (0x742203f89ca52a433e89b615c0468a1f6ee95069, 'Angels® Shohei Ohtani 1987 35th Anniversary Wood T87-1 Common', 'MLB-22S1-C-1987A1-M-WD'), + (0x74292d0bd22eb0c487e7db6ad8fadebc9e6a8866, 'Oakland Athletics™ A.J. Puk P Base Motion Vintage Stock 636 Super Rare', 'MLB-S221-S-B636-VS'), + (0x742f6c90ef6e8de6d299f99752d7efbf29b0dfbf, 'SV Werder Bremen Ömer Toprak Base Players Team Color 80 Uncommon', 'BUND-SC21-U-BP80-TMC'), + (0x7433885c990382a2af356528c97e6592bce5f29c, 'Kansas City Royals® Base Static Gold 608 Uncommon', 'MLB-S221-U-B608-GOL'), + (0x74367ded93e7d71a4bca1e2b1f9bef8c2bab9044, 'Marcus Thuram BMG Motion Aqua Refractor S4-57 Rare', 'BUND-21TS4-R-MS4-57-V-AQU'), + (0x74370929fb48887bc85279b7e7fd23815c920f42, 'waifu collection', 'AWLC'), + (0x743fc568406bbc0617a0f91521d890168dac723f, 'Detroit Tigers® Matt Manning Facsimile Signature Slab Gold 3087 Epic', 'MLB-22PRI-E-FS31-M-GLD'), + (0x7443be6a6aa480fcff6b42ea1c3d2967008c17cd, 'Plague Game 2', 'PGAME'), + (0x744a6c40fdb241724b381e8900fc6c5b9ee25e21, 'Angels® Brandon Marsh 1987 35th Anniversary Chrome T87C-79 Super Rare', 'MLB-22S1-S-1987AC61-M-CHR'), + (0x74536140984986bc9d7f0eb9c1ee39bf88130b24, 'Seattle Mariners™ Tom Murphy Base Vintage Stock 262 Super Rare', 'MLB-22S1-S-B259-M-VS'), + (0x745bd15c80abab0ed7473346533571b41258b364, 'MinerVerseNFT', 'MVNFT'), + (0x745dd7c9e6ac7e51de12264484cf2179e9f8bc40, 'New York Mets® Javier Baez Stars of MLB Chrome Night SMLBC-5 Legendary', 'MLB-22S1-L-SMLBC5-M-NIT'), + (0x7460174aff8e4edb52aa9e5a2fd2c6be8aa52f1d, 'Houston Astros® Carlos Correa 1987 35th Anniversary Wood T87-31 Common', 'MLB-22S1-C-1987A24-M-WD'), + (0x746449aefea5603a905999e955a76221bed2a980, 'Tzatary art', 'Tzatary'), + (0x746a69f3038beec5dcb0089f88f3a71cc70ba438, 'VfB Stuttgart Pascal Stenzel Base Players Team Color 89 Uncommon', 'BUND-SC21-U-BP89-TMC'), + (0x746b6b2c1184445418913f22d4073fb84dbeaa6c, 'Miami Marlins® Braxton Garrett P Base Motion Rainbow 433 Rare', 'MLB-S221-R-B433-RAI'), + (0x74750b293c7e04ae6af44c0a664fb4ce8ec9919e, 'Smol Joes', 'Smol Joes'), + (0x747d45ddb32331bc36363e7f78383c0b8ccd4d37, 'Godzilla Storm Traditional Art Color 8 Rare', 'GDZ-RAT21-R-TA8-S-COL'), + (0x7488e7baffa278ac00cb6a9decea51254d1ea143, 'Cincinnati Reds® Tyler Stephenson Rookie and Future Phenoms Facsimile Signature White 11 Rare', 'MLB-INC21-R-RC11-WHT'), + (0x748afed7794935c913303555deb78826d623aa5e, 'André Hahn FCA Motion Rainbow Refractor S4-49 Super Rare', 'BUND-21TS4-S-MS4-49-V-RAI'), + (0x748b8fbab4fe7d2bccf42d8d1cda82ad6451ec27, 'Milwaukee Brewers™ Devin Williams Inception Base White 55 Common', 'MLB-INC21-C-IB55-WHT'), + (0x74955aea662d5138c07788c529570689e758fffd, 'EmptyMind', 'EmptyMind'), + (0x749af3d125a89ce2c668e3ec06bda303b5330a03, 'Atlanta Braves™ Ozzie Albies 2B Base Motion Vintage Stock 500 Super Rare', 'MLB-S221-S-B500-VS'), + (0x74a2ecf03310a5349f15899ef10c0e521c9ff064, 'Boston Red Sox® Double Bath Base Vintage Stock 229 Super Rare', 'MLB-22S1-S-B226-M-VS'), + (0x74aec838fe0a1c56879866ed4908e84dcf4e27ce, 'New York Yankees® DJ LeMahieu Inception Base Red 67 Rare', 'MLB-INC21-R-IB67-RED'), + (0x74aedce936e45fa8c30fa15dbe6484fe8301e754, 'San Diego Padres™ Fernando Tatis Jr. Base Vintage Stock 100 Super Rare', 'MLB-22S1-S-B99-M-VS'), + (0x74af811f1394d76960ead43d8440a6978714e5f4, 'MugFrens', 'mFREN'), + (0x74b27327927b4464a6753510c064bfebd56027b8, 'XSStrial', 'XSS'), + (0x74b29b6874edb9e85551e339460d3624b794dc25, 'Common Comic 58 2-10 Bazooka Joe 2021 NFT', 'BZK-C-58C'), + (0x74b73c38de66f1511b773fc6c9250ee8a89aaedd, 'Cincinnati Reds® Shogo Akiyama OF Facsimile Signature Static Blue 647 Super Rare', 'MLB-S221-S-FS647-BLU'), + (0x74b7a724e1015e119dbb4f773443d06a5eb683f9, 'Shogun Geishas', 'GEISHAS'), + (0x74b7c17b09074fe35f6394f573a7f262cb7f8894, 'TSG Hoffenheim Stefan Posch Base Players White 30 Common', 'BUND-SC21-C-BP30-WHT'), + (0x74c4db0a6145855a7860f78ef20fd3df0c0653e0, 'Potluck Elves', 'PLEV'), + (0x74caee6deab95845947970d99c51b8a1a9f7d1c2, 'SCOOTER', 'SCOOTER'), + (0x74ce8160804d369d3fd68d70ffb6bdb94036be9e, 'AVAX_SUMMIT', 'HTTN'), + (0x74dee9b2094a4208352fc0c3c4c55a63ff731709, 'Miami Marlins® Sixto Sanchez Base Pink 1045 Uncommon', 'MLB-22PRI-U-B40-M-PNK'), + (0x74e24598a85f32392bfe86148eb0dc20252c409c, 'Washington Nationals® Juan Soto Short Print White 150 Rare', 'MLB-22S1-R-SP30-M-WHI'), + (0x74e451322540a86bd2e3eb2a6922233681a1f3ed, 'Sproutcoin Spring Facsimile Signature Color 22 Uncommon', 'GPK-NFT22-U-FS22-S-COL'), + (0x74ecc101fac65ca6e60ec230b869d4c8255c18b5, 'San Francisco Giants® Logan Webb Regular Season Division Winners RWB 48 Rare', 'MLB-21POST-R-R48-M-RWB'), + (0x74f4a8b1ab62c71732b494b447d81deaa54ab973, 'Minnesota Twins® Alex Kirilloff Base Glitch 197 Uncommon', 'MLB-22S1-U-B196-M-GLI'), + (0x74f565627262bbc1cd71a2c4c4dfe7568030dd88, 'Texas Rangers® Yonny Hernandez Facsimile Signature Gold 3116 Super Rare', 'MLB-22PRI-S-FS42-M-GLD'), + (0x75044f384ca7de3a2a788f7bb43a836569006285, 'Bayer 04 Leverkusen Moussa Diaby Young Stars Gold 154 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS154-AFS-GLD'), + (0x7505a700d3269430eddc8d129d3fea29809a2d44, 'FC Schalke 04 Salif Sané Base Players Team Color 60 Uncommon', 'BUND-SC21-U-BP60-TMC'), + (0x7508e7acdb688a2c2ffcb14c3f42ab5d5ebf9aff, 'DeadOwlBishhh', 'DBSH'), + (0x750ded21cc9f7a4598f92bba189c8016765ff607, 'Habibi Derivi', 'HABI'), + (0x75190acae9a03b7cce382ed1a0f188cf481e5a37, 'St. Louis Cardinals® Nolan Arenado Facsimile Signature Slab Gold 3042 Epic', 'MLB-22PRI-E-FS35-M-GLD'), + (0x751ce36d147e4dd45c8ab65dbfa9797949afb2a5, 'Atlanta Braves™ Jorge Soler Ultra Short Print White 208 Epic', 'MLB-22S1-E-USP2-M-WHI'), + (0x751f06ca6ba6a536aef41d64e10f2e3f744d49b0, 'Houston Astros® Carlos Correa Inception Base Blue 34 Uncommon', 'MLB-INC21-U-IB34-BLU'), + (0x7524548c3e8cb64debfb703308a258ae0e95d573, 'Cowlfi', 'COWLFI'), + (0x7532323af848361f0eff4f99a90ae4289acf1466, 'Chicago White Sox® Tim Anderson Popular Demand Facsimile Signature Slab Teal 3505 Legendary', 'MLB-22PRI-L-PDFS15-M-TEA'), + (0x754333535755f180009ae7fd590ae08d2241e664, 'SquidBoy', 'Soy'), + (0x754562e9efd5e8851f04dd604eaa6eba3a133f4b, 'Detroit Tigers® Jake Rogers Base Vintage Stock 198 Super Rare', 'MLB-22S1-S-B197-M-VS'), + (0x7553c2991d56f7a017f5f6287e83f344b03369e6, 'Pittsburgh Pirates® Ben Gamel Base Glitch 285 Uncommon', 'MLB-22S1-U-B282-M-GLI'), + (0x755471c6a3220bb2fc896220292b3f309b44349d, 'Ryan Porteous HIB Top Plays Gold SPTPL-13 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-13-V-GOL'), + (0x755494da921a910ea72c8ab00143d4ba87bc0da6, 'Vault Key', 'VK'), + (0x755d1efd7a043a6bc220b97dbdeabeca360e59e7, 'Los Angeles Dodgers® Max Scherzer Wild Card Contenders Blue 22 Common', 'MLB-21POST-C-W22-M-BLU'), + (0x7562b51fee668784d99818f4ac2c385c565e586d, 'Nico Schlotterbeck SCF Base Red S4-62 Uncommon', 'BUND-21TS4-U-BS4-62-S-RED'), + (0x7570c4d2ac96f8620ceb645002032356580183f2, 'Milwaukee Brewers™ Luis Urias Postseason Base Navy 21 Uncommon', 'MLB-21POST-U-B21-M-NVY'), + (0x757326f67bc631c6af5eb3a67766d1b3e16f3d46, 'Minnesota Twins® Ryan Jeffers C Base Motion Vintage Stock 552 Super Rare', 'MLB-S221-S-B552-VS'), + (0x757ae04f4aae466860a19b666045af93f5f698ec, 'New York Yankees® Anthony Rizzo Base White 242 Common', 'MLB-22S1-C-B239-S-WHI'), + (0x758027b42495226819ede9f7e030e0f7249212c3, 'XANA Treasure Box : October 2022', 'XTB'), + (0x7580efb57f1eaeaf90771086b56ac52dc5ff6f12, 'Vip Level', 'VLEVEL'), + (0x7583ca0b34da65d5ee2db4cab373325a57e4be87, 'Los Angeles Dodgers® Mookie Betts Base Blue 1014 Common', 'MLB-22PRI-C-B88-M-BLU'), + (0x75868e974ec0832a68aa95e3a7796b2bcf82bb15, 'Chicago White Sox® Jose Abreu 1987 35th Anniversary Chrome T87C-89 Super Rare', 'MLB-22S1-S-1987AC66-M-CHR'), + (0x7588e2839db10a3adbd94f7b9a84ac53d8db2496, 'San Francisco Giants® Alex Dickerson OF Base Static Gold 616 Uncommon', 'MLB-S221-U-B616-GOL'), + (0x75a659470518582a41d9b4518f152304bd1d0348, 'Chicago White Sox® Garrett Crochet Base Independence Day RWB 239 Rare', 'MLB-22S1-R-B236-M-RWB'), + (0x75c76f2e440ec5dc92e90da86d93e8666959ba68, 'FSV Mainz 05 Daniel Brosinski Base Players Team Color 65 Uncommon', 'BUND-SC21-U-BP65-TMC'), + (0x75d4d2170319292e3b1627ebf8b484bf14278877, 'Boston Red Sox® Bobby Dalbec Rookie and Future Phenoms Facsimile Signature White 6 Rare', 'MLB-INC21-R-RC6-WHT'), + (0x75d9899fc365ac2a2e7d77be24f4ce96e2c1ca96, 'DSP Flagship', 'DSPFlagship'), + (0x75ddd2b19e6f7bed3bfe9d2d21dd226c38c0cbc4, 'Evo Egg Gen0', 'EVOEGGGEN0'), + (0x75e4b162779239a7a3557995a38772e7aa4b3c6b, 'FC Bayern Munich Serge Gnabry Base Players White 5 Common', 'BUND-SC21-C-BP5-WHT'), + (0x75e504ba0f58dd0b1c4793e29036f5c42e15aed5, 'Toronto Blue Jays® Vladimir Guerrero Jr. 2022 Inception Gold 16 Legendary', 'MLB-22LEG-L-22INC16-M-GLD'), + (0x75f822a833bb02b0b3d25f5237c58044672bed31, 'Washington Nationals® Gerardo Parra Base White 220 Common', 'MLB-22S1-C-B217-S-WHI'), + (0x760832107e35331a6aad142cbd60e2109c673402, 'Cincinnati Reds® Nick Castellanos Base Pink 1038 Uncommon', 'MLB-22PRI-U-B109-M-PNK'), + (0x761eea3c73083a859cf7c4ad35e3848b33b0c359, 'SABI', 'SABI'), + (0x7622522502e496aac21dec26e00e8c8a6a268f84, 'Prippe', 'PIE'), + (0x7627467427db71bdb9202452ba76d2fd95debf50, 'asuraboy', 'asu'), + (0x7640c3ffd1d1bf64a5a76063c8f7f965a7d92b09, 'Tiny Huskies', 'TINY'), + (0x7640d5e22b2e22d50d6ab6ed2ac032e790410eba, 'Mothra Toppsicle Color 2 Legendary', 'GDZ-RAT21-L-TP2-A-COL'), + (0x7651d027908ddc60f8801379a8095cbc0d14232f, 'Christopher Trimmel FCU Top Players Team Color TK-28 Rare', 'BUND-22TK-R-TPTK-28-S-TMC'), + (0x765521694b6516e0f524de634ca25f70726f20a1, 'Cincinnati Reds® Tyler Stephenson Silver Signings Facsimile Signature Silver 7 Super Rare', 'MLB-INC21-S-SS7-SLV'), + (0x76560a5da1cbbc499fdbc87965c265ae7403d3bd, 'Ebirah Base Collectible Blue 1 Common', 'GDZ-RAT21-C-B1-S-BLU'), + (0x7657cd1cdf522106e8837ea349115a76de7e173e, '2022 UEFA Finalissima Redemption', 'UEFA-22FR-PACK-FR'), + (0x7663fd163f8e9a8c79c2c4e1076491fe461843d3, 'Tampa Bay Rays™ Mike Zunino C All-Star Motion Purple 17 Epic', 'MLB-S221-E-AS17-PUR'), + (0x7668f7962ea8a556fd4713a514523c85d62002ae, 'New York Yankees® Gary Sanchez C Base Motion Rainbow 525 Rare', 'MLB-S221-R-B525-RAI'), + (0x767ac8bf2e6a0efac9048aab13fb3a9479159909, 'Dadinsky', 'DSKY'), + (0x7684124deb11e24ab200f1518d04884f8c617649, 'Baltimore Orioles® Zac Lowther Base Independence Day RWB 133 Rare', 'MLB-22S1-R-B132-M-RWB'), + (0x768b795529dfb081e7e2bbd868b0231d2ddf517c, 'Chicago White Sox® Yoan Moncada Division Series Bronze 27 Super Rare', 'MLB-21POST-S-D27-M-BRO'), + (0x768e5f8e87b0d918b1b7371bcbf111fbf70771da, 'Houston Astros® Kyle Tucker Postseason Base Red 53 Rare', 'MLB-21POST-R-B53-M-RED'), + (0x768e97f0e89ffcdf5170aeca58685260be0cdf51, 'Atlanta Braves™ Drew Smyly Base Glitch 195 Uncommon', 'MLB-22S1-U-B194-M-GLI'), + (0x7698096a312f47324a8045b9a8463eea01ccad27, 'Rome is Burning Event Exclusive Comic Cover Yellow 2 Epic', 'GDZ-RAT21-E-CCE2-A-YEL'), + (0x76994161eefb868399041339446424d947d91095, 'Love Monster Zombie Edition', 'LMZ'), + (0x769f26bf0d23bc1b080ecc34e6d9619aee40fe16, 'Jonathan Burkardt M05 Animation Black Refractor S2-19 Epic', 'BUND-21TS2-E-AS2-19-V-BLA'), + (0x76aa0875915c78202618baf17bb26ed9307b5449, 'New York Yankees® Kyle Higashioka Base Independence Day RWB 292 Rare', 'MLB-22S1-R-B289-M-RWB'), + (0x76ac9bec5598648545f3286fcf4320628b9ec498, 'Capybaras', 'CPB'), + (0x76ad4c7918358cf962ef829a323c76e87f2a1a9f, 'Uncommon Comic 9 1-9 Bazooka Joe 2021 NFT', 'BZK-U-9C'), + (0x76b23f813a81ece3bdf33ce6aa95bbc5d48dae4a, 'Oakland Athletics™ Daulton Jefferies P Base Motion Vintage Stock 656 Super Rare', 'MLB-S221-S-B656-VS'), + (0x76b9c3d36fb9ace2057bd4598d7e6a57b308ec22, 'Kansas City Royals® Franchy Cordero OF Base Static White 648 Common', 'MLB-S221-C-B648-WHI'), + (0x76c683e6dc40c4e88fbf53d8d42962aae5698502, 'VfL Wolfsburg Kevin Mbabu Base Players Team Color 32 Uncommon', 'BUND-SC21-U-BP32-TMC'), + (0x76cdb6b97c610ea68d73b1565045675e7482cb9b, 'Godzilla RAT Pages 4 & 5 Comic Page Color 4 Rare', 'GDZ-RAT21-R-CP4-S-COL'), + (0x76cfc0e762bceec4ead6041fe98f6c141e61ef0c, 'Tokyo Gacha Girls - Stickers', 'TGGSTICKER'), + (0x76d1f6d3e86172b40b728034937e21efbd6977fa, 'Jotun', 'RJOT'), + (0x76da8c98f9e6932307ec89557ca57cfcda6ff63a, 'Unicornoz', 'Unicornoz'), + (0x76de43da35a61d4d7a616a4a4eaa0c453552a94a, 'Detroit Tigers® Matt Manning Base Pink 1205 Uncommon', 'MLB-22PRI-U-B163-M-PNK'), + (0x76e07b12fa52104442a0dfa9b899d58c56df631c, 'Avalanche Friends Collectible', 'AFC'), + (0x76e2d4f978d274e1a684dbb710225a16ad67c53f, 'pumpskin Golden NFTicket', 'PGN'), + (0x76ea1393330a7a08d894406d906ca057f08963e1, 'Ian Harkes DDU Top Plays Gold SPTPL-05 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-05-V-GOL'), + (0x76ecb0fcb0216e12d719a9804ec2ef3e994bb419, 'Houston Astros® Jose Altuve 2B Base Motion Platinum 432 Epic', 'MLB-S221-E-B432-PLA'), + (0x76f36f3e7200ec8beb8b5e707af07d2025da49b9, 'PrizeBond', 'PB'), + (0x76fb72cbe8809121f8b6a4dc0c2980f7e1e3c725, 'Chicago Cubs® Anthony Rizzo 1B 1986 Anniversary Facsimile Signature Motion Chrome 86TC-80 Legendary', 'MLB-S221-L-1986AFS86TC-80-CHR'), + (0x76fd55519f161e0823fd3309e67587cde05cdca2, 'Arizona Diamondbacks® Pavin Smith Base Independence Day RWB 106 Rare', 'MLB-22S1-R-B105-M-RWB'), + (0x770906477250aae4686f3e2117365686768ece25, 'False Pretense Music Video', 'FPMV'), + (0x771259f1b5ac1f45455f451e422af4672ed0f85f, 'San Francisco Giants® Base Motion Vintage Stock 603 Super Rare', 'MLB-S221-S-B603-VS'), + (0x7714b027d0a41f953dfeafda47ed0baa5bd16d12, 'Pittsburgh Pirates® Max Kranick Base Blue 1206 Common', 'MLB-22PRI-C-B152-M-BLU'), + (0x771ded388d9352a805951fda3854c3002ca0a453, 'Pittsburgh Pirates® Bryan Reynolds Rookie and Future Phenoms Facsimile Signature Blue 63 Super Rare', 'MLB-INC21-S-RC63-BLU'), + (0x77240c21a6d44451e15d4278794ce6d70b65cf15, 'Miami Marlins® Jesus Sanchez Inception Base Red 51 Rare', 'MLB-INC21-R-IB51-RED'), + (0x77301665174cc2de875de56fce279b4cd95a2ad3, 'Washington Nationals® Josiah Gray 2022 Inception Gold 17 Legendary', 'MLB-22LEG-L-22INC17-M-GLD'), + (0x77396e5a5b5d27dd4f22c8adecfa951e494f35aa, 'Theory VIP Pass', 'TVIP'), + (0x77397a7e4fa722706355d938fe00248f9b0550f4, 'Chicago White Sox® Craig Kimbrel Base Independence Day RWB 2 Rare', 'MLB-22S1-R-B2-M-RWB'), + (0x774320a9d3a52b7a28728dfaacd2e3e7601e3271, 'San Francisco Giants® Kris Bryant 1987 35th Anniversary Chrome T87C-77 Super Rare', 'MLB-22S1-S-1987AC59-M-CHR'), + (0x77475e67055eb5a9e1468b09f6bc16463cc039d8, 'King Ghidorah Strikes Traditional Art CMYK Offset 6 Super Rare', 'GDZ-RAT21-S-TA6-A-CMYK'), + (0x77597d4ae99c37070ea1b86005edecd67c2a28e7, 'Bayer 04 Leverkusen Julian Baumgartlinger Base Players White 22 Common', 'BUND-SC21-C-BP22-WHT'), + (0x776049d62817e6de453984dd1bdedfbfac4c180a, 'American League™ Slugger Reunion Base Vintage Stock 329 Super Rare', 'MLB-22S1-S-B325-M-VS'), + (0x7763d61464f77661a9fcd1643cbf0d5e77d33a49, 'St. Louis Cardinals® Carlos Martinez P Base Static Gold 496 Uncommon', 'MLB-S221-U-B496-GOL'), + (0x77648ee9814faf3146a0b7eadeed7747dec1d37e, 'Kevin Trapp SGE Animation Gold Refractor S2-14 Legendary', 'BUND-21TS2-L-AS2-14-V-GOL'), + (0x77726fd77d18583d876c538960142e2b6d383d26, 'AVA Lamp Golden Animation Facsimile Signature Color 8 Legendary', 'GPK-NFT22-L-GAFS8-A-COL'), + (0x7775bdc8bcee3b4a961b1f6d1609dc25623fb710, 'San Diego Padres™ Ryan Weathers Base Independence Day RWB 70 Rare', 'MLB-22S1-R-B70-M-RWB'), + (0x77794ce5b34d35dd35d001075b27caf69cdd116e, 'PFP & Co', 'PFP'), + (0x778ddc55387fe8330af33c19b1a427e8a06ebd86, 'New York Mets® Carlos Carrasco P Base Motion Rainbow 655 Rare', 'MLB-S221-R-B655-RAI'), + (0x77a02f2d64c1d19f53416ec818d8f5c9a28d354d, 'Yori', 'YoriYori'), + (0x77ab23e561e2bb0d4b5bed6e96a913b45004c236, 'Smolr Doomers', 'SMOLRDOOM'), + (0x77b025d875d2bb97e19caad6da12dfb5c4e720f4, 'San Francisco Giants® Mauricio Dubon Base Vintage Stock 246 Super Rare', 'MLB-22S1-S-B243-M-VS'), + (0x77b4955eea6b596def315d386d88bb2057d3135c, 'Texas Rangers® Curtis Terry Base Blue 1216 Common', 'MLB-22PRI-C-B170-M-BLU'), + (0x77baef93f01c97b58f87569996f364f4a90c4844, 'King Ghidorah Mountainscape Traditional Art Color 10 Rare', 'GDZ-RAT21-R-TA10-S-COL'), + (0x77be2fcd8756d4f24bc1cfe24ec60dd65ce42a7d, 'Philadelphia Phillies® Freddy Galvis Base White 67 Common', 'MLB-22S1-C-B67-S-WHI'), + (0x77c1c6329cfc6acd0863e3687c5a82fe5ca04bd8, 'Cobalt CAThy Golden Animation Facsimile Signature Color 10 Legendary', 'GPK-NFT22-L-GAFS10-A-COL'), + (0x77c6bc43f67492671fb1ba0fc165daba3db3d3f0, 'Kansas City Royals® Ryan O''Hearn 1B Base Motion Platinum 492 Epic', 'MLB-S221-E-B492-PLA'), + (0x77c7ad53f6a9b0cd1a83bf22d5d09348997c045b, 'New York Yankees® Base White 121 Common', 'MLB-22S1-C-B120-S-WHI'), + (0x77c7d545b3e5e9035e44e62e4dc4e6dd6278258d, 'Woo-yeong Jeong SCF Motion Aqua Refractor S1-06 Rare', 'BUND-21TS1-R-MS1-06-V-AQU'), + (0x77d09ea88789293502fdf4046933096f260bff64, 'Colorado Rockies™ Team Cube 2.0 Team Colors 12 Legendary', 'MLB-22S1-L-TC212-M-TMC'), + (0x77d7f92c0ecf8f75587afbe63520ac863fb027a4, 'Life of Potato', 'LOP'), + (0x77dfd577a28a4937559e66f3e44de85a13de1116, 'SuperNeko 16bit', 'NKT3'), + (0x77e91ab1c1640b983a08f13bf90a5ceecd497783, 'Robot Factory', 'RF'), + (0x77e9658c0fd576e72dd8aa79478532a470dbaf62, 'Oakland Athletics™ Stephen Piscotty OF Base Motion Platinum 607 Epic', 'MLB-S221-E-B607-PLA'), + (0x77eacd90e1d69212042a38c4687175d5f91cc98f, 'Seattle Mariners™ Kyle Lewis Fresh Faces Facsimile Signature Reward White 3404 Legendary', 'MLB-22PRIASG-L-FFR3-M-WHI'), + (0x77ecee9e8af784585414279932971405715be554, 'Jan Thielmann KOE Animation Black Refractor S4-38 Epic', 'BUND-21TS4-E-AS4-38-V-BLA'), + (0x77f796d80c8c3d4911661ae178f9cf1e1a8cf34a, 'VolThorn', 'Vol'), + (0x77fe4eaace070993884a3a6c87e3876e110b59f9, 'Atlanta Braves™ Tucker Davidson P Base Motion Platinum 423 Epic', 'MLB-S221-E-B423-PLA'), + (0x78011905d6ff76e1c0aeb2b14348485c2ac24500, 'Narwhal Node Club', 'NNC'), + (0x781bee82b4cadf18e30b3aaef34aef6e28bf14dd, 'FC Augsburg Ruben Vargas Young Stars Gold 173 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS173-AFS-GLD'), + (0x781faa2175c925426943e2f182f2a48cc107cf00, 'Crypto World', 'CW'), + (0x78277bee377042b446ed18aec93d12d1cf3f6a2e, 'Developer Dale Facsimile Signature Color 9 Uncommon', 'GPK-NFT22-U-FS9-S-COL'), + (0x78277c96a045bf82a16cfbe876dcdb3f193b161d, 'Minnesota Twins® Alex Kirilloff Facsimile Signature Slab Gold 3041 Epic', 'MLB-22PRI-E-FS2-M-GLD'), + (0x7828990fed50b33e938ab22229217cba13309813, 'Rodan Toppsicle Strawberry Pink 3 Epic', 'GDZ-RAT21-E-TP3-A-PNK'), + (0x783b57eec351077ed033b322e17e34381671fdb2, 'Farandole Collectibles', 'FAR_COLLECTIBLES'), + (0x783c9fc47cbda59d7cad216c05f690a126bb11b9, 'Sport-Club Freiburg Roland Sallai Young Stars Team Color 160 Super Rare', 'BUND-SC21-S-YS160-TMC'), + (0x78457e0ac6c420de083536f427442b21db48de66, 'Joe Spaces', 'JoeSpaces'), + (0x7848fdcf6a02d0de10cf54e82971df634380d2a5, 'Uniswap V3 Positions NFT-V1', 'UNI-V3-POS'), + (0x784ce243bb0eef76233558e790f6b2e532a2878f, 'Atlanta Braves™ Adam Duvall OF Base Motion Rainbow 601 Rare', 'MLB-S221-R-B601-RAI'), + (0x784d33a3b3511131a4090e7174cbe8e5cd00db19, 'Chicago White Sox® Carlos Rodon Base Independence Day RWB 282 Rare', 'MLB-22S1-R-B279-M-RWB'), + (0x7854edaa13d637735c6cf702710e7b299390d0f8, 'New York Mets® Kevin Pillar Base Independence Day RWB 170 Rare', 'MLB-22S1-R-B169-M-RWB'), + (0x7862e0f9be01d0cc785c1fbc83a3190d4a626006, 'New York Mets® Jeff McNeil 2B/OF Base Static Gold 489 Uncommon', 'MLB-S221-U-B489-GOL'), + (0x7872ef58e1ffe111494a4232cafaa4c087920717, 'Kevin Trapp SGE Base Red S2-14 Uncommon', 'BUND-21TS2-U-BS2-14-S-RED'), + (0x787a045882835c03346a7a57c6fad65ca93ac311, 'Chicago White Sox® Jose Abreu 1B Short Print Motion White 331 Super Rare', 'MLB-S221-S-SP331-WHI'), + (0x7894c1e0ae217c9535fc65bca72ead03c72649de, 'New York Mets® 2021 Topps MLB Inception Set Completion Reward Team Colors 18 Epic', 'MLB-21INCSC-E-21INCSCR18-M-TC'), + (0x78aa13d2ad2bd85c9ff2a527691921815c7e1d66, 'Pinto', 'Pinto'), + (0x78ac3ae2be1e05330c981063eb0c1b3c14a07229, 'FSV Mainz 05 Moussa Niakhaté Top Players Gold 128 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP128-AFS-GLD'), + (0x78b1317970a3cc517ba68cfe77f1237e9930fc6d, 'Kyogo Furuhashi CEL Top Plays Purple SPTPL-02 Rare', 'SPFL-21SPSS-R-TPLSPTPL-02-V-PUR'), + (0x78b3a820a346c3b99e9df305f32e3db1ce001f27, 'Baltimore Orioles® Jorge Mateo Base Independence Day RWB 89 Rare', 'MLB-22S1-R-B89-M-RWB'), + (0x78b43cf22016f4ed140fdcc30c1aea8a9cfa6656, 'Tampa Bay Rays™ Shane McClanahan P Base Static White 408 Common', 'MLB-S221-C-B408-WHI'), + (0x78ba5c3f1a00ba501c14882ed74a6365c1b59565, 'Miami Marlins® Jazz Chisholm SS Base Motion Platinum 538 Epic', 'MLB-S221-E-B538-PLA'), + (0x78c3560eb2270b2d98b79b1610893c1c38fdcc6a, 'Oakland Athletics™ Chad Pinder Base Vintage Stock 95 Super Rare', 'MLB-22S1-S-B94-M-VS'), + (0x78c5ca52015a3a78116074dc4def5808996fb89b, 'Washington Nationals® Juan Soto Base Glitch 150 Uncommon', 'MLB-22S1-U-B149-M-GLI'), + (0x78cdcc6718539f50a6ed3429148481e1173a7c62, 'Evan Ndicka SGE Motion Aqua Refractor S3-29 Rare', 'BUND-21TS3-R-MS3-29-V-AQU'), + (0x78cfeaa7b66f2132bc2eadb072afcab0d0e237c1, 'Cincinnati Reds® Wade Miley Base Glitch 203 Uncommon', 'MLB-22S1-U-B202-M-GLI'), + (0x78d0fa6967285a63a9e5edf754557fd32c44100f, 'National League™ Kris Bryant Base Pink 1299 Uncommon', 'MLB-22PRI-U-B220-M-PNK'), + (0x78d74daeaaf2e95d0c5de67bb92461777f221a61, 'Texas Rangers® Jose Leclerc P Base Motion Platinum 396 Epic', 'MLB-S221-E-B396-PLA'), + (0x78e1057ce926c97014f99cf47376c6a00d480081, 'Smily', 'S'), + (0x78e2638a38218eff105eda469f9068c61ef5f6c2, 'Atlanta Braves™ Ozzie Albies Division Series Bronze 50 Super Rare', 'MLB-21POST-S-D50-M-BRO'), + (0x78e56c2cb4f2c97218889430a46a0205569dcf24, 'Philadelphia Phillies® Kyle Schwarber HRD Reward Red 6 Rare', 'MLB-22ASGR-R-R6-M-RED'), + (0x78e7114db94e5b9301a47a9a15967126d71dbef2, 'Philadelphia Phillies® Adam Haseley OF Base Motion Rainbow 590 Rare', 'MLB-S221-R-B590-RAI'), + (0x78e74f15c416743bf9cc9159000b291912bf20b9, 'New York Yankees® Base Vintage Stock 121 Super Rare', 'MLB-22S1-S-B120-M-VS'), + (0x78efc476a8bfddeb60c6d792ddf9d1d709ac2d31, 'New York Yankees® Gerrit Cole Stars of MLB Chrome Night SMLBC-26 Legendary', 'MLB-22S1-L-SMLBC25-M-NIT'), + (0x78f3bc3192920fd1e18449dbb0d4a86f0623f71e, 'Minnesota Twins® Ryan Jeffers C Base Motion Rainbow 552 Rare', 'MLB-S221-R-B552-RAI'), + (0x78f3ee133c3ca975321067158a4329b61ad911a0, 'Borussia Dortmund Mats Hummels Base Players Team Color 8 Uncommon', 'BUND-SC21-U-BP8-TMC'), + (0x7907aa31d46955e35c85a4f64a6122e89bfa7a8c, 'Commissioned Art by @NFTbyMargo', '$WORKS'), + (0x790aaaa4312a0f657a7d648b850928199e8937c9, 'Milwaukee Brewers™ Willy Adames Postseason Base Red 19 Rare', 'MLB-21POST-R-B19-M-RED'), + (0x791644e912e1dccbc301298004e6d4cc00569b9c, 'Colorado Rockies™ Charlie Blackmon Base Blue 1186 Common', 'MLB-22PRI-C-B64-M-BLU'), + (0x79165c9ffb630b72329d3e46d864fd992b751ad3, 'Sport-Club Freiburg Dominique Heintz Base Players Team Color 37 Uncommon', 'BUND-SC21-U-BP37-TMC'), + (0x794f32422cbbe15252a343184a163b735c1de8be, 'Milwaukee Brewers™ Devin Williams Base Glitch 26 Uncommon', 'MLB-22S1-U-B26-M-GLI'), + (0x795ef1701306d43fccebbf44d3bdf2c9388bf613, 'Rodan Fly-by Traditional Art Black and White 9 Rare', 'GDZ-RAT21-R-TA9-A-BW'), + (0x796a0b97f6012e7ae5e5b61a7daba07a510d247d, 'Snowballs', 'SNOWBALLS'), + (0x796d8177ce7cf007f435e053cfdc9de8378ae505, 'New York Yankees® Clint Frazier Base Glitch 101 Uncommon', 'MLB-22S1-U-B100-M-GLI'), + (0x796d93ba46f2c158f96c671783cc919fdd32d0b3, 'Minnesota Twins® Eddie Rosario Inception Base Blue 58 Uncommon', 'MLB-INC21-U-IB58-BLU'), + (0x7971a14fc1afd6481955ffef305cbba4dfa66ea4, 'American League™ Vladimir Guerrero Jr. Base Blue 1262 Common', 'MLB-22PRI-C-B205-M-BLU'), + (0x7972811b50adae67b16bee79ca811c8b4d8864e3, 'LUNA-Tic Animation Color 13 Rare', 'GPK-NFT22-R-A13-A-COL'), + (0x7979e948854bd32c4bc521ab473ae5b5c4707e6a, 'Vault Key', 'VK'), + (0x798381f81ea1a6cdddcfe84feade46422098d1f5, 'Jacob Bruun Larsen TSG Base Red S4-54 Uncommon', 'BUND-21TS4-U-BS4-54-S-RED'), + (0x7983b3795c0b15f963317b50098bd2091ec4a782, 'Chicago White Sox® Jake Burger Base White 186 Common', 'MLB-22S1-C-B185-S-WHI'), + (0x7990c712b2b4873c78122a88400caa816ac83c92, 'Avalanche Friends Collectible', 'AFC'), + (0x799146530c4eae29b5f3f99fee2774bb47388fda, 'Hodor the HODLer Base Color 17 Common', 'GPK-NFT22-C-B17-S-COL'), + (0x79981b8f2534fa592d7ea571dcf5368e3c1903cc, 'Rare Comic 93 2-45 Bazooka Joe 2021 NFT', 'BZK-R-93C'), + (0x799981baf55e35ca03307f2cac47b17b663c4e93, 'Renaissance', 'RENAIS'), + (0x79af3a964471ed1f0c3bb98405a6f4624bd2d06a, 'Branimir Hrgota SGF Base Red S4-50 Uncommon', 'BUND-21TS4-U-BS4-50-S-RED'), + (0x79bec900dde495c6f6ada586d0fb74985c7641c3, 'San Diego Padres™ Adrian Morejon P Base Static Gold 518 Uncommon', 'MLB-S221-U-B518-GOL'), + (0x79c9fb7aef36f7b900984a5b8e9f165e561c96fa, 'National League™ 2021 Batting Average Leaders Base Glitch 59 Uncommon', 'MLB-22S1-U-B59-M-GLI'), + (0x79caa3dc21a724dcaca742c7ab549f3beee76497, 'Detroit Tigers® Jonathan Schoop 2B Base Motion Vintage Stock 595 Super Rare', 'MLB-S221-S-B595-VS'), + (0x79caf26be9102748dadcf3aabe4d46ff01a7809e, 'Tampa Bay Rays™ Vidal Brujan Base White 25 Common', 'MLB-22S1-C-B25-S-WHI'), + (0x79cd6ca18f07952f41af45be7c103ba046ffb805, 'Ultimate Pepeverse', 'PEPE'), + (0x79daf9279d97a60b36c080aeca8fb84f44b6a972, 'Houston Astros® Alex Bregman World Series Newspaper BW 1139 Common', 'MLB-22TNP-C-WSN1-M-BW'), + (0x79dcb4244123add7a82594c9b6c6c4d2da0e62c8, 'THE BOY WHO SEES YELLOW', 'TBWSY'), + (0x79e3ff8c1b48147a552038c6a9103e2450405518, 'Rockin Rockets', 'RCKTS'), + (0x79e5998357044507e73979db6ffe23eddf493a7d, 'Çirkin Olsan Bile', 'COB'), + (0x79e8341454464bfca1d0c68eea37764c097bf3f4, 'Waifus', 'Wafu'), + (0x79edcb1d4f51e23696b010b82a2dce9245d238e0, 'Atlanta Braves™ Austin Riley Facsimile Signature Glitch 115 Epic', 'MLB-22S1-E-FS7-M-GLI'), + (0x79f06358222f66dd1104a761e2abf00d80a6485a, 'American League™ Joey Gallo Base Pink 1303 Uncommon', 'MLB-22PRI-U-B226-M-PNK'), + (0x79ff78b19658417326733e9df74aeaabc856502c, 'Tampa Bay Rays™ Nelson Cruz Base Glitch 104 Uncommon', 'MLB-22S1-U-B103-M-GLI'), + (0x7a0752f56590ba8f2553a291895d5bf37877b9bf, 'Los Angeles Dodgers® Walker Buehler Facsimile Signature Slab Gold 3026 Epic', 'MLB-22PRI-E-FS53-M-GLD'), + (0x7a0fd48599311294cb802ca85c213350e120c55d, 'Washington Nationals® Juan Soto Base Blue 1030 Common', 'MLB-22PRI-C-B22-M-BLU'), + (0x7a14ac07ffebead6b52ccc54fb27795963011656, 'OGERZ KLAN', 'OGERZKLAN'), + (0x7a1658d5123459f95fbea6c8069f503bacabf320, 'Uncommon Comic 81 2-33 Bazooka Joe 2021 NFT', 'BZK-U-81C'), + (0x7a180abd2b3cec376a767ca2d2fec3cd67d9555a, 'Philadelphia Phillies® Alec Bohm Gold Signings Facsimile Signature Gold 31 Epic', 'MLB-INC21-E-SS31-GLD'), + (0x7a186f95146e72ffefd57dfab5163c993d427eef, 'Boston Red Sox® Hunter Renfroe Postseason Base Red 67 Rare', 'MLB-21POST-R-B67-M-RED'), + (0x7a1a0cc98a5c20310b0cc4706f308346a152607e, 'ilipika forest: the noble foxes', 'ifnf'), + (0x7a1c8799f3b87bc2161560ee0a068554d62fe3a5, 'Sparky', 'SPRKY'), + (0x7a2a3495b29288e487b337d5322654fb60b4b976, 'Cincinnati Reds® Jonathan India Base Pink 1231 Uncommon', 'MLB-22PRI-U-B159-M-PNK'), + (0x7a2c682e895905338a69f457f19aed5db0e3289f, 'Toronto Blue Jays® Tanner Roark P Base Motion Vintage Stock 522 Super Rare', 'MLB-S221-S-B522-VS'), + (0x7a2e80fbb7e0add7958b301e0081e4415e0e6d94, 'Pittsburgh Pirates® Ke''Bryan Hayes Silver Signings Facsimile Signature Silver 33 Super Rare', 'MLB-INC21-S-SS33-SLV'), + (0x7a2e99beff269bd1ecb477d230f0bd28c8b9758a, 'Philadelphia Phillies® Freddy Galvis Base Independence Day RWB 67 Rare', 'MLB-22S1-R-B67-M-RWB'), + (0x7a417925fbc0999ec18247dc4820d330678fbbe4, 'Angels® Shohei Ohtani American League Base White 12 Uncommon', 'MLB-22ASG-U-B12-M-WHI'), + (0x7a45cc39f43983cbb3a51209f8d9911d8eb31d54, 'Rare Comic 77 2-29 Bazooka Joe 2021 NFT', 'BZK-R-77C'), + (0x7a4cfe17192fb7c82714b51b759fbb63b17be724, 'Baltimore Orioles® Cedric Mullins Base White 94 Common', 'MLB-22S1-C-B93-S-WHI'), + (0x7a503c876657f6921a89c35f0b2638e015f03365, 'Waifu4U', 'W4U'), + (0x7a50d4bdb9943cdfa89c46f495d0fa0f0045dad2, 'Minnesota Twins® Josh Donaldson Base Blue 1077 Common', 'MLB-22PRI-C-B43-M-BLU'), + (0x7a51e083226c022c94f00863a09eb447283495aa, 'Chicago Cubs® Manuel Rodriguez Base Blue 1313 Common', 'MLB-22PRI-C-B56-M-BLU'), + (0x7a645321c38b6b5cbbbacc04e3bc0d08d23ec529, 'Skullios', 'SKLS'), + (0x7a68c2635e3e5ba64f116f3f6de128249d74c72a, 'Crypto Crabs', 'CRABS'), + (0x7a77ee8f2326c2e6c06fc5564f89f705f52247e6, 'Cincinnati Reds® Sonny Gray Base Vintage Stock 45 Super Rare', 'MLB-22S1-S-B45-M-VS'), + (0x7a7d0208cad39111eb733c98e91801461f63ae68, 'Pittsburgh Pirates® Rodolfo Castro Base Independence Day RWB 85 Rare', 'MLB-22S1-R-B85-M-RWB'), + (0x7a7d189d6e111936f7215f864bd48267f2d9eaa4, 'Atlanta Braves™ Dansby Swanson Championship Series Silver 20 Epic', 'MLB-21POST-E-CS20-M-SIL'), + (0x7a851c3d7b9e0ae7cb4254f25e183ab383a93e1b, 'Detroit Tigers® Beau Burrows Rookie and Future Phenoms Facsimile Signature Red 22 Epic', 'MLB-INC21-E-RC22-RED'), + (0x7a87e592a702c9d7f2cf127d571bd6f2b67198c4, '$SOB Early Adopter', '$SOBea'), + (0x7a88e845021af7cc6d9f9654918823d155f16d26, 'WYRD', 'Wyrd'), + (0x7a8c180af7faec8d759c4b2e885a702b44188b60, 'RB Leipzig Yussuf Poulsen Top Players Gold 99 Super Rare', 'BUND-SC21-S-TP99-GLD'), + (0x7a8d512ddd837d5bc3478baa4863ea7589aea763, 'Houston Astros® Andre Scrubb P Base Motion Platinum 384 Epic', 'MLB-S221-E-B384-PLA'), + (0x7a93a49ae1f1e05bf7540ede72e61e3313cde228, 'Los Angeles Dodgers® Austin Barnes C Base Motion Vintage Stock 367 Super Rare', 'MLB-S221-S-B367-VS'), + (0x7a9953a5badb5c4e9c9d09ea04e60ed062fe871e, 'Hertha Berlin Niklas Stark Base Players Team Color 49 Uncommon', 'BUND-SC21-U-BP49-TMC'), + (0x7a9feaf64d4924a4ec0d86e148b24390d219c155, 'Super Rare Comic 74 2-26 Bazooka Joe 2021 NFT', 'BZK-S-74C'), + (0x7aa392ff38e09b048bc1bba097aa90138bcfd407, 'New York Mets® Pete Alonso National League Base Blue 4 Rare', 'MLB-22ASG-R-B4-M-BLU'), + (0x7aa415f41d4751b2c579497fdb677b3190a1c34c, 'GodsPixelWorld', 'Gods'), + (0x7aa81112f82ca4c5ee889ac40ff7e2b6f1ca8271, 'Colorado Rockies™ Trevor Story SS Base Motion Vintage Stock 475 Super Rare', 'MLB-S221-S-B475-VS'), + (0x7aaa750b4b2229e7fbb91976010f2b4a5d59a485, 'Super Rare Comic 64 2-16 Bazooka Joe 2021 NFT', 'BZK-S-64C'), + (0x7ab2632fc5fc94b7d43903f6c37a566185444395, 'Florian Wirtz B04 Ascendent Facsimile Signature Blue TK-40 Legendary', 'BUND-22TK-L-ASCTK-40-S-BLU'), + (0x7ac285d417f41c63a2b83aa919cbfe69bef24fd3, 'Dodi Lukébakio BSC Color Splash White TK-65 Uncommon', 'BUND-22TK-U-CSTK-65-S-WHI'), + (0x7aca89ab9722123534c07bb35d181dcacd3325cf, 'Angels® Base Motion Rainbow 621 Rare', 'MLB-S221-R-B621-RAI'), + (0x7acb8995a2ab47f5bb1b4625db77b92f61fd8089, 'Houston Astros® Yuli Gurriel Regular Season Division Winners RWB 22 Rare', 'MLB-21POST-R-R22-M-RWB'), + (0x7acf8b25e3b1094f36ab06aaed06bfd7519d3387, 'Anthony Modeste KOE Animation Black Refractor S2-18 Epic', 'BUND-21TS2-E-AS2-18-V-BLA'), + (0x7ad5b74afafc848a78d32b5a5ac4088af02d7c22, 'Mighty Creatures ABC', 'MCABC'), + (0x7ae78641b1f17a56d13e9fe778afa9a9247f70f2, 'FC Koln Rafael Czichos Base Players White 69 Common', 'BUND-SC21-C-BP69-WHT'), + (0x7aeb0638259c50933584a8f50feebe6d944b3d52, 'WhatISMoney', 'ISM'), + (0x7af20927745c82038e20f56da04515696d8fca23, 'New York Mets® Andres Gimenez Inception Base White 62 Common', 'MLB-INC21-C-IB62-WHT'), + (0x7af4acb6663d405aa286297f88833df136712ee8, 'Angels® Kurt Suzuki C Base Motion Rainbow 571 Rare', 'MLB-S221-R-B571-RAI'), + (0x7af4b4f570ed724b4ebeb3f3fcb0f3e517ac05b5, 'Miami Marlins® Trevor Rogers Generation NOW Team Colors GN-19 Epic', 'MLB-22S1-E-GN19-M-TMC'), + (0x7af5447039ff8f99687e24f38e6f5de7cc9da9f3, 'Disrupted Mechanisms', 'DSRM'), + (0x7af63311ebaa0de9446b8338c55079282a91be9d, 'Robo Artist Genesis', 'RAG'), + (0x7b248c85c78d851acc518c93c56be432356a49bb, 'Boston Red Sox® Matt Barnes Championship Series Silver 8 Epic', 'MLB-21POST-E-CS8-M-SIL'), + (0x7b24a23b5920dafcc7b72502a857e785473386d9, 'FSV Mainz 05 Stefan Bell Base Players Team Color 63 Uncommon', 'BUND-SC21-U-BP63-TMC'), + (0x7b37173b9022348e89ffae54481bcce27a571e63, 'Florian Wirtz B04 Base White S2-11 Common', 'BUND-21TS2-C-BS2-11-S-WHI'), + (0x7b3b896cb504488767c7306dddb125eb276192f0, 'FSV Mainz 05 Karim Onisiwo Base Players Team Color 64 Static Facsimile Signature Rare', 'BUND-SC21-R-BP64-SFS-TMC'), + (0x7b42d5419777334a5397ea43b2a33a131d5a3228, 'Gigan''s Roar (Showa Era) Sound Byte Color 1 Super Rare', 'GDZ-GVG22-S-RSB1-A-COL'), + (0x7b4458bbeb7495f180ed891d2471bc4f310849ed, 'National League™ NL™ East Division Smiles Base Independence Day RWB 98 Rare', 'MLB-22S1-R-B97-M-RWB'), + (0x7b4b6bab30d768ba3db3ba2983e096e9644d2d9e, 'Milwaukee Brewers™ Ben Gamel OF Base Static White 458 Common', 'MLB-S221-C-B458-WHI'), + (0x7b590d455136590df4fdc1ab168672ffd33530b9, 'Tampa Bay Rays™ Randy Arozarena Facsimile Signature Red 196 Rare', 'MLB-22S1-R-FS10-S-RED'), + (0x7b62e6bd20000609ea679759aca9b03c83a53742, 'Cincinnati Reds® Eugenio Suarez 3B Base Static Gold 627 Uncommon', 'MLB-S221-U-B627-GOL'), + (0x7b6d04e7fcf1b68ebfbdb687773c6d981dc758e0, 'San Francisco Giants® Mike Yastrzemski Base Pink 1084 Uncommon', 'MLB-22PRI-U-B50-M-PNK'), + (0x7b6d226d0df1ed8562309d8db4a9af777c9c0976, 'Boston Red Sox® Eduardo Rodriguez Wild Card Contenders Blue 7 Common', 'MLB-21POST-C-W7-M-BLU'), + (0x7b809666b16218cfefac1aedac8b9e391b45a361, 'FC Augsburg Marco Richter Base Players Gold 72 Rare', 'BUND-SC21-R-BP72-GLD'), + (0x7b8d5c486c814d01d5a1298726efa836dffc5a89, 'Super Rare Baseball Card 2 Mort Batter Bazooka Joe 2021 NFT', 'BZK-S-2B'), + (0x7b90c1ae9dc6721040c894590f52201ae9e4ce2c, 'Woo-yeong Jeong SCF Base White S1-06 Common', 'BUND-21TS1-C-BS1-06-S-WHI'), + (0x7b95d46655b59f3536f6a582dca76e2c7ed6af96, 'STUPID FACES', 'SF'), + (0x7ba0bc939a74402f479a3d53408dd4b3ccf48563, 'Warriors of Freya', 'FREYA'), + (0x7ba2245b9f1513b037e9dfc78218c1619136b05b, 'Los Angeles Dodgers® Mookie Betts Base Pink 1014 Uncommon', 'MLB-22PRI-U-B88-M-PNK'), + (0x7bad21f2c0cb2ca54f5c386d0a12f5a779547c85, 'Branimir Hrgota SGF Motion Aqua Refractor S4-50 Rare', 'BUND-21TS4-R-MS4-50-V-AQU'), + (0x7bbb36b771dc61f9d00efbe42b5f67c0c7920a90, 'Dark Syd Of the Moon', 'DSOM'), + (0x7bbce641505e69251bf8839efdf963c832a68025, 'Seattle Mariners™ Logan Gilbert Base Vintage Stock 156 Super Rare', 'MLB-22S1-S-B155-M-VS'), + (0x7bc7e56bbfb4eefb5668160fd9edd93a8a9eea75, 'Washington Nationals® Ryan Zimmerman 1B Base Static Gold 461 Uncommon', 'MLB-S221-U-B461-GOL'), + (0x7bca51878683ca076f8ca491e5df5ea2c632c004, 'Cleveland Guardians™ Eli Morgan Base Glitch 217 Uncommon', 'MLB-22S1-U-B214-M-GLI'), + (0x7bcb8b3e3ddfb50eb879ae8d79df67936fc5286a, 'New York Mets® Pete Alonso Rookie and Future Phenoms Facsimile Signature White 55 Rare', 'MLB-INC21-R-RC55-WHT'), + (0x7bda2b43dedd7fd7f4fd9d94fae40ab17f467f79, 'Kalia’s Birthday', 'KB1'), + (0x7bdfb6d418b73d440171c7763c4b68b153dc4e70, 'Time Travel', 'WIP'), + (0x7be462975a5752adab24e7d188e383e1ab87df82, 'Crystal Winter Animation Facsimile Signature Color 21 Super Rare', 'GPK-NFT22-S-AFS21-A-COL'), + (0x7be9b5a971928291fd88911034d1b67e24b6aef1, 'Tampa Bay Rays™ Ji-Man Choi Base Independence Day RWB 183 Rare', 'MLB-22S1-R-B182-M-RWB'), + (0x7beb7aba346d01f3de56d3435e7cfca5d8eae28c, 'San Diego Padres™ Base Motion Vintage Stock 604 Super Rare', 'MLB-S221-S-B604-VS'), + (0x7bf2924985caa6192d721b2b9e1109919ac6ff58, 'WNFT', 'Wrapped NFT'), + (0x7bff0dce22387336c72ed985bea8551031a4957b, 'CAT WARS: A New Meow', 'CW1'), + (0x7bff181668725ac26e668427c17d4c88c2080281, 'Super Rare Comic 68 2-20 Bazooka Joe 2021 NFT', 'BZK-S-68C'), + (0x7c05487c6de869e0a09db1b726a98b046402e0a5, 'Angels® Mike Trout Super Short Print White 27 Super Rare', 'MLB-22S1-S-SSP2-M-WHI'), + (0x7c067fc671f1fa81c07f86d2d647be7cabba514e, 'Major League Baseball® How Far? Base White 320 Common', 'MLB-22S1-C-B316-S-WHI'), + (0x7c0a451b41e623307f84a640df0ff91d314ec555, 'Oakland Athletics™ Matt Olson 1987 35th Anniversary Wood T87-25 Common', 'MLB-22S1-C-1987A20-M-WD'), + (0x7c0ecb2ffa9855c5f03b7fedf85c6f7d70f2c626, 'Dominance Portals', 'PORTAL'), + (0x7c1088d8ba9df0d86d62a9d060578f75447ced56, 'Developer Dale Animation Facsimile Signature Color 9 Super Rare', 'GPK-NFT22-S-AFS9-A-COL'), + (0x7c163feb3fe2c0248673b0ced6d041d324146f41, 'Developer Dale Golden Animation Color 9 Epic', 'GPK-NFT22-E-GA9-A-COL'), + (0x7c1d3d57ea30ede727572c6d06e4faeae2e28370, 'XLIBOY', 'XLIBOY'), + (0x7c20073401ca411456fd587056fec6f448c44bb6, 'Philadelphia Phillies® Luke Williams 2022 Inception Gold 11 Legendary', 'MLB-22LEG-L-22INC11-M-GLD'), + (0x7c22235850315bb05c08ee788ff02d393fc99733, 'New York Mets® Marcus Stroman Base Independence Day RWB 259 Rare', 'MLB-22S1-R-B256-M-RWB'), + (0x7c229df65aa5e11dfc26807b69fbe911688c64f5, 'Philadelphia Phillies® Bryce Harper Pure Power White 2119 Rare', 'MLB-22PRI-R-PP12-M-WHI'), + (0x7c24a0a85c702aac6a0b6c310864e03e84a25d3d, 'Oakland Athletics™ Sean Murphy Rookie and Future Phenoms Facsimile Signature White 59 Rare', 'MLB-INC21-R-RC59-WHT'), + (0x7c3779a8b4ca2fb1d2e95c0a6f2d62bcb64e143a, 'LOONEY Ninja Turtles', 'LNT'), + (0x7c3b271cd86b8380833b3d1eebf4c567168edd4f, 'Houston Astros® Ryan Pressly P Base Motion Rainbow 652 Rare', 'MLB-S221-R-B652-RAI'), + (0x7c3f7544496c77a44a4e312cb04138ca3e86d50b, 'Davie Selke BSC Base Red S4-60 Uncommon', 'BUND-21TS4-U-BS4-60-S-RED'), + (0x7c59d1f699439ba9f0c18a1dfa45b64475333117, 'San Diego Padres™ Yu Darvish P Base Motion Rainbow 357 Rare', 'MLB-S221-R-B357-RAI'), + (0x7c5ab5f3c156657ecdc16741b8dd4e5f91c376d9, 'Dean Lyness SMI Top Saves Purple SPTS-08 Rare', 'SPFL-21SPSS-R-TSSPTS-08-V-PUR'), + (0x7c647642f71e25f50141ac4b507a48926e873cac, 'Ridle Baku WOB Motion Rainbow Refractor S2-12 Super Rare', 'BUND-21TS2-S-MS2-12-V-RAI'), + (0x7c6e9c9aca17050707c2f557d5158e784b3f7cfc, 'Kansas City Royals® Tyler Zuber Rookie and Future Phenoms Facsimile Signature White 34 Rare', 'MLB-INC21-R-RC34-WHT'), + (0x7c8ca42704f02310c54d03131b3fa82f2e96d21e, 'Paper', 'PAPER'), + (0x7c9a23177315a3126c533f950b9e5c26a14d02fb, 'Milwaukee Brewers™ Freddy Peralta Facsimile Signature Slab Gold 3108 Epic', 'MLB-22PRI-E-FS11-M-GLD'), + (0x7c9c0009bb30724c12bf9917f8db1a0ddbeaba1a, 'Atlanta Braves™ Jorge Soler Base Blue 1144 Common', 'MLB-22PRI-C-B101-M-BLU'), + (0x7c9d026e8cc4a1d548b99bc7131cd3a5f83a0476, 'Los Angeles Dodgers® Will Smith Rookie and Future Phenoms Facsimile Signature Blue 38 Super Rare', 'MLB-INC21-S-RC38-BLU'), + (0x7ca5b6bcf8e67050d15cf97de8eeef4ed411d2e9, 'Toronto Blue Jays® Santiago Espinal American League Base Blue 6 Rare', 'MLB-22ASG-R-B6-M-BLU'), + (0x7caf4bb883adee698200e28b0893cb81d308e922, 'Milwaukee Brewers™ 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 16 Legendary', 'MLB-21S2SC-L-21S2SCR16-M-TC'), + (0x7caf9df626eec578cd6f2406b9b3dfa10fc73ba6, 'Bayer 04 Leverkusen Nadiem Amiri Top Players Gold 105 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP105-AFS-GLD'), + (0x7cb42bd1ef19fb483ad338cb13ae10144011db8f, 'Vain Ego', 'EGO'), + (0x7cb65e87aed8a42ad8589556300544f523df18e6, 'Super Rare Comic 98 2-50 Bazooka Joe 2021 NFT', 'BZK-S-98C'), + (0x7cb8b7df3764c83d81e70a234bc2ea2f9d086dd5, 'Milwaukee Brewers™ Ryan Braun OF Base Motion Vintage Stock 497 Super Rare', 'MLB-S221-S-B497-VS'), + (0x7cc17228c52d3d97808b3066b0308ac08a43b31e, 'Houston Astros® Alex Bregman World Series Gold 3 Epic', 'MLB-21POST-E-WS3-M-GOL'), + (0x7cc8932df4fd4504595d6c41c74f42b204aebc09, 'Lightoor', 'LTOR'), + (0x7cd038b2d9c32f51897ead7657b462084f10a62b, '2022 Topps Pristine Baseball NFT Collection Standard Pack', 'MLB-22PRI-STANDARD-PACK'), + (0x7cdc589240968dc72d9823b8bc0d7a8f24834819, 'St. Louis Cardinals® Adam Wainwright P Base Motion Rainbow 534 Rare', 'MLB-S221-R-B534-RAI'), + (0x7cde281d567bbdbcf4a64e9a5bbedd1bf3ba452a, 'San Diego Padres™ Ryan Weathers P Base Static White 335 Common', 'MLB-S221-C-B335-WHI'), + (0x7ce18bfc4a310d689e96aed8cc3d161d39270d6f, 'San Diego Padres™ Jake Cronenworth Inception Base Blue 80 Uncommon', 'MLB-INC21-U-IB80-BLU'), + (0x7ce356d5b37d3e29784693a8637883dd24849704, 'Toronto Blue Jays® Vladimir Guerrero Jr. Pure Power Slab White 2111 Epic', 'MLB-22PRI-E-PP8-M-WHI'), + (0x7ce5aa96b5bfdcdf8debfe2e3f4781840e0379ea, 'Chicago White Sox® Luis Robert Base Pink 1007 Uncommon', 'MLB-22PRI-U-B121-M-PNK'), + (0x7ce6c4597386b9711e555eb24676acddd5e55a87, 'Cincinnati Reds® Tucker Barnhart C Base Static Gold 580 Uncommon', 'MLB-S221-U-B580-GOL'), + (0x7cede385e00558520fb21ecb93e43951afb39244, 'Milwaukee Brewers™ Corbin Burnes Base Blue 1046 Common', 'MLB-22PRI-C-B31-M-BLU'), + (0x7cf17d3bd173d7774946614f37589d8745b6db93, 'Regan Charles-Cook RSC Top Plays Gold SPTPL-19 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-19-V-GOL'), + (0x7cfe462fdf3009522aa0670a183c31c6750388fe, 'Ducks', 'Ducks'), + (0x7cfef1477ecf707cc83a6d34c9209190245ad64a, 'San Diego Padres™ Tommy Pham Base White 16 Common', 'MLB-22S1-C-B16-S-WHI'), + (0x7d048e9dfae8ed3abbc10b19790ae28a91074534, 'starling-lab:bosnia-documents Custody Token', 'BDCT'), + (0x7d07bbdd7c43e5bb04b3e1db572f93e66f4a8420, 'Georginio Rutter TSG Motion Aqua Refractor S3-28 Rare', 'BUND-21TS3-R-MS3-28-V-AQU'), + (0x7d07fb7b3077a5dc12159d6d24e9ac85dbe01e13, 'NuggetyNFT', 'GOLD'), + (0x7d23ddf19c43074d520a7befbeda6e7c00bea222, 'Cleveland Guardians™ Eli Morgan Base Independence Day RWB 217 Rare', 'MLB-22S1-R-B214-M-RWB'), + (0x7d29902d400070880d32a41ec88bafa61e872a2d, 'Chicago Cubs® Billy Hamilton OF Base Static White 588 Common', 'MLB-S221-C-B588-WHI'), + (0x7d2ad7f9ef585642015cd45c905aba7f4e0185db, 'Angels® Brandon Marsh Base Independence Day RWB 243 Rare', 'MLB-22S1-R-B240-M-RWB'), + (0x7d311b919ea751684b205fc1b50e6d915ac0d199, 'Cincinnati Reds® Jose Garcia SS Base Static Gold 374 Uncommon', 'MLB-S221-U-B374-GOL'), + (0x7d4f433c59e18a3fb472a5523dfb84b18a9ff900, 'Hikari by CPG', 'HIKARI'), + (0x7d4f7f69d9faf1cd111bd949a1606eec65195098, 'Super Rare Comic 1 1-1 Bazooka Joe 2021 NFT', 'BZK-S-1C'), + (0x7d5c40fcd58c81ddd488ab6be84d0ed34c4e4768, 'CYBERPUNK NOIR', 'CYBERPUNKNOI'), + (0x7d6286a5396d6dc309d88c0d8777b5f2a1e23210, 'Dani Olmo RBL Top Players Black TK-06 Common', 'BUND-22TK-C-TPTK-06-S-BLA'), + (0x7d68962ffa1a340fd672caa17dc32fac5841816f, 'The Kuwaitis', 'KWTS'), + (0x7d6e7dd7dfde504d59c85962f5144ee81ede356a, 'Jude Bellingham DOR Motion Rainbow Refractor S2-17 Super Rare', 'BUND-21TS2-S-MS2-17-V-RAI'), + (0x7d6f7e81b25fa65e5300456ce3f44e1a7b04442e, 'National League™ 2021 ERA Leaders Base White 204 Common', 'MLB-22S1-C-B203-S-WHI'), + (0x7d729ab7c1b7fb1e795d8cff4d36ddfaca771c62, 'Kansas City Royals® Team Cube 2.0 Team Colors 24 Legendary', 'MLB-22S1-L-TC224-M-TMC'), + (0x7d7871d8cdf7da391416e2d7b3ddf794e3dbab05, 'Fallen Gods', 'FGODS'), + (0x7d82a4722d3a7f440c74bcc6eea157dcce4c7c02, 'Eintracht Frankfurt André Silva Top Players Gold 115 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP115-AFS-GLD'), + (0x7d83241407507a7b4f200ed0fd1f036c792d3bfa, 'Godzilla vs. Gigan Toppsicle Green Apple 1 Epic', 'GDZ-GVG22-E-RTP1-A-GRE'), + (0x7d84ff969f6ae8dcdea10ecdc06ee0b3732fc7b2, 'Jamal Musiala BAY Limitless White Parallel TLC-01 Super Rare', 'BUND-22TLC-S-RLSSTLC-01-A-WHI'), + (0x7d87854f374e965e7ee024f592096eb3beb643a1, 'NFT Garden', 'NFTG'), + (0x7d8fe14782122b3e5173038a614b88478eed39a3, 'San Diego Padres™ Joe Musgrove P Base Motion Rainbow 411 Rare', 'MLB-S221-R-B411-RAI'), + (0x7d90b789c7d9840c1fa802a9a22ee3733fd1565f, 'Seattle Mariners™ Mitch Haniger Base Pink 1180 Uncommon', 'MLB-22PRI-U-B102-M-PNK'), + (0x7d9b5ffcee45a4847e3ea2c3127999618cabdb5c, 'Boston Red Sox® Chris Sale P Base Motion Platinum 609 Epic', 'MLB-S221-E-B609-PLA'), + (0x7da3194bac54ce99326e334fe142d8b15abf6f41, 'Atlanta Braves™ Dansby Swanson Second Place Palm Trees 12 Super Rare', 'MLB-22ASG-S-SEC12-M-PLM'), + (0x7da76feedfdba24b36e88f6fc7a29c61eca10b1d, 'Arizona Diamondbacks® Josh Reddick Base Glitch 318 Uncommon', 'MLB-22S1-U-B314-M-GLI'), + (0x7daa497ff43501be3ed9d01c5b5ddf67ca39f8f6, 'Joe Lewis ABE Top Saves Purple SPTS-02 Rare', 'SPFL-21SPSS-R-TSSPTS-02-V-PUR'), + (0x7dab2f3cbe39c6bf3f48b64362193412991a6f41, 'San Diego Padres™ Base Vintage Stock 124 Super Rare', 'MLB-22S1-S-B123-M-VS'), + (0x7db431cc6e3f8b5aa66a8967a8f76fc8a06acd0d, 'Los Angeles Dodgers® Mookie Betts Postseason Base Red 33 Rare', 'MLB-21POST-R-B33-M-RED'), + (0x7dbc7549473c5554d13f7b5f1c84a7ae033225e3, 'Houston Astros® Alex Bregman World Series Broadcast RWB 1139 Rare', 'MLB-22TNP-R-WSB1-M-RWB'), + (0x7dc72f00753eb18eee7863a1b1c2965bfae2e4bf, 'Tampa Bay Rays™ Shane McClanahan Postseason Base Navy 8 Uncommon', 'MLB-21POST-U-B8-M-NVY'), + (0x7dd3c60dc2cbc4c289e2cca8586609b2d3230670, 'Milwaukee Brewers™ Willy Adames Base Blue 1236 Common', 'MLB-22PRI-C-B143-M-BLU'), + (0x7dd4641b690a3603e073cf6276c133baf47b099b, 'Seattle Mariners™ Justin Dunn Base Independence Day RWB 185 Rare', 'MLB-22S1-R-B184-M-RWB'), + (0x7dd60e517ec475c0212071033f672a301946cf43, 'Chicago White Sox® Jake Burger Facsimile Signature Slab Gold 3102 Epic', 'MLB-22PRI-E-FS14-M-GLD'), + (0x7ddfd61cdbc510fc09f28d752dac29bd4348c748, 'New York Yankees® Gary Sanchez Postseason Base White 75 Common', 'MLB-21POST-C-B75-S-WHI'), + (0x7de5d121a1fd9a709c1b86afc83225aff7bbbc41, 'New York Yankees® Gleyber Torres Inception Base Blue 69 Uncommon', 'MLB-INC21-U-IB69-BLU'), + (0x7de74183debf063ba27755ce91a77494819a8311, '2021 Reward', 'MLB-21NOW-PACK-SC'), + (0x7defe18147b1601c3cbd0c292c4f089bd04cb13e, 'Smolr Doomers', 'SMOLRDOOM'), + (0x7df95f29ed96fd484155ee81e3a51d9f418132c4, 'Texas Rangers® Isiah Kiner-Falefa SS/3B Base Motion Rainbow 397 Rare', 'MLB-S221-R-B397-RAI'), + (0x7dfa203afb913227871f5bc8369e4f1d74fae089, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Godzilla Cover Band', 'GDZ-GVG22-PACK-R1'), + (0x7dfa986ac520fb29c085a8ed728ce3dd059e915d, 'Arizona Diamondbacks® Kole Calhoun OF Base Motion Vintage Stock 512 Super Rare', 'MLB-S221-S-B512-VS'), + (0x7e0d23ba115c00034797b0d79a0669459289f373, 'HEARTS', 'HTS'), + (0x7e1293a3743be77bd1d490bcf4bd1716c9132c0c, 'San Francisco Giants® Buster Posey Regular Season Division Winners RWB 44 Rare', 'MLB-21POST-R-R44-M-RWB'), + (0x7e1aa9a40cfb4626ae098be286582e6405a1819a, 'Degen Gamepiece', 'dGAME'), + (0x7e214bad4670b5912599498414466198281f83fd, 'New York Yankees® DJ LeMahieu Inception Base Blue 67 Uncommon', 'MLB-INC21-U-IB67-BLU'), + (0x7e23cea5bce84fe75cffe03f184f1659e3e36024, 'PUKM', 'PUKM'), + (0x7e268f7bc4d1f78d8b68be9018413187819fe7a8, 'Timo Hübers KOE Top Players Team Color TK-29 Rare', 'BUND-22TK-R-TPTK-29-S-TMC'), + (0x7e2896e0acdfbc75ada23e518b2bd13dabca4350, 'Sci-Fi', 'SCIFI'), + (0x7e357f3da6fdcfaa93e9f04d95e7d1dc2d0c47f3, 'Takuma Asano BOC Animation Gold Refractor S4-65 Legendary', 'BUND-21TS4-L-AS4-65-V-GOL'), + (0x7e3ffd0fb8f8d46d8f7446ec22837b2d471ef98f, 'Baltimore Orioles® Ryan Mountcastle Fresh Faces Facsimile Signature Reward White 3407 Legendary', 'MLB-22PRIASG-L-FFR5-M-WHI'), + (0x7e4a5d68d2f8aae8b392aceb716407b50c0badfd, 'Marco Reus DOR Fan Favorite Magenta Refractor S2F-01 Rare', 'BUND-21TS2-R-FS2F-01-V-MAG'), + (0x7e527f0ca87ad6483884414c9a47b05b957ca6d3, 'Cincinnati Reds® Joey Votto Base Vintage Stock 290 Super Rare', 'MLB-22S1-S-B287-M-VS'), + (0x7e546adcde0cd9b3bec1d5e08c0717d4794f2e5c, 'Chicago White Sox® Liam Hendriks Base Blue 1259 Common', 'MLB-22PRI-C-B172-M-BLU'), + (0x7e5705d45e4e885b47994f47df7c99e69249933e, 'Eye Candy Digital Golden Animation Facsimile Signature Color 4 Legendary', 'GPK-NFT22-L-GAFS4-A-COL'), + (0x7e5b09dbb2ce7c788edd9ba3511cb03c2ffc8a9d, '(っ◔◡◔)っ ♥ Poom GENESIS ♥', 'POOM'), + (0x7e5e277adf1d9237e9e2ee86bac261df13fbb25e, 'Lucky Ducky', 'LUCKY'), + (0x7e692150f41616c4e78748a6d27a07746b8c7feb, 'FC Union Berlin Andreas Luthe Top Saves Team Color TS-11 Epic', 'BUND-SC21-E-TSTS-11-TMC'), + (0x7e6b10159e43b107c48dfa1ccd8b9622a64285d2, 'Mush', 'MUSH'), + (0x7e7ba9394fc80e29d60125a346e74cece28ffcc4, 'St. Louis Cardinals® Dylan Carlson Inception Base Red 86 Rare', 'MLB-INC21-R-IB86-RED'), + (0x7e7c694e137475de56adab7f68b395502761f035, 'Milwaukee Brewers™ Corbin Burnes Facsimile Signature Red 240 Rare', 'MLB-22S1-R-FS15-S-RED'), + (0x7e7e78abd70ae20ac2ea8f9742c537be9e51486d, 'Angels® Mike Trout Second Place Beach 7 Epic', 'MLB-22ASG-E-SEC7-M-BCH'), + (0x7e7f0494e8b98e93a29003527c421944f1a99540, 'Common Comic 100 2-52 Bazooka Joe 2021 NFT', 'BZK-C-100C'), + (0x7e8690071934d60a81cd3f0b3129fd1ab8efcd6e, 'Washington Nationals® Juan Soto Base Vintage Stock 150 Super Rare', 'MLB-22S1-S-B149-M-VS'), + (0x7e86a0366b12ccccc1aa79bee32a9f94ffebae2a, 'Soldiers', 'Soldiers'), + (0x7e8caacb57e9ccbd2bac6b6492281c1c0aad918f, 'Toronto Blue Jays® Bo Bichette American League Base Blue 9 Rare', 'MLB-22ASG-R-B9-M-BLU'), + (0x7e8cf57984d5dd0022d0dc1d5df27f171b10d52b, 'Pittsburgh Pirates® Steven Brault Base Vintage Stock 307 Super Rare', 'MLB-22S1-S-B303-M-VS'), + (0x7e8deb94c6dba99d49245412d22f768aa96fa9ec, 'Rare Baseball Card 1 Joe Profile Bazooka Joe 2021 NFT', 'BZK-R-1B'), + (0x7e9082c78a350ef28404a51bd2be5523daee1fb6, 'Tampa Bay Rays™ Austin Meadows Base Pink 1238 Uncommon', 'MLB-22PRI-U-B149-M-PNK'), + (0x7e912dea86f683c3c39de877f2d1f6b8ee26cb6d, 'Milwaukee Brewers™ Christian Yelich OF 1986 Anniversary Facsimile Signature Motion Chrome 86TC-59 Legendary', 'MLB-S221-L-1986AFS86TC-59-CHR'), + (0x7e9a012e527f415c8381cb0940cb1096a1e506f7, 'Seattle Mariners™ Cal Raleigh Short Print White 277 Rare', 'MLB-22S1-R-SP56-M-WHI'), + (0x7ea8050fef13157dc778ff65d72f56fddcd347fd, '2022 Topps NOW Postseason Collection Pack: Wild Card and Division Series', 'MLB-22NOW-POST-WC-DS-PACK'), + (0x7eaded3d3dcfe9f7689d6d8fb83df0039093a492, 'FC Augsburg Rani Khedira Base Players Team Color 75 Static Facsimile Signature Rare', 'BUND-SC21-R-BP75-SFS-TMC'), + (0x7eb55441a4af2aec615ae13077be141d84f66b39, 'Atlanta Braves™ Dansby Swanson Postseason Base Navy 60 Uncommon', 'MLB-21POST-U-B60-M-NVY'), + (0x7eb74e8f44a70e0e6daac596d567bd784a710be8, 'American League™ Nelson Cruz Base Pink 1304 Uncommon', 'MLB-22PRI-U-B203-M-PNK'), + (0x7eb7c3b64797f1e67a1566f0b8debad0de0cf4b4, 'Eintracht Frankfurt Makoto Hasebe Base Players White 41 Common', 'BUND-SC21-C-BP41-WHT'), + (0x7ebeaa016e4ddb90806576d401dd0ff9474ee55e, 'Endless Pain', 'end'), + (0x7ec61268a9fb64604df4c1e967bb24522dac842a, 'SV Werder Bremen Ömer Toprak Base Players Gold 80 Rare', 'BUND-SC21-R-BP80-GLD'), + (0x7ec72fda2232973300d5088a70c5f32eb94eb384, 'MicroMachineWarBots', 'MMWarBot'), + (0x7eca4a61c87b99631bf8bdea93479e02811323bf, 'Broken Banner', 'BB'), + (0x7ecf8b9df5390249a92bb87baca8ac618d964fdf, 'BLu', 'BLU'), + (0x7edf6c95a74ca39bc62b062300860ba8d87e0fab, 'Halloween ''22', 'HLWN'), + (0x7ee6c2ef52b86c378481b7a3107a3d8ef02dd700, 'Seattle Mariners™ Kyle Lewis Base Pink 1025 Uncommon', 'MLB-22PRI-U-B51-M-PNK'), + (0x7ef7a6178c2754017deaaa10ac9c143fdd413ae5, 'Hertha Berlin Vladimir Darida Base Players Gold 47 Rare', 'BUND-SC21-R-BP47-GLD'), + (0x7ef7d3a9711abed54022cab859fea4045c8ee689, 'Joe Newell HIB Base Purple SP-09 Super Rare', 'SPFL-21SPSS-S-BSP-09-A-PUR'), + (0x7effa3111f0560d07f38439bba83539db605b029, 'Smol Axe', 'AXE'), + (0x7f0f3d74459a9cf1df8daeb72f9ff2046b475dd9, 'San Francisco Giants® Mike Yastrzemksi Base Independence Day RWB 103 Rare', 'MLB-22S1-R-B102-M-RWB'), + (0x7f2eaa596c27dcd120f7087a6866d6d671b50404, 'fanART', 'FART'), + (0x7f30ca53af08725f701a5eac9c8035b67203b33e, 'Chris Kane STJ Top Plays Gold SPTPL-14 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-14-V-GOL'), + (0x7f38591f9af17046c60f7032028851158c4e3c37, 'Atlanta Braves™ Mike Soroka P Base Motion Rainbow 388 Rare', 'MLB-S221-R-B388-RAI'), + (0x7f49fda2289b74ef3c54e1450b96b85c9cfd4992, 'NFTxtent collection', 'NXT'), + (0x7f5142294d0402942d17131380071036fea6949b, 'Seattle Mariners™ Ty France Second Place Beach 2 Epic', 'MLB-22ASG-E-SEC2-M-BCH'), + (0x7f57e5c9d9899a894f44d63d235eb01aff086f62, 'Minnesota Twins® Max Kepler Facsimile Signature Slab Gold 3057 Epic', 'MLB-22PRI-E-FS29-M-GLD'), + (0x7f585d1df213d50918a2261eabafe3b27547a4f9, 'Super Rare Comic 90 2-42 Bazooka Joe 2021 NFT', 'BZK-S-90C'), + (0x7f5e90a5fa67cb5d182d09661795ca57fcf5188a, 'Tampa Bay Rays™ Vidal Brujan 2022 Inception Gold 13 Legendary', 'MLB-22LEG-L-22INC13-M-GLD'), + (0x7f5efff2b6df61816581927ccce4b96b4d41a101, 'Toronto Blue Jays® Nate Pearson Inception Base Blue 94 Uncommon', 'MLB-INC21-U-IB94-BLU'), + (0x7f640ac13e5060d8fee78077401d8d172f851ae6, 'St. Louis Cardinals® Paul Goldschmidt 1987 35th Anniversary Chrome T87C-10 Super Rare', 'MLB-22S1-S-1987AC8-M-CHR'), + (0x7f769c8ad3d3c994e4fa8e4740727f3f23eb0397, 'Colorado Rockies™ Ryan McMahon 2B Base Static White 445 Common', 'MLB-S221-C-B445-WHI'), + (0x7f76dce111e49a1d9222e392bb6fae8655754aeb, 'SV Werder Bremen Ludwig Augustinsson Base Players Team Color 77 Uncommon', 'BUND-SC21-U-BP77-TMC'), + (0x7f7765780b38aed3717e54b667befcde4f7588cc, 'Boston Red Sox® Bobby Dalbec Rookie and Future Phenoms Facsimile Signature Black 6 Legendary', 'MLB-INC21-L-RC6-BLK'), + (0x7f7c5dcd26af74ab4d393e33fbafc912d75541e9, 'Pot Heads', 'PTHD'), + (0x7f7efb00170e730996aa604d820aac03fe445a9a, 'Common Comic 36 1-36 Bazooka Joe 2021 NFT', 'BZK-C-36C'), + (0x7f873740b793e452d85e6835d290715a9e1f1011, 'Pittsburgh Pirates® Ke''Bryan Hayes 3B Base Motion Platinum 644 Epic', 'MLB-S221-E-B644-PLA'), + (0x7f978ebf4e9cdfe6f19d3466ab299a351aa6d21b, 'Borussia Dortmund Axel Witsel Base Players Team Color 6 Static Facsimile Signature Rare', 'BUND-SC21-R-BP6-SFS-TMC'), + (0x7f98e714e80be30b8d78bbbccad2c091c72bb581, 'Null Art Avax collection', 'BRUT'), + (0x7f9fb464c13e45158b826607a45a40bc4dedf514, 'Milwaukee Brewers™ Corbin Burnes P Base Motion Rainbow 619 Rare', 'MLB-S221-R-B619-RAI'), + (0x7fabd27238bd30e4621118859fc0dbc009c71aa8, 'Houston Astros® Yordan Alvarez Base Blue 1143 Common', 'MLB-22PRI-C-B129-M-BLU'), + (0x7fac968a0110be4624bcfa6464814573a93bc71e, 'GALAVACTIC GORILAZ', 'GALAVACTICGO'), + (0x7fb73fd730954798ac85f26cbfc587c466748555, 'Chicago White Sox® Adam Eaton OF Base Motion Vintage Stock 554 Super Rare', 'MLB-S221-S-B554-VS'), + (0x7fc2ffb05ea799d935bbbb9642c7cdeb8e6d44a6, 'Detroit Tigers® Jake Rogers Base Independence Day RWB 198 Rare', 'MLB-22S1-R-B197-M-RWB'), + (0x7fcee18482f53c0292c3c753777f9126b5cde14a, 'Chicago White Sox® Jonathan Stiever P Base Motion Platinum 528 Epic', 'MLB-S221-E-B528-PLA'), + (0x7fd732fcf39da24c32d2555ca6fe1fd64559cbbf, 'San Diego Padres™ Austin Nola C/1B Base Motion Rainbow 448 Rare', 'MLB-S221-R-B448-RAI'), + (0x7fdc949aa03a1abaf4c3fef6c27264322853b249, 'Oakland Athletics™ Jordan Weems P Base Motion Rainbow 570 Rare', 'MLB-S221-R-B570-RAI'), + (0x7ff31635e267df29bf47c9eb0880740a798a3bc8, 'RunBlox', 'SHOE'), + (0x7ff501e8b7ef33fb87d1b01182f4f608d44880a4, 'Yann Sommer BMG Motion Aqua Refractor S4-39 Rare', 'BUND-21TS4-R-MS4-39-V-AQU'), + (0x7ffd861f36aa4f98f09437bdc2d930001dc33a32, 'Joe Aribo RFC Base White SP-02 Common', 'SPFL-21SPSS-C-BSP-02-A-WHI'), + (0x7ffe7860f74b30def853295e12a64506bce22cf0, 'EXFLEX Supplement Tier', 'EXFS'), + (0x7ffebc65d67facd403c5a8509e9613967c9ac4d7, 'New York Yankees® Jordan Montgomery P Base Motion Platinum 630 Epic', 'MLB-S221-E-B630-PLA'), + (0x800142ef0994dd8c281fd1045318afb81b62e635, 'Philadelphia Phillies® Andrew McCutchen OF Super Short Print Motion White 431 Epic', 'MLB-S221-E-SSP431-WHI'), + (0x8004380e88f00b1421924280750afe332d091079, 'Eintracht Frankfurt Martin Hinteregger Base Players Team Color 42 Static Facsimile Signature Rare', 'BUND-SC21-R-BP42-SFS-TMC'), + (0x800a76722b7ccd5801736ec7a0ce7d6faf56e86b, 'San Diego Padres™ Yu Darvish Base White 309 Common', 'MLB-22S1-C-B305-S-WHI'), + (0x800eefbeb97fc781599c4cdba270ce62c354fe6a, 'Angels® Brandon Marsh Base White 243 Common', 'MLB-22S1-C-B240-S-WHI'), + (0x8014c18f0c5411347a298dca4bdc075a3dc54df3, 'ZOMKEEZ', 'ZOMKEEZ'), + (0x80152062f2cd2e5ff3999931fdd96174a5197564, 'Radial Symmetry', 'RDLSMMTRY'), + (0x8018feb89e25512730f9f362466f9e7c5d54704e, 'San Diego Padres™ Manny Machado Base Pink 1053 Uncommon', 'MLB-22PRI-U-B122-M-PNK'), + (0x802e5fc0de1ad894c9914c62c06de15367c5beaf, 'BTTLSC', 'BTTLSC'), + (0x80377b74b2b6746467b5bd8f754434af25566d83, 'Tom Krauß S04 Ascendent Blue TK-52 Super Rare', 'BUND-22TK-S-ASCTK-52-S-BLU'), + (0x803c0eed64d12c2a1aab8f5f6d5fdb88fafd5750, 'FC Augsburg Rani Khedira Base Players White 75 Common', 'BUND-SC21-C-BP75-WHT'), + (0x8054cbad70f032f80ccb7d557889071490d0adca, 'Weird Goblins', 'WGS'), + (0x805bb32ecd1ba7b99edb1a22a3ab3572ea1e5b6b, 'Los Angeles Dodgers® Albert Pujols Base Independence Day RWB 237 Rare', 'MLB-22S1-R-B234-M-RWB'), + (0x805c50011f89f6335b96c66fdb004adc43f915bb, 'FANTAST', 'FNTST'), + (0x80610bf410719190951bc8877de8b4ae7fc85bb7, 'San Diego Padres™ Jake Cronenworth Inception Base White 80 Common', 'MLB-INC21-C-IB80-WHT'), + (0x806cfd8069e14d05a22479d6eb0b30630a2a03b1, 'Colorado Rockies™ Raimel Tapia Base Glitch 46 Uncommon', 'MLB-22S1-U-B46-M-GLI'), + (0x806ecf5aedcf2efd880dd2b21b1bf43f30206d93, 'Sporos Creator Collection', 'SCC'), + (0x8072148045a15aa6e7681b60061dda024fda6e12, 'Chicago Cubs® Greg Deichmann Base Blue 1307 Common', 'MLB-22PRI-C-B177-M-BLU'), + (0x80768b6ada3318338880fd8ed0aedb371dd24168, 'Chicago White Sox® Tim Anderson Second Place Palm Trees 5 Super Rare', 'MLB-22ASG-S-SEC5-M-PLM'), + (0x807d68c02172efc7022f4ab450e03bb7900969e8, 'Food Fight', 'FF'), + (0x808aaa4f037acf058ce4fc98251df7232d298dc5, 'Epic Baseball Card 2 Mort Batter Bazooka Joe 2021 NFT', 'BZK-E-2B'), + (0x808e52612bd0b6140bcfc1eba51970168a9fc834, 'Houston Astros® Kyle Tucker Base Glitch 319 Uncommon', 'MLB-22S1-U-B315-M-GLI'), + (0x808f3b4ccb7f96b6e33e68bb04afd5c348bd894b, 'Space Dudes', 'SD'), + (0x809dc069e3cc2aa0790fe4a7bbda3116414aa133, 'Vincenzo Grifo SCF Motion Rainbow Refractor S1-07 Super Rare', 'BUND-21TS1-S-MS1-07-V-RAI'), + (0x80a43d86304bef076acbefb41f22714f4129b3f9, 'Godzilla Storm Traditional Art CMYK Offset 8 Uncommon', 'GDZ-RAT21-U-TA8-S-CMYK'), + (0x80a73d510a1f8516221aa1c823c5daa390d049de, 'New York Yankees® Gary Sanchez Postseason Base Red 75 Rare', 'MLB-21POST-R-B75-M-RED'), + (0x80b3ce23c641ae53d447fe79dafec171ad37507b, 'BURNOUT', 'BURNOUT'), + (0x80be83d0a836ead80dfe353575dcedd5f8870928, 'Boston Red Sox® Alex Verdugo Division Series Bronze 13 Super Rare', 'MLB-21POST-S-D13-M-BRO'), + (0x80bea790cada022d49c428847835dbd3871bcf4d, 'Chicago White Sox® Gavin Sheets 1987 35th Anniversary Chrome T87C-65 Super Rare', 'MLB-22S1-S-1987AC47-M-CHR'), + (0x80cf2b117350e03c23f27d735c3783703d3d1e9d, 'Angels® Justin Upton OF Base Motion Rainbow 527 Rare', 'MLB-S221-R-B527-RAI'), + (0x80d48ad10a6bd1f429b6ae8896ca74deba5b9664, 'Skyscape', 'SKY'), + (0x80d7e1c4b5a4cdc222b5363ec7b694d26769539b, 'Silvan Widmer M05 Base Red S3-23 Uncommon', 'BUND-21TS3-U-BS3-23-S-RED'), + (0x80dca256ce060327e46b984ea24a31b8c3a27295, 'lilaempty vol.1', 'lilpty'), + (0x80de6c2cdf34608c977c8d811e2aba19c5a6d08e, 'Chris Kane STJ Base White SP-23 Common', 'SPFL-21SPSS-C-BSP-23-A-WHI'), + (0x80e19456b72e782cba3995fc9dcb1382bb1c19a0, 'Los Angeles Dodgers® Zach McKinstry 2B Base Motion Platinum 394 Epic', 'MLB-S221-E-B394-PLA'), + (0x80f38f3b9ae7ab84ef836e647b654a22b69ffe7b, 'Minnesota Twins® Miguel Sano Base Glitch 123 Uncommon', 'MLB-22S1-U-B122-M-GLI'), + (0x80fe0e256762f8f842e88a8b93d18bc2c0f55723, 'Godzilla RAT Page 11 Comic Page Color 10 Rare', 'GDZ-RAT21-R-CP10-S-COL'), + (0x81062b25ed03ca57c963ec3059d38352a027d089, 'Pittsburgh Pirates® Keone Kela P Base Static Gold 351 Uncommon', 'MLB-S221-U-B351-GOL'), + (0x8108a47122ea326d4bc2eab40fff1d9ebc0da4af, 'Jean-Paul Boëtius M05 Base White S4-51 Common', 'BUND-21TS4-C-BS4-51-S-WHI'), + (0x811b0b86e67e4d752b6b94a0c7be5cfdc54e7aa7, 'Suat Serdar BSC Top Players Team Color TK-22 Rare', 'BUND-22TK-R-TPTK-22-S-TMC'), + (0x811beac9b5254ffe0e457e0408b56f69da3bb2f5, 'Rare Comic 58 2-10 Bazooka Joe 2021 NFT', 'BZK-R-58C'), + (0x81229cc3bdc9b6a1c300c34b4185ba1e6a97d51e, 'Detroit Tigers® Miguel Cabrera Base Independence Day RWB 194 Rare', 'MLB-22S1-R-B193-M-RWB'), + (0x8129ca61d8ad1c0935795a7a1c9b01a80bc17d7c, 'Kansas City Royals® Whit Merrifield Base Pink 1013 Uncommon', 'MLB-22PRI-U-B52-M-PNK'), + (0x812a7b5fbc7d09fa77f75f1b55bac734bdb59f65, 'Toronto Blue Jays® Nate Pearson Rookie and Future Phenoms Facsimile Signature White 77 Rare', 'MLB-INC21-R-RC77-WHT'), + (0x812cf8ba7127d965b49096443e3788d0b6d314a1, 'Los Angeles Dodgers® Keibert Ruiz Inception Base Blue 48 Uncommon', 'MLB-INC21-U-IB48-BLU'), + (0x812e1aed997edb009b78b2b7e27254eac9128dbe, 'Super Rare Comic 34 1-34 Bazooka Joe 2021 NFT', 'BZK-S-34C'), + (0x81336d74889a084741108b23be2100b96e05a4dc, 'Milwaukee Brewers™ Christian Yelich Postseason Base Red 18 Rare', 'MLB-21POST-R-B18-M-RED'), + (0x8135c05834724764cca742c89a3c02f58483e0d2, 'Cincinnati Reds® Joey Votto Inception Base Red 19 Rare', 'MLB-INC21-R-IB19-RED'), + (0x8144a2c526b5c72af292c4c0c5d254d9440e9ea2, 'Dura Apes', 'DA'), + (0x8146dc82e044af7dbd313e022e60bc1c2c239db7, 'Boston Red Sox® Matt Barnes Wild Card Contenders Blue 8 Common', 'MLB-21POST-C-W8-M-BLU'), + (0x814a13412e36eba6e07d292c64a7c0d44115e546, 'Kansas City Royals® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 12 Legendary', 'MLB-21S2SC-L-21S2SCR12-M-TC'), + (0x8150410431ece442a759cf3d444b39eb1eee1b35, 'Philadelphia Phillies® Luke Williams Base White 62 Common', 'MLB-22S1-C-B62-S-WHI'), + (0x8152947ebc267856eb7ff261f9ef062f58f31b05, 'Uncommon Comic 94 2-46 Bazooka Joe 2021 NFT', 'BZK-U-94C'), + (0x81544599bc3b6cbaabe488347f002d428109e38e, 'Houston Astros® Luis Garcia P Base Motion Platinum 547 Epic', 'MLB-S221-E-B547-PLA'), + (0x815f1d09f51df5910ed0780ef5fa057ef0bc77da, 'Rare Comic 98 2-50 Bazooka Joe 2021 NFT', 'BZK-R-98C'), + (0x8164f20362e6676d25909dda03505b4b537213d2, 'Scott Tanser SMI Base Aqua SP-19 Uncommon', 'SPFL-21SPSS-U-BSP-19-A-AQU'), + (0x816cd88f603439459392adf77f25852032091dce, 'METALAND', 'MTL'), + (0x816df8fdd2f19e8995a1c2782f7d2c2af8f03c41, 'New York Yankees® Jordan Montgomery Postseason Base White 80 Common', 'MLB-21POST-C-B80-S-WHI'), + (0x816e5ae9df8122e39ce6805d5adc1d6cb9586287, 'BananaCard', 'BCD'), + (0x817519fb5a0c5e7e6bf00ee2d213ed5c6ac1f32d, 'Chicago White Sox® Garrett Crochet P 1986 Anniversary Static Team Colors 86B-39 Super Rare', 'MLB-S221-S-1986A86B-39-TMC'), + (0x817536293234c2d64ee85c1ef875639d0dba1e54, 'Houston Astros® Alex Bregman Facsimile Signature Blue 68 Uncommon', 'MLB-22S1-U-FS4-S-BLU'), + (0x8176355f184775a2b0aaa6abb0ae183daf018606, 'Milwaukee Brewers™ Ryan Braun OF Base Motion Rainbow 497 Rare', 'MLB-S221-R-B497-RAI'), + (0x817ea0a4370a8e7cd8208d607b5769e3c30c3ab0, 'San Francisco Giants® Kevin Gausman Division Series Bronze 38 Super Rare', 'MLB-21POST-S-D38-M-BRO'), + (0x81847c4ee524e8f395efd88fd618a17ef2ae7b18, 'Pittsburgh Pirates® 2021 Topps MLB Inception Set Completion Reward Team Colors 22 Epic', 'MLB-21INCSC-E-21INCSCR22-M-TC'), + (0x819130696569a114ab0f9f04764fd3cae2d26dce, 'New York Yankees® Corey Kluber P Base Motion Rainbow 567 Rare', 'MLB-S221-R-B567-RAI'), + (0x819250ea8a7c02cde493fecdb23bc3aca5e32a57, 'Rare Comic 37 1-37 Bazooka Joe 2021 NFT', 'BZK-R-37C'), + (0x81a67a4c0f5c9523e2ef62205e68bffe459f09f2, 'New York Mets® Pete Alonso Facsimile Signature Red 315 Rare', 'MLB-22S1-R-FS24-S-RED'), + (0x81aa4a703e91487ad1fa378d64cb7e1940f3260e, 'Sean Goss MOT Base Purple SP-27 Super Rare', 'SPFL-21SPSS-S-BSP-27-A-PUR'), + (0x81b002e476aa670fb644e1a58e6b0bc58c882ed0, 'Baltimore Orioles® Ryan Mountcastle Inception Base Red 9 Rare', 'MLB-INC21-R-IB9-RED'), + (0x81b3809fbfe88bf7590f3819dc03b16178c78da2, 'Avax Markhor', 'AVM'), + (0x81c0d4f159dbb682671633bb8a4e14b2f03fdf9b, 'Chicago White Sox® Lucas Giolito Base Vintage Stock 291 Super Rare', 'MLB-22S1-S-B288-M-VS'), + (0x81ca706f60e1a66c4153a589b7fba17e5e66020b, 'Left Behind', 'AVAX'), + (0x81d2e9df4e634d44b1750820ad92e84f124bc851, 'North America', 'gLW'), + (0x81d3ebee8b4694c37dfe659a589a82c69df692d1, 'Milwaukee Brewers™ Josh Hader Division Series Bronze 64 Super Rare', 'MLB-21POST-S-D64-M-BRO'), + (0x81db77e2b0481d53645c53b4d6dcbc0a306afa14, 'LVP Booster LVL 2', 'LVPB2'), + (0x81e75ed621a6887318513cc5fca86d3f38e26a4c, 'Houston Astros® Jose Altuve Division Series Bronze 17 Super Rare', 'MLB-21POST-S-D17-M-BRO'), + (0x81ea2d22080b44226724254e5c8f14539ba3d016, 'Concerning Robots', 'CRB'), + (0x81f3bc6e4e8768f1202f0d953223951faf3ae7de, 'Houston Astros® Framber Valdez Regular Season Division Winners RWB 24 Rare', 'MLB-21POST-R-R24-M-RWB'), + (0x81f70d18fd98906d62ebe9c55cfba50736326d02, 'Acid Skulls', 'AcidSkull'), + (0x820259cc6d94dd6078110f6ea879b5626a8d6984, 'Tampa Bay Rays™ Randy Arozarena 1987 35th Anniversary Chrome T87C-2 Super Rare', 'MLB-22S1-S-1987AC2-M-CHR'), + (0x8202d0482aebcda30fc4c5915e459554fda5c161, 'Minnesota Twins® Miguel Sano Base Vintage Stock 123 Super Rare', 'MLB-22S1-S-B122-M-VS'), + (0x82061d90ba9067cb6457f11895cd2f2bbe372d93, 'Atlanta Braves™ Freddie Freeman Inception Base Blue 3 Uncommon', 'MLB-INC21-U-IB3-BLU'), + (0x821fcb8ec720a00d6918bca3105161306dc892c7, 'Wataru Endō VFB Base Red S1-09 Uncommon', 'BUND-21TS1-U-BS1-09-S-RED'), + (0x821fe1b95f43a0c4d5007a9ca921e77498aea49f, 'Atlanta Braves™ Travis d''Arnaud Base Vintage Stock 4 Super Rare', 'MLB-22S1-S-B4-M-VS'), + (0x8225461bf360eccba6b51ac1fc4aa8a473a9b480, 'Mutant Bears', 'MB'), + (0x82283a2296db7297e17f8bbff7c1076caf25a82b, 'PrizeBond', 'PB'), + (0x822a70ded577d26c99bf7fe7769569bd529c0e5b, 'Minnesota Twins® Alex Kirilloff OF Base Motion Platinum 413 Epic', 'MLB-S221-E-B413-PLA'), + (0x822e66f5265c9ceabf99ea682d13474d349e121e, 'Aarón Martín M05 Motion Rainbow Refractor S4-53 Super Rare', 'BUND-21TS4-S-MS4-53-V-RAI'), + (0x823740096ab60ed8485bce6c367c3ab9109f69b7, 'New York Mets® Pete Alonso Facsimile Signature Slab Gold 3092 Epic', 'MLB-22PRI-E-FS37-M-GLD'), + (0x823a12d397352b9b53b07feb8868aa54646c9e85, 'Godzilla RAT Page 15 Comic Page Black and White 13 Uncommon', 'GDZ-RAT21-U-CP13-S-BW'), + (0x823e5b8d1f4a1faa2e5461576381459fad723331, 'Philadelphia Phillies® Zack Wheeler Facsimile Signature Red 249 Rare', 'MLB-22S1-R-FS17-S-RED'), + (0x824347ed9b08d73aa9b4b6f0ddde1df08e2b8848, 'Houston Astros® Enoli Paredes P Base Motion Vintage Stock 569 Super Rare', 'MLB-S221-S-B569-VS'), + (0x8251c04486d885aa7e5506f5de337c53cc2e53b7, 'Kansas City Royals® Nicky Lopez Base Independence Day RWB 76 Rare', 'MLB-22S1-R-B76-M-RWB'), + (0x82568a0057fcfb1592bf5f8c95864fd7e6c9b801, '2021 Topps NOW World Series Game 5 Pack', 'MLB-21NOW-PACK-TN-GM5'), + (0x8258ae2cd4dc9de6c67e54fbbf123c4d12050386, 'San Francisco Giants® Kris Bryant Base Independence Day RWB 86 Rare', 'MLB-22S1-R-B86-M-RWB'), + (0x825c3d140fbe1adaa1217891ad678e2b2acd7c32, 'OwlRiderNFT', 'OWLRDRNFT'), + (0x825ed99ab3423472203c59790718ba2ba3de692d, 'Toronto Blue Jays® Nate Pearson Silver Signings Facsimile Signature Silver 40 Super Rare', 'MLB-INC21-S-SS40-SLV'), + (0x8268c4d959d78e1341a21e40f5e2369af20c3e1f, 'Kalao Community Campaign', 'KalaoCC'), + (0x826e03b2271fb443e5bdb941da4e97e8a768a922, 'CryptoPunks', 'cp'), + (0x8271780b8f92ea5352aa1af1ccc18c255de30864, 'Mountain Nodes Tier 1', 'MNT1'), + (0x827cc1d5bf0b9d9e07c319c2458020e0ffc56619, 'Atlanta Braves™ Austin Riley Base Pink 1179 Uncommon', 'MLB-22PRI-U-B7-M-PNK'), + (0x827e303b2bdfc642986ceb3de301c7ba6d867b95, 'FC Bayern Munich Thomas Müller Top Players Gold 92 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP92-AFS-GLD'), + (0x82815ba9a377d58b215504b61c57c1d1482aac6e, 'National League™ German Marquez Base Pink 1282 Uncommon', 'MLB-22PRI-U-B195-M-PNK'), + (0x828beb9170b1e0e30dd9733f0055e3a0c2ecef46, 'Houston Astros® Jose Altuve Popular Demand Facsimile Signature Slab Teal 3529 Legendary', 'MLB-22PRI-L-PDFS8-M-TEA'), + (0x82911a50a2f5e5db6e51487f0da5c74dd86a8761, 'New York Mets® Pete Alonso Pure Power White 2107 Rare', 'MLB-22PRI-R-PP4-M-WHI'), + (0x829ccda9da0daac12ed5a00a071f13c5926d3a01, 'dfrlab:march-kharkiv Custody Token', 'MKCT'), + (0x829e48cc9b2293ff39c35711fa96c4e0b6010e60, 'Chicago White Sox® Jarrod Dyson OF Base Motion Rainbow 337 Rare', 'MLB-S221-R-B337-RAI'), + (0x829e629c68fe048e250c84954325d64d6392db76, 'Konrad Laimer RBL Base White S1-04 Common', 'BUND-21TS1-C-BS1-04-S-WHI'), + (0x82a70d548bd839b9585dc81c6cf327cfe68bfd8c, 'Washington Nationals® Asdrubal Cabrera 2B/3B Base Motion Platinum 531 Epic', 'MLB-S221-E-B531-PLA'), + (0x82a73b12e1c3755a687fb9cf0b6be0fc6f3fe5a7, 'Reece Oxford FCA Top Players Facsimile Signature Team Color TK-25 Epic', 'BUND-22TK-E-TPTK-25-S-TMC'), + (0x82a7e30d78fdd26e3886ebc5cebfdfea3721db36, 'Suat Serdar BSC Motion Aqua Refractor S4-68 Rare', 'BUND-21TS4-R-MS4-68-V-AQU'), + (0x82ac1c4d588e81022541db6305292ad86987bd01, 'Detroit Tigers® Rony Garcia Rookie and Future Phenoms Facsimile Signature White 25 Rare', 'MLB-INC21-R-RC25-WHT'), + (0x82ad75a35647a709c79818230c9c6e3ed6549117, 'VfB Stuttgart Pascal Stenzel Base Players White 89 Common', 'BUND-SC21-C-BP89-WHT'), + (0x82b05b440a39e9df4477acf8f5a3cc609220053c, 'Márton Dárdai BSC Ascendent Facsimile Signature Blue TK-47 Legendary', 'BUND-22TK-L-ASCTK-47-S-BLU'), + (0x82ba8e354c189ddba887be213c322e492a0b8f81, 'Kaiju Thunderstorm Event Exclusive Comic Cover Magenta 1 Epic', 'GDZ-RAT21-E-CCE1-A-MAG'), + (0x82bad9faead0f20e5a82bc775d607afc3ad324a1, 'Houston Astros® Michael Brantley Division Series Bronze 23 Super Rare', 'MLB-21POST-S-D23-M-BRO'), + (0x82bf2c09f711529cfbb43027491fb9724f86dcf3, 'Chicago Cubs® Adbert Alzolay Rookie and Future Phenoms Facsimile Signature Blue 8 Super Rare', 'MLB-INC21-S-RC8-BLU'), + (0x82c850283d69e29e1d50a2f8fa9d63c8acfdfca8, 'Zee Animals', 'ZAS'), + (0x82c9ca581d7547f423ed214aa9c59fce03a12f18, 'FC Union Berlin Robert Andrich Top Players Gold 123 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP123-AFS-GLD'), + (0x82cb354df42b33cbe2db024ad34be86b1c2a7b69, 'Common Comic 54 2-6 Bazooka Joe 2021 NFT', 'BZK-C-54C'), + (0x82cdf28bc5474978dddcc6de28b5561087bac1e2, 'Detroit Tigers® Casey Mize 1987 35th Anniversary Wood T87-45 Common', 'MLB-22S1-C-1987A34-M-WD'), + (0x82dab88b35b84aa9f168e5e3a17cf74b2e349b17, 'RISA Inktober 2022', 'INK22'), + (0x82dda405cfc6a68b7b06f446052ae53751587192, 'Rich Peon Poor Peon', 'PEON'), + (0x82dfc45885dd6c851d0a005c146d58e6e18a1e6a, 'Angels® Alex Cobb P Base Motion Vintage Stock 474 Super Rare', 'MLB-S221-S-B474-VS'), + (0x82e570c7bb94796175ea6beacad1f60def34f046, 'New York Mets® Tylor Megill Base Pink 1211 Uncommon', 'MLB-22PRI-U-B151-M-PNK'), + (0x82e7a5df9c7a9e9160134531c1bc48a14979c85f, 'God''s Winter', 'GDWNTR'), + (0x82efa174a892ae9ce4cde6bd82067fa23accd8b7, 'My PFP''s', 'PFP'), + (0x82f0901221591201fe3e992c1ecd19a88b7148a6, 'Oakland Athletics™ Seth Brown Rookie and Future Phenoms Facsimile Signature White 60 Rare', 'MLB-INC21-R-RC60-WHT'), + (0x82f453322b932c5c057fa254b4d83b380f577599, 'Liam Gordon STJ Captains Green SPCAP-08 Epic', 'SPFL-21SPSS-E-CAPSPCAP-08-A-GRE'), + (0x82fd3983ce0caa7a1f58f9a054cd8025cdc52931, 'Borussia Monchengladbach Ramy Bensebaini Base Players Team Color 20 Static Facsimile Signature Rare', 'BUND-SC21-R-BP20-SFS-TMC'), + (0x8304f3118d0e965f3aa23ae45341f3882a3d784e, 'Washington Nationals® Kyle Schwarber OF Base Static White 473 Common', 'MLB-S221-C-B473-WHI'), + (0x830a23c9ad12fb33d057a2519b4499a4ac03c439, 'Common Comic 101 2-53 Bazooka Joe 2021 NFT', 'BZK-C-101C'), + (0x830f3254c9398d1760cf1761ccb030234bd106c3, 'Smolr Joes', 'SMOLR'), + (0x831265aec2a62a8fb1ac66dde6c86c2beb1835bf, 'Munas Dabbur TSG Base Red S3-35 Uncommon', 'BUND-21TS3-U-BS3-35-S-RED'), + (0x8314f5ed494641108e6f1c617ce29529ba47e93f, 'Common Comic 4 1-4 Bazooka Joe 2021 NFT', 'BZK-C-4C'), + (0x8321ea904c126ef527fd48b540d89d21c1a5be7f, 'Pittsburgh Pirates® JT Brubaker P Base Static Gold 560 Uncommon', 'MLB-S221-U-B560-GOL'), + (0x8323d45735f5e8c25eef51b6dddf12d2ebf89803, 'Campfire Usernames', 'FIRE'), + (0x83395e1f48413cf130cc7f1e58f1394d441b8165, 'Djibril Sow SGE Motion Aqua Refractor S3-34 Rare', 'BUND-21TS3-R-MS3-34-V-AQU'), + (0x834448f846e2017c7215d4c60b9d332767dd4bd3, 'San Francisco Giants® Anthony DeSclafani P Base Static Gold 614 Uncommon', 'MLB-S221-U-B614-GOL'), + (0x83476540b79347297eb345d606c44d5c11e6a8f5, 'Marcus Thuram BMG Top Players Team Color TK-16 Rare', 'BUND-22TK-R-TPTK-16-S-TMC'), + (0x834ea636bf20fcea21a3d19934f322a3d1158e97, 'Space Dudes', 'SD'), + (0x834f26d7b779d7188d56c473620f1ccc4ac94d9f, 'Miami Marlins® 2021 Topps MLB Inception Set Completion Reward Team Colors 15 Epic', 'MLB-21INCSC-E-21INCSCR15-M-TC'), + (0x83539cccef22d40357663efc3241f59a03ca7141, 'sounds', 'SOUNDJ'), + (0x835867aad17bbfe2a11427486d235fefc95d96ca, 'Cuddly Cactus', 'CACTUS'), + (0x835c7b3463b1e8e5d7744bcb944b51288f9c09ea, 'NW Crypto Punk', 'NWCPUNK'), + (0x835e1e7db694590f6aface2e0bc7ce581e977df6, 'Uncommon Comic 15 1-15 Bazooka Joe 2021 NFT', 'BZK-U-15C'), + (0x835e6e67a4d3a893ca814ed4036180d3d6441b31, 'St. Louis Cardinals® Dylan Carlson Rookie and Future Phenoms Facsimile Signature Red 70 Epic', 'MLB-INC21-E-RC70-RED'), + (0x836002a52d36ccd393a9a60ca3ef18e0ad4aa17b, 'Gerrit Holtmann BOC Base Red S1-08 Uncommon', 'BUND-21TS1-U-BS1-08-S-RED'), + (0x8360250f06748c7d6655673c376768e18d1e7bfd, 'Arizona Diamondbacks® Christian Walker 1B Base Motion Platinum 386 Epic', 'MLB-S221-E-B386-PLA'), + (0x8365bf5dc3fcd524a8bad5be70dfe8c8baeb6c69, 'Great People', 'GP'), + (0x8368266c4350db76a71a2d9bc489e15209426ff5, 'Evan Ndicka SGE Base White S3-29 Common', 'BUND-21TS3-C-BS3-29-S-WHI'), + (0x836b1b56181579030a7a6b8d9000d9fe169124c4, 'Godzilla in the City Traditional Art CMYK Offset 5 Uncommon', 'GDZ-RAT21-U-TA5-S-CMYK'), + (0x836edee87d4f50ea6477c4aefb18c105f3ab11bf, 'Chicago White Sox® Steve Cishek P Base Static Gold 407 Uncommon', 'MLB-S221-U-B407-GOL'), + (0x8373ea09f1f19830ce39e31594ccc70efc6648cb, 'Baltimore Orioles® Dean Kremer P Base Motion Platinum 391 Epic', 'MLB-S221-E-B391-PLA'), + (0x837e9b3c0b88ca37c2768c9d3f62102ba3fa83af, 'Cincinnati Reds® Eugenio Suarez 3B Base Static White 627 Common', 'MLB-S221-C-B627-WHI'), + (0x83821c0d05f9d45b6aa08b80e90761bd05a5afc0, 'Seattle Mariners™ Jarred Kelenic Facsimile Signature Gold 3069 Super Rare', 'MLB-22PRI-S-FS19-M-GLD'), + (0x8382f46ae2039ea1668dd98732b882747f5a6817, 'Colorado Rockies™ Charlie Blackmon OF 1986 Anniversary Static Team Colors 86B-26 Super Rare', 'MLB-S221-S-1986A86B-26-TMC'), + (0x83884585d7f1d8969f735beaa27c48e8e1a666a0, 'Yann Sommer BMG Awards Green TSC-20 Legendary', 'BUND-21TSC-L-RAWTSC-20-A-GRE'), + (0x838d1005bf1cbf01c5378e4cbaa3b106d0f5072a, '2021 Godzilla Rage Across Time Collection Event Exclusive (Thursday) Pack', 'GDZ-PACK-CCE-THU'), + (0x838dfd200fd3ea86f50667e16d6fffffe940d203, 'Houston Astros® Yordan Alvarez Postseason Base Red 52 Rare', 'MLB-21POST-R-B52-M-RED'), + (0x839db34b8936743854ac9f4980819450f2b90f15, 'BloomNFT', 'Bloom'), + (0x839e3231431b1af801c0e1d3fca38de566c5e086, 'Dapper Factory', 'DAPPERFACTORY'), + (0x83ab3be0a58ba8e0f36d46d2aa6961f465e2137e, 'SV Werder Bremen Milot Rashica Top Players Gold 136 Super Rare', 'BUND-SC21-S-TP136-GLD'), + (0x83b3099430bffc5090e1ea3be0b1c69d77882f1c, 'New York Mets® Tylor Megill Facsimile Signature Slab Gold 3097 Epic', 'MLB-22PRI-E-FS50-M-GLD'), + (0x83b5bb9d37748af439b93cf522753b3835c99fee, 'Toronto Blue Jays® Danny Jansen Base Independence Day RWB 33 Rare', 'MLB-22S1-R-B33-M-RWB'), + (0x83be7b249258ff67a543cfa60c4e41d276d3178c, 'Masaya Okugawa DSC Motion Rainbow Refractor S3-25 Super Rare', 'BUND-21TS3-S-MS3-25-V-RAI'), + (0x83c20d3faa4cb9827a0f668b789d1b25b193fcf3, 'St. Louis Cardinals® Adam Wainwright P Base Motion Platinum 534 Epic', 'MLB-S221-E-B534-PLA'), + (0x83c6218c341fd719d4ca1e3e47b2592d8d9ced90, 'Tampa Bay Rays™ Randy Arozarena Facsimile Signature Glitch 196 Epic', 'MLB-22S1-E-FS10-M-GLI'), + (0x83d4ccb4bd28605329de5829c9a95e137e9feba1, 'Minnesota Twins® Ryan Jeffers C Short Print Motion White 552 Super Rare', 'MLB-S221-S-SP552-WHI'), + (0x83d5ca6dcb6fd5bc5066ee067129e3a804ca9514, 'Anthony Modeste KOE Motion Rainbow Refractor S2-18 Super Rare', 'BUND-21TS2-S-MS2-18-V-RAI'), + (0x83e21019ebd71b100aab191aabe5210afe0d55e4, 'Borna Sosa VFB Top Players Black TK-18 Common', 'BUND-22TK-C-TPTK-18-S-BLA'), + (0x83ebedbf5146ec47fd81332f0ca07c765e5fcdcc, 'St. Louis Cardinals® Yadier Molina Stars of MLB Chrome Night SMLBC-19 Legendary', 'MLB-22S1-L-SMLBC18-M-NIT'), + (0x83f706047d555d17ae24d24e3737282a155c109e, 'New York Yankees® Gerrit Cole Base Glitch 35 Uncommon', 'MLB-22S1-U-B35-M-GLI'), + (0x83fc165ff28050c894613f965186be75c3cfa7df, 'New York Yankees® DJ LeMahieu 2B Short Print Motion White 350 Super Rare', 'MLB-S221-S-SP350-WHI'), + (0x83fd7b33e996e44c2660ba9ac2d2fda9f871198c, 'Vee Fiend Base Color 5 Common', 'GPK-NFT22-C-B5-S-COL'), + (0x840075a778db866d5a91c734d95defaa1b5919ab, 'Atlanta Braves™ Tucker Davidson P Base Motion Rainbow 423 Rare', 'MLB-S221-R-B423-RAI'), + (0x840993c5fe1ca0882bc20305a10e64ba016d703f, 'Christian Günter SCF Top Players Team Color TK-19 Rare', 'BUND-22TK-R-TPTK-19-S-TMC'), + (0x840d7a77e636c8ab1353033edb966a4bde24e83b, 'King Ghidorah and Godzilla Base Collectible Magenta 17 Common', 'GDZ-RAT21-C-B17-S-MAG'), + (0x840f475cf43e535c35855c95b7f859c35cf582d9, 'Epic Animated Comic 2 New Game Bazooka Joe 2021 NFT', 'BZK-E-2A'), + (0x84135220fb8b465a0e20bafcfc4519fe2e4e7e67, 'Baltimore Orioles® Cedric Mullins OF All-Star Motion Purple 3 Epic', 'MLB-S221-E-AS3-PUR'), + (0x8415befe80710107d03badaa08563513e2cb8aa9, 'Uncommon Baseball Card 3 Pesty Batter Bazooka Joe 2021 NFT', 'BZK-U-3B'), + (0x841990192ec35912132cbcc5d7f650d78783094b, 'Breel Embolo BMG Motion Rainbow Refractor S2-13 Super Rare', 'BUND-21TS2-S-MS2-13-V-RAI'), + (0x8425f6a08c5956c893126e63e829ed586c6626fd, 'RB Leipzig Nordi Mukiele Base Players Team Color 13 Static Facsimile Signature Rare', 'BUND-SC21-R-BP13-SFS-TMC'), + (0x842872ff907b1c75e650e14242165f960ae65dd4, 'Cursed Pirates', 'PIRATES'), + (0x842be24a6de420ceaaa4374fa4d7a2c42fe0eadd, 'Toronto Blue Jays® Alejandro Kirk First Place Skyline 1 Legendary', 'MLB-22ASG-L-FIR1-M-SKY'), + (0x842da19f11a4edaf21ffc8d246e8e91ca2062505, 'TSG Hoffenheim Andrej Kramaric Top Players Gold 106 Super Rare', 'BUND-SC21-S-TP106-GLD'), + (0x843423b2d2555d9c13a615f2b772f94cfee98972, 'Miami Marlins® Alex Vesia Rookie and Future Phenoms Facsimile Signature White 39 Rare', 'MLB-INC21-R-RC39-WHT'), + (0x84354b639203a29f9e4b7d6b0bccab7f0ba2117e, 'Dinos Escap GEN1', 'DEG'), + (0x843d8531f5fb2cfd5021dd933e5dfa9b9986fe82, 'New York Yankees® Joey Gallo Base Vintage Stock 322 Super Rare', 'MLB-22S1-S-B318-M-VS'), + (0x84404952344e7380574f40f6cb7b15d8fd17471d, 'Smolrun Soulbound', 'SSB'), + (0x844962fd24dd5838c5b63dbb294e4ea5550204dd, 'Los Angeles Dodgers® Chris Taylor Championship Series Silver 26 Epic', 'MLB-21POST-E-CS26-M-SIL'), + (0x84503efcff15bdc775f633b1d0b6e3007f200c37, 'Oakland Athletics™ Starling Marte Base Blue 1075 Common', 'MLB-22PRI-C-B55-M-BLU'), + (0x8455e2440d7d336131a9caab6211aca746328e77, 'Taiwo Awoniyi FCU Club Phemons Silver S4CPH-16 Super Rare', 'BUND-21TS4-S-CPHS4CPH-16-S-SLV'), + (0x8457d33fc3f9f35e44e7fdcd7a976233120087ef, 'METAMARBLES GEN0.a', 'MARBLE.a'), + (0x845955ef9af60d18f67641761f86f5225b0260a2, 'Ninjavax', 'NJAX'), + (0x846269a4eb98137b41aae3fc45f5638235f01d47, 'Chicago White Sox® Lucas Giolito Facsimile Signature Glitch 291 Epic', 'MLB-22S1-E-FS22-M-GLI'), + (0x84630a8b38abca464d2f369e5f49f604b996a33e, 'Kaiju in Paris Monster Collage Color 2 Legendary', 'GDZ-RAT21-L-RMC2-A-COL'), + (0x846c76e837a3f6fb70f85bf972f33f4bac4cf0dc, 'Daichi Kamada SGE Motion Aqua Refractor S4-42 Rare', 'BUND-21TS4-R-MS4-42-V-AQU'), + (0x8478a4349f3611f30b321511a1c24452745576d1, 'Los Angeles Dodgers® Corey Seager Base Glitch 301 Uncommon', 'MLB-22S1-U-B297-M-GLI'), + (0x847b3dd634b1fa921dd7ba7c8a5736a3572914c9, 'crescent nights', 'cydia'), + (0x847c18bf7024e026a0853644f66956449ddb06b8, 'Pizza Game Chefs', 'PIZZA-GAME-CHEF'), + (0x847fdff8c0065e18eee5a5a771f60fc43f051262, 'The Mongs | Duality', 'MONGDUA'), + (0x84833ebd2ac4405c0ada5899372272cd192e2206, 'St. Louis Cardinals® Harrison Bader Base White 225 Common', 'MLB-22S1-C-B222-S-WHI'), + (0x848437b0bf9deb3732d58ab7b0df9aea808d1897, 'Houston Astros® Blake Taylor Rookie and Future Phenoms Facsimile Signature Blue 27 Super Rare', 'MLB-INC21-S-RC27-BLU'), + (0x848697c66a7161ed9c4b9be1f59b83fd11524bbd, 'Europe', 'gLW'), + (0x84899a5cc5eabc2370a027e11bd3ef55b67c2fc9, 'Horse Men', 'HORSEMEN'), + (0x848a18cd9af50f623206dcd8ae95011e40edf7a3, 'Tampa Bay Rays™ Randy Arozarena Division Series Bronze 2 Super Rare', 'MLB-21POST-S-D2-M-BRO'), + (0x848cc99b04be2533db895e684996d67b6d4e8eb3, 'Baltimore Orioles® Pedro Severino Base Independence Day RWB 72 Rare', 'MLB-22S1-R-B72-M-RWB'), + (0x8497e96127e5a9e2c68c93440722d27a76ebe54c, 'American League™ 2021 ERA Leaders Base Glitch 283 Uncommon', 'MLB-22S1-U-B280-M-GLI'), + (0x84a04eaf97a8f18ad887d8bfef81ce9a37382bb4, 'Colorado Rockies™ Kyle Freeland Base White 169 Common', 'MLB-22S1-C-B168-S-WHI'), + (0x84ae69acb5e8502ecf26cc2d435a0b5727346b21, 'Tampa Bay Rays™ Shane Baz Base Pink 1315 Uncommon', 'MLB-22PRI-U-B146-M-PNK'), + (0x84ae6cb26c65b487e3b5dcb342d569ea79390cf6, 'Los Angeles Dodgers® Clayton Kershaw Short Print White 41 Rare', 'MLB-22S1-R-SP11-M-WHI'), + (0x84b1fd5d4e0afe446407fd27ee90c964f2f12875, 'xZEROs', 'xZEROs'), + (0x84c14d501fd1897d619b0a04d5237bcb18e1679b, 'Houston Astros® Kyle Tucker Generation NOW Team Colors GN-14 Epic', 'MLB-22S1-E-GN14-M-TMC'), + (0x84c5cfba1214603e9af4220d1c844c1862a71af0, 'Colorado Rockies™ Daniel Bard P Base Static Gold 376 Uncommon', 'MLB-S221-U-B376-GOL'), + (0x84ca24127d074ac33ed4029bccea3f6b10335da2, 'Atlanta Braves™ Charlie Morton Champs Gold 7 Legendary', 'MLB-21POST-L-C7-M-GOL'), + (0x84d203a4eec6d30d35ff837bc71e34fc4275085f, 'New York Yankees® Deivi Garcia Inception Base White 66 Common', 'MLB-INC21-C-IB66-WHT'), + (0x84d4c2456f877ccae50f7bf84061dbe62cca2421, 'Kansas City Royals® Ryan McBroom 1B Base Motion Rainbow 606 Rare', 'MLB-S221-R-B606-RAI'), + (0x84d62919ca69cce400a2db680963a1cb163f9f1c, 'New York Mets® Marcus Stroman Facsimile Signature Slab Gold 3047 Epic', 'MLB-22PRI-E-FS33-M-GLD'), + (0x84e2c7d1f4a29edebe0a304f08f6c2254bcebbd0, 'Uncommon Comic 61 2-13 Bazooka Joe 2021 NFT', 'BZK-U-61C'), + (0x84e45412f88cfccb0c03a1bfadb75b48179b6800, 'Rare Comic 34 1-34 Bazooka Joe 2021 NFT', 'BZK-R-34C'), + (0x84ebf45338415005d46332ffeb44907eb3b36338, 'Dominik Szoboszlai RBL Base White S2-16 Common', 'BUND-21TS2-C-BS2-16-S-WHI'), + (0x84ee97d14c10c6f7b73417ebbad6e8f910214688, 'San Diego Padres™ Fernando Tatis Jr. Base White 100 Common', 'MLB-22S1-C-B99-S-WHI'), + (0x84fab74795f51c3208379924c76abe6e5a36d392, 'BadBizBones', 'BBB'), + (0x84fd455368fecf5c103134466f4df4992c8629bf, 'Angels® Reid Detmers Base Independence Day RWB 201 Rare', 'MLB-22S1-R-B200-M-RWB'), + (0x8500b309d9a91a02f2903570ea43265578462baa, 'TinWorks Cyberpunk AVAX Edition', 'TCPAE'), + (0x850768c039b7317f5993f80c2e0b6e2a09ff127d, 'New York Mets® Jeff McNeil 2B/OF 70th Anniversary Facsimile Signature Motion Platinum 489 Legendary', 'MLB-S221-L-70AFS489-PLA'), + (0x85094dfc4fa28d22b2aa2108acb9dda713b16d79, 'SOFOVERSE', 'SFV'), + (0x8511e471e46c9085d675e434f289aceaedc019cd, 'Boston Red Sox® Enrique Hernandez OF/2B Base Static White 465 Common', 'MLB-S221-C-B465-WHI'), + (0x8528333c65bf7c63d7012d7d9c4d3cc9128d08cf, 'Pittsburgh Pirates® Ke''Bryan Hayes Rookie and Future Phenoms Facsimile Signature Blue 65 Super Rare', 'MLB-INC21-S-RC65-BLU'), + (0x852b31c03973ccbee023a0ca34cf9c1c0f47579e, 'PNCA', 'gLW'), + (0x853c02d39c6272473e4bdc1b730bf9d9aa9d7825, 'Angels® Jose Iglesias SS Base Motion Platinum 346 Epic', 'MLB-S221-E-B346-PLA'), + (0x854e09dbb65fd409e6152ff7b997ec08ba7dcb3d, 'Mechagodzilla Fireworks Traditional Art Color 2 Legendary', 'GDZ-RAT21-L-RTA2-A-COL'), + (0x8561813f2a09a04d23d4b10d65b1f78abc60abe3, 'San Diego Padres™ Eric Hosmer 1B Base Motion Rainbow 639 Rare', 'MLB-S221-R-B639-RAI'), + (0x8565698d83613bb7590c2aeac04e2fbc5a00a234, 'New York Mets® Noah Syndergaard P Base Static Gold 631 Uncommon', 'MLB-S221-U-B631-GOL'), + (0x856813b86e062b2fab7c513cbbd64f723b2711ff, 'Angels® Reid Detmers Topps NOW Aqua 161 ', 'MLB-22NOW-R-TN3-M-AQU'), + (0x856d23e90339317a523cc91594587d31d496a228, 'FC Union Berlin Nico Schlotterbeck Young Stars Team Color 165 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS165-SFS-TMC'), + (0x857866dc0bb582b8222cc617f7f769dccab1fca2, 'Boston Red Sox® Bobby Dalbec Silver Signings Facsimile Signature Silver 4 Super Rare', 'MLB-INC21-S-SS4-SLV'), + (0x857a4a8a60b48ec6176f23bfbc5f35dc9b45438e, 'Milwaukee Brewers™ Corbin Burnes Base Independence Day RWB 240 Rare', 'MLB-22S1-R-B237-M-RWB'), + (0x857e2765928b088121c8c5d2070f2fe71e1aec5b, 'Los Angeles Dodgers® Mitch White Rookie and Future Phenoms Facsimile Signature Black 37 Legendary', 'MLB-INC21-L-RC37-BLK'), + (0x85853ebb4a091dcd39749840ea8b1545abeab1c3, 'Chicago Cubs® Kyle Hendricks Base Blue 1195 Common', 'MLB-22PRI-C-B130-M-BLU'), + (0x859a2332a4c154ad3fe73cabbfde5fa784982c6d, 'Hashflow Avalanche NFT', 'HASH'), + (0x859ae184d4387415ed9f25c655a765e0194c1152, 'Colorado Kids', 'CKS'), + (0x85a3623e1ece1a7a6837cb5a45d3d2ab391f9a46, 'Rare Comic 60 2-12 Bazooka Joe 2021 NFT', 'BZK-R-60C'), + (0x85a39e315f7f7c63546f388352e2c24f6b581b8f, 'Pittsburgh Pirates® Miguel Yajure P Base Motion Platinum 612 Epic', 'MLB-S221-E-B612-PLA'), + (0x85b0bfd32e247e0b889ba450e5280e2a0b1bda38, 'Topps Series 1 - 21/22 Bundesliga NFT Card Pack', 'BUND-21TS1-PACK-S1'), + (0x85b44888000fe00f268da4398d5ce0e1dbea4478, 'Seasons', 'SEAS'), + (0x85c4b0253dc179cec6c879e301712c6e333d7108, 'San Francisco Giants® Anthony DeSclafani P Base Motion Rainbow 614 Rare', 'MLB-S221-R-B614-RAI'), + (0x85c7174f9f1ca4e016e8265031fbc781a1c73a7b, 'Boston Red Sox® Jarren Duran 1987 35th Anniversary Wood T87-5 Common', 'MLB-22S1-C-1987A5-M-WD'), + (0x85d52afe931d50a3954d1c04470afe098c1950d3, 'New York Yankees® Corey Kluber Base Independence Day RWB 69 Rare', 'MLB-22S1-R-B69-M-RWB'), + (0x85d9489bd0ab623037638738483e286fda141888, 'Minnesota Twins® Josh Donaldson Base Independence Day RWB 226 Rare', 'MLB-22S1-R-B223-M-RWB'), + (0x85d9b2b7c72b9d3f8579971a94e34859bae7f5fd, 'storm Lottery Ticket', 'SLT'), + (0x85e4203c70cb95d53fceec93bfc179c58d4dfb71, 'Washington Nationals® Luis Garcia Inception Base Red 97 Rare', 'MLB-INC21-R-IB97-RED'), + (0x85efbba5cf6794ddddc9d8a1a42c3596954d1075, 'Diamond Hans Golden Animation Color 19 Epic', 'GPK-NFT22-E-GA19-A-COL'), + (0x85f5bd838301f12f72df314e71220c44a5808323, 'Cincinnati Reds® Team Cube 2.0 Team Colors 7 Legendary', 'MLB-22S1-L-TC27-M-TMC'), + (0x860238ead28eae392318e1c0594d367131bc1ef1, 'Chicago White Sox® Jose Abreu Regular Season Division Winners RWB 9 Rare', 'MLB-21POST-R-R9-M-RWB'), + (0x86094f3538f0ec0b2dfa18cfdb3862d6566e6ff5, 'Texas Rangers® Yonny Hernandez Base Blue 1306 Common', 'MLB-22PRI-C-B139-M-BLU'), + (0x86121ecfc4d3fe83f8d6e21571ea0204fcc5624f, 'Sheraldo Becker FCU Base White S4-58 Common', 'BUND-21TS4-C-BS4-58-S-WHI'), + (0x86165d476320f01618024d294d0993bbe33567a0, 'San Francisco Giants® Tommy La Stella 2B Base Motion Vintage Stock 462 Super Rare', 'MLB-S221-S-B462-VS'), + (0x86174896569f18140446d05c8ebd10420feb6db8, 'My Plank Friends', 'MPF'), + (0x861da224e91a2f2a5d2ead95421a7ee710c1d642, 'Chicago Cubs® Anthony Rizzo Inception Base White 13 Common', 'MLB-INC21-C-IB13-WHT'), + (0x861fb9562d20d3bdac1543e407e6f8def83f1caf, 'New York Yankees® Aroldis Chapman Base Vintage Stock 142 Super Rare', 'MLB-22S1-S-B141-M-VS'), + (0x86212b2a4fba09fae585abd3ba75a5ad2f385853, 'New York Mets® Pete Alonso Base Vintage Stock 315 Super Rare', 'MLB-22S1-S-B311-M-VS'), + (0x862914e6791034a30677e8b9bf65bd89004eb5f7, 'Toronto Blue Jays® Alejandro Kirk C Short Print Motion White 551 Super Rare', 'MLB-S221-S-SP551-WHI'), + (0x8631b8e30a1bef51fb0fe5b7e4ce0c371fea2f2d, 'Houston Astros® Ronnie Dawson Base Pink 1228 Uncommon', 'MLB-22PRI-U-B137-M-PNK'), + (0x86359b41d9c7d6df0eac1a6bae7422f821ce05f8, 'San Diego Padres™ Manny Machado Inception Base Blue 81 Uncommon', 'MLB-INC21-U-IB81-BLU'), + (0x8635bf53096f5f42134679cb2de1bfe170b93b09, 'San Francisco Giants® Mike Yastrzemksi Base White 103 Common', 'MLB-22S1-C-B102-S-WHI'), + (0x863834ca9ecb71045fe5561e4b11b8034f58a849, 'Boston Red Sox® Bobby Dalbec Postseason Base White 66 Common', 'MLB-21POST-C-B66-S-WHI'), + (0x863a7d0c4098621bcc68f36e98e467fee169b14b, 'Kaiju Thunderstorm Comic Cover Color 1 Super Rare', 'GDZ-RAT21-S-CC1-A-COL'), + (0x863f35ee2004ef5d197740a6dfa7dcc33544b189, 'American League™ Teoscar Hernandez Base Pink 1267 Uncommon', 'MLB-22PRI-U-B200-M-PNK'), + (0x8649dfa26cdaef3f4a4d5d551ba3f3b88a6d5a40, 'Christopher Nkunku RBL Club Phemons Team Color S4CPH-14 Epic', 'BUND-21TS4-E-CPHS4CPH-14-V-TMC'), + (0x864f67c9e94a92bd8cf28be422d5a7e5462a13b9, 'Common Comic 87 2-39 Bazooka Joe 2021 NFT', 'BZK-C-87C'), + (0x8650ab8e367ebcea633228062911f22fa827853f, 'Romano Schmid SVW Ascendent Facsimile Signature Blue TK-53 Legendary', 'BUND-22TK-L-ASCTK-53-S-BLU'), + (0x8652b7679d3d9f99e94ec1ed6d463e955e2ffe84, 'San Francisco Giants® Logan Webb Postseason Base White 32 Common', 'MLB-21POST-C-B32-S-WHI'), + (0x8653657975dc5fe7265fd681a361d454241e73a7, 'Minnesota Twins® Randy Dobnak Rookie and Future Phenoms Facsimile Signature White 51 Rare', 'MLB-INC21-R-RC51-WHT'), + (0x8653d9eb04ecdfa5787c8cf1223cf6b77f56630d, 'Cincinnati Reds® Tyler Stephenson Base Glitch 175 Uncommon', 'MLB-22S1-U-B174-M-GLI'), + (0x865f9ac2fc20ac898cf32a77e7ac6ffbae877e08, 'San Diego Padres™ Fernando Tatis Jr. Base Glitch 100 Uncommon', 'MLB-22S1-U-B99-M-GLI'), + (0x8661cd7bcbb7005e822aeb41e27d89e689f6f258, 'Rare Comic 11 1-11 Bazooka Joe 2021 NFT', 'BZK-R-11C'), + (0x86632e5cd8876b7973ac36e13ec16762d7a962dc, 'Bayer 04 Leverkusen Karim Bellarabi Base Players Gold 25 Rare', 'BUND-SC21-R-BP25-GLD'), + (0x86633cedd7514660df653a45f2d822e079dd8711, 'Cleveland Indians® Zach Plesac P Base Motion Platinum 403 Epic', 'MLB-S221-E-B403-PLA'), + (0x8665bcc18e2bcc22b5fd941824eba4818a686b4f, 'Volcanic Eruption Comic Cover Color 3 Super Rare', 'GDZ-RAT21-S-CC3-A-COL'), + (0x86676b242d9486233863f85cb37388e4b1c7221b, 'Houston Astros® Yordan Alvarez Base Pink 1143 Uncommon', 'MLB-22PRI-U-B129-M-PNK'), + (0x866b0c9c64f51c4fde1211bb6089690b8e976ae0, 'Common Comic 78 2-30 Bazooka Joe 2021 NFT', 'BZK-C-78C'), + (0x866d9cec46a90e66310b8807b9182cb6f0902032, 'Sheraldo Becker FCU Motion Aqua Refractor S4-58 Rare', 'BUND-21TS4-R-MS4-58-V-AQU'), + (0x866eceab0555ab1ec7209aaa5bc83a842bedbff7, 'Chicago Cubs® Willson Contreras Base Pink 1066 Uncommon', 'MLB-22PRI-U-B91-M-PNK'), + (0x86707c46f8a3b822895ddd03532d6ed84534e3d1, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Day 2 BFFs', 'GDZ-GVG22-PACK-R8'), + (0x8673f773312c219ffa4e78dabdb8e226a86978de, 'Christopher Nkunku RBL Base Red S4-41 Uncommon', 'BUND-21TS4-U-BS4-41-S-RED'), + (0x8679c8f0a5de4ff29e8b5ce003187fde4a2395c7, 'San Diego Padres™ Wil Myers OF Base Motion Rainbow 332 Rare', 'MLB-S221-R-B332-RAI'), + (0x867edff5f64c1135ee61e2edb46b029b86b96ce0, 'Tampa Bay Rays™ Josh Fleming Division Series Bronze 7 Super Rare', 'MLB-21POST-S-D7-M-BRO'), + (0x8693ab390cfbd27ffb9ab1acad9993ec53ad3d1f, 'San Diego Padres™ Joe Musgrove Base Independence Day RWB 266 Rare', 'MLB-22S1-R-B263-M-RWB'), + (0x8694f544735a6e17abd4f086c9820fc19e20ccfd, 'New York Yankees® Aroldis Chapman Base Independence Day RWB 142 Rare', 'MLB-22S1-R-B141-M-RWB'), + (0x8695adae6851f14697511563f00a0a25b89c9964, 'Houston Astros® Ronnie Dawson Base Vintage Stock 231 Super Rare', 'MLB-22S1-S-B228-M-VS'), + (0x86991df0af5ebb890ab23e090f5246756b5089b8, 'Angels® Alex Cobb P Base Static White 474 Common', 'MLB-S221-C-B474-WHI'), + (0x869c70d9c23f44ad340f927cdbf27ba7ffab2b32, 'Colorado Rockies™ Trevor Story 1987 35th Anniversary Wood T87-65 Common', 'MLB-22S1-C-1987A46-M-WD'), + (0x869f8855b24ffc4f4a2e1e8954fc5451ab26eda5, 'San Diego Padres™ Yu Darvish Base Vintage Stock 309 Super Rare', 'MLB-22S1-S-B305-M-VS'), + (0x86a586590e38488fd716c4df21f3987b0a797d28, 'Toronto Blue Jays® Hyun-Jin Ryu Base Blue 1160 Common', 'MLB-22PRI-C-B79-M-BLU'), + (0x86a67e7d2757ec8ef41ca7d4f449d93a8d9aaf4f, 'Rillabitats', 'RLBT'), + (0x86a9d34afe374180193a8778f1f2625019f310ae, 'Toronto Blue Jays® Hyun-Jin Ryu Base Independence Day RWB 297 Rare', 'MLB-22S1-R-B293-M-RWB'), + (0x86ad7122ef4343f7fd533b7878e0e8ec0d383911, 'YieldBox', 'YBOX'), + (0x86ae4ba1a3a3d16e580bc8a30d9e34b3a576e6db, 'Tampa Bay Rays™ Vidal Brujan Base Vintage Stock 25 Super Rare', 'MLB-22S1-S-B25-M-VS'), + (0x86b2b1db39f99a56cfbd6164dacd42d25921ccd5, 'Kansas City Royals® Jackson Kowar Facsimile Signature Slab Gold 3095 Epic', 'MLB-22PRI-E-FS20-M-GLD'), + (0x86b47b9eb1292a6fcac5fbce5d3a02c4ded015b4, '2021 Topps NOW World Series Game 2 Pack', 'MLB-21NOW-PACK-TN-GM2'), + (0x86b8056bedcb5283358dc04b9ad1cadb5aaa7bb4, 'Colorado Rockies™ Base Vintage Stock 222 Super Rare', 'MLB-22S1-S-B219-M-VS'), + (0x86b82807ebe28292ea6058844dcdcbf146f80125, 'Sport-Club Freiburg Philipp Lienhart Base Players Gold 40 Rare', 'BUND-SC21-R-BP40-GLD'), + (0x86ba33eba22dc4160027b427eed7ec4edab09892, 'Los Angeles Dodgers® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 14 Legendary', 'MLB-21S2SC-L-21S2SCR14-M-TC'), + (0x86c350bece51b1d26ca00eba3767f762e5e4fa8a, 'Aarón Martín M05 Animation Black Refractor S4-53 Epic', 'BUND-21TS4-E-AS4-53-V-BLA'), + (0x86c46764b6172925c6bc124016283d36bb170c1b, 'Niklas Dorsch FCA Base Red S3-31 Uncommon', 'BUND-21TS3-U-BS3-31-S-RED'), + (0x86c7e76202b4717ccaca469c47d694d91fe73d4a, 'Boston Red Sox® Xander Bogaerts SS Base Motion Vintage Stock 476 Super Rare', 'MLB-S221-S-B476-VS'), + (0x86c917419415defd1bb7869d9ec125df6520ddfc, 'Atlanta Braves™ Max Fried Base Vintage Stock 129 Super Rare', 'MLB-22S1-S-B128-M-VS'), + (0x86cb68741c69d9534c6a0db3611dda66a9eba199, 'Texas Rangers® Sam Huff C Base Motion Rainbow 654 Rare', 'MLB-S221-R-B654-RAI'), + (0x86ccf0ef672f8448f9dcfff5e79e464042b45364, 'Monster X Base Collectible Magenta 15 Common', 'GDZ-RAT21-C-B15-S-MAG'), + (0x86ce1e0d793850873e350e3072fb5ad150c25cae, 'Bayer 04 Leverkusen Nadiem Amiri Top Players Gold 105 Super Rare', 'BUND-SC21-S-TP105-GLD'), + (0x86d31499a1fe786b020dcdc59ddfde553911381b, 'Nils Petersen SCF Motion Rainbow Refractor S4-64 Super Rare', 'BUND-21TS4-S-MS4-64-V-RAI'), + (0x86d3a901a0af52167140fc9a719fcad11e95ca6c, 'Baby Azuki Social Club', 'BASC'), + (0x86e38475d9c5b68e9fb2f95fb323ebb17120f16d, 'Jonathan Burkardt M05 Ascendent Facsimile Signature Blue TK-48 Legendary', 'BUND-22TK-L-ASCTK-48-S-BLU'), + (0x86ee3de8029f52a353dd82dd19db01165eac738f, 'Zander Clark STJ Base White SP-24 Common', 'SPFL-21SPSS-C-BSP-24-A-WHI'), + (0x86f31df22c09b7c59b89ab8e6059cb6f6324608d, 'Borussia Monchengladbach Jonas Hofmann Base Players Team Color 17 Static Facsimile Signature Rare', 'BUND-SC21-R-BP17-SFS-TMC'), + (0x8717b042639778f03512585759b465471bee0f2e, 'Detroit Tigers® Casey Mize Silver Signings Facsimile Signature Silver 14 Super Rare', 'MLB-INC21-S-SS14-SLV'), + (0x871a87774d2ddd80b6069e8e3e673b4b4f63c2ed, 'St. Louis Cardinals® Paul DeJong Base Blue 1254 Common', 'MLB-22PRI-C-B161-M-BLU'), + (0x871d2b36f18eedaee3ba146a59c5344ffade5023, 'Tampa Bay Rays™ Tyler Glasnow Base Glitch 302 Uncommon', 'MLB-22S1-U-B298-M-GLI'), + (0x8720fa42cf06a8400f0ac0d2eea651c186cc4db4, 'Sebastian Griesbeck SGF Motion Rainbow Refractor S4-59 Super Rare', 'BUND-21TS4-S-MS4-59-V-RAI'), + (0x872d2759665fd9c8055ecc9057c90f1d15401276, 'Pittsburgh Pirates® Jacob Stallings C Base Motion Vintage Stock 505 Super Rare', 'MLB-S221-S-B505-VS'), + (0x87385aa4dbed7a8161fe8b3a5c7a76cd716bf528, 'Chicago White Sox® Adam Eaton OF Base Motion Rainbow 554 Rare', 'MLB-S221-R-B554-RAI'), + (0x873c40c2210c03b01003f2bbfb4b6830b2478ba9, '@serkansokmen Collection', 'NPC014'), + (0x874787a3091363fe6d7f214d1ee85ce7052763ef, 'Godzilla RAT Page 10 Comic Page Black and White 9 Uncommon', 'GDZ-RAT21-U-CP9-S-BW'), + (0x874b3d66644118005f5ed11acd56781cb77a0068, 'Miami Marlins® Zach Pop Base Vintage Stock 108 Super Rare', 'MLB-22S1-S-B107-M-VS'), + (0x8754659567ee69684c83b8095cd49931257744f5, 'New York Mets® Andres Gimenez Rookie and Future Phenoms Facsimile Signature Blue 53 Super Rare', 'MLB-INC21-S-RC53-BLU'), + (0x875ace1890ae9a014462c53e58d6c3cd1ffa9e8a, 'Super Rare Animated Comic 5 Rainy Day Bazooka Joe 2021 NFT', 'BZK-S-5A'), + (0x875d0e8c7cdff7c7628c2b2970389393dad8e409, 'VIP Membership TH', 'KEY'), + (0x8761c2dcfb3c3b444711683118ddaf98e39549b1, 'NFT Garden', 'NFTG'), + (0x8768d4168ea2f7a3d262268c6a08aa25720244e3, 'Angels® Base Motion Platinum 621 Epic', 'MLB-S221-E-B621-PLA'), + (0x8770d8bf3f3e248249b2580a47353b82b829604c, 'Fight Night Poster #5 Lobby Card Black and White 5 Rare', 'GDZ-GVG22-R-LC5-S-BW'), + (0x87750ef4e8dd069a01e1ff8911e644f8368d61e3, 'Detroit Tigers® Miguel Cabrera Inception Base Red 31 Rare', 'MLB-INC21-R-IB31-RED'), + (0x877698b33d22526456909c70ca66b013eac8347c, 'Chicago White Sox® Yasmani Grandal C Base Static Gold 524 Uncommon', 'MLB-S221-U-B524-GOL'), + (0x8787a2c331823c0e27abef29263cbed57396c600, 'Bampie', 'PIE'), + (0x878a1bd4fff202b3b9c56828b04bd342b1279ff3, 'Jamal Musiala BAY Animation Black Refractor S3-32 Epic', 'BUND-21TS3-E-AS3-32-V-BLA'), + (0x878bcc25679a065a99e3fa96b01e74bbfa993550, 'St. Louis Cardinals® Harrison Bader Base Glitch 225 Uncommon', 'MLB-22S1-U-B222-M-GLI'), + (0x878edb63d73c435601cfe282cc16c175fdb558e1, 'Jean-Paul Boëtius M05 Motion Rainbow Refractor S4-51 Super Rare', 'BUND-21TS4-S-MS4-51-V-RAI'), + (0x879172af5d4ecdc6c72f0787a80357ada0f1320a, 'Milwaukee Brewers™ Kolten Wong Regular Season Division Winners RWB 33 Rare', 'MLB-21POST-R-R33-M-RWB'), + (0x879957b293f59a9befc3466c9cc0f0d189cbf44d, 'Toronto Blue Jays® George Springer American League Base Blue 15 Rare', 'MLB-22ASG-R-B15-M-BLU'), + (0x87a3f643904398f1e600022e446e05fd54741770, 'San Diego Padres™ Trevor Rosenthal P Base Motion Rainbow 454 Rare', 'MLB-S221-R-B454-RAI'), + (0x87a6dc38095bf73a6550e284eb97a3f813854709, 'New York Mets® Pete Alonso Facsimile Signature Blue 315 Uncommon', 'MLB-22S1-U-FS24-S-BLU'), + (0x87a7ce85788577979be832818444a87bd09e2a44, 'Nitro Network', 'Top'), + (0x87b18571a426389320e12e4f242639ec428937bc, 'Chicago White Sox® Jonathan Stiever P Base Motion Vintage Stock 528 Super Rare', 'MLB-S221-S-B528-VS'), + (0x87bb086f5e538fddd9832f74162efa6414b29b40, 'Minnesota Twins® Max Kepler Base Vintage Stock 221 Super Rare', 'MLB-22S1-S-B218-M-VS'), + (0x87c1543d82ae1323d5c3759442949b7fd88e5768, 'Atlanta Braves™ Max Fried Topps NOW White 1036 Rare', 'MLB-21NOW-R-TN1036-WHI'), + (0x87d0f9ff4b51eefe9f5f1578bc35e4dda28bbd1e, 'ElvesTicket', 'ETICKET'), + (0x87d8c7588ae4a3048acac7aee4f9db6a64f2b3f6, 'Rams hero', 'RR'), + (0x87de92d7cfa5fd6a2c496a8f4e7e7bf5ff2f7e29, 'Miami Marlins® Fish out of Water Base Motion Rainbow 530 Rare', 'MLB-S221-R-B530-RAI'), + (0x87edc6c3b634cd686066509b42105785818747f7, 'Eldritch Rising Sprites', 'ERS'), + (0x87ee811a521bc0165afd5e48b159ddf128b2d074, 'Los Angeles Dodgers® Dustin May P Base Static White 355 Common', 'MLB-S221-C-B355-WHI'), + (0x87ef3582700a4891df17b34a27d892d71f6b80b3, 'Member Card', 'SJNF'), + (0x87f9d4e878d650f5325e5215eeb7161c4a125f9a, 'St. Louis Cardinals® Yadier Molina Base Vintage Stock 205 Super Rare', 'MLB-22S1-S-B204-M-VS'), + (0x87fc363237c5011ffaa56b2485f4b3a5874654d1, 'Houston Astros® Yordan Alvarez Rookie and Future Phenoms Facsimile Signature Black 30 Legendary', 'MLB-INC21-L-RC30-BLK'), + (0x87ffc185bfee8fd733d0ad8965811589881d33f3, 'Faith Fall Animation Facsimile Signature Color 24 Super Rare', 'GPK-NFT22-S-AFS24-A-COL'), + (0x8807f33536c91ff0f3f76d2d245140f0c4cad5af, 'Philadelphia Phillies® Luke Williams Base Independence Day RWB 62 Rare', 'MLB-22S1-R-B62-M-RWB'), + (0x8808878a6804dc851dae227edd5abc7fdba212c2, 'Super Rare Comic 51 2-3 Bazooka Joe 2021 NFT', 'BZK-S-51C'), + (0x880b32401074df8098d4e3d951fc58f820e7cbc7, 'Mechavax Shortseries #04', 'MASS04'), + (0x881b15271fce0f70f4115666b23f02503d65cf52, 'San Diego Padres™ Fernando Tatis Jr. Base Independence Day RWB 100 Rare', 'MLB-22S1-R-B99-M-RWB'), + (0x882f159852f3984dbaf0532a6559b2ac597f0b34, 'Djibril Sow SGE Top Players Facsimile Signature Team Color TK-11 Epic', 'BUND-22TK-E-TPTK-11-S-TMC'), + (0x8832ed67942d0626f476c1fad9b95c8a45200b2f, 'Angels® Jared Walsh 1B Base Static White 575 Common', 'MLB-S221-C-B575-WHI'), + (0x88377fec9d49f3f10f388bac7facb6ea21a2281c, 'Kansas City Royals® Edward Olivares Rookie and Future Phenoms Facsimile Signature White 32 Rare', 'MLB-INC21-R-RC32-WHT'), + (0x883e2294d8883052f7b7248381cbe5a2648c1ee1, 'RB Leipzig Amadou Haidara Base Players Gold 15 Rare', 'BUND-SC21-R-BP15-GLD'), + (0x883fb5fd1e5baf32c1e64f21b9029474485f2bc7, 'Miami Marlins® Jazz Chisholm Jr. National League Base Blue 5 Rare', 'MLB-22ASG-R-B5-M-BLU'), + (0x884840c04cf785e31e17f316c28e65ca1bcc6fde, 'Borna Sosa VFB Motion Aqua Refractor S3-27 Rare', 'BUND-21TS3-R-MS3-27-V-AQU'), + (0x8848cb0ad7eda1dc1fb1d32c637ac7658aeb9388, 'Patrick Wimmer DSC Club Phemons Gold S4CPH-01 Legendary', 'BUND-21TS4-L-CPHS4CPH-01-V-GOL'), + (0x884e8e297d55e012c82951931b72227dee7f2c28, 'Philadelphia Phillies® Zack Wheeler Facsimile Signature Blue 249 Uncommon', 'MLB-22S1-U-FS17-S-BLU'), + (0x886612ed8b3a9272ef4f2caae2a559bd795c0e38, 'Philadelphia Phillies® Rhys Hoskins Base Blue 1051 Common', 'MLB-22PRI-C-B120-M-BLU'), + (0x8866c9bc44ce138a038b904d079a765e39eab767, 'Eintracht Frankfurt Tuta Young Stars Team Color 162 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS162-SFS-TMC'), + (0x886a796a5239f08ed81148e68f08492eeb141c60, 'Thoughts of Space', 'THSP'), + (0x8875285a7afd6b16148f79db45d7e32250899ac3, 'Chikndom', 'CHIKNDOM'), + (0x887b182bfc0a00c5e5119ac435e1b87abc0b86d9, 'Georginio Rutter TSG Base Red S3-28 Uncommon', 'BUND-21TS3-U-BS3-28-S-RED'), + (0x887b191f05502c68f88eda5091d649349b99ed21, 'Ebirah and Godzilla Base Collectible Magenta 8 Common', 'GDZ-RAT21-C-B8-S-MAG'), + (0x8889148af1f97a55a906eb63756d9869edf53d2b, 'Oakland Athletics™ Seth Brown Rookie and Future Phenoms Facsimile Signature Blue 60 Super Rare', 'MLB-INC21-S-RC60-BLU'), + (0x888a50b305ecd29e4be50e470af0ae4f3fdd7518, 'Super Rare Comic 50 2-2 Bazooka Joe 2021 NFT', 'BZK-S-50C'), + (0x888cd19bd40a7a5bedce356ef2647191203a1357, 'Tampa Bay Rays™ Shane McClanahan Regular Season Division Winners RWB 8 Rare', 'MLB-21POST-R-R8-M-RWB'), + (0x888f4f303c392ae1f54246fe674b8887b2cac1fe, 'Scapecase', 'SCAP'), + (0x8891b7f848aaff946b8f0e3329053373baf09c86, 'St. Louis Cardinals® Dylan Carlson OF 1986 Anniversary Static Team Colors 86B-17 Super Rare', 'MLB-S221-S-1986A86B-17-TMC'), + (0x8892f0d593f70c2e1d876d2518399f91e22583b9, 'Baltimore Orioles® Keegan Akin Base White 328 Common', 'MLB-22S1-C-B324-S-WHI'), + (0x8896a8d77229acbd5ad8076be2f74ad6ca7cf538, 'Philadelphia Phillies® World Series Broadcast RWB 1146 Rare', 'MLB-22TNP-R-WSB10-M-RWB'), + (0x889e404f9f953fc0d0f89182e9f2774e69054393, 'Common Comic 61 2-13 Bazooka Joe 2021 NFT', 'BZK-C-61C'), + (0x88a024bf7262326c0a52732e8d744e4b0c65127f, 'New York Mets® Carlos Carrasco P Base Static Gold 655 Uncommon', 'MLB-S221-U-B655-GOL'), + (0x88a0ce2921676fddb022e1fda8543c9f145ad5f6, 'Bayer 04 Leverkusen Julian Baumgartlinger Base Players Team Color 22 Uncommon', 'BUND-SC21-U-BP22-TMC'), + (0x88a57920dc68399ac7eb9b944bb8d0769916f5ed, 'Chicago Cubs® Willson Contreras Base Glitch 147 Uncommon', 'MLB-22S1-U-B146-M-GLI'), + (0x88b3455f4d31802b81941d40a6834fc2a0d98271, 'Miami Marlins® Brian Anderson Base Glitch 19 Uncommon', 'MLB-22S1-U-B19-M-GLI'), + (0x88d131b449d668014bf67a82175fe5f21dcc6549, 'Tampa Bay Rays™ Josh Fleming P Base Motion Platinum 526 Epic', 'MLB-S221-E-B526-PLA'), + (0x88d1dde408ad550272336b498178602403e127b6, 'Chicago White Sox® Cesar Hernandez Base Independence Day RWB 28 Rare', 'MLB-22S1-R-B28-M-RWB'), + (0x88d6cca4ba53b26c69cd1fefb9aa0b210601b0d8, 'RB Leipzig Tyler Adams Young Stars Gold 150 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS150-AFS-GLD'), + (0x88e03406ba70001bc4b103f687dbd44ba01f42f5, 'Colorado Rockies™ Garrett Hampson Base Glitch 234 Uncommon', 'MLB-22S1-U-B231-M-GLI'), + (0x88e2e4cd33217758c2dc3f0ff760a9c346207e5f, 'Super Rare Comic 96 2-48 Bazooka Joe 2021 NFT', 'BZK-S-96C'), + (0x88e724633787ed2b7d073ca59fba3274710ca2f7, 'Joe Scally BMG Club Phemons Silver S4CPH-07 Super Rare', 'BUND-21TS4-S-CPHS4CPH-07-S-SLV'), + (0x88e75f2514b9a86799baa5a0bbd8ac53024b346e, 'THE BIG APPLE', 'GNY'), + (0x88e7d77523c65a7c2b62a0498f3a27b7c67ca16f, 'Godzilla RAT Page 1 Comic Page Color 1 Super Rare', 'GDZ-RAT21-S-CP1-A-COL'), + (0x88e7ff91b5b46e8abbe0d81089444d7dc52bf8a9, 'Boston Red Sox® Jarren Duran Base White 187 Common', 'MLB-22S1-C-B186-S-WHI'), + (0x89064d0ecf6c96750a43206328443bd0a900d24a, 'Smolr Doomers', 'SMOLRDOOM'), + (0x8917b3e6f1d22070f7ef0b1ae9eec30c5e9c6232, 'Christopher Nkunku RBL Club Phemons Silver S4CPH-14 Super Rare', 'BUND-21TS4-S-CPHS4CPH-14-S-SLV'), + (0x891e11ea2040b70ddae185af5c7ed41225b9ba5a, 'Pittsburgh Pirates® Team Cube 2.0 Team Colors 9 Legendary', 'MLB-22S1-L-TC29-M-TMC'), + (0x8922a8a67787dbe73c1290ad8950993a430638c5, 'Banished Bears', 'BB'), + (0x89263fce9317d03ecfb50d481d611e7ba43b554f, 'Common Comic 11 1-11 Bazooka Joe 2021 NFT', 'BZK-C-11C'), + (0x893093af33b3db21ac6e08fda008cfbdfd8be891, 'Hertha Berlin Niklas Stark Base Players White 49 Common', 'BUND-SC21-C-BP49-WHT'), + (0x893f5bced14b6c92480cae5eb6e0ecea39bc3316, 'New York Yankees® Estevan Florial OF Super Short Print Motion White 406 Epic', 'MLB-S221-E-SSP406-WHI'), + (0x8943e550eadb7c772ecebb6e284f4c8c3cd084ee, 'Jude Bellingham DOR Top Players Team Color TK-04 Rare', 'BUND-22TK-R-TPTK-04-S-TMC'), + (0x8944e8f8de5e4412945bfbb5a21b35b1af82f0d6, 'PrizeBond', 'PB'), + (0x89481bb605f2007b5f27cf5112f3f4e8c18befcf, 'Super Rare Comic 69 2-21 Bazooka Joe 2021 NFT', 'BZK-S-69C'), + (0x8949721f812adf806f49218769c54b949fa925ee, 'St. Louis Cardinals® Base Static Gold 478 Uncommon', 'MLB-S221-U-B478-GOL'), + (0x89537f0ef3782e8f3c0117ac05b066cccbc5ce0a, 'Angels® Jose Iglesias SS Base Motion Rainbow 346 Rare', 'MLB-S221-R-B346-RAI'), + (0x8956444200c497eba1a0676c7812cd92278bd2bd, 'Proof of Steak Animation Facsimile Signature Color 20 Super Rare', 'GPK-NFT22-S-AFS20-A-COL'), + (0x89582d263e8b61245d79e9ed8dd5a4cd76e31ace, 'Milwaukee Brewers™ Drew Rasmussen P Base Motion Rainbow 377 Rare', 'MLB-S221-R-B377-RAI'), + (0x895866640b16688823174317d317109701943e87, 'New York Yankees® Aaron Judge Postseason Base White 73 Common', 'MLB-21POST-C-B73-S-WHI'), + (0x8962e30c61a9ae8fac1560f66b3d639e8ebbe5ca, 'Los Angeles Dodgers® Clayton Kershaw Base Blue 1074 Common', 'MLB-22PRI-C-B111-M-BLU'), + (0x89687d0d6d8f19bdd7958ae2b4af175aa8241396, 'January2022DallasPlatformWorkshop', 'PDI2022'), + (0x896a5528b1dfe0007335b9dd48949b0530e0d4ba, 'National League™ 2021 Batting Average Leaders Base White 59 Common', 'MLB-22S1-C-B59-S-WHI'), + (0x896da9f15f15ab9306546be82f3371e83ce08073, 'Prippe', 'PIE'), + (0x896f9e00e1137a83066802d5770da49d5a2676ae, 'National League™ Nolan Arenado Base Pink 1287 Uncommon', 'MLB-22PRI-U-B218-M-PNK'), + (0x89701ec1366bd8f477353ceba30ca5326a75054a, 'Boston Red Sox® Nathan Eovaldi Postseason Base Red 70 Rare', 'MLB-21POST-R-B70-M-RED'), + (0x897fccc8db3f16bfc03c9ca21d6fb13243ad81e6, 'Azazazazazazaz', 'AZA'), + (0x898a5c21312e93e26354d849fec72ec784abddc9, 'Seattle Mariners™ Mitch Haniger Base White 80 Common', 'MLB-22S1-C-B80-S-WHI'), + (0x899a004a039863f5dbb213ef087d525286b23c67, 'San Diego Padres™ Slam Diego™ Returns Base Vintage Stock 125 Super Rare', 'MLB-22S1-S-B124-M-VS'), + (0x899cbb38edd6fd7b6c37a752ee2f465e205dc079, 'BoredApeMinerNFTClub', 'BAMNFT'), + (0x899df9226fe14db6b4fdced07b63f268e3a84067, 'Pittsburgh Pirates® Jared Oliva OF Base Static Gold 471 Uncommon', 'MLB-S221-U-B471-GOL'), + (0x899f55125c76acbf4517252b0d250f28d8b01a6d, 'St. Louis Cardinals® Paul Goldschmidt Wild Card Contenders Blue 28 Common', 'MLB-21POST-C-W28-M-BLU'), + (0x89a4d5ade9b5c7d2aed43533d288d3e49c3181c9, 'Kansas City Royals® Brady Singer Base White 313 Common', 'MLB-22S1-C-B309-S-WHI'), + (0x89b46f56c7e58dd39c53bb0e9837864f996a7ab1, 'Atlanta Braves™ Freddie Freeman Division Series Bronze 49 Super Rare', 'MLB-21POST-S-D49-M-BRO'), + (0x89be7762b98399eb47f87055908d9d26276447c3, 'Baltimore Orioles® Trey Mancini Base Glitch 79 Uncommon', 'MLB-22S1-U-B79-M-GLI'), + (0x89c39ff4c1ea4e441eae540d24c929c9dd817481, 'Danny Latza S04 Top Players Team Color TK-31 Rare', 'BUND-22TK-R-TPTK-31-S-TMC'), + (0x89c4fbb4fd0a20c9348c53bbdaab92242fc5a4fb, 'Tampa Bay Rays™ Shane McClanahan Base Glitch 244 Uncommon', 'MLB-22S1-U-B241-M-GLI'), + (0x89f3b9871505b56c913dade66809048e6ade62d8, 'Bayer 04 Leverkusen Lukas Hradecky Top Saves Team Color TS-5 Epic', 'BUND-SC21-E-TSTS-5-TMC'), + (0x89f99e7b2e2ab50c15c3cabaf93d3b3208c41555, 'Baltimore Orioles® Renato Nunez 1B Base Motion Rainbow 409 Rare', 'MLB-S221-R-B409-RAI'), + (0x89fd96967f84874fed83c068c74ae67b5b1e85e6, 'Angels® Mike Trout Inception Base Black 44 Legendary', 'MLB-INC21-L-IB44-BLK'), + (0x8a030b5600e37ab705aea0a84953a960a05f21c4, 'Super Rare Comic 72 2-24 Bazooka Joe 2021 NFT', 'BZK-S-72C'), + (0x8a03bc8f99039bd3f4f4b4a5e660ac3917ffb0fc, 'Baltimore Orioles® Ryan Mountcastle Inception Base Blue 9 Uncommon', 'MLB-INC21-U-IB9-BLU'), + (0x8a07dfd40f8137f3336551ddfe7b1b24a29ba413, 'PrizeBondAvax', 'PBA'), + (0x8a0806475cb9916f18c2fdbcdda8a86fd3b7eccd, 'Bayer 04 Leverkusen Leon Bailey Top Players Gold 103 Super Rare', 'BUND-SC21-S-TP103-GLD'), + (0x8a1248a4b007b2b273da784e2578fb2bc50e49a1, 'Beeg Cock', '8===D'), + (0x8a15091234215c34c4dca131a1d6b2767e9e73ed, 'Miami Marlins® Corey Dickerson OF Base Motion Vintage Stock 541 Super Rare', 'MLB-S221-S-B541-VS'), + (0x8a2452b33cb7a7c31afa8447c1b5a00e477c35a2, 'settings', 'STG'), + (0x8a2b6957a9db2b0121904b9ed29c5c5ce97e2d41, 'Uncommon Comic 16 1-16 Bazooka Joe 2021 NFT', 'BZK-U-16C'), + (0x8a3b9102a34d72197ce81158bca50a932a8b1813, 'Detroit Tigers® Zack Short Base White 148 Common', 'MLB-22S1-C-B147-S-WHI'), + (0x8a3b94c94dc1f2dd2bdde497073f0a0db43e1172, 'Eintracht Frankfurt Martin Hinteregger Base Players Gold 42 Rare', 'BUND-SC21-R-BP42-GLD'), + (0x8a46d5989af9b1971310e6d6a74506472a540290, 'Philadelphia Phillies® Zack Wheeler Base Blue 1242 Common', 'MLB-22PRI-C-B184-M-BLU'), + (0x8a505a9ac86bc8409d74bd8446cdd3f68e6c719a, 'Chicago Cubs® Kyle Hendricks Inception Base Red 17 Rare', 'MLB-INC21-R-IB17-RED'), + (0x8a5697a60d95c621c98d81c50cd0b6f38cd5bf54, 'PrizeBondAvax', 'PBA'), + (0x8a718bf8e534b761acbb10c77d7da9a944f6e61a, 'Lukas Nmecha WOB Top Players Team Color TK-09 Rare', 'BUND-22TK-R-TPTK-09-S-TMC'), + (0x8a7283464f438c1da54e61d44f967856205a9f70, 'Other dimensions', 'O-Ds'), + (0x8a9a0da32eb37b2ac976495b0d05ef1d4a5a08f2, 'New York Yankees® HR Handoff Base Static White 646 Common', 'MLB-S221-C-B646-WHI'), + (0x8aa0790714a19c5be6417efeb6bf7bb744f80067, 'happy halloween', 'hph'), + (0x8acaf7293917b60b2724bb8410f25e645ec75bea, 'Arizona Diamondbacks® Christian Walker Base White 75 Common', 'MLB-22S1-C-B75-S-WHI'), + (0x8acb58d55c15fcfaa7587a7404bb930c4393fc7e, 'Pittsburgh Pirates® JT Brubaker P Base Motion Platinum 560 Epic', 'MLB-S221-E-B560-PLA'), + (0x8acd2ff1aee1a4bd55f1ac8172cacc059c63d0a1, 'Dejan Ljubicic KOE Base White S4-69 Common', 'BUND-21TS4-C-BS4-69-S-WHI'), + (0x8ad7f7cc81e48d82c9bfdd0edb296cf6493c4fc6, 'Miami Marlins® Jazz Chisholm SS Facsimile Signature Static Red 538 Epic', 'MLB-S221-E-FS538-RED'), + (0x8add67a9c70b411b5ad66dbaf3ed919e424cab28, 'Jonas Wind WOB Animation Black Refractor S4-52 Epic', 'BUND-21TS4-E-AS4-52-V-BLA'), + (0x8ae2d5500dbf3110b62bbc866f64df3a4bbc5c6a, 'St. Louis Cardinals® Lars Nootbaar Base Independence Day RWB 58 Rare', 'MLB-22S1-R-B58-M-RWB'), + (0x8ae66819e3f14c5a46aac57e15fc325469a5cf57, 'Super Rare Comic 89 2-41 Bazooka Joe 2021 NFT', 'BZK-S-89C'), + (0x8ae859bf9a8d747a0f6a334298e4df866e758f23, 'Tampa Bay Rays™ Mike Zunino Base Independence Day RWB 324 Rare', 'MLB-22S1-R-B320-M-RWB'), + (0x8ae9248c4e033e8e2b08c99d95ced9390263cb14, 'Pittsburgh Pirates® Oneil Cruz Facsimile Signature Slab Gold 3083 Epic', 'MLB-22PRI-E-FS36-M-GLD'), + (0x8aee038726715d78c49dfb2f12e76de70c2f48ec, 'Yield Yak AVAX AAVE AVAI Vault', 'yyAvaxAaveAVKT'), + (0x8af0b8252814390b5eb7352f41003bbf6d979d5c, 'RB Leipzig Nordi Mukiele Base Players Gold 13 Rare', 'BUND-SC21-R-BP13-GLD'), + (0x8b03b5f912eb91dd0fdeeed73e8df02ebda84b2c, 'Bayer 04 Leverkusen Edmond Tapsoba Base Players Gold 23 Rare', 'BUND-SC21-R-BP23-GLD'), + (0x8b04aee86e69285db1160fb17e86910d2ad75b5d, 'James Tavernier RFC Top Plays Purple SPTPL-03 Rare', 'SPFL-21SPSS-R-TPLSPTPL-03-V-PUR'), + (0x8b0d72003ac04498b7d16dc468451cc9c21749f9, 'DSC Arminia Bielefeld Fabian Klos Base Players Gold 83 Rare', 'BUND-SC21-R-BP83-GLD'), + (0x8b13d3c310cc7c87ceba828408200f95333c1c29, 'Topps Series Challenge Reward Pack 1 - 21-22 Bundesliga NFT Cards', 'BUND-21TSC-PACK1-R'), + (0x8b186fd31759654d5b5bbee11cb6770bb8c79c0a, 'New York Mets® Kevin Pillar Base Vintage Stock 170 Super Rare', 'MLB-22S1-S-B169-M-VS'), + (0x8b18fe37f3c664cd7d3a328f4c8b44af56becfd0, 'Colors', 'CLR'), + (0x8b23b8ef96655e947e786191148a6722061be2ea, 'Chicago Cubs® Nico Hoerner Rookie and Future Phenoms Facsimile Signature Red 9 Epic', 'MLB-INC21-E-RC9-RED'), + (0x8b2c96112154bed720493d793530a6d3e200f0f2, 'San Diego Padres™ Luis Campusano C Base Static Gold 381 Uncommon', 'MLB-S221-U-B381-GOL'), + (0x8b2fd8a22d8a6226fc80afc022348ae0562a846c, 'Eintracht Frankfurt André Silva Top Players Gold 115 Super Rare', 'BUND-SC21-S-TP115-GLD'), + (0x8b325f88ad977fa9d7b9492f0ac442bcc6e99bf7, 'Seattle Mariners™ Base Motion Platinum 599 Epic', 'MLB-S221-E-B599-PLA'), + (0x8b3a9ca9d88788ee0d817fdca570b31525bbfc67, 'Holograph Collection 2', 'HGLRH'), + (0x8b4a93fef8de429f1dc0f385d9610d9e0cde2cb5, 'Oakland Athletics™ Matt Olson 1987 35th Anniversary Chrome T87C-51 Super Rare', 'MLB-22S1-S-1987AC38-M-CHR'), + (0x8b4c78f3e9cf779b129e37622ccb9cfdf29b04fd, 'Philadelphia Phillies® Didi Gregorius SS Base Static White 561 Common', 'MLB-S221-C-B561-WHI'), + (0x8b5bf0836f89d57ad3d6ffecda64267fe9ec7ef7, '$butterflies', 'BUTTERFLIES'), + (0x8b5d69a82d4be1d0cdeb7883b52026724fea39a9, 'Super Rare Comic 40 1-40 Bazooka Joe 2021 NFT', 'BZK-S-40C'), + (0x8b6b27445c0611baa338debe2149b8284673459d, 'Lazy Alpha', 'Laz'), + (0x8b6d96f3a931de30bc109012726411ccf1ff0342, 'Minnesota Twins® Jorge Polanco SS Base Static Gold 598 Uncommon', 'MLB-S221-U-B598-GOL'), + (0x8b6fcaad4ed1af311aadf87763fd619e53f6f6e9, 'Rare Comic 50 2-2 Bazooka Joe 2021 NFT', 'BZK-R-50C'), + (0x8b804231b5385618e80d4cc09519123e05d2693a, 'American League™ J.D. Martinez Base Pink 1277 Uncommon', 'MLB-22PRI-U-B217-M-PNK'), + (0x8b891e9ff9580826bc1f8db3f41f1411b04dec47, 'Common Comic 2 1-2 Bazooka Joe 2021 NFT', 'BZK-C-2C'), + (0x8b8d0bed22a245a609e4367ec6a108caf050ca65, 'Angels® Jared Walsh 1B All-Star Motion Purple 1 Epic', 'MLB-S221-E-AS1-PUR'), + (0x8b8d6e668cf3abf4accd44c59f851ed78dd7e66a, 'PenNPencil', 'PNP'), + (0x8b965074295de59d02ab9f6bd958a4d5a0e7f7da, 'Christoph Baumgartner TSG Animation Gold Refractor S4-55 Legendary', 'BUND-21TS4-L-AS4-55-V-GOL'), + (0x8b9b43452211cec804f647aaceb5946f249fa9b2, 'Calvin Ramsay ABE Young Stars Red SPYS-04 Epic', 'SPFL-21SPSS-E-YSSPYS-04-A-RED'), + (0x8b9bbb7ab01fd0f88f942ef5e27d35771ce59760, 'Christian Günter SCF Top Players Black TK-19 Common', 'BUND-22TK-C-TPTK-19-S-BLA'), + (0x8ba209e7491ec3a309cfbdb9bc73f9273b9e0373, 'FC Augsburg Rani Khedira Base Players Team Color 75 Uncommon', 'BUND-SC21-U-BP75-TMC'), + (0x8bb5ed25d522aaa829449a37f99584d60fc2ec70, 'MeimeiClub', 'MMC'), + (0x8bb9b852dab098170d2114d9855452406dc228d9, 'Atlanta Braves™ Joc Pederson Postseason Base White 61 Common', 'MLB-21POST-C-B61-S-WHI'), + (0x8bbae3cf4e1d664490d4fb2e2fa2ec853a2236e2, 'Houston Astros® Luis Garcia P Base Static White 547 Common', 'MLB-S221-C-B547-WHI'), + (0x8bbb0752c25cff012c57124d2be213245aed5923, 'PDIWebServicesandInnovation', 'PDI2022'), + (0x8bbceef605e9ac5b6ccb1e6f0b9323110e953a03, 'Houston Astros® Cristian Javier Rookie and Future Phenoms Facsimile Signature White 28 Rare', 'MLB-INC21-R-RC28-WHT'), + (0x8bbd0091de0f7cce44d58d3501f81dbb2c7e5f94, 'Tampa Bay Rays™ Shane McClanahan P Base Motion Vintage Stock 408 Super Rare', 'MLB-S221-S-B408-VS'), + (0x8bc867d5d370d56e371487441bbeb49303be9c26, 'Tampa Bay Rays™ Base Vintage Stock 274 Super Rare', 'MLB-22S1-S-B271-M-VS'), + (0x8bd33178b7baea3d0138082baf4085f5bde5a43f, 'Los Angeles Dodgers® Julio Urias Postseason Base Navy 40 Uncommon', 'MLB-21POST-U-B40-M-NVY'), + (0x8bd8dc41a988ae84ea4490f9be03b23aef08fc88, 'Seattle Mariners™ J.P. Crawford SS Base Motion Vintage Stock 506 Super Rare', 'MLB-S221-S-B506-VS'), + (0x8bd9e610113aad135e022880fd335cc1fd94aba0, 'Super Rare Comic 37 1-37 Bazooka Joe 2021 NFT', 'BZK-S-37C'), + (0x8bda50ac33bb59ef51b13e37a00e390bd3480379, 'FC Bayern Munich Serge Gnabry Base Players Team Color 5 Uncommon', 'BUND-SC21-U-BP5-TMC'), + (0x8bdbcb96ee2b09330f7681f560b65f6bb4eee52c, 'Cleveland Indians® Jose Ramirez 3B Short Print Motion White 360 Super Rare', 'MLB-S221-S-SP360-WHI'), + (0x8bdc12e8ab6e2ba80fe8440d5251dbe0fe5b2c89, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Pack Slasher', 'GDZ-GVG22-PACK-R3'), + (0x8bec2f4802fbc8e1c122c7695d33adf10573c615, 'Shit My Therapist Says', 'SMTS'), + (0x8bfafa45817439a044a2ae4afb242eedbfd091ee, 'Tampa Bay Rays™ Wander Franco Fresh Faces White 2201 Rare', 'MLB-22PRI-R-FF8-M-WHI'), + (0x8bfb6bfa87a49425ac28793defffa1a24d8ed250, 'Chicago Cubs® Kyle Hendricks P Base Motion Rainbow 503 Rare', 'MLB-S221-R-B503-RAI'), + (0x8c0140c723b81e795cb09959ef78a16907efb0d2, 'Anton Stach M05 Top Players Black TK-23 Common', 'BUND-22TK-C-TPTK-23-S-BLA'), + (0x8c084c300926d2354d300948f591e59e7e8bcbac, 'Kansas City Royals® Hanser Alberto 2B Base Static Gold 414 Uncommon', 'MLB-S221-U-B414-GOL'), + (0x8c0995ce78a24af2775358cff1ac3a49379e167a, '2021 Topps NOW World Series Game 6 Pack', 'MLB-21NOW-PACK-TN-GM6'), + (0x8c0b4aa3f753f2175775fefbbae4eb63efd6b73c, 'Rare Comic 100 2-52 Bazooka Joe 2021 NFT', 'BZK-R-100C'), + (0x8c0c28f13641c5209205db6ca7f6bee8b3463110, 'Bored Ape Avalanche Club', 'BoredApeAval'), + (0x8c0fb931c9ba94d50d115ece1dbec3d3f003b2d1, 'Los Angeles Dodgers® Walker Buehler Inception Base Blue 50 Uncommon', 'MLB-INC21-U-IB50-BLU'), + (0x8c16a9c87d073a10bd8cb32f79977ee2f6e459bd, 'Flowers', 'FLR'), + (0x8c1bd0576540574751e7a62e0844559989544763, 'Milwaukee Brewers™ Corbin Burnes Base White 240 Common', 'MLB-22S1-C-B237-S-WHI'), + (0x8c1f98c59d0b776e00069f10ceaccd7d0042aaa9, 'Visions', 'VODS'), + (0x8c224cc1f53d018d85348fb643a3df724dd9c06e, 'Fiddling with AI', 'FWAI'), + (0x8c253ce7f99ff84c14f63a1306e43c42215a30e2, 'Arizona Diamondbacks® Alex Young P Base Static Gold 532 Uncommon', 'MLB-S221-U-B532-GOL'), + (0x8c2ac6eaada51c1f6e56ec768425190bb09783e1, 'CollectorClub.io', 'CLUB'), + (0x8c30c6f9b00fa09b3c7817113b424a1f650a99b8, 'New York Mets® Francisco Lindor SS 1986 Anniversary Static Team Colors 86B-12 Super Rare', 'MLB-S221-S-1986A86B-12-TMC'), + (0x8c347b83ff2bfa755fb6df8fb70b29f5c3a8a29b, 'Texas Rangers® Jose Leclerc P Base Static White 396 Common', 'MLB-S221-C-B396-WHI'), + (0x8c37accda00822514bf8ef69d652a7a5d4cafa1d, 'Deez Nutz', 'DEEZNUTZ'), + (0x8c4c405edd2a328c6620c870b6f6c8ad9ba9e774, 'Tampa Bay Rays™ Joey Wendle Regular Season Division Winners RWB 5 Rare', 'MLB-21POST-R-R5-M-RWB'), + (0x8c5e8e242d6b9267d884645ab53e0b4eb827fadc, 'Uncommon Comic 37 1-37 Bazooka Joe 2021 NFT', 'BZK-U-37C'), + (0x8c740e6e410e205441f8a13f7df3950d0044a209, 'Fish Finance NFT', 'FiFiNFT'), + (0x8c747eeeaab661edd3b13fa266510bd3fc8b2f76, 'Detroit Tigers® Bryan Garcia Silver Signings Facsimile Signature Silver 13 Super Rare', 'MLB-INC21-S-SS13-SLV'), + (0x8c7e862b5336b86a55b2a41f857c7b3739039f44, 'Toronto Blue Jays® George Springer OF 1986 Anniversary Static Team Colors 86B-41 Super Rare', 'MLB-S221-S-1986A86B-41-TMC'), + (0x8c7fc4ce9f45ec2e17d411b5b01d28c380dcc32c, 'Minnesota Twins® Brent Rooker OF Base Motion Rainbow 480 Rare', 'MLB-S221-R-B480-RAI'), + (0x8c875826838103c7ae6a72996b0a71c1bb3e6443, 'On Avalanche', 'On'), + (0x8c915290d1931ccd0ed77650c51fa75780543af5, 'Djibril Sow SGE Base Red S3-34 Uncommon', 'BUND-21TS3-U-BS3-34-S-RED'), + (0x8c964b9e3485d939cbb924b15f2ed86203ae66fd, 'New York Yankees® HR Handoff Base Motion Rainbow 646 Rare', 'MLB-S221-R-B646-RAI'), + (0x8c98a425ee282fb657d19bcd18ed1690fdd4a96c, 'Boston Red Sox® Rafael Devers Postseason Base Red 65 Rare', 'MLB-21POST-R-B65-M-RED'), + (0x8ca819e41faa4c68d61f42201df249bb4b4b6dfe, 'Wagmers: Genesis', 'WGMRG'), + (0x8ca96573614cc131307bc13bfe49271f8315be83, 'Houston Astros® Ronnie Dawson Base Blue 1228 Common', 'MLB-22PRI-C-B137-M-BLU'), + (0x8cbdf001e4eaea708690a1c556ad00242e57b41f, 'Colorado Rockies™ Kyle Freeland P Base Motion Platinum 615 Epic', 'MLB-S221-E-B615-PLA'), + (0x8cbe4a0d0f7059eaa4bca776b112c5179d1b1511, 'Toronto Blue Jays® Vladimir Guerrero Jr. Base Glitch 300 Uncommon', 'MLB-22S1-U-B296-M-GLI'), + (0x8cc57d782fc63783d513281907a18cc7a8f51c19, 'APPLE', 'APPLE'), + (0x8ccfffcdbb45f9b5853065ba45e0095547cf203c, 'Atlanta Braves™ Mark Melancon P Base Motion Platinum 574 Epic', 'MLB-S221-E-B574-PLA'), + (0x8ce0270978ecd616ac3ebf7931eb6d09c27788bd, 'Toronto Blue Jays® Bo Bichette American League Base Golden 9 Super Rare', 'MLB-22ASG-S-B9-M-GLD'), + (0x8ce0c506b03fe659a1913bd85b7e0f00a91ce064, 'Legendary Baseball Card 9 Joe Batter Bazooka Joe 2021 NFT', 'BZK-L-9B'), + (0x8ce50ff29ffd1a48b1e4d398fc6fe9501d09acb8, 'Benjamin Siegrist DDU Top Saves Purple SPTS-09 Rare', 'SPFL-21SPSS-R-TSSPTS-09-V-PUR'), + (0x8cf1e498f23fec83f60314c09efa7ae2b9d85d6d, 'OmniOkayBears', 'OOB'), + (0x8cf67ddb7d07d4b90a292210a0c8215343e75aac, 'Cincinnati Reds® TJ Friedl Base Blue 1316 Common', 'MLB-22PRI-C-B147-M-BLU'), + (0x8cf9880c767db653222a44623dc7005dea1da7c9, 'Philadelphia Phillies® Alec Bohm World Series Newspaper BW 1142 Common', 'MLB-22TNP-C-WSN7-M-BW'), + (0x8cfaed313a93e927c79b86ef251488c9f025f0da, 'GTBCars', 'GTBC'), + (0x8cfc5c1e2e8d4e8de3ce130c02cfa600e3db1460, 'Atlanta Braves™ Ozzie Albies Inception Base Red 5 Rare', 'MLB-INC21-R-IB5-RED'), + (0x8d056f0b8eba21db91ae3a87374710750ee59c43, 'New York Yankees® Mike Tauchman OF Base Motion Vintage Stock 449 Super Rare', 'MLB-S221-S-B449-VS'), + (0x8d0b2c44a0634ba1c387996c0ea4e0c3c85666bf, 'The Dozen Game', 'DOZEN'), + (0x8d171f41ea78d5d8a3ffba2b7380352ab1bc55ec, 'Atlanta Braves™ Base White 164 Common', 'MLB-22S1-C-B163-S-WHI'), + (0x8d17f8ca6efe4c85981a4c73c5927beee2ad1168, 'Peaches N Strawbs', 'PNS'), + (0x8d1bf8c782bc22907c338cb6e5154711a005a60f, 'Toronto Blue Jays® Vladimir Guerrero Jr. Rookie and Future Phenoms Facsimile Signature Red 80 Epic', 'MLB-INC21-E-RC80-RED'), + (0x8d1c8b1196ee332262fa23b38929244a12b35e36, '2021 Godzilla Rage Across Time Collection Event Exclusive (Friday) Pack', 'GDZ-PACK-CCE-FRI'), + (0x8d21c6454a2caa9849cebc108343353057f08d71, 'Milwaukee Brewers™ Christian Yelich Base Vintage Stock 288 Super Rare', 'MLB-22S1-S-B285-M-VS'), + (0x8d237cda5263bbc6eb049e5c1e5c0d126dd27f05, 'DSC Arminia Bielefeld Cedric Brunner Base Players Gold 85 Rare', 'BUND-SC21-R-BP85-GLD'), + (0x8d248fff30d929a779fec415a258831d1f537e2b, 'Dark Space', 'DARK'), + (0x8d24fa454a814e222d0d03e63be72b8ef1b42a10, 'FaceMash', 'FMSH'), + (0x8d2d2b8795c8facc89970fa7f85155978e8428de, 'Godzilla RAT Page 3 Comic Page Color 3 Super Rare', 'GDZ-RAT21-S-CP3-A-COL'), + (0x8d311c12c5779d9fadf2d28ec27d2877fe249ef1, 'Detroit Tigers® Michael Fulmer P Base Motion Vintage Stock 373 Super Rare', 'MLB-S221-S-B373-VS'), + (0x8d32ffbb856a2bf195b6db347e0cfd8eeb8dcd9f, 'Savvy Spot', 'svSpot'), + (0x8d335945316612301f085b5a8c3cdc4118a5c3bb, 'Bayer 04 Leverkusen Kerem Demirbay Top Players Gold 104 Super Rare', 'BUND-SC21-S-TP104-GLD'), + (0x8d4c39428ad90a37bed4c0380f79f371d5f2b394, 'Toronto Blue Jays® Nate Pearson Facsimile Signature Letter Booklet Team Color 18 Legendary', 'MLB-INC21-L-LB18-TMC'), + (0x8d4d02cf08c03770ad6093da0b02568931b70d47, 'Borussia Dortmund Jadon Sancho Top Players Gold 95 Super Rare', 'BUND-SC21-S-TP95-GLD'), + (0x8d522c8973389f41f28260aa31c61ab503352326, 'St. Louis Cardinals® Base Independence Day RWB 247 Rare', 'MLB-22S1-R-B244-M-RWB'), + (0x8d573dd60af319361ad25e00298ada8afc8a8643, 'MOMENTS', 'AVAX'), + (0x8d5790a3019d7c69527c0a1addf521981aea169a, 'CannaFox.io', 'aCFOX'), + (0x8d5dbe45dd2a24166baefda7a5d5d039575483e2, 'Cincinnati Reds® Sonny Gray Base Independence Day RWB 45 Rare', 'MLB-22S1-R-B45-M-RWB'), + (0x8d678718d9d549ea2f5145837c4de16f074786db, 'Aptos Toad Overload', 'ATO'), + (0x8d6ae30b7c5a5b0b8726b7db1baf4f58ad385034, 'St. Louis Cardinals® Andrew Miller P Base Motion Rainbow 437 Rare', 'MLB-S221-R-B437-RAI'), + (0x8d7293e639b8bcb570b24cfacf750b435b4dbb84, 'Milwaukee Brewers™ Avisail Garcia Postseason Base White 20 Common', 'MLB-21POST-C-B20-S-WHI'), + (0x8d7daa029e564d19e74a42aabb53d83f19aea419, 'Avalanche House Collection', 'AVAXDE'), + (0x8d8e0a92a6d3ce6b7938c14691d1f639c5767950, 'YFIAG Marketplace', 'YFIAGMarket'), + (0x8d94b95fae10bbbafb71a83ac70ec6bb91ae1978, 'Angels® Mike Trout American League Base Blue 14 Rare', 'MLB-22ASG-R-B14-M-BLU'), + (0x8d94e9f844cfbf097c05c6e7d3e0e601398e980e, 'New York Mets® Andres Gimenez Rookie and Future Phenoms Facsimile Signature Black 53 Legendary', 'MLB-INC21-L-RC53-BLK'), + (0x8d951f35b556d0900c38edc64d479fdeb289bed2, 'NFL', 'NFL'), + (0x8d9c13554b669e8296d8dd669deff61f2da533c6, 'Cleveland Guardians™ Emmanuel Clase Base Vintage Stock 190 Super Rare', 'MLB-22S1-S-B189-M-VS'), + (0x8da0f0836fbcdea1f3dd4e290ef464d668365b1a, '1. FC Union Berlin FCU Insert Pennant Team Color S4P-13 Uncommon', 'BUND-21TS4-U-IS4P-13-S-TMC'), + (0x8da36bbe615dced0c37fd1b13b5d2694dbd2c310, 'NFT Moon Metaverse (ID Card)', 'MoonCard'), + (0x8da40a95e34ba0881a2c2d9423b0393241dcaeac, 'Borna Sosa VFB Top Players Facsimile Signature Team Color TK-18 Epic', 'BUND-22TK-E-TPTK-18-S-TMC'), + (0x8da72f1d5fda8425e6c0c3bddd5f28e133facf14, 'Houston Astros® Michael Brantley OF Base Motion Platinum 434 Epic', 'MLB-S221-E-B434-PLA'), + (0x8da828cdad820297e1ab21f026a8673fe67ebf92, 'Rare Comic 63 2-15 Bazooka Joe 2021 NFT', 'BZK-R-63C'), + (0x8db0773eac8d66687a88aa5bec0122cd35d27ef6, 'Chicago Cubs® Kris Bryant 3B 70th Anniversary Facsimile Signature Motion Platinum 660 Legendary', 'MLB-S221-L-70AFS660-PLA'), + (0x8db44c8823f4d7eccccaaefc130d9444ec61232d, 'Positive Vibes', 'CCPV'), + (0x8db59487ade3828404e414b6169e0a0a6c8b55f7, 'New York Yankees® Gio Urshela Wild Card Contenders Blue 12 Common', 'MLB-21POST-C-W12-M-BLU'), + (0x8db7981175a8c1775d9cc2904e69e3c533d06ba8, 'Colorado Rockies™ Antonio Senzatela P Base Motion Rainbow 420 Rare', 'MLB-S221-R-B420-RAI'), + (0x8dbbd7d3c25c750e5fc4256085de63c4252d810a, 'Baltimore Orioles® Hanser Alberto Inception Base Blue 7 Uncommon', 'MLB-INC21-U-IB7-BLU'), + (0x8dbeded51e9fe1a4374f316a3cd20882808756e6, 'DSC Arminia Bielefeld Stefan Ortega Moreno Top Players Gold 139 Super Rare', 'BUND-SC21-S-TP139-GLD'), + (0x8dc0ab56891f45e6f355e935bfbad812b3da81a3, 'NFT Garden', 'NFTG'), + (0x8dc3ece88cf9303a5c64e80374b7c6e82f70e121, 'Little Monster', 'LTMS'), + (0x8dd8dd1593438c96fb78895d2eaa967d1f7eb74d, 'Seattle Mariners™ Jake Fraley OF Base Static Gold 402 Uncommon', 'MLB-S221-U-B402-GOL'), + (0x8dd922c4fa9e975917bd47ee3219534e3b015add, 'Humanoidz', 'HMDZ'), + (0x8dddb7ae758d72ad89a54b72abf4f532ffc8031f, 'Jeremy Dudziak SGF Animation Black Refractor S4-46 Epic', 'BUND-21TS4-E-AS4-46-V-BLA'), + (0x8dde6b8c18b9cb419244e58e022596e490070e00, 'Milwaukee Brewers™ Freddy Peralta Base Independence Day RWB 13 Rare', 'MLB-22S1-R-B13-M-RWB'), + (0x8de443f49d2431fb05ce8fb62105cd11ef5ca911, 'Rare Comic 39 1-39 Bazooka Joe 2021 NFT', 'BZK-R-39C'), + (0x8deabbefb2b44ef9ff66db7dd24838db378d13a9, 'Philadelphia Phillies® Mickey Moniak OF Base Motion Rainbow 457 Rare', 'MLB-S221-R-B457-RAI'), + (0x8def00aa54de0dcb43c9a15ce60f4865189ba3c3, 'Detroit Tigers® Akil Baddoo 1987 35th Anniversary Wood T87-92 Common', 'MLB-22S1-C-1987A67-M-WD'), + (0x8def7e4478d9f44a4bb436519a29be55cb4669f6, 'Super Rare Comic 71 2-23 Bazooka Joe 2021 NFT', 'BZK-S-71C'), + (0x8df1f7e9b79baf03844b6042f305e1898d978297, 'Riceman', 'RICE'), + (0x8dfa3a7d4951b4bfbf247c237f7b11c9a0462df9, 'St. Louis Cardinals® Nolan Arenado Second Place Beach 11 Epic', 'MLB-22ASG-E-SEC11-M-BCH'), + (0x8e03867912c5782d31f9b82913939380a6b5b3a3, 'Hertha Berlin Sami Khedira Base Players White 50 Common', 'BUND-SC21-C-BP50-WHT'), + (0x8e090b5a58f753dd31bc344e988df4392f64a4f1, 'Hertha Berlin Matheus Cunha Top Players Gold 118 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP118-AFS-GLD'), + (0x8e12393106657982917d3eb61b634fdb276b4eb7, 'Atlanta Braves™ Cole Hamels P Base Motion Vintage Stock 495 Super Rare', 'MLB-S221-S-B495-VS'), + (0x8e2239eb495ca5f71fde0014a5ef9d2a0265ed9a, 'Borussia Dortmund Jadon Sancho Top Players Gold 95 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP95-AFS-GLD'), + (0x8e28a240ed92984801dc0ae052e0178916920a49, 'Philadelphia Phillies® Bryce Harper 2022 NLCS MVP Challenge Reward Blue 2 Legendary', 'MLB-22CSCR-L-22NLCSR2-M-BLU'), + (0x8e28cfc042c0bf310bab38902f976e1066f79630, 'Arizona Diamondbacks® Josh Reddick Base Vintage Stock 318 Super Rare', 'MLB-22S1-S-B314-M-VS'), + (0x8e2a609d9d27c5c193a0d80bd301fcdd7dfcd279, 'Loopy Animals', 'LPAN'), + (0x8e2a8fe31820497231e0e38b286009d26f994006, 'New York Yankees® Rougned Odor Base White 5 Common', 'MLB-22S1-C-B5-S-WHI'), + (0x8e2fc50d2b1fa349c76bbed17213555e2090b4ca, 'Houston Astros® Jose Altuve Inception Base Red 36 Rare', 'MLB-INC21-R-IB36-RED'), + (0x8e3127b5e7e05838ce6c2901b037bccdef3345c9, 'Tampa Bay Rays™ Chris Archer Base Glitch 254 Uncommon', 'MLB-22S1-U-B251-M-GLI'), + (0x8e3d2ad79c147b71211946a7ad6ffb4d3a8a3154, 'Omni Charlies', 'OC'), + (0x8e3e91f8f214d49cbd6ea54b864ea626403b4dff, 'Asia', 'gLW'), + (0x8e401ee449b5996711b09dbef035e2591d30b8c7, 'Colorado Rockies™ Ryan McMahon Base Pink 1070 Uncommon', 'MLB-22PRI-U-B113-M-PNK'), + (0x8e432b798eccbae6763d61bd8b4872bbbde405e3, 'Praise Be Ed', 'PBE'), + (0x8e498df5f7ca4ac5a14fd802b9a2eb17d56d4f4d, 'Cameron Devlin HEA Base Aqua SP-14 Uncommon', 'SPFL-21SPSS-U-BSP-14-A-AQU'), + (0x8e4a5ec37e5ee6fc08783909ffbbcae254a1994d, 'NFT Garden', 'NFTG'), + (0x8e4ae4ee1fc4e4466ac00c08682c3733833d6bc5, 'Chicago Cubs® Willson Contreras C 1986 Anniversary Static Team Colors 86B-42 Super Rare', 'MLB-S221-S-1986A86B-42-TMC'), + (0x8e586ea26f2ba5c1963173058b3d540b29f38e62, 'Hoodels', 'Hoodels'), + (0x8e63de4d06d6b23c6e51d2cedb67b6ab24a20de7, 'Houston Astros® Jeremy Peña 2022 ALCS MVP Challenge Reward Blue 1 Legendary', 'MLB-22CSCR-L-22ALCSR1-M-BLU'), + (0x8e6488805b9454aca8f173eab43b82f2348facd6, 'Houston Astros® José Urquidy Topps NOW White 1017 Rare', 'MLB-21NOW-R-TN1017-WHI'), + (0x8e6f53d67e58d453def134c43105a0f2bdf9216c, 'Mutant Ape Yacht Club', 'mayc'), + (0x8e6f5600d07e06ce3fac5bcb19662edce945e887, 'Seattle Mariners™ Kyle Lewis Base White 206 Common', 'MLB-22S1-C-B205-S-WHI'), + (0x8e720729ffc5703c57b32118de76210b848383ab, 'The Gallery', 'Gallery'), + (0x8e785072e3bae4913247249a3c5966df10e6849d, 'MrB', 'MrB'), + (0x8e7eb7cc21e63c99fec3e2b830313ff477d39dd4, 'New York Yankees® Gerrit Cole Base Vintage Stock 35 Super Rare', 'MLB-22S1-S-B35-M-VS'), + (0x8e855f99554bd77eb1b8850b291d60b9e5498521, 'Toronto Blue Jays® Alejandro Kirk C Base Motion Rainbow 551 Rare', 'MLB-S221-R-B551-RAI'), + (0x8e94010545748adfe1e915e6481447e685ce9c9c, 'San Francisco Giants® Brandon Crawford Base White 117 Common', 'MLB-22S1-C-B116-S-WHI'), + (0x8ea11c2343f9efa19582181eba7513517d4ea250, 'Philadelphia Phillies® Base Static Gold 428 Uncommon', 'MLB-S221-U-B428-GOL'), + (0x8ea5f927e4136fe219fcac2eb3cebe95b465664b, 'Philadelphia Phillies® City of Walk-Off Love Base Vintage Stock 321 Super Rare', 'MLB-22S1-S-B317-M-VS'), + (0x8eb34a07a7bc6e299a5a21901e85f5de566d5679, 'Arizona Diamondbacks® Christian Walker 1B Base Motion Vintage Stock 386 Super Rare', 'MLB-S221-S-B386-VS'), + (0x8eb8dc1c44a02e5219c01d6ac3756c2ac78ab2e0, 'VALIFI LYK', 'VLYK'), + (0x8eba7286c5f4a21f97d2536fabe4bbf8b119a596, 'Pittsburgh Pirates® Jacob Stallings Base Glitch 286 Uncommon', 'MLB-22S1-U-B283-M-GLI'), + (0x8ebac723d403dd562d8bed80cfaac7ffbfa07fd8, 'Boston Red Sox® Kyle Schwarber Base Pink 1184 Uncommon', 'MLB-22PRI-U-B18-M-PNK'), + (0x8ec386306eb1cfa0e0c4b8042165d2c1aa7bc965, 'Oakland Athletics™ Matt Chapman Inception Base Red 70 Rare', 'MLB-INC21-R-IB70-RED'), + (0x8ec69ad4fbc6c21af716fd47a8afbd30393fac6f, 'Washington Nationals® Mason Thompson Base Pink 1226 Uncommon', 'MLB-22PRI-U-B182-M-PNK'), + (0x8eca07dfc91bc1875d8c2e7f20053f1464eb7530, 'RB Leipzig Angeliño Base Players Team Color 14 Static Facsimile Signature Rare', 'BUND-SC21-R-BP14-SFS-TMC'), + (0x8ecc83328bcdbad7bb5b4b8394f7d23ecb202b80, 'Kaiju Thunderstorm Event Exclusive Comic Cover Cyan 1 Epic', 'GDZ-RAT21-E-CCE1-A-CYN'), + (0x8ece99f102836f0a8168ef7df8da5c679c58ec4f, 'FC Union Berlin Christian Gentner Base Players Gold 55 Rare', 'BUND-SC21-R-BP55-GLD'), + (0x8ed2477ec08cd53b8a3c0e8abf6ef65ad2b5494e, 'don Donut', 'donDonut'), + (0x8ed79778271efa4a5657ad829ecb814a640e3562, 'New York Yankees® Gerrit Cole Inception Base White 68 Common', 'MLB-INC21-C-IB68-WHT'), + (0x8edf0633f0a0fb7bbce2d6ac91ac48794215a6a7, 'Angels® Jo Adell Base Pink 1175 Uncommon', 'MLB-22PRI-U-B69-M-PNK'), + (0x8ee0655c1aff6bae826709327d2f48e0b418be3e, 'Pittsburgh Pirates® Kevin Kramer 2B Base Static Gold 344 Uncommon', 'MLB-S221-U-B344-GOL'), + (0x8ee32eba06a66f1352eb71b85a4ec9dfc98a04fe, 'AI CENTAURIANS', 'AICENT'), + (0x8eeaa3068e2889325c86b1be19e6389ea4dfc82d, 'Oakland Athletics™ Elvis Andrus SS Base Motion Vintage Stock 651 Super Rare', 'MLB-S221-S-B651-VS'), + (0x8eec9b1d08715cf915ca36862d5fbfab2926b08d, 'Heart Maniax NFT', 'HMNFT'), + (0x8eedf3a242a480ecc533a6751c82a82eb0e283b1, 'Cogito Mortis', 'MORTIS'), + (0x8ef602e0c9e3a3a5b48e00e0f114e9166c91426e, 'Firat Neziroglu', 'FN'), + (0x8f00eb4bfcd88fd251862a106e55ccd7dcd9e851, 'Ouroboros Club', 'OUROBOROS-CLUB'), + (0x8f077d1434e1a73e84a89760529c5a76ac199abd, 'Punkz', 'Punkz'), + (0x8f087ca42780768ec7328cb4499a32f0f68ad7d4, 'Los Angeles Dodgers® Clayton Kershaw Base Vintage Stock 41 Super Rare', 'MLB-22S1-S-B41-M-VS'), + (0x8f0b9f27ac7323e26ebb91971a22d10507390ab8, 'Borussia Dortmund Marco Reus Top Players Gold 96 Super Rare', 'BUND-SC21-S-TP96-GLD'), + (0x8f11dbc78a07e809eaff5933ebabb27822c9be58, 'Tampa Bay Rays™ Austin Meadows Short Print White 152 Rare', 'MLB-22S1-R-SP31-M-WHI'), + (0x8f128d3bd88ad39380c29fc5e548aae823c7edc9, 'Doogxx', 'Doog'), + (0x8f13cc7e26fd7659c5ab1bb6befa9556c7d850d6, 'Kansas City Royals® Jorge Soler Inception Base White 40 Common', 'MLB-INC21-C-IB40-WHT'), + (0x8f1737e3c334361a5f2259b07a3c90d9c510dd23, 'Ryan Sweeney DUD Top Plays Purple SPTPL-12 Rare', 'SPFL-21SPSS-R-TPLSPTPL-12-V-PUR'), + (0x8f19e53634e77446882cb7e928625f5e17c479d8, 'Common Comic 49 2-1 Bazooka Joe 2021 NFT', 'BZK-C-49C'), + (0x8f1e73aa735a33e3e01573665dc7ab66ddfba4b2, 'ABSTRACT', 'ABS'), + (0x8f200c67f2f788170d5e48b634360f1b969f738e, 'San Francisco Giants® Mike Yastrzemski OF 1986 Anniversary Static Team Colors 86B-35 Super Rare', 'MLB-S221-S-1986A86B-35-TMC'), + (0x8f21789d94dd4ceddf810738042cbc15646f7050, 'after the whiskey''s settled.', 'POST-WHISKEY'), + (0x8f29e845cf312627fbee7e4e1b0cc038ff19dea2, 'Alter Ego Hunters', 'Gen2'), + (0x8f2f667bf1e3411fc2f6ef8f12f6ad1e939a13ca, 'Signata Right', 'SIGNATARIGHT'), + (0x8f36ff50a331e638aa510f092b5448a03d432611, 'Autonolas Agent Developer Academy Graduates', 'AUTONOLAS-ACADEMY-GRADS'), + (0x8f392ccba6c10e39ed35860c99c6aa574bd93696, 'San Francisco Giants® Anthony DeSclafani P Base Static White 614 Common', 'MLB-S221-C-B614-WHI'), + (0x8f3c69d0f5f2cebdd46484308fd9dfe7964faf5f, 'André Hahn FCA Base Red S4-49 Uncommon', 'BUND-21TS4-U-BS4-49-S-RED'), + (0x8f3fa0793c7a5b8984090dd9e75e47ffcd078792, 'Seattle Mariners™ Shed Long 2B/OF Base Static Gold 345 Uncommon', 'MLB-S221-U-B345-GOL'), + (0x8f439432192f7547a675cf3f61394638e3f5b6a3, 'Boston Red Sox® Xander Bogaerts SS Short Print Motion White 476 Super Rare', 'MLB-S221-S-SP476-WHI'), + (0x8f43b0f10a47e219678dbd6f9879168e38933786, 'Lobster Party', 'LOBSTA'), + (0x8f45868fcd326c79d72d23de0aa09179cc1e0139, 'Chicago White Sox® Tim Anderson Inception Base White 29 Common', 'MLB-INC21-C-IB29-WHT'), + (0x8f5b770ccfa7429e66e0af79e57f0aa4d5673a3b, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Flavor Eternal', 'GDZ-GVG22-PACK-R11'), + (0x8f5bb16e4d6370dfdb1463b120b6735ef996dae4, 'Boston Red Sox® Matt Barnes Postseason Base Navy 72 Uncommon', 'MLB-21POST-U-B72-M-NVY'), + (0x8f5febc36bb97ba6af1d5048a9b2d49d0e7cb835, 'FC Union Berlin Robin Knoche Base Players White 52 Common', 'BUND-SC21-C-BP52-WHT'), + (0x8f78bdaaf02edf2a6fec341b93845badca6bdf12, 'Tampa Bay Rays™ Austin Meadows Regular Season Division Winners RWB 3 Rare', 'MLB-21POST-R-R3-M-RWB'), + (0x8f8121fad65f7859ff5abea83de12d3457ff650f, 'Deities', 'DTS'), + (0x8f83e84198e1a94c6b64849323746b42bafa43e5, 'New York Yankees® Gerrit Cole Postseason Base White 79 Common', 'MLB-21POST-C-B79-S-WHI'), + (0x8f86e112239326031b24ea006c02cdf773b1bf52, 'Radiosphere Man', 'RadioMan'), + (0x8f8f18dedab6a86b6d8dd57fc899dddfd6a92b16, 'Avalanche Taipei study group', 'tpe'), + (0x8f95191cff4ba565f8d5036930ba2dcd6dadf1ce, 'Cincinnati Reds® Shogo Akiyama OF Base Motion Vintage Stock 647 Super Rare', 'MLB-S221-S-B647-VS'), + (0x8f9972448d416e9caf9ddec313d666aabda1b616, 'Houston Astros® Zack Greinke Base White 51 Common', 'MLB-22S1-C-B51-S-WHI'), + (0x8f9bcd71991317c6bf4a87fd1850e852f14507a9, 'Uncommon Comic 82 2-34 Bazooka Joe 2021 NFT', 'BZK-U-82C'), + (0x8fb043f55aebecda16d7b47bf4303e414c877a74, 'Saša Kalajdžic VFB Base White S4-61 Common', 'BUND-21TS4-C-BS4-61-S-WHI'), + (0x8fbb48e3cc34a02a9c19b05ac205f0607681b919, 'Washington Nationals® Alcides Escobar Base White 116 Common', 'MLB-22S1-C-B115-S-WHI'), + (0x8fbdd0f89f2a26c3bb4bde1bde81fecd9828ae9f, 'Los Angeles Dodgers® Edwin Rios 1B/3B Base Static Gold 393 Uncommon', 'MLB-S221-U-B393-GOL'), + (0x8fccb32580545510ec0dd2109b109b2afaa8637e, 'Order', 'LP'), + (0x8fd4269b569f4eaf07112b504e59e6cbc202fae2, 'FakeApeYachtClub', 'FAYC'), + (0x8fd8b55444120fddb3638e8e339912e2c666157f, 'Minnesota Twins® Josh Donaldson 1987 35th Anniversary Wood T87-78 Common', 'MLB-22S1-C-1987A56-M-WD'), + (0x8fdda8194710cad14d17a3a5e15be01718e3f22c, 'Meta Mechs', 'MECH'), + (0x8fddaff39b1eb32d461504269f3ce390db6fdecf, 'Josh Doig HIB Young Stars Red SPYS-03 Epic', 'SPFL-21SPSS-E-YSSPYS-03-A-RED'), + (0x8fdf74e3b520869e3da04feddc223ee8131f0e01, 'Cincinnati Reds® 2021 Topps MLB Inception Set Completion Reward Team Colors 6 Epic', 'MLB-21INCSC-E-21INCSCR6-M-TC'), + (0x8feaebfe3665d24757d9130f10766e92f0838374, 'Boston Red Sox® Hunter Renfroe Postseason Base Navy 67 Uncommon', 'MLB-21POST-U-B67-M-NVY'), + (0x8fed108d65a71640e1cfda4a227453cea02fec33, 'Milwaukee Brewers™ Mark Mathias OF Base Motion Platinum 421 Epic', 'MLB-S221-E-B421-PLA'), + (0x8fed48e2ff71829b3192296cd23340c3d1302a46, 'Takuma Asano BOC Motion Rainbow Refractor S4-65 Super Rare', 'BUND-21TS4-S-MS4-65-V-RAI'), + (0x8fee8e5f12bb9c426d30cbb46549c67d11a42fde, 'Battra, Mothra, and Godzilla Base Collectible Blue 12 Common', 'GDZ-RAT21-C-B12-S-BLU'), + (0x8ff07a6039c2a429dac5cc0a201507a3300a7f30, 'Beers', 'BEER'), + (0x8ff0ba6e5e3a9ae2b2390126b344f6b0bf5535c3, 'Chicago Cubs® Patrick Wisdom Base Vintage Stock 271 Super Rare', 'MLB-22S1-S-B268-M-VS'), + (0x901444d011f45ad0221eca88a324d15c750899ba, 'LIBOY', 'LIBOY'), + (0x90186d01d3993651053fb114aef312703c41adcb, 'Rafael Borré SGE Top Players Team Color TK-12 Rare', 'BUND-22TK-R-TPTK-12-S-TMC'), + (0x9018cd6dd8df327f1c729e701db7ed2715b09fd0, 'Davie Selke BSC Base White S4-60 Common', 'BUND-21TS4-C-BS4-60-S-WHI'), + (0x90259d1416e5aea964eac2441aa20e9fb2d99262, 'Element721', 'ELE721'), + (0x902a92ed4a29d4b3480f1ce44178f9a41bd0f33c, 'Atlanta Braves™ Freddie Freeman Base Pink 1033 Uncommon', 'MLB-22PRI-U-B61-M-PNK'), + (0x902dde62a81e04769aa043a391c19c11377bd250, 'Davie Selke BSC Motion Aqua Refractor S4-60 Rare', 'BUND-21TS4-R-MS4-60-V-AQU'), + (0x90309da3c418b1127009383842571206cac704d4, 'Milwaukee Brewers™ Brandon Woodruff Postseason Base White 23 Common', 'MLB-21POST-C-B23-S-WHI'), + (0x9033da69a4e5b6fe0b06aeddddb00f12696acf09, 'Angels® Andrew Heaney P Base Static Gold 387 Uncommon', 'MLB-S221-U-B387-GOL'), + (0x9034a90a31d9d8e5842051554bd5ac275fb104f6, 'Toronto Blue Jays® George Springer OF Facsimile Signature Static Blue 633 Super Rare', 'MLB-S221-S-FS633-BLU'), + (0x90351d2333c43c7db409f4cfa299f6fa7a99d5e9, 'Houston Astros® Yordan Alvarez American League Base Golden 11 Super Rare', 'MLB-22ASG-S-B11-M-GLD'), + (0x9035446110da05767010867ac258b8fd19d17c16, 'Boston Red Sox® Connor Wong Base Vintage Stock 66 Super Rare', 'MLB-22S1-S-B66-M-VS'), + (0x903c4774e7fa631cce997df1b966defbc4e40951, 'American League™ Jared Walsh Base Pink 1305 Uncommon', 'MLB-22PRI-U-B189-M-PNK'), + (0x9044a81dc101399218fefbd680c728e2d1c79b91, 'Cincinnati Reds® Tyler Stephenson Base Independence Day RWB 175 Rare', 'MLB-22S1-R-B174-M-RWB'), + (0x90489ba98c77e70bc34806887238597f85c4f692, 'New York Yankees® Aroldis Chapman Base White 142 Common', 'MLB-22S1-C-B141-S-WHI'), + (0x9049ae831cbf4661945cc22a7e04f0174a2a54d3, 'Chicago White Sox® Lucas Giolito Postseason Base White 13 Common', 'MLB-21POST-C-B13-S-WHI'), + (0x904eabe63002a18b371e1d8cb94de08e43bbe226, 'Chicago Cubs® Adbert Alzolay P Base Static White 658 Common', 'MLB-S221-C-B658-WHI'), + (0x905b89c99d6cddbebbe10951419245d838b58715, 'New York Yankees® Aaron Judge Inception Base Black 65 Legendary', 'MLB-INC21-L-IB65-BLK'), + (0x905d9f8e878ae1206ece012ec57c2cf77bace720, 'Los Angeles Dodgers® Keibert Ruiz Inception Base White 48 Common', 'MLB-INC21-C-IB48-WHT'), + (0x9064f3516edd4cb0db747087ccb40391522ad441, 'Holograph Collection MetaMask 1', 'HLGRH'), + (0x906fca9931b408a9910ba83715fccdbd7251a204, 'Avax Vans', 'AVS'), + (0x9075b10f0b27d981d9acc66598d3714604911267, 'Detroit Tigers® Matthew Boyd Base Vintage Stock 128 Super Rare', 'MLB-22S1-S-B127-M-VS'), + (0x90791015bc57c1e6fbfb210920580e23136880c9, 'Baby Boiz', 'BBYBYZ'), + (0x907e5826d9ff4214cc9d3275f0913826ede200d0, 'Arizona Diamondbacks® Tim Locastro OF Base Static White 585 Common', 'MLB-S221-C-B585-WHI'), + (0x908494a6637e1385d657213b968985c4d43e0a82, 'Rare Comic 42 1-42 Bazooka Joe 2021 NFT', 'BZK-R-42C'), + (0x908a3e61db5f104b7895d424d8f14c3151fcbf36, 'Ihlas Bebou TSG Top Players Team Color TK-13 Rare', 'BUND-22TK-R-TPTK-13-S-TMC'), + (0x908fdff372060d6d63a4e0b64309779c9628908f, 'Battra Base Collectible Blue 16 Common', 'GDZ-RAT21-C-B16-S-BLU'), + (0x9090979b822e70a2777262783fbc4c4b6d551fc6, 'Kansas City Royals® Emmanuel Rivera Base Glitch 18 Uncommon', 'MLB-22S1-U-B18-M-GLI'), + (0x90a8071c9884b7843001685538a691670d040172, 'Killerzz', 'Killerzz'), + (0x90a99f5db48ca018e550c0cc16edd2256990a6af, '2022 Topps Pristine Baseball NFT Collection Challenge Rewards 4-Pack', 'MLB-22PRI-REWARD-PACK'), + (0x90b6614be9caf1ce23189884371c56523da461ca, 'Capo Marble Race', 'CMR'), + (0x90b86c7ebd43d1ba4fce9751c0da2eeecc62b4d7, 'malcolm-burnley:racial-justice-oral-history-1 Custody Token', 'RJOH1CT'), + (0x90b9a28e78b9fb6100e75af2562baffc66603e91, 'Cincinnati Reds® Shogo Akiyama OF Base Static Gold 647 Uncommon', 'MLB-S221-U-B647-GOL'), + (0x90bb95c346e6653a9aa84a7ac55787e64827fb96, 'American League™ Nelson Cruz Base Blue 1304 Common', 'MLB-22PRI-C-B203-M-BLU'), + (0x90c1771cd6b85dc20af06b3023afbdeaa179d4f8, 'DarthFractals Avax', 'FRACA'), + (0x90cc0eadc17748d4ed1a37164bb3af3d823107b7, 'Konstantinos Mavropanos VFB Motion Aqua Refractor S2-15 Rare', 'BUND-21TS2-R-MS2-15-V-AQU'), + (0x90d1dd8ae1882ba595442603f87bed529ae112a8, 'RB Leipzig Dani Olmo Young Stars Team Color 149 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS149-SFS-TMC'), + (0x90d27597cdd1c3cef270401e04809d8eff8af541, 'Tag Team of Terror (1972) Moment Color 1 Uncommon', 'GDZ-GVG22-U-M1-V-COL'), + (0x90d5835c29255fb401ad2e96f53be68738f3551f, 'St. Louis Cardinals® Adam Wainwright P Base Static White 534 Common', 'MLB-S221-C-B534-WHI'), + (0x90df55c97ed36f6af0b92dcd8e9f9686e968d4ab, 'New York Yankees® Luis Severino P Base Static White 577 Common', 'MLB-S221-C-B577-WHI'), + (0x90ee2130bcd76d7b60e43e2c8b002c3017b80917, 'Los Angeles Dodgers® Mookie Betts Second Place Palm Trees 14 Super Rare', 'MLB-22ASG-S-SEC14-M-PLM'), + (0x90f3866b980b53753e8e2941828befbcc4b5d17e, 'Arizona Diamondbacks® Pavin Smith 1B Base Static White 444 Common', 'MLB-S221-C-B444-WHI'), + (0x90fc66fcd18aacaa87364577968b22c86cd16d98, 'Washington Nationals® Jakson Reetz Base Glitch 61 Uncommon', 'MLB-22S1-U-B61-M-GLI'), + (0x91030f319635b58124f991910248c234f7efa6ad, 'LUNA-Tic Base Color 13 Common', 'GPK-NFT22-C-B13-S-COL'), + (0x9104dac1c29134b6d78108e1f5115692e54fd3c6, 'Chicago White Sox® Liam Hendriks Postseason Base White 16 Common', 'MLB-21POST-C-B16-S-WHI'), + (0x9105be2c25b2fe4ce38e6b1241023eb82ccffc2c, 'Item', 'ITEM'), + (0x910c2f00e03e0f5b5c1e972173bd5ee4653f2536, 'Pittsburgh Pirates® Max Kranick Base White 325 Common', 'MLB-22S1-C-B321-S-WHI'), + (0x9115ac402eaa77df17066466972c92dd499418ba, 'Chicago White Sox® Jose Abreu Base Glitch 84 Uncommon', 'MLB-22S1-U-B84-M-GLI'), + (0x912061920a58668f4a2b4db3fd5557c7a9c6137b, 'JanusWorldCup', 'JWC'), + (0x9121adcd2dbbca9e14b89ea930f9a61bad2481d4, 'PEACEKEEPERS', 'PEACEKEEPERS'), + (0x91288b64ed53a9e32cf4a387a903587d085a6be1, 'Milwaukee Brewers™ Devin Williams Rookie and Future Phenoms Facsimile Signature White 47 Rare', 'MLB-INC21-R-RC47-WHT'), + (0x9133e35c8ae230690c51dca35c78c2c057a70cd4, 'Philadelphia Phillies® Andrew McCutchen Inception Base Black 73 Legendary', 'MLB-INC21-L-IB73-BLK'), + (0x913c465c5af57248aaeea46d3a6cbaeb13da0134, 'OmegaYield', 'OPASS'), + (0x913f0ac120645a3116b6fdbfb032329592b1e32b, 'Philadelphia Phillies® Didi Gregorius Base Independence Day RWB 44 Rare', 'MLB-22S1-R-B44-M-RWB'), + (0x9141dc39902ada35a02c02907af6e5a48ef2babf, 'Eye Candy Digital Base Color 4 Common', 'GPK-NFT22-C-B4-S-COL'), + (0x914783b5ca912380bbec960828c7c3c970b28e70, 'St. Louis Cardinals® Dylan Carlson Generation NOW Team Colors GN-28 Epic', 'MLB-22S1-E-GN28-M-TMC'), + (0x914a99c7f4da59cb3c04e6e51ad44839b1bdfd6d, 'abbew', 'abw'), + (0x915598d8eb0abceaa7f262f65eb3d93142364754, 'AI Symmetries', 'AIS'), + (0x915e840ce933dd1deda87b08c0f4cce46916fd01, 'Ice Cream NFT', 'LICK'), + (0x915f41589171f630b3eff09edfee67a870a83cb5, 'Seattle Mariners™ Ty France Base Glitch 327 Uncommon', 'MLB-22S1-U-B323-M-GLI'), + (0x91652e30150eff57a3ef89667b6975df75693aa5, 'Toronto Blue Jays® Julian Merryweather P Base Motion Vintage Stock 581 Super Rare', 'MLB-S221-S-B581-VS'), + (0x916b9d56ebfa9ba582af46cdc34080dcce2e5a3b, 'Arizona Diamondbacks® Kole Calhoun OF Base Motion Rainbow 512 Rare', 'MLB-S221-R-B512-RAI'), + (0x9173b7a13171abf98994fe63e566f7882806c443, 'Philadelphia Phillies® Didi Gregorius Base Glitch 44 Uncommon', 'MLB-22S1-U-B44-M-GLI'), + (0x91745db9d6ce96011dd2ed96c333e4a9de130f83, 'Cleveland Guardians™ Amed Rosario Base White 14 Common', 'MLB-22S1-C-B14-S-WHI'), + (0x91795935cfe40ef216130e4d94287c2aae64949c, 'World Of Bees', 'WorldOfBees'), + (0x917c6710bf2b9eac4fba735b7538c0f611299139, 'Zander Clark STJ Base Purple SP-24 Super Rare', 'SPFL-21SPSS-S-BSP-24-A-PUR'), + (0x918257c9d068150ad8597ceee34d8e7ab1bc0b3c, 'Moussa Diaby B04 Top Players Black TK-07 Common', 'BUND-22TK-C-TPTK-07-S-BLA'), + (0x91865b058f4eb38face1922aa0f7cd94c0024912, 'Washington Nationals® Stephen Strasburg 1987 35th Anniversary Chrome T87C-27 Super Rare', 'MLB-22S1-S-1987AC22-M-CHR'), + (0x918bec221c74205f26ff7a3a2f2ac5543d9d68b6, 'Barrie McKay HEA Top Plays Gold SPTPL-22 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-22-V-GOL'), + (0x918e2deab925a7fb3be2e3875dc35d0e4545c9f8, 'Philipp Förster BOC Color Splash White TK-72 Uncommon', 'BUND-22TK-U-CSTK-72-S-WHI'), + (0x919f37fb65643ced2369d2b21642eb17bfc76981, 'St. Louis Cardinals® Kodi Whitley Rookie and Future Phenoms Facsimile Signature Blue 71 Super Rare', 'MLB-INC21-S-RC71-BLU'), + (0x91a1bc56c594b44252dd6d02810c33161a9d362f, 'Borussia Monchengladbach Nico Elvedi Base Players White 19 Common', 'BUND-SC21-C-BP19-WHT'), + (0x91a39d0e4859bf37b2ceec56f8c8c0948f5f1544, 'Rare Comic 14 1-14 Bazooka Joe 2021 NFT', 'BZK-R-14C'), + (0x91a48b3787b39e67a90c216f1c3436a363fd60b3, 'San Diego Padres™ Tommy Pham Base Glitch 16 Uncommon', 'MLB-22S1-U-B16-M-GLI'), + (0x91b35df1c5c3c0aa2ec345b768eeb375e9b6bb1f, 'Seattle Mariners™ Yohan Ramirez P Base Static Gold 519 Uncommon', 'MLB-S221-U-B519-GOL'), + (0x91b999fdb5254f24679675ec5b913e324b3c8fdc, 'Cincinnati Reds® Base Motion Platinum 587 Epic', 'MLB-S221-E-B587-PLA'), + (0x91bc4f61d45dfbb9c277cdf6928923cb46e8a2e9, 'CryptoR.AT: Nightmares Edition', 'RAT'), + (0x91c23f74f8d870dc6704bf5984f5e50376d70b1c, 'Blueprints', 'BLPR'), + (0x91c2fa0d73c4e9913696805820557132c4716f68, 'FSV Mainz 05 Jean-Paul Boëtius Base Players White 62 Common', 'BUND-SC21-C-BP62-WHT'), + (0x91c43127b3fc11f84e5cac83a91ea006a0d9b6d8, 'Uncommon Comic 34 1-34 Bazooka Joe 2021 NFT', 'BZK-U-34C'), + (0x91ce50981dcac9690eaee3a1f1204ab99076fa19, 'New York Yankees® Giancarlo Stanton DH/OF Base Motion Platinum 642 Epic', 'MLB-S221-E-B642-PLA'), + (0x91dcc65cb8d96c4858b2867bfc9915d427b6a4eb, 'Cincinnati Reds® Shogo Akiyama OF Facsimile Signature Static Red 647 Epic', 'MLB-S221-E-FS647-RED'), + (0x91e6ebfca7be1ade729be20a74a64d9c98ca43f2, 'Uncommon Comic 83 2-35 Bazooka Joe 2021 NFT', 'BZK-U-83C'), + (0x91e95d75354ec965b67165cc8df8249b7b082d3c, 'vePRINT', 'vePRINT'), + (0x91edd30ebcb7d372df23165a715831c1b0924004, 'Angels® Mike Trout 1987 35th Anniversary Wood T87-100 Common', 'MLB-22S1-C-1987A71-M-WD'), + (0x91f3f7c0bcb4f04cd12a5465f2e65ce0d858c92f, 'Wolfi Land WL GIVEAWAY', 'WLWG'), + (0x91f7e38fe48fba19fdb362539982b45ce9b7eced, 'Little Hands! Avax', 'LHA'), + (0x91faaa600658052078bc9622e0c1700a14579ce9, 'Cerveau AI genesis collection', 'CAI'), + (0x91fe9989d08a97c16890da9f4db971984ebeb83f, 'Christian Günter SCF Top Players Facsimile Signature Team Color TK-19 Epic', 'BUND-22TK-E-TPTK-19-S-TMC'), + (0x921b1b58d77bad5570a2cd9090c7e7f89f924913, 'NFT Garden', 'NFTG'), + (0x921c115b7500f95c9ef5aa8fa1e176dc49627824, 'FC Schalke 04 Timo Becker Base Players Team Color 57 Static Facsimile Signature Rare', 'BUND-SC21-R-BP57-SFS-TMC'), + (0x922db6ecd9ba5d04d770db027f33e5e63a1e1926, 'Parmesan', 'PARM'), + (0x923cc2ec6e841fa24ee1dedb1f278cae82a88deb, 'See you in the metaverse', 'LVD'), + (0x924852f3aae1e2fb73d5f88335933e34e4bcf73d, 'Meta Coins', 'MCOIN'), + (0x924a4b2e3f154810740f28b3e2b845a4056e15d4, 'Cincinnati Reds® Mike Moustakas Base Pink 1068 Uncommon', 'MLB-22PRI-U-B100-M-PNK'), + (0x924d04a91933d5ba4d9ca83f18d3340b70b549dc, 'New York Yankees® Jose Trevino Second Place Palm Trees 1 Super Rare', 'MLB-22ASG-S-SEC1-M-PLM'), + (0x924f0e03985efa619c03ec2054960e147b920167, 'Atlanta Braves™ Ronald Acuña Jr. Inception Base Blue 6 Uncommon', 'MLB-INC21-U-IB6-BLU'), + (0x9250ca817d347969819781925ed339450e89b449, 'Oakland Athletics™ A.J. Puk P Base Motion Rainbow 636 Rare', 'MLB-S221-R-B636-RAI'), + (0x9259733654cb33f70d2f6bedd3f49ab009d83149, 'Washington Nationals® Ryan Zimmerman 1B Base Motion Platinum 461 Epic', 'MLB-S221-E-B461-PLA'), + (0x92637a27b4679d3b31427c3283cfb1f9c99fa17b, 'Uncommon Comic 30 1-30 Bazooka Joe 2021 NFT', 'BZK-U-30C'), + (0x926573dde3d366b40cbe0beabb5259ff9608c28e, 'Serge Gnabry BAY Top Players Black TK-01 Common', 'BUND-22TK-C-TPTK-01-S-BLA'), + (0x92684bddadfa8ba977d5b30ab58e9a72988df54c, 'MONSTALLOONZ', 'MONSTALLOONZ'), + (0x9273068563742e024d278b967ca8e12caa9a8550, 'Kaiju Beach Party Monster Collage Color 1 Rare', 'GDZ-RAT21-R-MC1-S-COL'), + (0x92735179811dfb2d1602e4f6fd37947bb2c48b57, 'Los Angeles Dodgers® Walker Buehler P Base Motion Platinum 466 Epic', 'MLB-S221-E-B466-PLA'), + (0x9279855c9d892658177bae47b24a3545e79578d2, 'Charlie Mulgrew DDU Base White SP-17 Common', 'SPFL-21SPSS-C-BSP-17-A-WHI'), + (0x9279c72599bc1b2df90efbd2c47cb3411ce0e309, 'Chicago White Sox® Eloy Jimenez Popular Demand Facsimile Signature Teal 3514 Legendary', 'MLB-22PRI-L-PDFS5-M-TEA'), + (0x927bfeadf9edc9b0ece013a8a83c55986315f949, 'Sascha Burchert SGF Base White S3-33 Common', 'BUND-21TS3-C-BS3-33-S-WHI'), + (0x927cdd2d786a59ac6afde5382439bd1903f1ae58, 'St. Louis Cardinals® Base Motion Rainbow 478 Rare', 'MLB-S221-R-B478-RAI'), + (0x927d9e9c0d6ee2c2e4f8dbf3c7ff2b812d1cb538, 'Cincinnati Reds® Base White 96 Common', 'MLB-22S1-C-B95-S-WHI'), + (0x92819ad2d6c74b8e7aee24e450b82c2f983ae166, 'Chicago Whte Sox® Gavin Sheets Fresh Faces White 2205 Rare', 'MLB-22PRI-R-FF14-M-WHI'), + (0x928b14584500d228ee85c281417babf8641cb6ff, 'Milwaukee Brewers™ Aaron Ashby Base Vintage Stock 78 Super Rare', 'MLB-22S1-S-B78-M-VS'), + (0x929f58b81468e6fe4fcc6a442eb46b0bca1c44d8, 'Tons of Rock', 'TONS'), + (0x92a1f81e6e2392d808deb6f4662a026c61bb2e29, 'Los Angeles Dodgers® Andre Jackson Base Vintage Stock 258 Super Rare', 'MLB-22S1-S-B255-M-VS'), + (0x92a6424a859b7d7dba3a4640d60da5866c4684b5, 'Tony Watt DDU Base Aqua SP-16 Uncommon', 'SPFL-21SPSS-U-BSP-16-A-AQU'), + (0x92aa3cd58153cd5f22b681afaa9ee33baa15fdb8, 'Philadelphia Phillies® J.T. Realmuto C Base Motion Rainbow 611 Rare', 'MLB-S221-R-B611-RAI'), + (0x92b0ea8703a44e46b7023abcd9f7257bb2fe7400, 'Chicago Cubs® Brailyn Marquez P Super Short Print Motion White 404 Epic', 'MLB-S221-E-SSP404-WHI'), + (0x92c06700419d38520542868e1765cdca884e54d6, 'Boston Red Sox® Michael Chavis 2B/1B Base Static White 491 Common', 'MLB-S221-C-B491-WHI'), + (0x92c0b6dc5df38fef154463372d6d9c993593ce22, 'Nico Schlotterbeck SCF Animation Black Refractor S4-62 Epic', 'BUND-21TS4-E-AS4-62-V-BLA'), + (0x92d5b3c7a039079cb87be9e9c9f1da3882a17e9d, 'Miami Marlins® Garrett Cooper 1B Base Motion Rainbow 565 Rare', 'MLB-S221-R-B565-RAI'), + (0x92da21f358d0c30cc4b33f5d07efe8076a98b06d, 'St. Louis Cardinals® Carlos Martinez P Base Motion Platinum 496 Epic', 'MLB-S221-E-B496-PLA'), + (0x92e018bfa43adeb7c7b38b771005ec90bd5a7881, 'xyz', 'pwk'), + (0x92e07b3564248382ff0e83252c1c2824c85b7200, 'Geekers NFT', 'GEEKER'), + (0x92e815bf0fd6d1e9244f08cc0b53bd8d4575aec2, 'Detroit Tigers® Rony Garcia Rookie and Future Phenoms Facsimile Signature Red 25 Epic', 'MLB-INC21-E-RC25-RED'), + (0x92fbdf538884a58da82cf4f31e39f8b951afab1b, 'Cincinnati Reds® Joey Votto 2022 Definitive Gold 7 Legendary', 'MLB-22LEG-L-22DEF7-M-GLD'), + (0x92fc92a1129ce01a4f12bddb9cae57d4d3242fe2, 'Los Angeles Dodgers® Corey Seager Base Independence Day RWB 301 Rare', 'MLB-22S1-R-B297-M-RWB'), + (0x92ffa42941cde899e2cf898c51d3e845723a6846, 'Arizona Diamondbacks® Zac Gallen P Base Static White 440 Common', 'MLB-S221-C-B440-WHI'), + (0x9301133afd60a2b773262dfa75c188d5cdb7a5a7, 'Maximilian Arnold WOB Animation Gold Refractor S4-67 Legendary', 'BUND-21TS4-L-AS4-67-V-GOL'), + (0x9307dc98e3c08ce427d641b409658bd325524d35, 'Pak', 'PAK'), + (0x930939f400aa0efb718e47aa76eb7cc72bc2a457, 'Houston Astros® Alex Bregman Inception Base Blue 33 Uncommon', 'MLB-INC21-U-IB33-BLU'), + (0x9319b583694a6118a087b9aa2e4c0e54b27298a7, 'CILED', 'CIL'), + (0x931ac65aa23612a3cd99c3ec4ec8df566c7b1f11, 'Los Angeles Dodgers® Trea Turner National League Base White 9 Uncommon', 'MLB-22ASG-U-B9-M-WHI'), + (0x93239b1cf8cad847f387735876edba7d75ae4f7a, 'PMONC', 'PolkamonOfficialCollection'), + (0x9329b949e9a7c8d4612337257cdc22f5a79b70ce, 'New York Mets® Pete Alonso Facsimile Signature Glitch 315 Epic', 'MLB-22S1-E-FS24-M-GLI'), + (0x932fe093a60a77bde205e92e95a8f2e76032e4b3, 'Galaxia Investment- Santa Catarina', 'GASC'), + (0x9330024e7bf6df016ba24b0103f68950eb8f6566, 'Common Comic 21 1-21 Bazooka Joe 2021 NFT', 'BZK-C-21C'), + (0x93390bb7d104465b3865955ccb88cf11f619dddc, 'UltimatePepeverse', 'PEPE'), + (0x9340e564ef328e666e41b376b9dfc9c41f8a4b82, 'ApeInBet', 'AIB'), + (0x93413bcd6c46d668d16fc5688dcc8282757d1d88, 'Raphaël Guerreiro DOR Animation Black Refractor S1-03 Epic', 'BUND-21TS1-E-AS1-03-V-BLA'), + (0x93485263278f2855cf6e7c590d06922d747c3bb8, 'n00ts: by b00ts', 'n00t'), + (0x934eaa8a57b492b8112bb976b04af7355af10a4b, 'Houston Astros® Jose Altuve Base Vintage Stock 278 Super Rare', 'MLB-22S1-S-B275-M-VS'), + (0x935b5008cbcfe4617569fe7f9660bec2b94dbf08, 'New York Mets® Patrick Mazeika Base Glitch 166 Uncommon', 'MLB-22S1-U-B165-M-GLI'), + (0x935c2c5cfc0553f1c0cd2fcc6e99f334a50239fa, 'Oakland Athletics™ Matt Chapman Short Print White 176 Rare', 'MLB-22S1-R-SP32-M-WHI'), + (0x936373eff74f08e01bda74d29dd97257d029ee08, 'SmolGhost', 'ghost'), + (0x9366cdd1fc1ec506ea6f238c7e8303eb8d666aa4, 'Detroit Tigers® Matt Manning 1987 35th Anniversary Chrome T87C-68 Super Rare', 'MLB-22S1-S-1987AC50-M-CHR'), + (0x936bd356770665512ac248f461c10671b6f70f88, 'New York Mets® Marcus Stroman Base Vintage Stock 259 Super Rare', 'MLB-22S1-S-B256-M-VS'), + (0x9374c058aaaa26a07487bdbe0cc0c7359ed98669, 'Boston Red Sox® Christian Vazquez C Base Motion Rainbow 557 Rare', 'MLB-S221-R-B557-RAI'), + (0x9375f77c63f857024be17bedb4047ce7bbc9d21d, '2021 MLB Challenge Reward NL MVP Pack', 'MLB-21REWARD-PACK-NLMVP'), + (0x9379fe4c3a440565b32670d859a0b486fc96673a, 'SYNAPSE', 'SYN'), + (0x937cfbf8091fcde206d9ad1a0c84c26923f20bf1, 'Houston Astros® Kyle Tucker World Series Gold 5 Epic', 'MLB-21POST-E-WS5-M-GOL'), + (0x9386fd439c08caef692fcea90bb44d1cd2371c60, 'New York Yankees® Luis Gil Base Pink 1229 Uncommon', 'MLB-22PRI-U-B153-M-PNK'), + (0x9393660c012a8d5cb85233ecf016334a2111d8f5, 'Chicago Cubs® Kyle Hendricks P Base Motion Vintage Stock 503 Super Rare', 'MLB-S221-S-B503-VS'), + (0x9396b4bb4d0ebba24e51e33ed8b8aa775fcc95c9, 'TheCrypticPups', 'WOLF'), + (0x93ab1d84fd786b140c011ab330a871e849313dcb, 'Godzilla RAT Pages 4 & 5 Comic Page Black and White 4 Uncommon', 'GDZ-RAT21-U-CP4-S-BW'), + (0x93ad559184abd24dea052f78601ac6647dfb6fb6, 'Miami Marlins® Bryan De La Cruz Base Blue 1308 Common', 'MLB-22PRI-C-B179-M-BLU'), + (0x93aebe42f86511103b34fa52cfe85c8c0f5d76d7, 'Cincinnati Reds® Mike Moustakas 2B Base Static Gold 368 Uncommon', 'MLB-S221-U-B368-GOL'), + (0x93b4ae884c47f75e01cb4d0edcd0c28d1709b37a, 'Washington Nationals® Stephen Strasburg Inception Base White 99 Common', 'MLB-INC21-C-IB99-WHT'), + (0x93b8770ba4261ea8e7f1b2393aa5ad414093fe5e, 'Atlanta Braves™ Kyle Muller Short Print White 30 Rare', 'MLB-22S1-R-SP8-M-WHI'), + (0x93be3dad87c84c61a2ee36f1c8f1e3034140cfdc, 'Common Comic 16 1-16 Bazooka Joe 2021 NFT', 'BZK-C-16C'), + (0x93bf52fbef78ef80374f1ec7113bd599bcf2a300, 'Chicago White Sox® Yasmani Grandal Base Glitch 284 Uncommon', 'MLB-22S1-U-B281-M-GLI'), + (0x93dea79c2bf4283233d1f6bfb25442b2f3d981d8, 'Nickelodeon', 'NICK'), + (0x93e71918e2bdf3dd2cb08afb5232634eaf2aad83, 'Kansas City Royals® Hunter Dozier 3B/OF Base Static Gold 443 Uncommon', 'MLB-S221-U-B443-GOL'), + (0x93f4f088cade6c211441e527f3af9c63daed31c2, 'BlockLeader Admin', 'BLA'), + (0x93fcd632e19f8561ffecf7ae33c1c3978f9e455b, 'Houston Astros® Lance McCullers Jr. P Base Motion Platinum 610 Epic', 'MLB-S221-E-B610-PLA'), + (0x93fde4555108cd25e7ff8ae252ec1ec844e85787, 'Chicago White Sox® Garrett Crochet Base Glitch 239 Uncommon', 'MLB-22S1-U-B236-M-GLI'), + (0x93fec7491343f2a94e0b2e30aeae202c99bbf17a, 'Tampa Bay Rays™ Blake Snell Inception Base Blue 90 Uncommon', 'MLB-INC21-U-IB90-BLU'), + (0x93ff7a1e662063b4579c211fdf7251731b3973e8, 'Eintracht Frankfurt Daichi Kamada Top Players Gold 116 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP116-AFS-GLD'), + (0x9408d21319feb57b64ad8675222ab24e76af34a7, 'Philadelphia Phillies® Aaron Nola P Base Static Gold 537 Uncommon', 'MLB-S221-U-B537-GOL'), + (0x9410760ce9738188ec314ef126e9a72772cc2167, 'Houston Astros® Zack Greinke P Base Motion Platinum 463 Epic', 'MLB-S221-E-B463-PLA'), + (0x94108e135459c0d08aaca7df75327a61c41e97cc, 'Kyogo Furuhashi CEL Base Purple SP-06 Super Rare', 'SPFL-21SPSS-S-BSP-06-A-PUR'), + (0x9413d24dbfadbf56e483dc596d63328ffd74e68b, 'New York Mets® Base Motion Rainbow 555 Rare', 'MLB-S221-R-B555-RAI'), + (0x94199256a0b2788dd6a42b3ad8c032525c526674, 'Journey to the center of the universe', 'JTCOU'), + (0x941f5181787a2b0b40451b3f32b40083652c07dd, 'Atlanta Braves™ Austin Riley Facsimile Signature Red 115 Rare', 'MLB-22S1-R-FS7-S-RED'), + (0x9424476f2528a99090e73b5df96f9a9978306289, 'Angry Apples', 'APPLES'), + (0x942556209248c112f806861c0d43bcaf37f1bf59, 'Atlanta Braves™ Ozzie Albies Postseason Base White 58 Common', 'MLB-21POST-C-B58-S-WHI'), + (0x942c74ee13adf3b32349b41c3c1694eaaeb1eeff, 'ElixirNFT', 'ElixirNFT'), + (0x9437182d334652a0bcea724ee55c78f1370a3cdd, 'Uncommon Comic 20 1-20 Bazooka Joe 2021 NFT', 'BZK-U-20C'), + (0x943aa607d83c0dad478232bd567bf33c8e01bc72, 'Kansas City Royals® Kris Bubic P 1986 Anniversary Static Team Colors 86B-50 Super Rare', 'MLB-S221-S-1986A86B-50-TMC'), + (0x944274784f7467268693559aae408291a3dc2d69, 'Houston Astros® Justin Verlander Championship Series Newspaper BW 1107 Common', 'MLB-22TNP-C-CSN2-M-BW'), + (0x9447d825eb7fbef4ee2700bc56b5e5a771ffa852, 'STEP APP SHOEBOXES', 'StepA'), + (0x944be2859e3761b62a3b82acf10af745cb594fdf, 'Miami Marlins® Jazz Chisholm Jr. Second Place Palm Trees 10 Super Rare', 'MLB-22ASG-S-SEC10-M-PLM'), + (0x9455b089ec333de501e1dabb9f189b6547e4df4a, 'Cincinnati Reds® Sonny Gray Facsimile Signature Slab Gold 3043 Epic', 'MLB-22PRI-E-FS46-M-GLD'), + (0x945fa1d387d4a3262be33f6f94a3a71c4d71d521, 'BEASTNFTMAN', 'BNM'), + (0x946053a9798d1f9ecf81b9f8f2bd5d417110e753, 'Crystal Winter Golden Animation Facsimile Signature Color 21 Legendary', 'GPK-NFT22-L-GAFS21-A-COL'), + (0x946185bfd046cd64fa532a74c9c6b340c4c78ad9, 'Kingsley Schindler KOE Animation Black Refractor S4-63 Epic', 'BUND-21TS4-E-AS4-63-V-BLA'), + (0x946e4ac0ca86417a8806ffa6fd981ec25b931e34, 'Gerrit Holtmann BOC Animation Black Refractor S1-08 Epic', 'BUND-21TS1-E-AS1-08-V-BLA'), + (0x9492470ad84461e80b2e39d6e3dd7871eeb46afd, 'Seattle Mariners™ Chris Flexen Base White 311 Common', 'MLB-22S1-C-B307-S-WHI'), + (0x94bd5fe66448d98a95f42da34fc0495de3474404, 'Pen&Ink woman', 'PIW'), + (0x94c1022704f64d8547510774d55160f142126c6b, 'Magic Ticket', 'MGT'), + (0x94c2d1e82519e2cdcf16064ff6c652cc440eb215, 'New York Yankees® Gary Sanchez C Base Static White 525 Common', 'MLB-S221-C-B525-WHI'), + (0x94c378791b2e54578e37208db2d5c5cb6ffc8d5e, 'Hakuswap NFT', 'HakuMonk'), + (0x94c3c83b4b6c284d35eda994b87a2a31f5feb7e3, 'MUA Initiator', 'MUADAO-1'), + (0x94c743812fd0d3a01b03977ebf7a2ade6c2b7e6a, 'Philadelphia Phillies® Bryce Harper Facsimile Signature Blue 250 Uncommon', 'MLB-22S1-U-FS18-S-BLU'), + (0x94c92fcc1836f82a4340ba4d8c5727be771c2699, 'Cleveland Indians® Zach Plesac P Facsimile Signature Static Blue 403 Super Rare', 'MLB-S221-S-FS403-BLU'), + (0x94d200a4d45e2d2e62ba8c44b9d1f0768b101e51, 'New York Mets® Pete Alonso Second Place Palm Trees 9 Super Rare', 'MLB-22ASG-S-SEC9-M-PLM'), + (0x94df86b730a902982e3b141b01aee1b089f2700f, 'New York Yankees® Gerrit Cole 1987 35th Anniversary Wood T87-91 Common', 'MLB-22S1-C-1987A66-M-WD'), + (0x94e6ad42e6ae8e6485651c74d9d132cb1e5061ac, 'Kansas City Royals® Nicky Lopez Base White 76 Common', 'MLB-22S1-C-B76-S-WHI'), + (0x94eb1200b5b3224ee7fa039ceb34edd0acf4feb1, 'Philadelphia Phillies® Bryce Harper Inception Base Blue 74 Uncommon', 'MLB-INC21-U-IB74-BLU'), + (0x94ed2c51546a0dc86c9fa42762f441675bb4f2de, 'Milwaukee Brewers™ Mark Mathias OF Base Static White 421 Common', 'MLB-S221-C-B421-WHI'), + (0x94f255fc8cd6699dd5f9118f7f43d9e2601aaa49, 'Chicago White Sox® Dylan Cease Rookie and Future Phenoms Facsimile Signature Blue 17 Super Rare', 'MLB-INC21-S-RC17-BLU'), + (0x94fd1f491a18491a3a51c70f2bd871e91d13a4cc, 'Texas Rangers® Jeff Mathis C Base Motion Rainbow 348 Rare', 'MLB-S221-R-B348-RAI'), + (0x94fe57123f584da184d3b352275c6253d7f66545, 'Munas Dabbur TSG Animation Gold Refractor S3-35 Legendary', 'BUND-21TS3-L-AS3-35-V-GOL'), + (0x9501399ca91e2619be70edda329827e704e8506f, 'Danny Da Costa M05 Color Splash Team Color TK-66 Super Rare', 'BUND-22TK-S-CSTK-66-S-TMC'), + (0x9504e02dd8194fd0894faaccac449bc4c157e906, 'Charlie Mulgrew DDU Base Purple SP-17 Super Rare', 'SPFL-21SPSS-S-BSP-17-A-PUR'), + (0x950beffb12c15d6be4f85051464c0377d0eed326, 'Texas Rangers® Derek Dietrich 2B Base Static Gold 452 Uncommon', 'MLB-S221-U-B452-GOL'), + (0x950de6dda3fd2f5e50cb74e432587818b1324b82, 'Atlanta Braves™ Tucker Davidson P Base Static Gold 423 Uncommon', 'MLB-S221-U-B423-GOL'), + (0x950fbdc2425e1de2abd5f542df8c4c23b29c3a41, 'Cleveland Indians® Cleveland Indians® Base Motion Vintage Stock 459 Super Rare', 'MLB-S221-S-B459-VS'), + (0x951135bfcde6f64261ce98ad4b7e21e933f0bf26, 'Angels® Mike Trout American League Base White 14 Uncommon', 'MLB-22ASG-U-B14-M-WHI'), + (0x95131ea79e44173b41ddf1dcb252520fffb4f932, 'Uncommon Comic 87 2-39 Bazooka Joe 2021 NFT', 'BZK-U-87C'), + (0x9515fce7ede7a78c904c896e6a31b15874f09553, 'Philadelphia Phillies® Archie Bradley Base Independence Day RWB 10 Rare', 'MLB-22S1-R-B10-M-RWB'), + (0x9517720a8920d38cb1803d125dc1b0edd10be2d9, 'San Diego Padres™ Joe Musgrove Base Glitch 266 Uncommon', 'MLB-22S1-U-B263-M-GLI'), + (0x951baa1a0e18fc4ca4143fb34d1a8ac362654e33, 'Tampa Bay Rays™ Joey Wendle Postseason Base Red 5 Rare', 'MLB-21POST-R-B5-M-RED'), + (0x9526e4785048262e13d40162e72af8ddfcb87843, 'Arizona Diamondbacks® Andy Young 2B Base Motion Rainbow 499 Rare', 'MLB-S221-R-B499-RAI'), + (0x952b9262e644f900c4913fb775b9473a8bb321b9, 'Lukas Nmecha WOB Fan Favorite Magenta Refractor S3F-02 Rare', 'BUND-21TS3-R-FS3F-02-V-MAG'), + (0x9532ec6ce000690ae95f88ae9e297c200b143af7, 'Atlanta Braves™ Huascar Ynoa Base White 3 Common', 'MLB-22S1-C-B3-S-WHI'), + (0x9538134d235e780195c03109151703300c7434ec, 'BitWitches Rituals', 'BWRT'), + (0x953b391477177e551be82d6fd3ee5f48aab951dc, 'Autonolas Community Recognition Avatars', 'AUTONOLAS-RECOGNITION-AVATARS'), + (0x953ca170e8cfae941328686d2504003e66fd9542, 'Atlanta Braves™ Adam Duvall Topps NOW White 1012 Rare', 'MLB-21NOW-R-TN1012-WHI'), + (0x954dbf7f372c12283f5c5feae11ea3652eb73352, 'Evil Family', 'EVFM'), + (0x954e5f606cc317a637686e42191db3fd6e84bebe, 'Rainbow 2022 ASG Event Exclusive Super Rare', 'MLB-22ASGEVENT-S-22ASGR3-M-RBW'), + (0x9554f8ca761086c9af57a2029d4da45989a26a2f, 'Leroy Sané BAY Motion Aqua Refractor S1-01 Rare', 'BUND-21TS1-R-MS1-01-V-AQU'), + (0x95558c568f0347d7b1a1d3c0c1fb5348ff798eff, 'ferdy fish', 'fdfh'), + (0x9557b1db2c6ffe2c631ca8f5023e48baa149b898, 'Baltimore Orioles® Dean Kremer P 1986 Anniversary Static Team Colors 86B-32 Super Rare', 'MLB-S221-S-1986A86B-32-TMC'), + (0x9561394c031fbb0ffe4b094ec2b2be6ea5afb995, 'Atlanta Braves™ Ian Anderson P 1986 Anniversary Static Team Colors 86B-20 Super Rare', 'MLB-S221-S-1986A86B-20-TMC'), + (0x9563eada5c33fede0db889a04a67b35d7a4716fb, 'Smol Treasure', 'SmolTreasure'), + (0x957a5938b48fc0f395248c95938de1b606f8b4af, 'Doodled Chickens', 'DC'), + (0x957d72e7dfb2c7535c4774e5a6c623819ea7282e, 'Atlanta Braves™ Freddie Freeman Base White 236 Common', 'MLB-22S1-C-B233-S-WHI'), + (0x958066e2b3604c415d3958816ee335410d00bbcb, 'Kamilsworks Avax', 'Avax'), + (0x958528d736d96f16f6709fbd2f78d56db1cdb2e3, 'Toronto Blue Jays® Vladimir Guerrero Jr. Base Independence Day RWB 300 Rare', 'MLB-22S1-R-B296-M-RWB'), + (0x9595cee61b4ae9f0ce4ccb0b781993d0dd781335, 'Los Angeles Dodgers® Corey Seager SS 1986 Anniversary Static Team Colors 86B-27 Super Rare', 'MLB-S221-S-1986A86B-27-TMC'), + (0x9599d36debcd2ce10fc1302a4f106f4796c97613, 'AVAXOLOTL', 'AVXO'), + (0x95a9de166fb13ccc0ba0cd4e145c3825eac3fe22, 'Los Angeles Dodgers® Trea Turner Postseason Base Red 37 Rare', 'MLB-21POST-R-B37-M-RED'), + (0x95afe6bbff0d5abb29220eae25495882f1d22ffc, 'Ascacíbar-Boyata BSC Animation Duos TSC-17 Epic', 'BUND-21TSC-E-RATSC-17-A-DUO'), + (0x95b46e578cc3da89b32ee7390f4d4918f6113f63, '2021 Topps NOW World Series Game 4 Pack', 'MLB-21NOW-PACK-TN-GM4'), + (0x95be5d0b0ce121be9452979513db03b5e5072469, 'Konstantinos Mavropanos VFB Color Splash Facsimile Signature Team Color TK-63 Legendary', 'BUND-22TK-L-CSTK-63-S-TMC'), + (0x95c3c3cc64dc27cb980385aa8c9a069df2ecfdaf, 'Pittsburgh Pirates® Cole Tucker Rookie and Future Phenoms Facsimile Signature White 64 Rare', 'MLB-INC21-R-RC64-WHT'), + (0x95c4ea9bab8e21cd6e92d38bf44416ca6d8099a2, 'Milwaukee Brewers™ Jake Cousins Facsimile Signature Slab Gold 3113 Epic', 'MLB-22PRI-E-FS15-M-GLD'), + (0x95c673972e04676091d6da9747ef76488e3723eb, 'St. Louis Cardinals® Jack Flaherty Inception Base White 87 Common', 'MLB-INC21-C-IB87-WHT'), + (0x95c6e31d2aa747a2a4c7765b0d5bc1a2c9ed622f, 'Cloud Forms NFT LP', 'CFNFTLP'), + (0x95c72ba3f02a65dfc53e5e229761a64112f3aa54, 'Chicago White Sox® Eloy Jimenez Facsimile Signature Slab Gold 3027 Epic', 'MLB-22PRI-E-FS10-M-GLD'), + (0x95cb7250b163d1327b5c593a4f8c8902ff035d78, 'Oakland Athletics™ Starling Marte Base Glitch 305 Uncommon', 'MLB-22S1-U-B301-M-GLI'), + (0x95cb778a02408cbfca99e8067329dff585bd4e3d, 'Face and Motifs', 'FAM'), + (0x95db3f1bc92422907754989b8e5a9ed0ae311b4c, 'Lucas Alario B04 Animation Gold Refractor S4-45 Legendary', 'BUND-21TS4-L-AS4-45-V-GOL'), + (0x95e6fc2ec50b67a15c87d2bdf1416590f72ccb0a, 'Borussia Dortmund Giovanni Reyna Young Stars Gold 147 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS147-AFS-GLD'), + (0x95ecf88a7be9e4e6b3b83f4b3b1e9e2251be9a82, 'Minnesota Twins® Alex Kirilloff Rookie and Future Phenoms Facsimile Signature Red 49 Epic', 'MLB-INC21-E-RC49-RED'), + (0x95f64c927ad428a6485f7e1501722d1dd77ddcc5, 'Atlanta Braves™ Kyle Muller Base Independence Day RWB 30 Rare', 'MLB-22S1-R-B30-M-RWB'), + (0x95fa8128ed2bbf03807e39c5554071211782f60f, 'San Diego Padres™ Manny Machado 3B 1986 Anniversary Static Team Colors 86B-37 Super Rare', 'MLB-S221-S-1986A86B-37-TMC'), + (0x96021032824c3304b4474d9b2dee4bc933fa765b, 'Sport-Club Freiburg Vincenzo Grifo Top Players Gold 112 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP112-AFS-GLD'), + (0x96071d2415b9fb10469de0d15f3f05245d764d22, 'Márton Dárdai BSC Ascendent Blue TK-47 Super Rare', 'BUND-22TK-S-ASCTK-47-S-BLU'), + (0x960741f37e7342ea881bf086a7cda3a46f742917, 'Arizona Diamondbacks® Seth Beer 1987 35th Anniversary Wood T87-98 Common', 'MLB-22S1-C-1987A69-M-WD'), + (0x960b292445f850387e4e9bec18b70863fb3af168, 'New York Yankees® Giancarlo Stanton American League Base White 16 Uncommon', 'MLB-22ASG-U-B16-M-WHI'), + (0x960fd73a865ca71574bd0d371b6f90ea1cadf7b0, 'SoraShiro FanArts', 'SSFA'), + (0x96144f85fcf64df85350f5c8224c061f37fd84e7, 'San Diego Padres™ Base Glitch 124 Uncommon', 'MLB-22S1-U-B123-M-GLI'), + (0x961486d4d82c6c2db753f228ee5abd1e75ea21fc, 'St. Louis Cardinals® Johan Oviedo P Base Motion Platinum 535 Epic', 'MLB-S221-E-B535-PLA'), + (0x96166c9e21cf84578857f5a7ab0457f22ba03131, 'Ethan Erhahon SMI Young Stars Red SPYS-07 Epic', 'SPFL-21SPSS-E-YSSPYS-07-A-RED'), + (0x961f51b587b421498fd4b6b964a8166bfd309dad, 'Cleveland Indians® Shane Bieber P Short Print Motion White 523 Super Rare', 'MLB-S221-S-SP523-WHI'), + (0x961fb3735b47c9d7a6add0d4fb5da24049f83bf6, 'New York Mets® Jacob deGrom Base Blue 1018 Common', 'MLB-22PRI-C-B2-M-BLU'), + (0x9621515c06e4f15129919b4c34c74ea3fdebfabd, 'Toronto Blue Jays® Cavan Biggio Rookie and Future Phenoms Facsimile Signature White 76 Rare', 'MLB-INC21-R-RC76-WHT'), + (0x96320ac982cc34fecc0c992bb46a2d049f751731, 'PIXEL WORLD', 'PIXELW'), + (0x96376f0176be9691abe9dcdfb9a267524090de5b, '2022 Topps Series 1 Baseball Standard Pack', 'MLB-22S1-PACK-S'), + (0x963c3c0659103520b26ec912420f1503aa4bfb7e, 'San Diego Padres™ Ha-Seong Kim Base Independence Day RWB 188 Rare', 'MLB-22S1-R-B187-M-RWB'), + (0x963ddc9e540bd4d1750a024b139a67f1dcbc03da, 'Viscera', 'VSRA'), + (0x964524ff739dae865a799deac838da7f0b0ebdd6, 'Tampa Bay Rays™ Randy Arozarena Postseason Base Red 2 Rare', 'MLB-21POST-R-B2-M-RED'), + (0x964869e28af86e4547de26c60e6b96f4e5cfc06e, 'Avax Doggies', 'AVDG'), + (0x96501f44006b7e78b5ad4d75bb093f170bd45220, 'Cleveland Guardians™ Austin Hedges Base Glitch 65 Uncommon', 'MLB-22S1-U-B65-M-GLI'), + (0x96514e5224723c2a58d8aba687d361935cc910c3, 'Atlanta Braves™ Drew Smyly Base White 195 Common', 'MLB-22S1-C-B194-S-WHI'), + (0x96518f7a124f0d860c8a7a376548a5bb81e1c208, 'Bayer 04 Leverkusen B04 Insert Pennant Team Color S1P-03 Uncommon', 'BUND-21TS1-U-IS1P-03-A-TMC'), + (0x965778811f34664ab93b86347b8a040cd0034271, 'Minnesota Twins® Taylor Rogers Base Vintage Stock 32 Super Rare', 'MLB-22S1-S-B32-M-VS'), + (0x966393f21c0f51eb7e91259219982e37ffe9c9a1, 'Sport-Club Freiburg Roland Sallai Young Stars Team Color 160 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS160-SFS-TMC'), + (0x966633f2db0a73b9e8b5dddc520f7631122ddaf5, 'Detroit Tigers® Team Cube 2.0 Team Colors 23 Legendary', 'MLB-22S1-L-TC223-M-TMC'), + (0x966635d427c61bdd823e09c270713e01eabdb8c5, 'Clausina', 'Clausina'), + (0x966e8af0b01b6b3a23ababaa49fa74dc5cd2177d, 'Psychedelic Rams', 'PRAMS'), + (0x9679e7b81a4be811b3d10dc5bd86f553c6460178, 'Cincinnati Reds® Nick Castellanos OF Base Static White 365 Common', 'MLB-S221-C-B365-WHI'), + (0x967d9859eb210e26ff157cdc2bf67b22fb2ffd47, 'Atlanta Braves™ Freddie Freeman Championship Series Silver 17 Epic', 'MLB-21POST-E-CS17-M-SIL'), + (0x9680f13de8490f3c7ddc6fab687795bc901f915b, 'Oakland Athletics™ Base Motion Rainbow 392 Rare', 'MLB-S221-R-B392-RAI'), + (0x9688af80f579e00ef2c06dc0ff181e31e3244d50, 'TimeShuffle Founders Pass', 'FOUNDERS'), + (0x9689fae26394ce5ad03fe5c715918f7798b264e1, 'TST', 'TST'), + (0x9693fcb0322982c996ec38d4aadf13f308202c42, 'Toronto Blue Jays® Hyun-Jin Ryu P Base Static Gold 379 Uncommon', 'MLB-S221-U-B379-GOL'), + (0x969aa35b0fb983e138740e4ea0c9fe84424013d2, 'Cincinnati Reds® Joey Votto Facsimile Signature Glitch 290 Epic', 'MLB-22S1-E-FS21-M-GLI'), + (0x96a061a5082a6b375adc7497d9202c152f69388e, 'Chain Colosseum Phoenix Gen2', 'T2WEB'), + (0x96ae21a1fdf2b5b5a064d637a22d1301483cf1b7, 'Los Angeles Dodgers® Walker Buehler P Short Print Motion White 466 Super Rare', 'MLB-S221-S-SP466-WHI'), + (0x96b05c3a1b4d9e3e61fc61fcf360a7d32335de02, 'Tripsters', 'TRIP'), + (0x96b40a35dbc854809f499979c541963970de9632, 'New York Yankees® James Paxton P Base Motion Rainbow 542 Rare', 'MLB-S221-R-B542-RAI'), + (0x96b79d224fd0e8343c1f39d2fc271819cd8e80a7, 'DREEMEE', 'DRM'), + (0x96ba34c8d0008ab5481c7833d17e69f396c8507f, 'American League™ Aaron Judge Base Pink 1266 Uncommon', 'MLB-22PRI-U-B209-M-PNK'), + (0x96baf6f60359383d06fdd1592f9202c388ea007b, 'Minnesota Twins® Miguel Sano Base Independence Day RWB 123 Rare', 'MLB-22S1-R-B122-M-RWB'), + (0x96c2b5d9b1fac61f73a8d24e9432d32ada602f6f, 'Milwaukee Brewers™ Devin Williams P Base Motion Vintage Stock 485 Super Rare', 'MLB-S221-S-B485-VS'), + (0x96c849bb55198b9b6e43fe31103251ecdb060927, 'Atlanta Braves™ Freddie Freeman Inception Base Black 3 Legendary', 'MLB-INC21-L-IB3-BLK'), + (0x96c9b61f918c0902b4b2264e69bdad34140419a7, 'Chicago Cubs® Jason Heyward Base Independence Day RWB 323 Rare', 'MLB-22S1-R-B319-M-RWB'), + (0x96cc226956eb477b24ec4524c304430320b5ed30, 'Pittsburgh Pirates® Bryan Reynolds OF Base Static Gold 564 Uncommon', 'MLB-S221-U-B564-GOL'), + (0x96cf46d381b523f351f4378309db82a3566042af, 'Godzilla RAT Page 7 Comic Page Color 6 Rare', 'GDZ-RAT21-R-CP6-S-COL'), + (0x96d273c404e8cae28d60b0720ec2cec9e1f6ef14, 'RUG TICKET', 'RGTG'), + (0x96d7c87e1c83367ba638c256d464d57a33e6a101, 'St. Louis Cardinals® Paul Goldschmidt Inception Base White 89 Common', 'MLB-INC21-C-IB89-WHT'), + (0x96db5d86c104bcbee64c1f1a6633c0d9c31678f3, 'FSV Mainz 05 Stefan Bell Base Players Team Color 63 Static Facsimile Signature Rare', 'BUND-SC21-R-BP63-SFS-TMC'), + (0x96de3e65171cf41f850dfbbeacf7a17a65beb434, 'Based Stats', 'BASED'), + (0x96e094fc6105813db2d235d42e1005a29801a5d9, 'WAXy William Golden Animation Facsimile Signature Color 7 Legendary', 'GPK-NFT22-L-GAFS7-A-COL'), + (0x96e0c1fa8cfbd085071d630cc26ae50ddddf5253, 'Cleveland Indians® Delino DeShields OF Base Static White 602 Common', 'MLB-S221-C-B602-WHI'), + (0x96e7d6698a79c26d747954d55a105aa217826577, 'Toronto Blue Jays® Rowdy Tellez 1B/DH Base Static White 493 Common', 'MLB-S221-C-B493-WHI'), + (0x96e9a02d54de7748f7945f320e6c668b6f7ccdd3, 'Angels® Base White 159 Common', 'MLB-22S1-C-B158-S-WHI'), + (0x96f29fa59491eebc2e2c3c272569217945d1f375, 'Toronto Blue Jays® Hyun-Jin Ryu Base Vintage Stock 297 Super Rare', 'MLB-22S1-S-B293-M-VS'), + (0x96fe72b17ccf7bb65132c970e30f213d1ae62cbb, 'Cleveland Guardians™ Jose Ramirez Base Independence Day RWB 269 Rare', 'MLB-22S1-R-B266-M-RWB'), + (0x970486373b6a03a2d95ee6f049483c8799d65716, 'Takuma Asano BOC Top Players Facsimile Signature Team Color TK-36 Epic', 'BUND-22TK-E-TPTK-36-S-TMC'), + (0x9709eeee4b88ae014fd590d1ad82683ac7e5b09c, 'Cleveland Indians® Shane Bieber P Base Motion Vintage Stock 523 Super Rare', 'MLB-S221-S-B523-VS'), + (0x9710338b1a36c2d916cfc0d31e16f7f4b2cb2aad, 'AvaLand', 'AVALND'), + (0x971084b3b09f8005a3c8a9cc59f49787f319e332, 'Chicago White Sox® Yasmani Grandal C Base Motion Platinum 524 Epic', 'MLB-S221-E-B524-PLA'), + (0x9715ea5d249df84735b95eee1cd0f061c7601000, 'San Francisco Giants® Anthony DeSclafani Base White 137 Common', 'MLB-22S1-C-B136-S-WHI'), + (0x9728cd41860f58e509b4b98a94aed29f6d29cc4b, 'Arizona Diamondbacks® Pavin Smith 1B Base Static Gold 444 Uncommon', 'MLB-S221-U-B444-GOL'), + (0x973ec0588af18ce1f3cdd8dd7199c92aac153a8d, 'Atlanta Braves™ Dansby Swanson Ultra Short Print White 507 Epic', 'MLB-22S1-E-USP5-M-WHI'), + (0x97404844525878498ec90959e1f414b0e10d9174, 'VfB Stuttgart Nicolás González Young Stars Gold 180 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS180-AFS-GLD'), + (0x9740770a0eec50257ce8544c541c3ca6522ef66b, 'Polar Pass Bears Club', 'PolarPassBea'), + (0x97413c9c7221302245f36a4078693480319ab3e6, 'New York Yankees® Aaron Judge Base White 99 Common', 'MLB-22S1-C-B98-S-WHI'), + (0x974185e20abbf0cdb4dde67fbcfe245ca42fbab1, 'Wondercats', 'WCAT'), + (0x974319a56889535fc8cc67618caa742db0189800, 'Boston Red Sox® Eduardo Rodriguez Postseason Base White 71 Common', 'MLB-21POST-C-B71-S-WHI'), + (0x9743745bce9886e5e5110838478a9c33613f5de0, 'Houston Astros® Jose Altuve Facsimile Signature Red 278 Rare', 'MLB-22S1-R-FS19-S-RED'), + (0x974e43af49dc6ac2c5b1853f0786c1c785973982, 'Milwaukee Brewers™ Jake Cousins Base Independence Day RWB 20 Rare', 'MLB-22S1-R-B20-M-RWB'), + (0x9752be102323c78380a1134d8a65231043514a8a, 'Miami Marlins® Jazz Chisholm Rookie and Future Phenoms Facsimile Signature Blue 40 Super Rare', 'MLB-INC21-S-RC40-BLU'), + (0x9764acbb0f1768f1f1f708fce7c11c13ef296525, 'PDIUC2022', 'PDI2022'), + (0x976e81b81dc5a134867285c299c12be61db03bde, 'SV Werder Bremen Josh Sargent Young Stars Team Color 175 Super Rare', 'BUND-SC21-S-YS175-TMC'), + (0x9775dedae205f9c742f74aafd27e13dfcc8fa1bc, 'Tampa Bay Rays™ Yandy Diaz Postseason Base Navy 6 Uncommon', 'MLB-21POST-U-B6-M-NVY'), + (0x97766950bd7892b2e3dc92f29befd6bd5e384ab9, 'Seattle Mariners™ Logan Gilbert Base Glitch 156 Uncommon', 'MLB-22S1-U-B155-M-GLI'), + (0x9783481775314208fd6c6f8befaf710ce124c95a, 'Bounty Passes', 'BTYPS'), + (0x9784aee95a37d566a6b408a1ae2b66b2e9d1182e, 'Elk Rush NFT', 'ERNFT'), + (0x9788eb309d5f7d80c1e51f7abdb8801746336e3d, 'Lynx', 'TBNL'), + (0x9793902a504aef0af942319befb13bcba8774542, 'Colorado Rockies™ Trevor Story Inception Base Black 24 Legendary', 'MLB-INC21-L-IB24-BLK'), + (0x97a48a61fdb216b22494e664b69fc5ed834db60e, 'Los Angeles Dodgers® Edwin Rios 1B/3B Base Motion Rainbow 393 Rare', 'MLB-S221-R-B393-RAI'), + (0x97a53a3de69b917c474494251bc86cc807ed6ca4, 'Masaya Okugawa DSC Animation Black Refractor S3-25 Epic', 'BUND-21TS3-E-AS3-25-V-BLA'), + (0x97ad6c59ebfc15c17cf51d16d730b2c74c0672c5, 'FC Union Berlin Christopher Trimmel Base Players Team Color 54 Static Facsimile Signature Rare', 'BUND-SC21-R-BP54-SFS-TMC'), + (0x97b68366164ea2f18d884232139994bee604aefa, 'Patrick Wimmer DSC Club Phemons Silver S4CPH-01 Super Rare', 'BUND-21TS4-S-CPHS4CPH-01-S-SLV'), + (0x97c1dfe49e31a42047b0e46d320c358263e84ebc, 'CryptoVikings', 'VIKING'), + (0x97cc427a664d0f8a76ff63f1b42dc7991ff8fc95, 'David Raum TSG Club Phemons Silver S4CPH-12 Super Rare', 'BUND-21TS4-S-CPHS4CPH-12-S-SLV'), + (0x97cddbbc1e0c968f129e05effbd2d06dd7d740f0, 'St. Louis Cardinals® Nolan Arenado Second Place Palm Trees 11 Super Rare', 'MLB-22ASG-S-SEC11-M-PLM'), + (0x97d9b49e25f5a16fdd842e550e225c2e03dc86a4, 'St. Louis Cardinals® Tommy Edman Postseason Base Red 45 Rare', 'MLB-21POST-R-B45-M-RED'), + (0x97e2495fe9bd92861ed17d1f4a63b600c4745849, '3DBWAbstract', '3DBWA'), + (0x97e2f268b0cee4aa8a1b6e484fbe585abe098507, 'San Francisco Giants® Sammy Long Base Pink 1223 Uncommon', 'MLB-22PRI-U-B145-M-PNK'), + (0x97eaee05b40865590c343ffc65ad0da3b414125b, 'Washington Nationals® Juan Soto Facsimile Signature Gold 3015 Super Rare', 'MLB-22PRI-S-FS23-M-GLD'), + (0x97f116cef2d76cc01b6b4a1d0ae7dc104c288e74, 'New York Mets® Jacob deGrom Short Print White 330 Rare', 'MLB-22S1-R-SP68-M-WHI'), + (0x97f34721d8f77a4766b658be14401af77f3eea69, 'House of Hmong', 'HOHM'), + (0x97f61c229e1c46c475b6bea44c56ce82f572b916, 'Common Comic 7 1-7 Bazooka Joe 2021 NFT', 'BZK-C-7C'), + (0x97fced760b5ccde3caf0f43f869a030ab76633fb, 'San Diego Padres™ Jake Cronenworth 2B/1B Super Short Print Motion White 371 Epic', 'MLB-S221-E-SSP371-WHI'), + (0x9800e7f1eda0cb9628d91b41316c304603c18d4f, 'Philadelphia Phillies® Zack Wheeler Base Glitch 249 Uncommon', 'MLB-22S1-U-B246-M-GLI'), + (0x9800f67138c498e69ed3f91a7796cbd2495f6c1e, 'Toronto Blue Jays® Bo Bichette Facsimile Signature Red 126 Rare', 'MLB-22S1-R-FS8-S-RED'), + (0x980348452c1a05d76cee5723ad7ef8600f3123be, 'Toronto Blue Jays® Vladimir Guerrero Jr. Stars of MLB Chrome Night SMLBC-22 Legendary', 'MLB-22S1-L-SMLBC21-M-NIT'), + (0x980f8364b87c3e990c2b04977c7ba037a76da5f3, 'Joe''s SwissBorg Surprise', 'JoeSwissBorg'), + (0x9810a9ddac745a865387e51f058e50e92ffd0c5b, 'Common Comic 44 1-44 Bazooka Joe 2021 NFT', 'BZK-C-44C'), + (0x981cb34010c1160a5b203f73a9ad40eeee560751, 'San Francisco Giants® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 25 Legendary', 'MLB-21S2SC-L-21S2SCR25-M-TC'), + (0x981ed8b68e309903964a404e0d81b4abf91cf019, 'Seattle Mariners™ Justin Dunn Base Glitch 185 Uncommon', 'MLB-22S1-U-B184-M-GLI'), + (0x9820123b3ad0c3f5f2fa46812023bfb2a0072eb2, 'Tampa Bay Rays™ Base Glitch 274 Uncommon', 'MLB-22S1-U-B271-M-GLI'), + (0x98294003ec7d68e9c627e4e35b3622a003ada784, 'Tampa Bay Rays™ Shane McClanahan P Short Print Motion White 408 Super Rare', 'MLB-S221-S-SP408-WHI'), + (0x98343fe921b9fa99fba3239a3834ef54cc9be83b, 'pi-Xel MEN', 'pvN'), + (0x98474a56f0fb5715f60eef8bdd76e1ef743cbc32, 'Time Shuffle Epoch Badge', 'TSBADGE'), + (0x984d166f59419b31cad8f0b752af80b4d13ad3a5, 'Rare Comic 23 1-23 Bazooka Joe 2021 NFT', 'BZK-R-23C'), + (0x984dae2f73aeb97fde3eb9cdecdfdcbbc1e13f16, 'Lucky Ducky', 'LUCKY'), + (0x984ec6f1f1e4b14bec2b29d1cc0517d78e921559, 'Miami Marlins® Jorge Alfaro Base White 36 Common', 'MLB-22S1-C-B36-S-WHI'), + (0x9850550cf865cf5c063f45b75c0c696cd4efd4a2, 'Haru fanart', 'HF'), + (0x985456596c0b1fbbfc9d1baa796eab039c24f5c8, 'San Francisco Giants® Buster Posey Postseason Base White 28 Common', 'MLB-21POST-C-B28-S-WHI'), + (0x98699b0e8818e5bbc6243b87e3c033717f88b62f, 'Angels® Andrew Heaney P Base Static White 387 Common', 'MLB-S221-C-B387-WHI'), + (0x98701e1a746b792d527bd33c0bd26466a017f092, 'DGNX Private Sale Token', 'PST'), + (0x9876e18ab83a0fdc7c6321d13d006ff1c49c0ea5, 'Baragon and Godzilla Base Collectible Magenta 14 Common', 'GDZ-RAT21-C-B14-S-MAG'), + (0x9879e5fd7947fb19ff40167174a11982bf434bc9, 'Oakland Athletics™ Jesus Luzardo Rookie and Future Phenoms Facsimile Signature White 58 Rare', 'MLB-INC21-R-RC58-WHT'), + (0x987b015ddb8ab48459647c11530b69db2dd43ac6, 'Toronto Blue Jays® Lourdes Gurriel Jr. Base Glitch 54 Uncommon', 'MLB-22S1-U-B54-M-GLI'), + (0x98805cf309e6f00028ef5501a003eef9930b9cc9, 'Milwaukee Brewers™ Willy Adames Base Pink 1236 Uncommon', 'MLB-22PRI-U-B143-M-PNK'), + (0x9882e1935d3fdefd3256b4d85f919f05a2b73fef, 'Cerveau not so AI collection', 'CNAI'), + (0x988eef296832ff099a3ab0a4a56757c35315f217, 'Toronto Blue Jays® Santiago Espinal Second Place Palm Trees 3 Super Rare', 'MLB-22ASG-S-SEC3-M-PLM'), + (0x988f0edde9c37fc6b3eda6b4c23e605f6f20cf05, 'Uncommon Baseball Card 1 Joe Profile Bazooka Joe 2021 NFT', 'BZK-U-1B'), + (0x9894f217352f8475fc55692b485311410deacd36, 'Super Rare Comic 77 2-29 Bazooka Joe 2021 NFT', 'BZK-S-77C'), + (0x98964a5aedc2731956f23f7555a0bd8a3fafec70, 'Texas Rangers® Adolis Garcia Base Pink 1058 Uncommon', 'MLB-22PRI-U-B35-M-PNK'), + (0x98a3b35a83119e4f39dc87678d73cc799a4f30f9, 'Angels® Anthony Rendon 3B Base Static White 550 Common', 'MLB-S221-C-B550-WHI'), + (0x98a7b2055d2ae4d8ce1bcf89147fd8bd0a016ab0, 'San Francisco Giants® Brandon Crawford Postseason Base Red 26 Rare', 'MLB-21POST-R-B26-M-RED'), + (0x98abe0a59c037c559c2b53798cde1aea207cc685, 'BEEG SON', 'BS'), + (0x98b34345879c1c1e0d795ace2a940836704ccd70, 'Atlanta Braves™ Ronald Acuña Jr. Top 5 Cinema 2 Legendary', 'MLB-22ASG-L-T52-M-CIN'), + (0x98b5c7c166fbe49c0c5fe33c1631ca3be789c8c6, 'Piece of a Shit', 'SHIT'), + (0x98ba40b8209e4969fd18fdf1cbbef25cbc104019, 'Rare Comic 55 2-7 Bazooka Joe 2021 NFT', 'BZK-R-55C'), + (0x98c1dfbc447425c824b8329ff850af8103213204, 'St. Louis Cardinals® Nolan Arenado National League Base Golden 8 Super Rare', 'MLB-22ASG-S-B8-M-GLD'), + (0x98d88d9436e7beceb805fdc61975802da9376b14, 'Arizona Diamondbacks® Merrill Kelly Base White 74 Common', 'MLB-22S1-C-B74-S-WHI'), + (0x98dc7c8ecdb6b77bdc5c236bd1c3678c3bdcf5b7, 'San Diego Padres™ Jake Cronenworth 2B/1B 1986 Anniversary Static Team Colors 86B-43 Super Rare', 'MLB-S221-S-1986A86B-43-TMC'), + (0x98dc8f0625acb4ff8a3c5804053202b7b21ed0f0, 'Holograph Collection', 'HLGRH'), + (0x98ddb38ccd7c51bac44e2a9504fdfa1e97405cf8, 'Toronto Blue Jays® George Springer OF Base Motion Vintage Stock 633 Super Rare', 'MLB-S221-S-B633-VS'), + (0x98defc2607c7b653eb835d64455b86b3e42d7726, 'Tampa Bay Rays™ Brandon Lowe Division Series Bronze 1 Super Rare', 'MLB-21POST-S-D1-M-BRO'), + (0x98e01f6c487e1c6068efb7fe5ca359df1a206c7c, 'PrizeBond', 'PB'), + (0x98e281a90a9d14818ca4d053d93a674acc03ea3d, 'Chicago White Sox® Yasmani Grandal C Base Motion Vintage Stock 524 Super Rare', 'MLB-S221-S-B524-VS'), + (0x98e687f189c00db3b9ee67e88070533be935fa84, 'ADULTZ ONLY', 'ADLZOLY'), + (0x98f10b45793bffde5c33f6d6060badb15339975e, 'Colorado Rockies™ Trevor Story Base Glitch 260 Uncommon', 'MLB-22S1-U-B257-M-GLI'), + (0x98f29ca76ce39c8970ae5880564fe6449f9a9245, 'Rare Comic 45 1-45 Bazooka Joe 2021 NFT', 'BZK-R-45C'), + (0x98f6a81f167e9a098ce29e2ea54a5d43b33266f8, 'Tampa Bay Rays™ Joey Wendle Base Pink 1182 Uncommon', 'MLB-22PRI-U-B47-M-PNK'), + (0x99048cae6ab965ea40e129256c7dd796421e19f4, 'UC22-CryptoandMetaverse', 'PDI2022'), + (0x9910eff9e010cf0378319ab3be1148070143ee40, 'St. Louis Cardinals® Jake Woodford P Base Static White 451 Common', 'MLB-S221-C-B451-WHI'), + (0x9917af98a4dcf49aac4a2ced5fed8655df814761, 'FC Koln Timo Horn Top Players Gold 130 Super Rare', 'BUND-SC21-S-TP130-GLD'), + (0x9926a3319cb83a8e7e28ca3f9aabf4c2065da969, 'Dark Priests', 'DRKP'), + (0x992996b0fcdf8cec7f5cd885bfd059c0a3ac637a, 'Tampa Bay Rays™ Austin Meadows Base Glitch 152 Uncommon', 'MLB-22S1-U-B151-M-GLI'), + (0x992c49fd5e966b0ecf4a0a0d13e069da5538be0b, 'St. Louis Cardinals® Alex Reyes Base Vintage Stock 47 Super Rare', 'MLB-22S1-S-B47-M-VS'), + (0x993926684f8b6084f9ee23436faba3492ad8178f, 'Vincenzo Grifo SCF Motion Aqua Refractor S1-07 Rare', 'BUND-21TS1-R-MS1-07-V-AQU'), + (0x994501a198ffe25912cf0b7e508a03ba55cfdb85, 'yo yo yo', 'YOYO'), + (0x99485987e55ceddd91d736be70d4cc30a4e231ad, 'Chicago Cubs® Alec Mills P Base Motion Vintage Stock 659 Super Rare', 'MLB-S221-S-B659-VS'), + (0x995a9253ad69216a238fd8785f566cb58b73d8cc, 'Texas Rangers® Jeff Mathis C Base Static White 348 Common', 'MLB-S221-C-B348-WHI'), + (0x99623e81da8c50516f85dc704a2b65a1f57fa35b, 'Miami Marlins® Sixto Sanchez Inception Base White 52 Common', 'MLB-INC21-C-IB52-WHT'), + (0x9964258e8df4be71ac3ffa0c0799b0bfc3034b18, 'WAXy William Animation Color 7 Rare', 'GPK-NFT22-R-A7-A-COL'), + (0x996814d4df43dcc621140d17516aa00809376175, 'Houston Astros® Alex Bregman Popular Demand Facsimile Signature Teal 3512 Legendary', 'MLB-22PRI-L-PDFS1-M-TEA'), + (0x996a6a7ce3dafe1ab92321f3ba9f6b411ab9f9a5, 'Ihlas Bebou TSG Top Players Facsimile Signature Team Color TK-13 Epic', 'BUND-22TK-E-TPTK-13-S-TMC'), + (0x996d1f739bc5e16d04e02f9ae77ec6dd9fd161be, 'Colorado Rockies™ Brendan Rodgers Base Independence Day RWB 232 Rare', 'MLB-22S1-R-B229-M-RWB'), + (0x996d27ae98eaf3ec1df7b809331342008ddef85e, 'Los Angeles Dodgers® Trea Turner Division Series Bronze 45 Super Rare', 'MLB-21POST-S-D45-M-BRO'), + (0x99702502924075c87f66f20683dc5e927faa2f46, 'Phoenix', 'AnKa'), + (0x99748d4484afa885e1fa8e835c0474c2353e2f9d, 'Tampa Bay Rays™ Ji-Man Choi 1B Base Motion Vintage Stock 511 Super Rare', 'MLB-S221-S-B511-VS'), + (0x9975cb7cbf8e7e970d9c2e45b3ac02c92fbbbb44, 'Chris Cadden HIB Top Plays Purple SPTPL-17 Rare', 'SPFL-21SPSS-R-TPLSPTPL-17-V-PUR'), + (0x997670b8ebd78434b501bc2980173423ab89d162, 'Colorado Rockies™ Trevor Story Base White 260 Common', 'MLB-22S1-C-B257-S-WHI'), + (0x99843ed5966967c831662e6ad64ac2fbf90dff64, 'PrizeBond', 'PB'), + (0x9992868b44ff533843dcf9368e68c3437677bbb3, 'Seattle Mariners™ Marco Gonzales Base Independence Day RWB 112 Rare', 'MLB-22S1-R-B111-M-RWB'), + (0x999cb092733e6be0cdd4c3b6255948beee1d8328, 'Cleveland Indians® Jose Ramirez 3B Base Static Gold 360 Uncommon', 'MLB-S221-U-B360-GOL'), + (0x999d58ef44ad865ca460d5962260d954f2cddec6, 'Los Angeles Dodgers® Cody Bellinger 1987 35th Anniversary Chrome T87C-6 Super Rare', 'MLB-22S1-S-1987AC4-M-CHR'), + (0x99a848f4498924521502a444c62f7d1550013e6c, 'Chicago Cubs® Jason Kipnis 2B Base Motion Rainbow 494 Rare', 'MLB-S221-R-B494-RAI'), + (0x99b38c54990ae188291386337834f956a328587a, 'Fight Night Poster #1 Lobby Card Black and White 1 Rare', 'GDZ-GVG22-R-LC1-S-BW'), + (0x99b64ee9de7f78dfed11f0da33f5c2b536d49900, 'Avax Dinos', 'AvaxDinosV2'), + (0x99b6e6bae65999cb008eb5aae0e39ce84ed3c356, 'CryptoPukes Facsimile Signature Color 3 Uncommon', 'GPK-NFT22-U-FS3-S-COL'), + (0x99bb4bdcce2b3afb7efff1462ada735b6cb62c70, 'Raphaël Guerreiro DOR Motion Aqua Refractor S1-03 Rare', 'BUND-21TS1-R-MS1-03-V-AQU'), + (0x99c0047d9ae26c2a76e57dd11e1e11123e6e763d, 'St. Louis Cardinals® Nolan Arenado Facsimile Signature Red 87 Rare', 'MLB-22S1-R-FS5-S-RED'), + (0x99c77e9ed2837e3e5e38c01879c0ebf464a257c3, 'Moussa Diaby B04 Base Red S4-56 Uncommon', 'BUND-21TS4-U-BS4-56-S-RED'), + (0x99db3508e688291cfd5d7c336d063112862911f6, 'Texas Rangers® 2021 Topps MLB Inception Set Completion Reward Team Colors 28 Epic', 'MLB-21INCSC-E-21INCSCR28-M-TC'), + (0x99dcbfa84d7f5f42d7acbf169f6bad36c0d7aa76, 'San Francisco Giants® Mauricio Dubon Rookie and Future Phenoms Facsimile Signature Blue 69 Super Rare', 'MLB-INC21-S-RC69-BLU'), + (0x99e1611b38e63f3c73787f05d8629850d61c911e, 'Stevan Jovetić BSC Motion Rainbow Refractor S3-30 Super Rare', 'BUND-21TS3-S-MS3-30-V-RAI'), + (0x99e8756fbd177a368a3c90af35425a2db2afc409, 'LOVE', 'LOVE'), + (0x99f4dae5c2818e3bf1c8ec5404446421368de2cf, 'Eintracht Frankfurt Makoto Hasebe Base Players Team Color 41 Static Facsimile Signature Rare', 'BUND-SC21-R-BP41-SFS-TMC'), + (0x99f6e3ef6a7eba8ffb897becef1f8c56f01b1189, 'Anton Stach M05 Top Players Team Color TK-23 Rare', 'BUND-22TK-R-TPTK-23-S-TMC'), + (0x99feef4b9f24fe864e540bbf2c9d014009673f26, 'Rare Comic 30 1-30 Bazooka Joe 2021 NFT', 'BZK-R-30C'), + (0x9a011056ba0e39e312b00d84c057a8ffd2bfe21d, 'ParcaeArchetypes', 'PARC'), + (0x9a0472ea1a3ca866c084101868f9d77417862b7c, 'AnnuNft', 'ANNU'), + (0x9a09c014984d327f3bafe37dd3e9fbabde2e63d5, 'Jacob Bruun Larsen TSG Motion Rainbow Refractor S4-54 Super Rare', 'BUND-21TS4-S-MS4-54-V-RAI'), + (0x9a0a01c62483583df2400d4e0d784c3b17a6b7a7, 'Chicago Cubs® Kris Bryant 3B Facsimile Signature Static Red 660 Epic', 'MLB-S221-E-FS660-RED'), + (0x9a0d9985b3b9d095bafe00640b4fab57cd97ef73, 'Minnesota Twins® Byron Buxton Base Pink 1017 Uncommon', 'MLB-22PRI-U-B4-M-PNK'), + (0x9a1ec2f6d2ad0b32719b40c4b160c8e35bfd1a2d, 'Colorado Rockies™ Ryan McMahon Base Independence Day RWB 132 Rare', 'MLB-22S1-R-B131-M-RWB'), + (0x9a24b70bbf77b7761c6ef24ab2848af3508fac5f, 'Minnesota Twins® Michael Pineda P Base Motion Platinum 354 Epic', 'MLB-S221-E-B354-PLA'), + (0x9a256cf8ac88b0aef8c0d4f4da62f34317210022, 'Milwaukee Brewers™ Christian Yelich Popular Demand Facsimile Signature Slab Teal 3513 Legendary', 'MLB-22PRI-L-PDFS4-M-TEA'), + (0x9a28c599c996f579c03a6b73f13f384da201e542, 'Boston Red Sox® Alex Verdugo Wild Card Contenders Blue 5 Common', 'MLB-21POST-C-W5-M-BLU'), + (0x9a337a6f883de95f49e05cd7d801d475a40a9c70, 'Cosmic Elves', 'ELVES'), + (0x9a45421753e30eebc3d5d99fb77cd504b3de6e52, 'Chicago White Sox® Carlos Rodon Base White 282 Common', 'MLB-22S1-C-B279-S-WHI'), + (0x9a47bc43adaa48a29031629b74514c7f5f209fe4, 'Boston Red Sox® Xander Bogaerts 2022 Definitive Gold 5 Legendary', 'MLB-22LEG-L-22DEF5-M-GLD'), + (0x9a4c072cfa6425c81c48c6155888a51ecee81ffb, 'Suat Serdar BSC Motion Rainbow Refractor S4-68 Super Rare', 'BUND-21TS4-S-MS4-68-V-RAI'), + (0x9a510e4730485c926d8d1a92ddec82e2efa5663e, 'Washington Nationals® Victor Robles OF Base Motion Platinum 343 Epic', 'MLB-S221-E-B343-PLA'), + (0x9a5656919d7d88cc340ea8d99b6112c8f98426b5, 'FC Koln Jannes Horn Base Players Team Color 68 Static Facsimile Signature Rare', 'BUND-SC21-R-BP68-SFS-TMC'), + (0x9a58f6e45b2e302ac4ba5c17444c06208e07b6db, 'Minnesota Twins® Miguel Sano 1B/3B Base Static White 383 Common', 'MLB-S221-C-B383-WHI'), + (0x9a600fed4c5d83744aab23fb2308879a88a35779, 'Super Rare Comic 42 1-42 Bazooka Joe 2021 NFT', 'BZK-S-42C'), + (0x9a625e7246926821799c6e58983eba87cbbae945, 'RP Jan Bond NFT', 'RPJB'), + (0x9a63a25faaf60dcbdfdc884487bbd268b13f90c0, 'Colorado Rockies™ Charlie Blackmon Base Pink 1186 Uncommon', 'MLB-22PRI-U-B64-M-PNK'), + (0x9a6f730a33cfe92895a9eb99b14ba241723a8237, 'Houston Astros® Yordan Alvarez Inception Base White 38 Common', 'MLB-INC21-C-IB38-WHT'), + (0x9a7a9ed02d95b9e7a9031b7cac6a6776017bc45f, 'The Kuwaitis', 'KWTS'), + (0x9a7aebdbfd2ba19035b6ac6c1960de3d76e507f0, 'Mario Götze SGE Color Splash Team Color TK-60 Super Rare', 'BUND-22TK-S-CSTK-60-S-TMC'), + (0x9a82517e6d7dc1d17900ba590802b03dd6cf2790, 'Dragons of the Night', 'DOTN'), + (0x9a8429ddfbc7c63e87c98f97ceca9a7891ffa635, 'Chicago White Sox® Luis Robert 2022 Inception Gold 4 Legendary', 'MLB-22LEG-L-22INC4-M-GLD'), + (0x9a89b0dac57368b11bd297552933b0902ebd3e91, 'AVAX_NEON_CLUB', 'NEON'), + (0x9a9b82ef07c95754897824326fc026b3310948c8, 'NFTU', 'NFTU'), + (0x9aa17dea4de8686aef2f844a32b4e89e1d3dd023, 'Mutant Skellies', 'MUTANTS'), + (0x9aa278a3cd6d833ba281b792252698ae06780f40, 'Milwaukee Brewers™ Ryan Braun OF Base Motion Platinum 497 Epic', 'MLB-S221-E-B497-PLA'), + (0x9ab34daa5c4a45d09e7b1931868ae5f5c1306f72, 'Jeremy Dudziak SGF Animation Gold Refractor S4-46 Legendary', 'BUND-21TS4-L-AS4-46-V-GOL'), + (0x9ab5be1c807fc08692b3f6ff350fcbef22abab05, 'Common Comic 72 2-24 Bazooka Joe 2021 NFT', 'BZK-C-72C'), + (0x9ab9b2fd3fb0a7febe7383f7c0dcde9dc9a7cb46, 'VfL Wolfsburg John Anthony Brooks Top Players Gold 111 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP111-AFS-GLD'), + (0x9abe2bdf1514521adf6225672413b6c81f0b7be3, 'MaisdaPhotoArts NFT + physical Item', 'MAVA'), + (0x9abef226d8ad815ebe10aa966fc2503f46fbfef6, 'Chris Cadden HIB Top Plays Gold SPTPL-17 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-17-V-GOL'), + (0x9ac14448ad27c8f11b2bd5c3694d88570327745f, 'Nico Schlotterbeck SCF Club Phemons Gold S4CPH-09 Legendary', 'BUND-21TS4-L-CPHS4CPH-09-V-GOL'), + (0x9ac4a073173383f604c9388a7efd2821f57fe4ee, 'LUNA-Tic Golden Animation Color 13 Epic', 'GPK-NFT22-E-GA13-A-COL'), + (0x9ac4eb986f4dca9beb1a14404ffb67eb24d8ba94, 'Cleveland Guardians™ Amed Rosario Base Blue 1069 Common', 'MLB-22PRI-C-B3-M-BLU'), + (0x9ad4e2ec70b0085a857644bcbfe8a82a1d576a84, 'Godzilla Storm Traditional Art CMYK Offset 8 Super Rare', 'GDZ-RAT21-S-TA8-A-CMYK'), + (0x9adedb067e55c54cf74ebba6b9916a7fb091802b, 'Uncommon Comic 35 1-35 Bazooka Joe 2021 NFT', 'BZK-U-35C'), + (0x9aebfb936aabc6bbd683cdc9db67aaa34ee0d22d, 'BetaEarthiumGenesisNFT', 'BEGNFT'), + (0x9aef8c90f97f5a2d6e9dca4e3056d1765f05ea63, 'American League™ 2021 ERA Leaders Base White 283 Common', 'MLB-22S1-C-B280-S-WHI'), + (0x9af488f4f7c4c139375de6730e0b2aceb22bdb3a, 'Ghostwriting', 'GHOSTW'), + (0x9af7061196e6968e29d1d89740004db5c41a1469, 'Rare Baseball Card 10 Mort Pitcher Bazooka Joe 2021 NFT', 'BZK-R-10B'), + (0x9afa4d31c9571dadc6ff1e68a059f9e69828e5e1, 'Toronto Blue Jays® Julian Merryweather P Base Motion Platinum 581 Epic', 'MLB-S221-E-B581-PLA'), + (0x9b0836717abd4010081d64e684b94fee3e00e751, 'Minnesota Twins® Jorge Polanco SS Base Motion Vintage Stock 598 Super Rare', 'MLB-S221-S-B598-VS'), + (0x9b0a14700e9c40fed3a3feae941e6240b262d1e6, 'Godzilla Storm Traditional Art Black and White 8 Uncommon', 'GDZ-RAT21-U-TA8-S-BW'), + (0x9b12a5266887433862101b02fb0ddaec153b8471, 'New York Yankees® Miguel Yajure Rookie and Future Phenoms Facsimile Signature Blue 57 Super Rare', 'MLB-INC21-S-RC57-BLU'), + (0x9b1411844a5ef67110e102f7b2b190754b1e4cb8, 'Avalanche Friends Collectible', 'AFC'), + (0x9b183f1bcd2471a8ef21c71de8f1b2a56fcc1fb0, 'BLACK INK', 'BLACK'), + (0x9b1b664643be65271b90299b885cc1ab577cdb46, 'Chicago Cubs® Jason Heyward OF Base Motion Vintage Stock 501 Super Rare', 'MLB-S221-S-B501-VS'), + (0x9b22b2a8c1144c608ab0103aeff9cac853a86b01, 'San Diego Padres™ Austin Nola C/1B Base Motion Platinum 448 Epic', 'MLB-S221-E-B448-PLA'), + (0x9b29ffdd69cdad3ac99ce9560f8e433332ce908e, 'Avalanche Friends Collectible', 'AFC'), + (0x9b2df5c747aae015efdb7313dbbe1d081896b092, 'Angels® Anthony Rendon 3B Base Static Gold 550 Uncommon', 'MLB-S221-U-B550-GOL'), + (0x9b2e875ec2b708b493347c95f5c0ce1b844e8e38, 'Oakland Athletics™ Elvis Andrus SS Base Motion Platinum 651 Epic', 'MLB-S221-E-B651-PLA'), + (0x9b38a59219fb3b9bda27dd0e94016afec7ed8b1f, 'Patrick Wimmer DSC Motion Aqua Refractor S4-44 Rare', 'BUND-21TS4-R-MS4-44-V-AQU'), + (0x9b4070326850b65107725ed00a49d298c111720d, 'step', 'RUNNIN'), + (0x9b42e4255090a790386f8a228eee4ab579092461, 'Pengrafters', 'PENGRAFT'), + (0x9b55c8746de1e3edda13e93b0ea6be2735026816, 'PixelCloudz', 'PIXELCLOUDZ'), + (0x9b56426ad689f35b2bed57e69133e51d5c460216, 'Cincinnati Reds® Jesse Winker Base White 81 Common', 'MLB-22S1-C-B81-S-WHI'), + (0x9b5d083d39f4b1a73000f17a159c21946a49d386, 'RB Leipzig Christopher Nkunku Base Players Team Color 11 Uncommon', 'BUND-SC21-U-BP11-TMC'), + (0x9b61fe3cbe48de286296cbbbac87bf7f6946a38f, 'Wee Raptorz Halloween', 'WEERAPTORZ'), + (0x9b6679405151eb44ef8d7a8ae281c3bb8494d52a, 'Philadelphia Phillies® Aaron Nola P Short Print Motion White 537 Super Rare', 'MLB-S221-S-SP537-WHI'), + (0x9b73e848f45a6839dadb039859e16b8aa4ae50c3, 'Texas Rangers® Sherten Apostel 1B/3B Base Static Gold 358 Uncommon', 'MLB-S221-U-B358-GOL'), + (0x9b75d73d1f69cb646f9df81b35748bb6f622d394, 'Paul Hanlon HIB Captains Green SPCAP-03 Epic', 'SPFL-21SPSS-E-CAPSPCAP-03-A-GRE'), + (0x9b7ce55d6180b949d4ec72003673fc1a971bb4e3, 'Toronto Blue Jays® Base Static Gold 438 Uncommon', 'MLB-S221-U-B438-GOL'), + (0x9b7d514309f094aef2fb38c604fba36581a0c2d4, 'Kansas City Royals® Ryan McBroom 1B Base Static White 606 Common', 'MLB-S221-C-B606-WHI'), + (0x9b8f038835edf12f4177c22bdaba38faf51143db, 'Cincinnati Reds® Wade Miley P Facsimile Signature Static Blue 638 Super Rare', 'MLB-S221-S-FS638-BLU'), + (0x9bad36d4f0c16bb59c25830d49fc15f43a343c9f, 'Moussa Diaby B04 Base White S4-56 Common', 'BUND-21TS4-C-BS4-56-S-WHI'), + (0x9bb37e2c761f940f3939e88255bd4c41bff01746, 'Arizona Diamondbacks® Pavin Smith 1B Base Motion Vintage Stock 444 Super Rare', 'MLB-S221-S-B444-VS'), + (0x9bbe5da7003bd59e34aa0e6a4fc1ad3a68b0bc04, 'FC Koln Sebastiaan Bornauw Young Stars Team Color 172 Super Rare', 'BUND-SC21-S-YS172-TMC'), + (0x9bc89c5fa9a45d28ace23eaba9cf6ee08ea25e38, 'Niklas Dorsch FCA Animation Gold Refractor S3-31 Legendary', 'BUND-21TS3-L-AS3-31-V-GOL'), + (0x9bcb4c1e48766f929b410fdeab9edd819a3ccb70, 'St. Louis Cardinals® Adam Wainwright P Base Static Gold 534 Uncommon', 'MLB-S221-U-B534-GOL'), + (0x9bcd788138b95e113c30a86aff5ab3cae55beb2e, 'Ryan Porteous HIB Top Plays Purple SPTPL-13 Rare', 'SPFL-21SPSS-R-TPLSPTPL-13-V-PUR'), + (0x9bcf011dcf5d17a092536fe6ad65728de5870440, 'Chicago White Sox® Dallas Keuchel P Base Motion Rainbow 488 Rare', 'MLB-S221-R-B488-RAI'), + (0x9bd05a17b4a9e511a5d8577d0a1d8299ccd12d6e, 'Cincinnati Reds® Nick Castellanos Base Blue 1038 Common', 'MLB-22PRI-C-B109-M-BLU'), + (0x9bd5ad00bd65cabfe8592d8dd810b244832558fe, 'Cleveland Guardians™ Jose Ramirez Facsimile Signature Gold 3022 Super Rare', 'MLB-22PRI-S-FS21-M-GLD'), + (0x9bd61b50b4b5d347204afc582fde5fa2ef7fb59d, 'St. Louis Cardinals® Dylan Carlson Facsimile Signature Slab Gold 3028 Epic', 'MLB-22PRI-E-FS9-M-GLD'), + (0x9bd9a6ac624d3a5df045507b72a274ee3315693a, 'Milwaukee Brewers™ Jedd Gyorko 1B/3B Base Motion Vintage Stock 645 Super Rare', 'MLB-S221-S-B645-VS'), + (0x9bdffd845e3b03afa8e6cbe5ead8cc72e726b0d3, 'Pittsburgh Pirates® Ke''Bryan Hayes Stars of MLB Chrome Night SMLBC-16 Legendary', 'MLB-22S1-L-SMLBC16-M-NIT'), + (0x9be257b1a6e41c6e70a8ef2e9f9f6f9f15400a3f, 'Avax Ape', 'AvaxApe'), + (0x9bef6bf07213520bec4862df0bf22c10276a9e47, 'Angels® Jo Adell Inception Base Red 43 Rare', 'MLB-INC21-R-IB43-RED'), + (0x9befe4abffd698d3ad2a4106d7f017ab6ea04ec7, 'Seattle Mariners™ Mitch Haniger Base Vintage Stock 80 Super Rare', 'MLB-22S1-S-B80-M-VS'), + (0x9bfb1cb49348ca9ca6b8dae7987952aabac87c9e, 'Chicago White Sox® Luis Robert Inception Base Red 27 Rare', 'MLB-INC21-R-IB27-RED'), + (0x9bfe6e30f56d1a9e6bd8e857140888eda3a0acac, 'Atlanta Braves™ Ronald Acuña Jr. Ultra Short Print White 200 Epic', 'MLB-22S1-E-USP1-M-WHI'), + (0x9c07c0c016b920deeac0759b53304a215ed7da32, 'Boston Red Sox® Alex Verdugo Postseason Base Red 69 Rare', 'MLB-21POST-R-B69-M-RED'), + (0x9c07d46e9227f462ba50939414be3130ba90ec7c, 'San Francisco Giants® Sammy Long Base Vintage Stock 308 Super Rare', 'MLB-22S1-S-B304-M-VS'), + (0x9c14b7e73d8cf559fe8eaa8f461439d53dbe4369, 'Chicago Cubs® Brailyn Marquez P Short Print Motion White 404 Super Rare', 'MLB-S221-S-SP404-WHI'), + (0x9c18ef5a55a7478bc24019a65e0eefd6ac40ca62, 'New York Mets® Andres Gimenez Inception Base Red 62 Rare', 'MLB-INC21-R-IB62-RED'), + (0x9c1b0e9f464e64056d279d2f70cfc75134114bb9, 'Godzilla RAT Page 1 Comic Page Color 1 Rare', 'GDZ-RAT21-R-CP1-S-COL'), + (0x9c2928de2c34e76e8fc8159fd1dc654497efb80a, 'Atlanta Braves™ Dansby Swanson World Series Gold 12 Epic', 'MLB-21POST-E-WS12-M-GOL'), + (0x9c36a0377cd3ac3e070731840e3154101f5a67fe, 'Sport-Club Freiburg Jonathan Schmid Base Players Gold 38 Rare', 'BUND-SC21-R-BP38-GLD'), + (0x9c41e6478823105d5f31ee618b9ce7504b5091f1, 'Houston Astros® Framber Valdez Division Series Bronze 24 Super Rare', 'MLB-21POST-S-D24-M-BRO'), + (0x9c41ebb1f00a93459e1e5d00366d893fb3ac026d, 'FC Union Berlin Robin Knoche Base Players Gold 52 Rare', 'BUND-SC21-R-BP52-GLD'), + (0x9c5f7c0ab05fd5084955e6dae4ae89cb8abce2ba, 'Vicky Singh', 'VIC'), + (0x9c60e6c1bbe6885405ca5b008a812bf0e97e8c57, 'Jake Carroll MOT Top Plays Gold SPTPL-16 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-16-V-GOL'), + (0x9c6ab29a0162169429fff12227c8a5ea1bf03316, 'Cosmic Dragons', 'CD'), + (0x9c6b4909cf1969a5e7d8c6e973f1f9335d13acc9, 'Houston Astros® Liftoff Base Independence Day RWB 110 Rare', 'MLB-22S1-R-B109-M-RWB'), + (0x9c70331b49e99951334421159365036a60b85d38, 'Cincinnati Reds® Sonny Gray Facsimile Signature Gold 3043 Super Rare', 'MLB-22PRI-S-FS46-M-GLD'), + (0x9c7ca535650a2f2413fe98df2818e7b212d8d02c, 'CryptoVikings', 'VIKING'), + (0x9c7d0ece6c3c3763b327b25a4d539726636a64dd, 'RB Leipzig Angeliño Base Players Gold 14 Rare', 'BUND-SC21-R-BP14-GLD'), + (0x9c853841cb82924feac57da6d6cb9ac357d06749, 'Houston Astros® Jose Altuve Base Independence Day RWB 278 Rare', 'MLB-22S1-R-B275-M-RWB'), + (0x9c8c46ade9105d3398f3af50e195d1d7e07f4206, 'Pixlz', 'PIX'), + (0x9c8eb4588d4cb6d0a865e8c066e5ab60211c7fe6, 'Boston Red Sox® Jarren Duran Facsimile Signature Slab Gold 3107 Epic', 'MLB-22PRI-E-FS16-M-GLD'), + (0x9c8f2ecd69f6c9a87e8a6916154a6e82ca9da776, 'St. Louis Cardinals® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 26 Legendary', 'MLB-21S2SC-L-21S2SCR26-M-TC'), + (0x9c90b64628352ef20dd5f302aed636cb00e727f3, 'Bayer 04 Leverkusen Karim Bellarabi Base Players Team Color 25 Uncommon', 'BUND-SC21-U-BP25-TMC'), + (0x9c986016261b5746f7266405b82b5efc04cad871, 'Houston Astros® Justin Verlander Inception Base Red 37 Rare', 'MLB-INC21-R-IB37-RED'), + (0x9c9e02c188b2af1f77ec09be92dd49e4820ec541, 'St. Louis Cardinals® Base White 247 Common', 'MLB-22S1-C-B244-S-WHI'), + (0x9c9f19434d2f0154b3dc04913c9e02a0dd969e52, 'HC Boss Weapon', 'HCBW'), + (0x9ca09dd3aebb2f148db19969a1802270c7a37773, 'Minnesota Twins® Alex Kirilloff Base Independence Day RWB 197 Rare', 'MLB-22S1-R-B196-M-RWB'), + (0x9ca3b73daf8ca3da6fe907ade1622fcf427201df, 'FeRARI Frank Animation Color 11 Rare', 'GPK-NFT22-R-A11-A-COL'), + (0x9cac23740b2c41c5b27e49a12ce06e30b2242afc, 'Houston Astros® Yordan Alvarez Pure Power Facsimile Signature Reward White 3308 Legendary', 'MLB-22PRICR-L-PPR4-M-WHI'), + (0x9cacc273e91d5133258b6d6604217385d84bfad1, 'New York Mets® Francisco Lindor 1987 35th Anniversary Wood T87-85 Common', 'MLB-22S1-C-1987A62-M-WD'), + (0x9cae7cce1108a071e23a293147a6610c224ca628, 'BSGGStaking', 'BSGGStaking'), + (0x9caf7e46454effce79ffef053b6a6051710ed60a, 'American League™ Joey Gallo Base Blue 1303 Common', 'MLB-22PRI-C-B226-M-BLU'), + (0x9cb44fdfa62eea3489ea6581108ed5f9895fb33f, 'JUSTTT', 'JSTT'), + (0x9cb8e07d67b1e75c63d94dfada73bd1212dc066c, 'Houston Astros® Michael Brantley Postseason Base Red 55 Rare', 'MLB-21POST-R-B55-M-RED'), + (0x9cbb56985fe3ed7ef8d332e81cf22d4d4f7fa1ec, 'Finalissima 2022 AVI Redemption Navy 22FR-01 Super Rare', 'UEFA-FR-S-RE22FR-01-A-NAV'), + (0x9cc1199179cc36e6b2a6111a90504976455c2a7c, 'Cincinnati Reds® Jesse Winker 1987 35th Anniversary Wood T87-43 Common', 'MLB-22S1-C-1987A33-M-WD'), + (0x9cc561a700e57882ee7cd8ef47ca340c36d5d48a, 'New York Yankees® Kyle Higashioka Base Vintage Stock 292 Super Rare', 'MLB-22S1-S-B289-M-VS'), + (0x9cd01ca6f1eac76414d1fcf49fc7059095156fba, 'Philadelphia Phillies® Adonis Medina P Base Motion Rainbow 510 Rare', 'MLB-S221-R-B510-RAI'), + (0x9cd137466c72666ff6049aa0af3a5848d55f9ac3, 'Tom Parkes LFC Top Plays Purple SPTPL-08 Rare', 'SPFL-21SPSS-R-TPLSPTPL-08-V-PUR'), + (0x9cdae9a7a890012d8bb4103919548951cb40254a, 'Tampa Bay Rays™ Chris Archer Base Vintage Stock 254 Super Rare', 'MLB-22S1-S-B251-M-VS'), + (0x9cdc9bb66fbeaa953cf7c83aa577f8e7b31ba782, 'Los Angeles Dodgers® Albert Pujols Short Print White 237 Rare', 'MLB-22S1-R-SP47-M-WHI'), + (0x9ce1b000672e2b0fa8e74a14d06c080949e7bafb, 'FC Union Berlin Sheraldo Becker Base Players Team Color 53 Uncommon', 'BUND-SC21-U-BP53-TMC'), + (0x9cecb5c08690ff202a43512131123b77268dae09, 'Leroy Sané BAY Animation Gold Refractor S1-01 Legendary', 'BUND-21TS1-L-AS1-01-V-GOL'), + (0x9cf43209953d4c8982bbe05ee0553bac641daf91, 'Uncommon Comic 28 1-28 Bazooka Joe 2021 NFT', 'BZK-U-28C'), + (0x9cf7fe7430b216d35423b56dabf7baecef72721b, 'Silk Road 2050 - The Grand Bazaar', 'gLW'), + (0x9d028a01eefa3992c15628b03e8e86dbba1f3141, 'Eintracht Frankfurt Evan Ndicka Young Stars Team Color 161 Super Rare', 'BUND-SC21-S-YS161-TMC'), + (0x9d0d12aa4bc1e2856736d86565b2fe6ef79deb3c, 'Colorado Rockies™ Daniel Bard Base White 167 Common', 'MLB-22S1-C-B166-S-WHI'), + (0x9d0dc8c5b81862d330393329e82bf81a8c697bdd, 'Georginio Rutter TSG Base White S3-28 Common', 'BUND-21TS3-C-BS3-28-S-WHI'), + (0x9d158ba3ffe3b2c5278f299c9c3c4fc1c25ec1ab, 'Pittsburgh Pirates® Kevin Newman SS Base Static White 502 Common', 'MLB-S221-C-B502-WHI'), + (0x9d20b7dec81739866b23df1445f2b1e7641891e7, 'Mini Millionaires', 'MMIL'), + (0x9d214d473f101efe70977f990ceda294b1e0b9ec, 'Galaxy Force 9', 'GF9'), + (0x9d22ea05de074fc160b0ef2240eb2312548ec389, 'Cleveland Guardians™ Franmil Reyes Base Blue 1194 Common', 'MLB-22PRI-C-B44-M-BLU'), + (0x9d2419243158af31e09123a75425e73942a49b42, 'San Francisco Giants® Joey Bart Inception Base White 85 Common', 'MLB-INC21-C-IB85-WHT'), + (0x9d2979a17da7a362460341391d19c887f2d19b0e, 'Boston Red Sox® Chris Sale P Base Static White 609 Common', 'MLB-S221-C-B609-WHI'), + (0x9d2a3c871cc761bdf5a18e4b1577a095a08b084c, 'Ta-Tro (The Big Eye) GEN1', '0'), + (0x9d2fc1c80597b2279c7304aa89d276347601c668, 'Majestic temples dimond cards', 'MTDC'), + (0x9d3f6b50c5a0c9c50bcca30f8fa89a8f4433061d, 'Alter Ego Mask', 'AEM'), + (0x9d532729ef5d8441a2c2e59d7a049de5be8d670a, 'FC Schalke 04 Suat Serdar Top Players Gold 125 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP125-AFS-GLD'), + (0x9d53d9a4ca36f12364429f67747e95804046c969, 'FSV Mainz 05 Karim Onisiwo Base Players Team Color 64 Uncommon', 'BUND-SC21-U-BP64-TMC'), + (0x9d5c66a62cfa5f589c6c0cd89386f640320bec51, 'New York Yankees® Luis Severino P Base Motion Vintage Stock 577 Super Rare', 'MLB-S221-S-B577-VS'), + (0x9d61de7e652bb144c83db356b42ca23d2e604fdd, 'Angels® Shohei Ohtani Pure Power Facsimile Signature Reward White 3329 Legendary', 'MLB-22PRICR-L-PPR12-M-WHI'), + (0x9d647dc4f0dff3f4cd2e2ce1e073648384b728b9, 'Hertha Berlin Dedryck Boyata Base Players Gold 46 Rare', 'BUND-SC21-R-BP46-GLD'), + (0x9d71d58aa44145d948320c316776fda3a078cac7, 'Pittsburgh Pirates® Kevin Kramer 2B Base Motion Vintage Stock 344 Super Rare', 'MLB-S221-S-B344-VS'), + (0x9d73b4d760f89d679207f598df8b7aa1957c45bc, 'Erhan Mašović BOC Club Phemons Team Color S4CPH-05 Epic', 'BUND-21TS4-E-CPHS4CPH-05-V-TMC'), + (0x9d8d2998f3f7fab13bc0ae0511962eb911270234, 'Chicago Cubs® Base Static White 529 Common', 'MLB-S221-C-B529-WHI'), + (0x9d8d7f9dff3537f83fc2994f49d454ba7f34f7c8, 'Boston Red Sox® Christian Vazquez C Base Static White 557 Common', 'MLB-S221-C-B557-WHI'), + (0x9d8e61df56964ac272309ccb3afad966f419978b, 'Atlanta Braves™ Adam Duvall OF Base Static White 601 Common', 'MLB-S221-C-B601-WHI'), + (0x9d8e7f88550cade6b754498089e9e6b4e48dc409, 'WOOFi NFT', 'WOOFi'), + (0x9d9c79b5060cdf2a8954efc9fd307030e879f4ee, 'Baliola Collections', 'BAC'), + (0x9da1dc0ef77baba3915150d48e7e35c646a57ac5, 'St. Louis Cardinals® Alex Reyes Base Glitch 47 Uncommon', 'MLB-22S1-U-B47-M-GLI'), + (0x9da8d909a0789e9042bfa90f0b4ce257ab56acac, 'Arizona Diamondbacks® Zac Gallen P Facsimile Signature Static Blue 440 Super Rare', 'MLB-S221-S-FS440-BLU'), + (0x9db05f97ea7558c9b15ac06800e4b3c6539462cb, 'San Diego Padres™ Trevor Rosenthal P Base Motion Vintage Stock 454 Super Rare', 'MLB-S221-S-B454-VS'), + (0x9db29189da64df24440778caf92e175af4e75cf9, 'Houston Astros® Framber Valdez Base White 261 Common', 'MLB-22S1-C-B258-S-WHI'), + (0x9db4c6930964a0e573fa6aa15a1c5d16c4f64fd0, 'PDILogistics', 'PDI2022'), + (0x9db5fd0a28419571264ea870fd7498e3d582d70b, '2sh0xava', '2SH0'), + (0x9db6c2e9c7664861be59afb3324321998637db22, 'Super Rare Comic 59 2-11 Bazooka Joe 2021 NFT', 'BZK-S-59C'), + (0x9dbcda356e6a5a0f1416d98a2b4bc30ea70d2444, 'New York Yankees® Aaron Judge Base Glitch 99 Uncommon', 'MLB-22S1-U-B98-M-GLI'), + (0x9dc10a43ece89dd642e1a0cfc3954545cee5e478, 'AVA FANS', 'AVAF'), + (0x9dc25881ed98a7365c4c765f7cd9119ed8ea381f, 'Atlanta Braves™ Austin Riley Base Independence Day RWB 115 Rare', 'MLB-22S1-R-B114-M-RWB'), + (0x9dc5d9961001c519ef39078d64386d02c725e2e0, 'Christopher Trimmel FCU Base Red S4-47 Uncommon', 'BUND-21TS4-U-BS4-47-S-RED'), + (0x9dd407d24a9ea027deaf98c24edb66b34ecdfec7, 'Generals of Freya', 'GEOF'), + (0x9dd7e416d817ccd610a499eb8f46e0a6b94ce2f2, 'Seattle Mariners™ Mitch Haniger Short Print White 80 Rare', 'MLB-22S1-R-SP17-M-WHI'), + (0x9dd8e2f08362ccc0900d687fbfe3b7d2e09756bb, 'non_familiar_faces', 'NFF'), + (0x9dda3cd448eda9024b3f93f4a5c215fa508a0fbe, 'Chicago White Sox® Tim Anderson Postseason Base Navy 10 Uncommon', 'MLB-21POST-U-B10-M-NVY'), + (0x9de7c1f0df319cee49bb25c187ab271573519a3c, 'KILLABEARS', 'KILLABEARS'), + (0x9debf8d932f2b095eb0b941f2a101db1a9136869, 'Boston Red Sox® Eduardo Rodriguez Base Independence Day RWB 192 Rare', 'MLB-22S1-R-B191-M-RWB'), + (0x9e07d3cb0238774f3c2f01cbb52e24bbf3bfd4a3, 'New York Yankees® Gio Urshela Postseason Base Red 76 Rare', 'MLB-21POST-R-B76-M-RED'), + (0x9e10e3c5c28937b22710896155e2563d27d6a7b1, 'Wataru Endō VFB Motion Rainbow Refractor S1-09 Super Rare', 'BUND-21TS1-S-MS1-09-V-RAI'), + (0x9e2075b92ac1e375b7f7d4a4bcb915bc142c3210, 'Borussia Dortmund Emre Can Base Players Gold 7 Rare', 'BUND-SC21-R-BP7-GLD'), + (0x9e2384a71ef872ec20cbd34806daa4c01c364b47, 'New York Mets® Pete Alonso Base Independence Day RWB 315 Rare', 'MLB-22S1-R-B311-M-RWB'), + (0x9e23d84b1351547005f6654ae4e0cd7b4f8b260b, 'Los Angeles Dodgers® Max Scherzer 1987 35th Anniversary Wood T87-62 Common', 'MLB-22S1-C-1987A43-M-WD'), + (0x9e2a64bc25cce2987f82a88ac54a2e96f9d5774c, 'Blurry Penguins', 'Bpg'), + (0x9e386604b99fd0b3215ad095f7b90c2759979be9, 'New York Yankees® Base Independence Day RWB 121 Rare', 'MLB-22S1-R-B120-M-RWB'), + (0x9e3907aa1cd43fc86ee306cca0bd1b1000bd5dc4, 'Degen Saitama', 'DegenSaitama'), + (0x9e3d1e7fc199d09756e705c69650013869357594, 'Silk Road 2050 - Silk Road Badge', 'gLA'), + (0x9e3fd38ff12b61aed587d903a84521fec19690b8, 'Atlanta Braves™ Charlie Morton Base Glitch 82 Uncommon', 'MLB-22S1-U-B82-M-GLI'), + (0x9e4681d1ea649c1e8d592e1b2ff003c0727adfb8, 'Atlanta Braves™ Ender Inciarte OF Base Motion Platinum 515 Epic', 'MLB-S221-E-B515-PLA'), + (0x9e46f01ecfab3447213a3f2a4a428e22bf07e7b3, 'Chicago White Sox® Yermin Mercedes Base White 141 Common', 'MLB-22S1-C-B140-S-WHI'), + (0x9e4a64ce788d2b228a3dcffb854762bef516d92a, 'Arizona Diamondbacks® Christian Walker 1B Base Static White 386 Common', 'MLB-S221-C-B386-WHI'), + (0x9e5080fc4c0fbabc5d62c536ed7ead3b293002e2, 'National League™ Ozzie Albies Base Blue 1295 Common', 'MLB-22PRI-C-B210-M-BLU'), + (0x9e50c174dcce2cdfa232850d3aa7c1146dc2d0f7, 'Super Rare Comic 9 1-9 Bazooka Joe 2021 NFT', 'BZK-S-9C'), + (0x9e57343477d45ef0c094ea739afeb504ca1909ed, 'Friendly Fires', 'FFS'), + (0x9e58c0b282420fa7b05c38096c733af8d5ec8c04, 'Toronto Blue Jays® Ken Giles P Base Motion Rainbow 422 Rare', 'MLB-S221-R-B422-RAI'), + (0x9e5af1bac82fdc91a0a7d40a7778d826068e8ddb, 'Nils Petersen SCF Animation Gold Refractor S4-64 Legendary', 'BUND-21TS4-L-AS4-64-V-GOL'), + (0x9e5b0eda6ced8a9d1cbd4d09c5e57ecb22731dfe, 'Silver Reality', 'Silver Reality'), + (0x9e604e3a29ba945bd4f63c971a22b48eb3f50787, 'Geckets AVAX', 'CGCAVAX'), + (0x9e6ac52d27fac3dcb798abcf10651c7c90a2c549, 'Chicago White Sox® Carlos Rodon Postseason Base Red 14 Rare', 'MLB-21POST-R-B14-M-RED'), + (0x9e6fb292e45d7601d767b9c72914ed5507507c3f, 'Vincenzo Grifo SCF Animation Black Refractor S1-07 Epic', 'BUND-21TS1-E-AS1-07-V-BLA'), + (0x9e7b1b358c79129d023f20b2a0692249c6e6c465, 'Pop is dead', 'POP'), + (0x9e8b96ae80942f1346b3200c2d30d026c2ba8018, 'Trial Dummy', 'TDMB'), + (0x9e8e47918cb4a88048f1cff93be1d6eac5026ff9, 'Hertha Berlin Sami Khedira Base Players Team Color 50 Static Facsimile Signature Rare', 'BUND-SC21-R-BP50-SFS-TMC'), + (0x9e97e004aecd830b07b8d8c248cedb140d17f9dd, 'ARbots', 'ARBT'), + (0x9ea035dec5a78ee40ee72fa9941ec75890a4c8cd, 'FSV Mainz 05 Stefan Bell Base Players Gold 63 Rare', 'BUND-SC21-R-BP63-GLD'), + (0x9ea175e2005f3533f881fc5a8000ad810a513da0, 'Toronto Blue Jays® Hyun-Jin Ryu Base Pink 1160 Uncommon', 'MLB-22PRI-U-B79-M-PNK'), + (0x9eaa7bff4792589c440a72016f35854f5b8caedf, 'Adam Hložek B04 Color Splash Facsimile Signature Team Color TK-58 Legendary', 'BUND-22TK-L-CSTK-58-S-TMC'), + (0x9eb58f67355bffb6392b456683a8aa783fd6c1d1, 'Houston Astros® Jose Altuve Inception Base White 36 Common', 'MLB-INC21-C-IB36-WHT'), + (0x9eb84fe1a95b986e13cbda4e376207fa5921c8be, 'Raphaël Guerreiro DOR Motion Rainbow Refractor S1-03 Super Rare', 'BUND-21TS1-S-MS1-03-V-RAI'), + (0x9ec884983319ce1b66baa304c6759f0938287abe, 'FC Schalke 04 Omar Mascarell Base Players Team Color 58 Static Facsimile Signature Rare', 'BUND-SC21-R-BP58-SFS-TMC'), + (0x9ecbdf6beeb71b4cba3253189009e9b134217a7d, 'FC Bayern Munich Serge Gnabry Base Players Gold 5 Rare', 'BUND-SC21-R-BP5-GLD'), + (0x9ecf7b2e4a4c647c38c4c1ae0be4013123f5e31c, 'Rare Comic 70 2-22 Bazooka Joe 2021 NFT', 'BZK-R-70C'), + (0x9ed61eb9aeb5aa07880441c217cb4fda02f1f5d8, 'St. Louis Cardinals® Yadier Molina Postseason Base Navy 41 Uncommon', 'MLB-21POST-U-B41-M-NVY'), + (0x9ef43098455882f41e3b78b941fbaf85173d0fb8, 'SSR NFT', 'SSR'), + (0x9ef66e89128c92a26d798ccaa6dee4e8479083be, 'krt', 'KRT'), + (0x9efd15e77f3e134e6de88a02d459079798c785c8, 'Minnesota Twins® Miguel Sano 1B/3B Base Static Gold 383 Uncommon', 'MLB-S221-U-B383-GOL'), + (0x9efd8136a917db45e7d34b22ecef602faa399ec2, 'Boston Red Sox® Christian Vazquez Base White 63 Common', 'MLB-22S1-C-B63-S-WHI'), + (0x9f04f64679e37472544faca106ce97949265531e, 'Arizona Diamondbacks® Luke Weaver Base White 273 Common', 'MLB-22S1-C-B270-S-WHI'), + (0x9f0e7b69552cb29b60fbf0a31da8ebb6f7a152d6, 'St. Louis Cardinals® Matt Carpenter 3B Base Motion Platinum 566 Epic', 'MLB-S221-E-B566-PLA'), + (0x9f11883c1c9fac826546890920d5bdf75a730c7d, 'Washington Nationals® Josiah Gray 1987 35th Anniversary Wood T87-12 Common', 'MLB-22S1-C-1987A10-M-WD'), + (0x9f14c8374c2141e512395642c385d1dd5e2f4ec9, 'Uncommon Comic 86 2-38 Bazooka Joe 2021 NFT', 'BZK-U-86C'), + (0x9f151f04cbf8bf0272c960ff14fb0c5d56e5ad54, 'Baltimore Orioles® Alex Wells Base Independence Day RWB 118 Rare', 'MLB-22S1-R-B117-M-RWB'), + (0x9f18bcf737877119b98439e53570efff8d3eaf1f, 'Milwaukee Brewers™ Jake Cousins Facsimile Signature Gold 3113 Super Rare', 'MLB-22PRI-S-FS15-M-GLD'), + (0x9f1de66ba922d6999e7bdb515e4d1ad73896d5c9, 'Houston Astros® José Altuve Topps NOW White 1024 Rare', 'MLB-21NOW-R-TN1024-WHI'), + (0x9f1f13de49e81df81b20c87a761018692383e4d5, 'Colorado Rockies™ Charlie Blackmon Inception Base White 22 Common', 'MLB-INC21-C-IB22-WHT'), + (0x9f3408533d2267686e594b0adc080d95578ed357, 'Kansas City Royals® Salvador Perez Short Print White 219 Rare', 'MLB-22S1-R-SP45-M-WHI'), + (0x9f37494e2529cd8ca4772ea55ba7c936c4ddaae2, 'San Francisco Giants® Mike Yastrzemksi Base Vintage Stock 103 Super Rare', 'MLB-22S1-S-B102-M-VS'), + (0x9f41538de8e8aaf03b6fa0b32ad4380c58f34ae0, 'Pittsburgh Pirates® Kevin Kramer 2B Base Static White 344 Common', 'MLB-S221-C-B344-WHI'), + (0x9f41b3d436b4024613fc0bc12ad49e0695a1d011, 'Toronto Blue Jays® Danny Jansen C Base Motion Vintage Stock 597 Super Rare', 'MLB-S221-S-B597-VS'), + (0x9f479561d4c5d74e656c99811723b47be565b3f5, 'New York Yankees® Walk-Off Water Base Independence Day RWB 119 Rare', 'MLB-22S1-R-B118-M-RWB'), + (0x9f47af2a30df63cdf97d5ccd20b6d4863ca229ab, 'Degen Gamepiece Deux', 'dGAMEd'), + (0x9f4970687df20854e32ae1c941a022397a23ec19, 'Alphonso Davies BAY Ascendent Magenta TK-37 Uncommon', 'BUND-22TK-U-ASCTK-37-S-MAG'), + (0x9f53adc4970551b2e16d08d4894e006ac6fd4d09, 'Chicago White Sox® Jose Abreu 1B Base Motion Platinum 331 Epic', 'MLB-S221-E-B331-PLA'), + (0x9f57c9d7c46deb8a65efc03604ce3325a806fb0b, 'Founder Node Booster Tier I', 'Founder Node Booster Tier I'), + (0x9f5ba280c7d35c319d47338c2230e9bbeea2ad67, 'Rare Comic 75 2-27 Bazooka Joe 2021 NFT', 'BZK-R-75C'), + (0x9f666f6266a4bd9a42a7703cf2e7a16df550dded, 'SV Werder Bremen Theodor Gebre Selassie Base Players Team Color 79 Static Facsimile Signature Rare', 'BUND-SC21-R-BP79-SFS-TMC'), + (0x9f69764d11bcd3a405e0409a30a7232bd36b430a, 'Jonnie''s Tampon', 'JNTMP'), + (0x9f77d21fedfad07770fa6009c081554d887488fd, 'Houston Astros® Alex Bregman Base White 68 Common', 'MLB-22S1-C-B68-S-WHI'), + (0x9f83263c428d47bf4c848d84c577f54e813ee0a6, 'Chicago White Sox® Eloy Jimenez Base Pink 1037 Uncommon', 'MLB-22PRI-U-B119-M-PNK'), + (0x9f8d2ba22edf64e0ffc2098682a5a820a563a348, 'Milwaukee Brewers™ Avisail Garcia Base Independence Day RWB 92 Rare', 'MLB-22S1-R-B91-M-RWB'), + (0x9f91666c09b5bf54a1c5e3f30f6e38c1f2ac5855, 'Manu Koné BMG Ascendent Facsimile Signature Blue TK-44 Legendary', 'BUND-22TK-L-ASCTK-44-S-BLU'), + (0x9f94e59a7614a9abbaaf4031855a84e826b70c0f, 'booger picker', 'BGR'), + (0x9f9d965f94ae0ae3cdfea7814e2401e3d0d91407, 'ArtSoup Stickers', 'ASSTCK'), + (0x9fa96459bbc1966057a0f3ddd31c4c33e6f44e34, 'Diamond Hans Animation Facsimile Signature Color 19 Super Rare', 'GPK-NFT22-S-AFS19-A-COL'), + (0x9faca8ee46985217c83761070ddb58677b8f1981, 'San Francisco Giants® Evan Longoria Postseason Base Red 29 Rare', 'MLB-21POST-R-B29-M-RED'), + (0x9fb18762def3e69ff869a17d364c250750fbfcf4, 'Texas Rangers® Isiah Kiner-Falefa Base Glitch 93 Uncommon', 'MLB-22S1-U-B92-M-GLI'), + (0x9fb7d74cdc2a76bcbfedfecd46c2d6ab8652df9e, 'New York Yankees® Giancarlo Stanton ASG 2022 MVP Standard Reward Silver 2 Epic', 'MLB-22ASGR-E-R2-M-SIL'), + (0x9fd33479798c7e59537d014f71639b2171b271c3, 'King Ghidorah Strikes Traditional Art Color 6 Rare', 'GDZ-RAT21-R-TA6-S-COL'), + (0x9fd40b9e7392fe33aeef4a20c7c8e634d6cc5939, 'Los Angeles Dodgers® Andre Jackson Base Glitch 258 Uncommon', 'MLB-22S1-U-B255-M-GLI'), + (0x9fd5af5937ddd219c89c7df4d1b9c4c075f0b4be, 'Battra, Mothra, and Godzilla Base Collectible Magenta 12 Common', 'GDZ-RAT21-C-B12-S-MAG'), + (0x9fed6679b9cd5da4fe046f6bc096c575b1d6481b, 'Gerrit Holtmann BOC Top Players Facsimile Signature Team Color TK-35 Epic', 'BUND-22TK-E-TPTK-35-S-TMC'), + (0x9ff1918d212c435ad1f1734e9c4dc2db835161af, 'Snowball NFT Holiday Hat', 'SNOBNFTHOLIDAYHAT'), + (0x9ff1cf2639f805bf0c111a60c1edd160d8fdb67f, 'FSV Mainz 05 Robin Zentner Top Saves Team Color TS-13 Epic', 'BUND-SC21-E-TSTS-13-TMC'), + (0x9ff714870c878b9612352f80432afac4b04d3d82, 'RB Leipzig Amadou Haidara Base Players Team Color 15 Static Facsimile Signature Rare', 'BUND-SC21-R-BP15-SFS-TMC'), + (0x9ffaacff2885448e1c833117a6af425066503429, 'Surelock Holmes', 'RPSH'), + (0xa00a77d11bde7a5d6eb7a64b791125cbf854f003, 'NFT Garden', 'NFTG'), + (0xa00b8e8c5719e89607e5e6a1419c3b046235b6f1, 'Georginio Rutter TSG Animation Black Refractor S3-28 Epic', 'BUND-21TS3-E-AS3-28-V-BLA'), + (0xa0257ab9cf000616e993788a991e453e18a8835e, 'New York Mets® David Peterson Rookie and Future Phenoms Facsimile Signature White 54 Rare', 'MLB-INC21-R-RC54-WHT'), + (0xa02d79489cd9a86717d68f043afd6890467f848f, 'Moonbuddies World Cup', 'MBWC'), + (0xa0312cf4670fba138114348ac990fec5bfa408c0, 'Houston Astros® Justin Verlander Base Pink 1012 Uncommon', 'MLB-22PRI-U-B115-M-PNK'), + (0xa03acfc1a7fbe1bd9c1a846c6c9df6890a92987f, 'New York Mets® Jeff McNeil 2B/OF Base Motion Platinum 489 Epic', 'MLB-S221-E-B489-PLA'), + (0xa03c8b7c17a1c2d3b1a63b397e34ef2c8a393d41, 'Angels® Mike Trout Inception Base Blue 44 Uncommon', 'MLB-INC21-U-IB44-BLU'), + (0xa03da08f17b5981e73a9dd550da017f5f7c84282, 'New York Yankees® Giancarlo Stanton DH/OF Short Print Motion White 642 Super Rare', 'MLB-S221-S-SP642-WHI'), + (0xa0411066ee9f2080c87a2db47bd2ba743d357f4c, 'New York Yankees® Clarke Schmidt P Base Static Gold 456 Uncommon', 'MLB-S221-U-B456-GOL'), + (0xa051376317f1bfc408b3909dbaa7ddcddd006cbf, 'Cleveland Guardians™ 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 7 Legendary', 'MLB-21S2SC-L-21S2SCR7-M-TC'), + (0xa05ecc81c3f67f59a02d63b3fdf5588fe02dc2ea, 'Atlanta Braves™ Picture Time Base Motion Platinum 372 Epic', 'MLB-S221-E-B372-PLA'), + (0xa06059c82ca60a7076476b3897dd6baa970ffbe0, 'SmolCorn', 'SMCORN'), + (0xa060f9cf70ad494f7ebdaf6d0ab8a3213d2d1d7a, 'Chicago Cubs® Kyle Hendricks Inception Base Blue 17 Uncommon', 'MLB-INC21-U-IB17-BLU'), + (0xa0720b119a23b04a6ebe9576b8e82dd40127f534, 'Soups', 'SOUP'), + (0xa07d6c455bb83cb253a38417be033eec7724cbc2, 'Atlanta Braves™ Austin Riley Postseason Base Navy 59 Uncommon', 'MLB-21POST-U-B59-M-NVY'), + (0xa07fdd20afb5e23f4ed86edfa59f1df9e77a6a72, 'Boston Red Sox® Xander Bogaerts 1987 35th Anniversary Wood T87-35 Common', 'MLB-22S1-C-1987A26-M-WD'), + (0xa08481f1b2df888e9e1845283da9ff8c072bb3bd, 'Devil Bat', 'DBAT'), + (0xa08b067da421ee6e72f74530f2317cee0d149e6c, 'Atlanta Braves™ Mark Melancon P Base Static White 574 Common', 'MLB-S221-C-B574-WHI'), + (0xa08b2cf2a5ce22824abf55194c4b4f152b8215b4, 'Houston Astros® Alex Bregman Base Independence Day RWB 68 Rare', 'MLB-22S1-R-B68-M-RWB'), + (0xa08eb18af514156b06443c1d6c363868410b6f25, 'Godzilla in the City Traditional Art CMYK Offset 5 Super Rare', 'GDZ-RAT21-S-TA5-A-CMYK'), + (0xa097e3e0f1a961b345e553613a49c98b5d1b572e, 'New York Yankees® Gio Urshela Base Vintage Stock 23 Super Rare', 'MLB-22S1-S-B23-M-VS'), + (0xa0a32e86da0ed5fc592610896426b2c4e98f528b, 'Marcus Thuram BMG Top Players Facsimile Signature Team Color TK-16 Epic', 'BUND-22TK-E-TPTK-16-S-TMC'), + (0xa0a8eea9ff550005570658ac702774ef1e96eee3, 'AiART', 'AIART'), + (0xa0acd41de68f3c88194f61bd5c33d1750f0ef946, 'Tampa Bay Rays™ Shane McClanahan P Base Static Gold 408 Uncommon', 'MLB-S221-U-B408-GOL'), + (0xa0ad940c8825f9b5965853ea314635037598a53e, 'Blorky man', 'BLM'), + (0xa0b33730d149d4108f7c795fdf75a3b6cc2124b4, 'Atlanta Braves™ William Contreras Rookie and Future Phenoms Facsimile Signature Blue 3 Super Rare', 'MLB-INC21-S-RC3-BLU'), + (0xa0b717f3b66cdd890bfb45a67021f309d09f3bd5, 'Oceania', 'gLW'), + (0xa0ba4e6a314b060ac15a60079986d72d4cf8f5b1, 'Atlanta Braves™ Travis d''Arnaud Second Place Beach 8 Epic', 'MLB-22ASG-E-SEC8-M-BCH'), + (0xa0bc5c21192b16e820d7feade426ba039d9fbc2c, 'Minnesota Twins® Alex Kirilloff OF Base Static White 413 Common', 'MLB-S221-C-B413-WHI'), + (0xa0bf599dfd685bb8389ee9206f5122f7c98f09a4, 'Sheraldo Becker FCU Top Players Team Color TK-27 Rare', 'BUND-22TK-R-TPTK-27-S-TMC'), + (0xa0c9924eb4c8d409024762e4eaecf2937781956f, 'Boston Red Sox® Christian Arroyo 2B Base Static Gold 338 Uncommon', 'MLB-S221-U-B338-GOL'), + (0xa0cef212cdf2499d03401c8d8cfcf35af55d72fe, 'Sorry No Gas', 'NOGAS'), + (0xa0d93581b693436d7b361116989647b48b862067, 'Washington Nationals® Stephen Strasburg Base Blue 1060 Common', 'MLB-22PRI-C-B29-M-BLU'), + (0xa0dadd9121b72e27905df51e0d3fb8617d880d71, 'San Francisco Giants® Tommy La Stella 2B Base Static Gold 462 Uncommon', 'MLB-S221-U-B462-GOL'), + (0xa0dd08a0a95e7fe94138cdf420be64eb45581e34, 'Super Rare Comic 12 1-12 Bazooka Joe 2021 NFT', 'BZK-S-12C'), + (0xa0dd2302fd87f95a016d225b2ace8f4d7a6a10bc, 'New York Yankees® Aaron Judge Inception Base White 65 Common', 'MLB-INC21-C-IB65-WHT'), + (0xa0e6a7e4c217e5569a40aa8b612848b6cfeb1f6d, 'FSV Mainz 05 Edimilson Fernandes Base Players Team Color 61 Static Facsimile Signature Rare', 'BUND-SC21-R-BP61-SFS-TMC'), + (0xa0e77946812f2edf05f1ca50bda385edac7ebb39, 'Meet YourSelf', 'MYS'), + (0xa0e9d22129f66c5ba9c1e09eaa6147dddbbd7952, 'Super Rare Comic 24 1-24 Bazooka Joe 2021 NFT', 'BZK-S-24C'), + (0xa0f3bda065d720399b6f8387e1ccd978d7835ce5, 'Crystal Winter Base Color 21 Common', 'GPK-NFT22-C-B21-S-COL'), + (0xa0f70dc0981363005c8010a71851fdd5d052f981, 'Harumi: Exclusive Drop', 'HED'), + (0xa0f788062f91846b0a5313d1a5c5d284eac3cb08, 'VfB Stuttgart Katompa Mvumpa Top Players Gold 142 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP142-AFS-GLD'), + (0xa10addca58359ee1157e944409b5025328832e92, 'Abstract Art', 'ABAT'), + (0xa111508bf7f637bc8b64384b2d92655fc054367b, 'Eggsmare', 'EGM'), + (0xa1172da47dcc25bcdb8fc9a16bf7728c8dc6c76e, 'wagmers', 'WGMRS'), + (0xa11a15ad58bcd881ed385f1cc0c14317a912f1da, 'Pixie Chicks', 'PCHX'), + (0xa123cd1dd5d245703e22fb8cc946a0d4fcc8f568, '1974 King Caesar Rookie Card Color 3 Super Rare', 'GDZ-RAT21-S-RC3-S-COL'), + (0xa12871533d1ed45b903f9a0b37ab1f21c3868cdc, 'Tampa Bay Rays™ Brandon Lowe Base Pink 1057 Uncommon', 'MLB-22PRI-U-B6-M-PNK'), + (0xa12a0909d2f8a55518ef23ce2e5072d179afec7a, 'Seattle Mariners™ Wild Card Newspaper BW 1046 Common', 'MLB-22TNP-C-WCN5-M-BW'), + (0xa12d0046e16b22f3b1862358ac6894794b5cdc1d, 'Houston Astros® Jake Meyers Base White 295 Common', 'MLB-22S1-C-B292-S-WHI'), + (0xa12ee1a04d128104d7ca9b1d6d90736a0cac4178, 'Houston Astros® Jason Castro C Base Static Gold 620 Uncommon', 'MLB-S221-U-B620-GOL'), + (0xa1318335252d9a287958896a78fb4473b6e58808, 'Godzilla RAT Pages 12 & 13 Comic Page Black and White 11 Uncommon', 'GDZ-RAT21-U-CP11-S-BW'), + (0xa1335f9c2922f8f89c3b3a98199b4449e24d8521, 'E4C Rangers', 'Ultimate'), + (0xa134002c6df71a25e832d8e2639200611c64d470, 'GHOSTEEZ', 'GHOST'), + (0xa135d599694745b9dc85d60fdf512ee66b4d7785, 'Boston Red Sox® Travis Shaw Base Vintage Stock 88 Super Rare', 'MLB-22S1-S-B88-M-VS'), + (0xa1433b2219754b3f380c0427ba4778304e3133a2, 'San Francisco Giants® Mauricio Dubon Rookie and Future Phenoms Facsimile Signature Red 69 Epic', 'MLB-INC21-E-RC69-RED'), + (0xa145a70ef05db53c5d47cbfb11c53cde8be3202e, 'Blair Spittal RSC Base Purple SP-35 Super Rare', 'SPFL-21SPSS-S-BSP-35-A-PUR'), + (0xa14c2cbf01893cd629e04db17c18b327eba5141b, 'Chicago Cubs® Kris Bryant Inception Base White 16 Common', 'MLB-INC21-C-IB16-WHT'), + (0xa154ca9160b06e9a78914539a2c3914707a56a1c, 'Arizona Diamondbacks® Christian Walker 1B Base Motion Rainbow 386 Rare', 'MLB-S221-R-B386-RAI'), + (0xa15e4221b1e6ac8c3c134fb531357cc35003bf5f, 'Heads or Tailz', 'HoT'), + (0xa160b0948e301ac8a46ce74e507383c5ba356d7a, 'Super Rare Comic 67 2-19 Bazooka Joe 2021 NFT', 'BZK-S-67C'), + (0xa167df09db71637c1822e5a97397bc954fb8caa2, 'Christoph Baumgartner TSG Motion Aqua Refractor S4-55 Rare', 'BUND-21TS4-R-MS4-55-V-AQU'), + (0xa169f768167c7c5d5dda9b38c20902637abffc8b, 'Minnesota Twins® Max Kepler Inception Base White 61 Common', 'MLB-INC21-C-IB61-WHT'), + (0xa16e1d3be3ad3b6a7de5ebd49177bfc7f72c7a55, 'Killer GF', 'Killer GF'), + (0xa17ea403fd5e4004e6d275637ba2e900fd6af26c, 'Philadelphia Phillies® Matt Vierling Base White 316 Common', 'MLB-22S1-C-B312-S-WHI'), + (0xa18cead73a3c00112daae1c7bbd3636e96ec2c72, 'Toronto Blue Jays® Rowdy Tellez 1B/DH Base Static Gold 493 Uncommon', 'MLB-S221-U-B493-GOL'), + (0xa18f8c1e5e5bbdf38c2765ce28d95671a27b723f, 'Atlanta Braves™ World Series Champions Reward Blue Epic', 'MLB-21REWARD-E-WSCR1-M-BLUE'), + (0xa19056df16cd6bc787c004e38c1ccab601e058dd, 'The Gathering', 'GTHR'), + (0xa1925817e8120e81208a89a7ffa386d338f22bc1, 'Houston Astros® Kyle Tucker OF Base Static White 617 Common', 'MLB-S221-C-B617-WHI'), + (0xa1a569b6df11ca552d7d8b3f601ce118bfe4e3dc, 'San Francisco Giants® Alex Wood Postseason Base White 31 Common', 'MLB-21POST-C-B31-S-WHI'), + (0xa1a801e17f4c2408dc3401bb441760dec1a3490f, 'Boston Red Sox® Michael Chavis 2B/1B Base Motion Vintage Stock 491 Super Rare', 'MLB-S221-S-B491-VS'), + (0xa1aa3b74587bb7fc5280def30a69ba8b74cc3ce4, 'Minnesota Twins® Josh Donaldson Base White 226 Common', 'MLB-22S1-C-B223-S-WHI'), + (0xa1ad06bc50f199fde300e1c474d2ac0e6746bc2d, 'Toronto Blue Jays® Randal Grichuk OF Base Motion Vintage Stock 352 Super Rare', 'MLB-S221-S-B352-VS'), + (0xa1b0b7968f3b4af0210552f55c67a67e065f4469, 'Houston Astros® Alex Bregman Postseason Base Red 51 Rare', 'MLB-21POST-R-B51-M-RED'), + (0xa1b142787a609c464aae50338586f6702d099f72, 'Weird Cats', 'Kats'), + (0xa1b1ac146304478c7054de97f5257d3592ce49ea, 'Trick or Treat', 'TREAT'), + (0xa1b57700fdcfb1196ea1dec91942805d2a09aea4, 'Demo Avax NFTs', 'DEMOAVAX'), + (0xa1c9c050750778a0238e50abd851102682fb50d3, 'FC Bayern Munich Serge Gnabry Base Players Team Color 5 Static Facsimile Signature Rare', 'BUND-SC21-R-BP5-SFS-TMC'), + (0xa1cb3daa3887485a58865bba376175a53d324b6f, 'Chicago White Sox® Jose Abreu Postseason Base White 9 Common', 'MLB-21POST-C-B9-S-WHI'), + (0xa1cc895f52294a5cf53f70737181cbba0ec35258, 'American League™ 2021 RBI Leaders Base Vintage Stock 202 Super Rare', 'MLB-22S1-S-B201-M-VS'), + (0xa1d250c8e328396990e0e4c4aa033664a690bd01, 'Washington Nationals® Gerardo Parra Base Vintage Stock 220 Super Rare', 'MLB-22S1-S-B217-M-VS'), + (0xa1d49754dfd1e93249752d5793175b0466dd55cd, 'Houston Astros® Cristian Javier Base Vintage Stock 211 Super Rare', 'MLB-22S1-S-B209-M-VS'), + (0xa1f35aa3dc527c06ca48d4a746aed43f6da4461b, 'Paul McMullan DUD Base Aqua SP-32 Uncommon', 'SPFL-21SPSS-U-BSP-32-A-AQU'), + (0xa1f7c42ab0a0e9f40d1469a3b4b936657bcb0684, 'Washington Nationals® Base Vintage Stock 218 Super Rare', 'MLB-22S1-S-B215-M-VS'), + (0xa2001e3721b6bfc244fdd21d7b0a90110053135e, 'San Francisco Giants® Brandon Crawford Regular Season Division Winners RWB 42 Rare', 'MLB-21POST-R-R42-M-RWB'), + (0xa203e065ca1cb60b619c4d0656aba1887e2ce5fb, 'RB Leipzig Dani Olmo Young Stars Team Color 149 Super Rare', 'BUND-SC21-S-YS149-TMC'), + (0xa20ca7cdc102122675de58bc175904bc636ead81, 'Arizona Diamondbacks® Daulton Varsho Inception Base Blue 1 Uncommon', 'MLB-INC21-U-IB1-BLU'), + (0xa217a4f83441e271217824811a295cc9163c04d8, 'Little Dogs', 'LDG'), + (0xa2186ae11cd77c63c44f940638208e6c91b66a7a, 'Bayer 04 Leverkusen Karim Bellarabi Base Players Team Color 25 Static Facsimile Signature Rare', 'BUND-SC21-R-BP25-SFS-TMC'), + (0xa21b4de722d893fbf0924ba0b91530d4ee3527a6, 'Rare Baseball Card 4 Jane Catcher Bazooka Joe 2021 NFT', 'BZK-R-4B'), + (0xa229500ee4f4bbe5d0a5eea0842ee02536cf3cae, 'Aliens Gone Ape', 'AGA'), + (0xa22b84ebe9487abb6ce2b28c81e5059693f37b51, 'Lewis Ferguson ABE Base Purple SP-11 Super Rare', 'SPFL-21SPSS-S-BSP-11-A-PUR'), + (0xa2349912b3689d8c69d14c0b1c77ef97d620baa7, 'New York Mets® James McCann C Base Motion Vintage Stock 410 Super Rare', 'MLB-S221-S-B410-VS'), + (0xa2359308e326f6434a839e4d6564efb28a7414d5, 'Mothra Toppsicle Orangesicle 2 Epic', 'GDZ-RAT21-E-TP2-A-ORN'), + (0xa23c5118761c478dd41d340e5c767ecaace5aafb, 'Seattle Mariners™ Evan White Rookie and Future Phenoms Facsimile Signature Red 67 Epic', 'MLB-INC21-E-RC67-RED'), + (0xa2443809fa4cd31b29bea0bfcf4d1ef29c20e266, 'Milwaukee Brewers™ Luis Urias 2B/SS Base Motion Rainbow 543 Rare', 'MLB-S221-R-B543-RAI'), + (0xa245de16b3436a159ccb077c6b3c97975b2f0fb0, 'Mystic Huemans', 'MHM'), + (0xa246fd92e0cc1a6a9ef7ab73a60c539b7c4e0e94, 'Godzilla vs. Gigan Commemorative Coin Color 1 Epic', 'GDZ-GVG22-E-RCO1-A-COL'), + (0xa24daf119b2790ea292e90053fe004b7e9f43f26, 'Chicago Cubs® Brailyn Marquez Inception Base Red 14 Rare', 'MLB-INC21-R-IB14-RED'), + (0xa251ff1ff4015681abb013d2b42cfa01e9387c00, 'Chicago White Sox® Jonathan Stiever P Base Static Gold 528 Uncommon', 'MLB-S221-U-B528-GOL'), + (0xa25b39a25f12ac77327456ff719956cce15da4ca, 'Icy Blue 2021 Year End Celebration Commemorative Snow Globe 1 Common', 'TOP-GFT21-C-SG1-A-RED'), + (0xa25f2a7961c6869bb4801c092dbe1e98899ef54a, 'Washington Nationals® Alcides Escobar Base Independence Day RWB 116 Rare', 'MLB-22S1-R-B115-M-RWB'), + (0xa27032f11ec89bd47f69bd345ec4e3d34cc6e095, 'Tampa Bay Rays™ Vidal Brujan 1987 35th Anniversary Wood T87-10 Common', 'MLB-22S1-C-1987A8-M-WD'), + (0xa27048b7c11717145bcd565459de07387dc65d70, 'New York Mets® Dellin Betances P Base Motion Platinum 385 Epic', 'MLB-S221-E-B385-PLA'), + (0xa27615ae87ae23ce33ad2fa0edb1e9ec85f6065d, 'Washington Nationals® Alex Avila C Base Motion Vintage Stock 446 Super Rare', 'MLB-S221-S-B446-VS'), + (0xa278352e382bd5c9878cc7582b0b3afd3e32a60c, 'PrizeBond', 'PZB'), + (0xa27dbcadf4587a06095eb7a3433eff2409a1195e, 'Super Rare Comic 83 2-35 Bazooka Joe 2021 NFT', 'BZK-S-83C'), + (0xa27dd22fe02224d5dc2b58f4a125c16a767b9048, 'Chicago White Sox® Yoan Moncada 3B Base Static Gold 520 Uncommon', 'MLB-S221-U-B520-GOL'), + (0xa27edc71743fd7642dd60c98a861bed1fa3a76b8, 'Borussia Dortmund Axel Witsel Base Players Team Color 6 Uncommon', 'BUND-SC21-U-BP6-TMC'), + (0xa283042cd24cb828f2561db4ad10b982d2e8b911, 'Topps Red 2021 Year End Celebration Commemorative Snow Globe 2 Rare', 'TOP-GFT21-R-SG2-A-BLU'), + (0xa28406fc4e0bc4ebd3f265a153729e39f0c4201e, 'Kansas City Royals® Salvador Perez 1987 35th Anniversary Wood T87-17 Common', 'MLB-22S1-C-1987A14-M-WD'), + (0xa28938f1d2353efbfa5ad38df4c85b780ea7c6ca, 'Robert Lewandowski BAY Base White S4-36 Common', 'BUND-21TS4-C-BS4-36-S-WHI'), + (0xa295760e070273569828329c82d5b306bbec8607, 'Metamorphosis at camp', 'BRYL'), + (0xa2a34212d48f19f16893aa011d86c0ce52006394, 'Washington Nationals® Team Cube 2.0 Team Colors 5 Legendary', 'MLB-22S1-L-TC25-M-TMC'), + (0xa2a63c82f30f7d2bcfc71161f273be4aaba2943e, 'New York Mets® Jacob deGrom 1987 35th Anniversary Chrome T87C-49 Super Rare', 'MLB-22S1-S-1987AC36-M-CHR'), + (0xa2b64770773d726008e9dee87795d03ddf4d8386, 'Maximilian Arnold WOB Top Players Facsimile Signature Team Color TK-10 Epic', 'BUND-22TK-E-TPTK-10-S-TMC'), + (0xa2b9c17e0d263c52c47090cff77270f0d003fa97, 'Blizaam - Arama', 'Bliz'), + (0xa2cb97f668de2017bddb67ad9867955554ad49d4, 'Philadelphia Phillies® Zack Wheeler Facsimile Signature Slab Gold 3054 Epic', 'MLB-22PRI-E-FS57-M-GLD'), + (0xa2d063dd754b018c5b512aeeb103f9c56de7634e, 'Seattle Mariners™ Ty France American League Base Blue 4 Rare', 'MLB-22ASG-R-B4-M-BLU'), + (0xa2d15463728ee89a15de39e458a3d8b769c4c929, 'Pittsburgh Pirates® Gregory Polanco OF Base Motion Platinum 412 Epic', 'MLB-S221-E-B412-PLA'), + (0xa2d9242ea386055e7b2da8ce599451f2b6a7618a, 'Blair Spittal RSC Base Aqua SP-35 Uncommon', 'SPFL-21SPSS-U-BSP-35-A-AQU'), + (0xa2dba7205649a2022e92e0b13a082a00347418f1, 'Chicago White Sox® Matt Foster P Base Static White 426 Common', 'MLB-S221-C-B426-WHI'), + (0xa2dbebce98285c613d95e3340450a77cea7f130a, 'Uncommon Comic 53 2-5 Bazooka Joe 2021 NFT', 'BZK-U-53C'), + (0xa2dc6c66b43c28bbc0d2527302da1999e09f92f7, 'Psych-A-Delicatessen', 'PsADe'), + (0xa2dc9b7646a16029bab32b946fc0cf2cfae2aaa1, 'Cincinnati Reds® Wade Miley Base Independence Day RWB 203 Rare', 'MLB-22S1-R-B202-M-RWB'), + (0xa2e3aee8e371889f36c14fa99f3573dc1c7bc153, 'Los Angeles Dodgers® Champion Fireworks Base Motion Vintage Stock 490 Super Rare', 'MLB-S221-S-B490-VS'), + (0xa2e52a261cca64e22460dd5a50cd133c865ef61f, 'Bayer 04 Leverkusen Charles Aránguiz Base Players Team Color 24 Static Facsimile Signature Rare', 'BUND-SC21-R-BP24-SFS-TMC'), + (0xa2e7f663e145f3f2562723c675bbd4ccdd7cc8e6, 'ARIZONA ELECTION CHAOS', 'LCDLAW'), + (0xa2f271b7424e82eeaf132e0c421713236d6fb77a, 'San Diego Padres™ Eric Hosmer Base White 272 Common', 'MLB-22S1-C-B269-S-WHI'), + (0xa2f7a210a0fe75a25410c6e99b7c8c5cb164ea2c, 'Raptorz in Daydream', 'DREAMZ'), + (0xa30c31b3d8bc084271123acd4d9998f83bc96cad, 'Soul''s Mirror', 'SEYE'), + (0xa31e83fd946fc565ca5533168c289289638842a8, 'Rare Comic 49 2-1 Bazooka Joe 2021 NFT', 'BZK-R-49C'), + (0xa32ed36fcb640416342c13b2830ee62bb8169c2a, 'Rare Baseball Card 6 Tuffy Catcher Bazooka Joe 2021 NFT', 'BZK-R-6B'), + (0xa3326be8b19c4b89a194de23dde4415c6f9704e6, 'Eintracht Frankfurt Steven Zuber Base Players Gold 45 Rare', 'BUND-SC21-R-BP45-GLD'), + (0xa3327dfd4447408e8ef2ff71fe66a00ecd6daedf, 'MAGNUM OPUS', 'MO'), + (0xa33998ffbf58b6a2cd8f6a33c0dcdecf784b593b, 'Rare Comic 27 1-27 Bazooka Joe 2021 NFT', 'BZK-R-27C'), + (0xa3403ac3114313bca7717f286a69606037b08b73, 'SnowBeasts', 'SB'), + (0xa358613c9e1d066abc15cb848b83bb0371ad7487, 'Miami Marlins® Sixto Sanchez P 1986 Anniversary Static Team Colors 86B-8 Super Rare', 'MLB-S221-S-1986A86B-8-TMC'), + (0xa3711724aeb07d405d23c5fb4c41b89190e967e6, 'Charlie Adam DUD Captains Green SPCAP-11 Epic', 'SPFL-21SPSS-E-CAPSPCAP-11-A-GRE'), + (0xa3751f6087d92e277801eeb2b7e6413db5cbd716, 'Cleveland Guardians™ Amed Rosario Base Independence Day RWB 14 Rare', 'MLB-22S1-R-B14-M-RWB'), + (0xa379b07e1dd49840b1efc825cf0124c6116a6a87, 'derpy cats!', 'DCATS'), + (0xa38461424d5d5f043583f21014239bc68e451873, 'New York Mets® Jonathan Villar 2B/SS Base Static White 479 Common', 'MLB-S221-C-B479-WHI'), + (0xa38d672c73fb0557e453afff9e705d5c653a8dd2, 'Cleveland Indians® Daniel Johnson Silver Signings Facsimile Signature Silver 8 Super Rare', 'MLB-INC21-S-SS8-SLV'), + (0xa394a1883f4f1309f80e9ff0fabebb1b72f406a7, 'Tampa Bay Rays™ Wander Franco Super Short Print White 215 Super Rare', 'MLB-22S1-S-SSP10-M-WHI'), + (0xa3975c32f00bd5dfe86ea2d2324a28895438c0b7, 'Takuma Asano BOC Animation Black Refractor S4-65 Epic', 'BUND-21TS4-E-AS4-65-V-BLA'), + (0xa3996fddfee1a567f81838db7378b8548dc4e490, 'Houston Astros® Chas McCormick World Series Newspaper BW 1154 Common', 'MLB-22TNP-C-WSN2-M-BW'), + (0xa3998793909a42c2d4af7be0cf5460f18136bdee, 'Minnesota Twins® Taylor Rogers Base White 32 Common', 'MLB-22S1-C-B32-S-WHI'), + (0xa3a04dbeaa06b29b81bbfe913d8e8219b6d4b0f4, 'Tampa Bay Rays™ Mike Brosseau Base Vintage Stock 223 Super Rare', 'MLB-22S1-S-B220-M-VS'), + (0xa3a5e01ad26ed2a7f3188a97b19ca5c952d5f496, 'Gambit Founders Club', 'GFC'), + (0xa3af782a7ad4ab617c700466fc762acf28a1a6b3, 'National League™ 2021 Home Run Leaders Base Independence Day RWB 146 Rare', 'MLB-22S1-R-B145-M-RWB'), + (0xa3b502466a5a01bbe2cbd222c57412321acf210c, 'Ai0NE Project 1 of 1s', 'Ai0o0'), + (0xa3b9d3fe16e7d0a3793516c5ffd0d3bd14eb18e9, 'FC Koln Ismail Jakobs Young Stars Team Color 171 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS171-SFS-TMC'), + (0xa3bab0403374da4a30a88002543024806baffe84, 'Toronto Blue Jays® George Springer OF Facsimile Signature Static Red 633 Epic', 'MLB-S221-E-FS633-RED'), + (0xa3bee6f084c4db33c24f711e739427af5ac74dd3, 'National League™ 2021 Wins Leaders Base Independence Day RWB 105 Rare', 'MLB-22S1-R-B104-M-RWB'), + (0xa3c1145e42e78d08c8f9ab2de9c66bb180ad8bfa, 'South America', 'gLW'), + (0xa3c4a79a686aef780b2b8b8f4bbf9500d9045677, 'Milwaukee Brewers™ Luis Urias 2B/SS Base Static White 543 Common', 'MLB-S221-C-B543-WHI'), + (0xa3d5190e32c9469760fd970e073de866e8d36eee, 'Arizona Diamondbacks® Stefan Crichton P Base Motion Platinum 469 Epic', 'MLB-S221-E-B469-PLA'), + (0xa3e53a1d08a5d15cdb9212e39c20a234280e8fa4, 'Cleveland Indians® Eddie Rosario OF Base Motion Vintage Stock 356 Super Rare', 'MLB-S221-S-B356-VS'), + (0xa3ef227c4c3b50eb5aa6686e697bfea2a13d571b, 'Dogeon Land', 'DOGEL'), + (0xa3f0ee11c9e47a772c8af7c64386071b6f80c0e3, 'Al', 'RAL'), + (0xa3fa4be1a35f2fc84905084b55d25d288cbf937c, 'Miami Marlins® Jazz Chisholm SS Facsimile Signature Static Blue 538 Super Rare', 'MLB-S221-S-FS538-BLU'), + (0xa3fc606b9410e022e7f69bebc4202732419e96f0, 'Hello Kitty and Friends World', 'HK'), + (0xa3feb0f55e71f46645a2407985fe2f25d6ae7f1e, 'Swirlies', 'Swirl'), + (0xa404e7c1a620fcc43ca82b24871964f72ebeaf0e, 'Bounty Passes', 'BTYPS'), + (0xa40ce843ea572ae6244a85e8cb9a85dacc3de934, 'Roots', 'RTS'), + (0xa411759ead869eb795fdfe63bb34276955252a49, 'Doodles boys', 'DS'), + (0xa4233186cde37b1c45c11df293dd13c385c49912, 'Boston Red Sox® Xander Bogaerts Short Print White 8 Rare', 'MLB-22S1-R-SP3-M-WHI'), + (0xa4248064673427cf26bb1346521e28e76667e1ab, 'Houston Astros® Base Static Gold 545 Uncommon', 'MLB-S221-U-B545-GOL'), + (0xa424c4e7e07fc2b945319be81bcbbcdfb4c5107f, 'Cleveland Indians® Franmil Reyes DH Base Static Gold 341 Uncommon', 'MLB-S221-U-B341-GOL'), + (0xa4319d3d09ea364cd585e86459e43f5e857e6a6a, 'Colorado Rockies™ German Marquez Base Pink 1246 Uncommon', 'MLB-22PRI-U-B169-M-PNK'), + (0xa43d03abe009ca44ef47f61c67fe1d690ca9b146, 'Seattle Mariners™ Jake Fraley OF Base Static White 402 Common', 'MLB-S221-C-B402-WHI'), + (0xa43d5b14450dfd2b8c3272f1ab434e5ad0db525b, 'AI Waifu Next Door', 'Waifu'), + (0xa44786849a97174c31b68c31141f64b826139e37, 'Tillman-Christiansen SGF Animation Duos TSC-15 Epic', 'BUND-21TSC-E-RATSC-15-A-DUO'), + (0xa44a3858fd36b6daabdaff7bc493d2cf4634149c, 'HAGA', 'HAGA'), + (0xa45d91c78d2c973bb771691c9bdcd6bce33f7d6f, 'Girlz space', 'Girlz'), + (0xa465850770e66e5c379040267bd64658d911355a, 'Maya Mask Golden Animation Facsimile Signature Color 15 Legendary', 'GPK-NFT22-L-GAFS15-A-COL'), + (0xa477ad620adab6e94cddd9243682de2b7be2a3b3, 'Philadelphia Phillies® Luke Williams Fresh Faces Facsimile Signature Reward White 3431 Legendary', 'MLB-22PRIASG-L-FFR12-M-WHI'), + (0xa47f856cd11513db4e723c03990292f6c2fac6b7, 'DEFO Node', 'DFN'), + (0xa481740a2db46f54a3b6cd760c59ec1150ce273d, 'Texas Rangers® Spencer Howard Base Independence Day RWB 162 Rare', 'MLB-22S1-R-B161-M-RWB'), + (0xa485d6b832e52f1db16ba6e45b6aca2ca364869f, 'St. Louis Cardinals® Dylan Carlson Fresh Faces Facsimile Signature Reward White 3406 Legendary', 'MLB-22PRIASG-L-FFR4-M-WHI'), + (0xa48642266e553b66bb3edb97ba351544f8d597c9, 'Philadelphia Phillies® Kyle Schwarber Championship Series Newspaper BW 1112 Common', 'MLB-22TNP-C-CSN5-M-BW'), + (0xa4938f339b29ca24a9f8d9435a7373fba1648352, 'Hodl Gnome', 'HODLG'), + (0xa494766f7a429719c30711a6b7fcf025f6a95403, 'Boston Red Sox® Christian Vazquez C Base Motion Platinum 557 Epic', 'MLB-S221-E-B557-PLA'), + (0xa49e9e48910fe51e96faf30e4ef5e490d7ff3a86, 'WAGMI x Avax Artists Collab', 'WAA'), + (0xa4aaa818b875c8d54486b689eeebfbe4371ca204, 'Meta Coin Customs', 'COIN'), + (0xa4ba42a2815f0d9e337da98f30997184f2ec2263, 'Boston Red Sox® Christian Vazquez Base Vintage Stock 63 Super Rare', 'MLB-22S1-S-B63-M-VS'), + (0xa4c38dc1b0b4293747e98f07c0e5a4feae3d0742, 'Godzilla RAT Page 8 Comic Page Color 7 Rare', 'GDZ-RAT21-R-CP7-S-COL'), + (0xa4e8d54c9a6a7e14d6aeb0c623f7d51ffae96cf4, 'HMCNFT', 'HMCNFT'), + (0xa4e90c0f9ba4548b6e1e32f97081a10982886ef6, 'Houston Astros® Michael Brantley Base Blue 1234 Common', 'MLB-22PRI-C-B181-M-BLU'), + (0xa4ec47d38632023c42a4ed75d4b16b0d4702b887, 'Kansas City Royals® Greg Holland Base White 52 Common', 'MLB-22S1-C-B52-S-WHI'), + (0xa4ee0a97a125143c97a5a06eb8a668b92ad0f543, 'Uncommon Comic 64 2-16 Bazooka Joe 2021 NFT', 'BZK-U-64C'), + (0xa4f27afcaceb17b2b848d5146c90de5bfff021f5, 'Rare Comic 64 2-16 Bazooka Joe 2021 NFT', 'BZK-R-64C'), + (0xa4f67cfef44254b5ea8b4dc8adc2acc37662fe93, 'MythicalAI', 'MYTH'), + (0xa5091153321783be72574ff0c61e174a661036e3, 'Ocean Nodes Booster', 'ONB'), + (0xa5111563382f6d22d4a03b03f2557a51069e30e8, 'Tampa Bay Rays™ 2021 Topps MLB Inception Set Completion Reward Team Colors 27 Epic', 'MLB-21INCSC-E-21INCSCR27-M-TC'), + (0xa51312d9ac2cfe97b30c575dadff4968e9eaa49c, 'Ridle Baku WOB Base White S2-12 Common', 'BUND-21TS2-C-BS2-12-S-WHI'), + (0xa516053489f375d0ae645b63e5c20f11ee3ab6e7, 'Baltimore Orioles® Dean Kremer P Base Motion Vintage Stock 391 Super Rare', 'MLB-S221-S-B391-VS'), + (0xa51cc033f31f1cb406933cb671251ec8ffefb005, 'Happy diwali', 'diya'), + (0xa5236b3f183423f5d343b0bdb3c2fd9e300eabf8, 'Alter Eggo Roostr', 'AER'), + (0xa52df0d3f8c61969fae4e06de178495fcfc271af, 'Arizona Diamondbacks® Christian Walker 1B Base Static Gold 386 Uncommon', 'MLB-S221-U-B386-GOL'), + (0xa531035adee8c1880bcd668c4c5146c5309b3347, 'San Diego Padres™ Fernando Tatis Jr. Generation NOW Team Colors GN-2 Epic', 'MLB-22S1-E-GN2-M-TMC'), + (0xa54239c3b1ccb03b7c237e252ae691ada78476fd, 'Hodor the HODLer Golden Animation Facsimile Signature Color 17 Legendary', 'GPK-NFT22-L-GAFS17-A-COL'), + (0xa5434900b03dbf2b400059cbabbfc4b9c60a1401, 'Tampa Bay Rays™ Yonny Chirinos P Base Static Gold 592 Uncommon', 'MLB-S221-U-B592-GOL'), + (0xa54500bba661f817224dbb338134c72256a8f191, 'San Francisco Giants® Luis Alexander Basabe OF Base Motion Rainbow 548 Rare', 'MLB-S221-R-B548-RAI'), + (0xa54c62dbf81bcec2576f96efe9c19b5361416edd, 'KEETH Stills', 'KEETHS'), + (0xa55b93530418e83d5b7f9c6af7ddaf24c3108de0, 'King Ghidorah Strikes Traditional Art CMYK Offset 6 Uncommon', 'GDZ-RAT21-U-TA6-S-CMYK'), + (0xa562c2a71153c894f498345e9f007b39d487feb5, 'Apelanche', 'APES'), + (0xa566d7a202475ec1df86c5323e835d25fcd4bd1a, 'SV Werder Bremen Romano Schmid Young Stars Gold 176 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS176-AFS-GLD'), + (0xa56ab775eb8c291f883b50bf4befbe5e234a2e70, 'Chicago White Sox® Dane Dunning Rookie and Future Phenoms Facsimile Signature Red 16 Epic', 'MLB-INC21-E-RC16-RED'), + (0xa56d55291a3eebeba28c0270e5f1f59aa081ff91, 'Houston Astros® Jose Siri Base Pink 1318 Uncommon', 'MLB-22PRI-U-B186-M-PNK'), + (0xa57ca5b3047dbc737fbf0278e7d035250182a58c, 'Joško Gvardiol RBL Ascendent Blue TK-39 Super Rare', 'BUND-22TK-S-ASCTK-39-S-BLU'), + (0xa5943c8dcbff8e4bfbf1b8e8ff3fff76dc957101, 'Angels® Jo Adell Rookie and Future Phenoms Facsimile Signature Black 35 Legendary', 'MLB-INC21-L-RC35-BLK'), + (0xa59697d32b15f2ac88d6f9be1212c3a5676fa81a, 'Bayer 04 Leverkusen Charles Aránguiz Base Players Team Color 24 Uncommon', 'BUND-SC21-U-BP24-TMC'), + (0xa59dfe00fa3332f575d28fabcf57ed93575da303, 'Los Angeles Dodgers® Cody Bellinger 1987 35th Anniversary Wood T87-14 Common', 'MLB-22S1-C-1987A11-M-WD'), + (0xa5a01e13bdaf71290d8b5a732cdbe3c2cfc9b0f6, 'Atlanta Braves™ Dansby Swanson Postseason Base Red 60 Rare', 'MLB-21POST-R-B60-M-RED'), + (0xa5a0ee1e982f1ab2cab94aa469228761a7c66c38, 'Borussia Monchengladbach Alassane Plea Top Players Gold 101 Super Rare', 'BUND-SC21-S-TP101-GLD'), + (0xa5a63b6122198a99117510bbabb6a42a85153163, 'Arizona Diamondbacks® Tyler Gilbert Facsimile Signature Slab Gold 3117 Epic', 'MLB-22PRI-E-FS49-M-GLD'), + (0xa5a6ba2f2f9257beb268706486f1bd4cfc95b458, 'Atlanta Braves™ Austin Riley Base White 115 Common', 'MLB-22S1-C-B114-S-WHI'), + (0xa5ae56ae7534d5839e1f8bd5a5ec94e67b790158, 'Kaiju Beach Party Monster Collage Color 1 Legendary', 'GDZ-RAT21-L-MC1-A-COL'), + (0xa5aee1fa90ed61a563bbeb39336e2d2410a2d3a9, 'Bored Cow Yatch Club', 'BCYC'), + (0xa5b03f2c508e3220c36bec26458eee6e379c7229, 'Chicago White Sox® Jose Abreu 1B Facsimile Signature Static Blue 331 Super Rare', 'MLB-S221-S-FS331-BLU'), + (0xa5b2b537130a683aa1201526595b89f1c70c27e5, 'Boston Red Sox® Jackie Bradley Jr. OF Base Static White 568 Common', 'MLB-S221-C-B568-WHI'), + (0xa5c16bdeeadb2cc591900f4dc2b0bda823eb5c20, 'New York Yankees® Luis Gil Base Vintage Stock 131 Super Rare', 'MLB-22S1-S-B130-M-VS'), + (0xa5c1c7a55b8f4618e11a05623e3830f14cf6b6ad, 'Prippe', 'PIE'), + (0xa5c77dc51ba2988f9ec148396459a5128434141e, 'Immortalizer.io', 'IMMOR'), + (0xa5d4dc350764022280650c022fcd9f96ecae0060, 'Public Mint', 'PM'), + (0xa5da946260c7c51994c0b3cd3c3a6a5fa30178c6, 'San Francisco Giants® Alex Wood Regular Season Division Winners RWB 47 Rare', 'MLB-21POST-R-R47-M-RWB'), + (0xa5e80bfa505d2883280dc65c6b0753e7b92519a1, 'Jamie McCart STJ Base White SP-22 Common', 'SPFL-21SPSS-C-BSP-22-A-WHI'), + (0xa5f4243fdaf1b1a3b2873613b6d05841cb1c0827, 'Los Angeles Dodgers® Mookie Betts Base White 50 Common', 'MLB-22S1-C-B50-S-WHI'), + (0xa5fb8768a66c0b562d0c4547e0badbb703ae22d1, 'Angels® Brandon Marsh Base Vintage Stock 243 Super Rare', 'MLB-22S1-S-B240-M-VS'), + (0xa5ff879df6f1fa0ac44076e0ad8c2257a099c1e9, 'Chicago White Sox® Andrew Vaughn Base Vintage Stock 120 Super Rare', 'MLB-22S1-S-B119-M-VS'), + (0xa6002285982408422f570e7a9ea6dd0fa66c3388, 'Chicago White Sox® Jose Abreu 1B Base Static White 331 Common', 'MLB-S221-C-B331-WHI'), + (0xa60166a3c90991f48d927400bf1beb944797a22d, 'Houston Astros® José Altuve Topps NOW White 1031 Rare', 'MLB-21NOW-R-TN1031-WHI'), + (0xa601fd7d58b20c0910266766f6c2d2434f211c76, 'Rare Comic 25 1-25 Bazooka Joe 2021 NFT', 'BZK-R-25C'), + (0xa616bca3db928fed59b5229a498105598f5c4646, 'Cleveland Guardians™ Shane Bieber Popular Demand Facsimile Signature Slab Teal 3520 Legendary', 'MLB-22PRI-L-PDFS14-M-TEA'), + (0xa61af68a2700fb07203da831c2b5c61fbed30149, 'Houston Astros® Carlos Correa World Series Gold 2 Epic', 'MLB-21POST-E-WS2-M-GOL'), + (0xa61b05d5df7cf74376c7cf6cac2643b827a9af5d, 'TSG Hoffenheim Pavel Kaderábek Base Players White 28 Common', 'BUND-SC21-C-BP28-WHT'), + (0xa636b114c0415c070afae3a43712929a0373d235, 'Boss Bisons', 'BBSON'), + (0xa638cfdd8d96ba76c608572841a94143d19cf30b, 'Houston Astros® 2021 Topps MLB Inception Set Completion Reward Team Colors 11 Epic', 'MLB-21INCSC-E-21INCSCR11-M-TC'), + (0xa639c740430aa1a5978024131ec6dab6db286b42, 'San Diego Padres™ Manny Machado National League Base White 7 Uncommon', 'MLB-22ASG-U-B7-M-WHI'), + (0xa63dd26e98ba14e8d4f59ef5fab5882301b13624, 'Philadelphia Phillies® Didi Gregorius SS Base Motion Platinum 561 Epic', 'MLB-S221-E-B561-PLA'), + (0xa643e1778c82e213b90b430e9ae96c59ffcf5924, 'r0cket flippers', 'r0cket'), + (0xa646a71c6bf40877aecee372f4a782b582c919ea, 'St. Louis Cardinals® Andrew Miller P Base Motion Platinum 437 Epic', 'MLB-S221-E-B437-PLA'), + (0xa64e95b628b0373328c8c825915b6c1b3ef1f2d2, 'Los Angeles Dodgers® Max Scherzer Base Vintage Stock 310 Super Rare', 'MLB-22S1-S-B306-M-VS'), + (0xa658beb4341c64f76d6a0d319501099ba2b5cfc9, 'Milwaukee Brewers™ Josh Hader P Base Motion Platinum 596 Epic', 'MLB-S221-E-B596-PLA'), + (0xa6617a16e892d27c4d356ca9b0df243b246b58e8, 'Oakland Athletics™ Stephen Piscotty OF Base Motion Vintage Stock 607 Super Rare', 'MLB-S221-S-B607-VS'), + (0xa66d516662b3bb7b7623f8cba4e8224598e19a8a, 'TSG Hoffenheim Munas Dabbur Base Players Team Color 27 Static Facsimile Signature Rare', 'BUND-SC21-R-BP27-SFS-TMC'), + (0xa66fb8073709f20d0e928495daa326eb0d06a99f, 'Craig Gordon HEA Top Saves Gold SPTS-01 Legendary', 'SPFL-21SPSS-L-TSSPTS-01-V-GOL'), + (0xa6705ce754e4ee3619c4914e8dcf7d82bac6be5c, 'look at horror', 'nob'), + (0xa679b27c87cb478372e62b21b5bd6459ef7d1eb3, 'Detroit Tigers® 2021 Topps MLB Inception Set Completion Reward Team Colors 10 Epic', 'MLB-21INCSC-E-21INCSCR10-M-TC'), + (0xa67c10e49eb5ec7bd4f7b0a57baddf42e3513f00, 'Baltimore Orioles® Team Cube 2.0 Team Colors 16 Legendary', 'MLB-22S1-L-TC216-M-TMC'), + (0xa682b3d5ab8e02839dbd4bdc7467bc1f9445eb6f, 'St. Louis Cardinals® Giovanny Gallegos Wild Card Contenders Blue 32 Common', 'MLB-21POST-C-W32-M-BLU'), + (0xa68915a1a2bec285babb02eb62f38bf90577cdf0, 'Godzilla RAT Page 20 Comic Page Color 17 Super Rare', 'GDZ-RAT21-S-CP17-A-COL'), + (0xa68fc2779251b9f143e29d76972a99e182f8c1e7, 'San Francisco Giants® Alex Wood Postseason Base Navy 31 Uncommon', 'MLB-21POST-U-B31-M-NVY'), + (0xa6916f62c86e9bdd2bd15b024ead811d845cfc2c, 'Gen 0 Shidizens', 'SHID0'), + (0xa694b0d333ac7de46ce8c57074fc6ec3d6390c67, 'Colorado Rockies™ Trevor Story Base Blue 1010 Common', 'MLB-22PRI-C-B27-M-BLU'), + (0xa69ab69740d2f3edaff17ed39c7788f9b39219cb, 'Boston Red Sox® Tanner Houck P Base Motion Rainbow 635 Rare', 'MLB-S221-R-B635-RAI'), + (0xa6a365cfe8544577fedd70e0b6b660b76f777e33, '12 Days of Christmas', 'MICRO'), + (0xa6a55330385cf9682f455efef14e17850af21225, 'Tampa Bay Rays™ 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 27 Legendary', 'MLB-21S2SC-L-21S2SCR27-M-TC'), + (0xa6a5fb981db7e65281785129b68df3f7b2f97d28, 'San Francisco Giants® Joey Bart Silver Signings Facsimile Signature Silver 36 Super Rare', 'MLB-INC21-S-SS36-SLV'), + (0xa6a66b20b54bfcad3ccd6837e4253f010a8f5d93, 'Frens of Avax - Smol World Cup', 'FOASWC'), + (0xa6a9cf8d05f471d934f17316ab1bcc67acc94227, 'Rare Comic 66 2-18 Bazooka Joe 2021 NFT', 'BZK-R-66C'), + (0xa6acef79eecee40c4ae751cb2346105444176cda, 'PRJKTNEON', 'PRJKTNEON'), + (0xa6af1cb9234c617e84a80b4a0994e44bfe27b5ff, 'Toronto Blue Jays® Alejandro Kirk C Base Motion Platinum 551 Epic', 'MLB-S221-E-B551-PLA'), + (0xa6afa22dea28be4cf3ed002189b53b82927f7437, 'Rich Baby Official', 'RBO'), + (0xa6c731ee17da1e84ea266ca7124b07851c1afd85, 'Houston Astros® Yordan Alvarez American League Base Blue 11 Rare', 'MLB-22ASG-R-B11-M-BLU'), + (0xa6cacf0df0b494774f8506964431db41e8f2dfae, 'New York Mets® Pete Alonso Inception Base White 64 Common', 'MLB-INC21-C-IB64-WHT'), + (0xa6cbbea294f3a1d6acb6e13f85b772271de9c632, 'Cincinnati Reds® Joey Votto 1987 35th Anniversary Chrome T87C-57 Super Rare', 'MLB-22S1-S-1987AC42-M-CHR'), + (0xa6d4d4c37a5f8e07fe627149e8ea7afcd7834d38, 'Los Angeles Dodgers® Justin Turner 3B Base Static Gold 370 Uncommon', 'MLB-S221-U-B370-GOL'), + (0xa6df50bb0854e27bf104654f1f65e4cd28b6d6fb, 'Rare Comic 15 1-15 Bazooka Joe 2021 NFT', 'BZK-R-15C'), + (0xa6df76fdc70a6b2c33ce8662ef580a8e82895edb, 'Cerveau AI WC edition', 'CAWC'), + (0xa6f12b1e92001d293f15d9a6574ef3186e0c2deb, 'Super Rare Comic 32 1-32 Bazooka Joe 2021 NFT', 'BZK-S-32C'), + (0xa6ff20db5a4fc983de71aea9193da0b0af524dd0, 'Kansas City Royals® Brady Singer Inception Base White 39 Common', 'MLB-INC21-C-IB39-WHT'), + (0xa70559658a2b7fb1d56d0980cc3e7553cfe81bd2, 'Suat Serdar BSC Animation Black Refractor S4-68 Epic', 'BUND-21TS4-E-AS4-68-V-BLA'), + (0xa70a3da27e9166c6d069682f8f251a88b753aecd, 'Toronto Blue Jays® George Springer OF Base Static Gold 633 Uncommon', 'MLB-S221-U-B633-GOL'), + (0xa70e721d53e1c5761d09fd2b70582a7d4e6353c4, 'Chicago White Sox® South Side Strength Base Motion Platinum 486 Epic', 'MLB-S221-E-B486-PLA'), + (0xa71657faeb53ef4f3ad545ea4c453cca012d76b4, 'Colorado Rockies™ Colton Welker Base Pink 1314 Uncommon', 'MLB-22PRI-U-B90-M-PNK'), + (0xa7185e598ef393d56dc721cefd2baffca5d57310, 'Washington Nationals® Juan Soto Popular Demand Facsimile Signature Slab Teal 3503 Legendary', 'MLB-22PRI-L-PDFS9-M-TEA'), + (0xa71a21c4f731928b202474138aa69ae1a26a14d0, 'ARsessories', 'ARSS'), + (0xa7203e5cca412663fa07f815f7f46ada55e7a3fe, 'Uncommon Comic 102 2-54 Bazooka Joe 2021 NFT', 'BZK-U-102C'), + (0xa722c72e77fee2012b11b4f02a3ba8f0425f7c5c, 'Cobalt CAThy Golden Animation Color 10 Epic', 'GPK-NFT22-E-GA10-A-COL'), + (0xa7238ad46a3985373069ed32d4e3e67b6cacc89b, 'Baltimore Orioles® Dean Kremer P Base Motion Rainbow 391 Rare', 'MLB-S221-R-B391-RAI'), + (0xa728f19b3139d7cf71aea96341cf34602c3619f0, 'PrizeBondAvax', 'PBA'), + (0xa733090b9afb2a11ea326be8a036b61dd555d553, 'Jungle Chests', 'JUNCH'), + (0xa73810608331b445a4fb3b6af6d20a4c0c9a91a7, 'Chris Kane STJ Top Plays Purple SPTPL-14 Rare', 'SPFL-21SPSS-R-TPLSPTPL-14-V-PUR'), + (0xa73884d57b0a9807e7bb0e09b41bab4479564a94, 'Gassie Infinity Base Color 2 Common', 'GPK-NFT22-C-B2-S-COL'), + (0xa73b2cc13f5dc6ea787c5589c7ad5b9d1b21624b, 'Topps Series Tier 4 Challenge Reward Pack - 21-22 Bundesliga NFT Cards', 'BUND-21TSC-TIER4-R'), + (0xa74783a3be106b621eb61fcf0cd2b856a64563f2, 'San Diego Padres™ Trevor Rosenthal P Base Motion Platinum 454 Epic', 'MLB-S221-E-B454-PLA'), + (0xa74d57b0704c567e95448aacef8543dac8f2e21a, 'Borussia Dortmund Mats Hummels Base Players Team Color 8 Static Facsimile Signature Rare', 'BUND-SC21-R-BP8-SFS-TMC'), + (0xa74ea5eb4a42dc3613f1bcff104a2e2d7019a05c, 'FC Bayern Munich Leroy Sané Base Players Team Color 4 Static Facsimile Signature Rare', 'BUND-SC21-R-BP4-SFS-TMC'), + (0xa763674b846b7284068937b24f0797c3019af9e4, 'Atlanta Braves™ William Contreras C Base Motion Rainbow 390 Rare', 'MLB-S221-R-B390-RAI'), + (0xa769551876a00febde1d2c5a5d5439777193ca27, 'Borussia Monchengladbach Nico Elvedi Base Players Team Color 19 Uncommon', 'BUND-SC21-U-BP19-TMC'), + (0xa76aa601248fbfc5bf2544e0594c54b9d655f7c1, 'FIRE MASTER NFT', 'FMNFT'), + (0xa76f1a066d30c7b70331c4f1c090a0109e24b205, 'Vladimír Darida BSC Animation Gold Refractor S4-37 Legendary', 'BUND-21TS4-L-AS4-37-V-GOL'), + (0xa77168b619f6d9c1168651124baaedfc4c09c7a7, 'Jacob Bruun Larsen TSG Motion Aqua Refractor S4-54 Rare', 'BUND-21TS4-R-MS4-54-V-AQU'), + (0xa7748ee008d39a8493551e7e755dd22f4f726fa9, 'Gonzalo Castro DSC Motion Aqua Refractor S4-43 Rare', 'BUND-21TS4-R-MS4-43-V-AQU'), + (0xa77ad30e894948b448a73f64d927fc2ff9eeb0e6, 'Grischa Prömel FCU Motion Aqua Refractor S4-40 Rare', 'BUND-21TS4-R-MS4-40-V-AQU'), + (0xa77e06e28f9ac9b7953e5c8cf7ac86458dcb12dc, 'Crypto Drones Avax Validator Collection', 'CDAV'), + (0xa780d1b6b8708b1c846138345a8ed35f7950158a, 'Mantra of Life', 'MOL'), + (0xa7816f9252a407262b15d663881575112995b054, 'Atlanta Braves™ Mike Soroka Rookie and Future Phenoms Facsimile Signature White 2 Rare', 'MLB-INC21-R-RC2-WHT'), + (0xa78b1040d6996810139997d9fbc1c18836a9390f, 'Dark Forest', 'DF'), + (0xa794b7a3e3661291d267700efec21938117a8512, 'Texas Rangers® Joe Barlow Base Blue 1310 Common', 'MLB-22PRI-C-B156-M-BLU'), + (0xa795f5203bb43386ce80227e1513624b39d4baa8, 'Seattle Mariners™ Jose Marmolejos OF Base Motion Vintage Stock 516 Super Rare', 'MLB-S221-S-B516-VS'), + (0xa7961d1a7c37103b34690baf30ce4050d1aa1e23, 'Chicago White Sox® Zack Burdi P Base Motion Rainbow 483 Rare', 'MLB-S221-R-B483-RAI'), + (0xa79d720b0071e0e6c5d71997b80381a61a2eec19, 'Kuma Boss', 'KBS'), + (0xa79e426026912f0e068b6e527b0e23b2cdb63d7d, 'Houston Astros® Carlos Correa Regular Season Division Winners RWB 18 Rare', 'MLB-21POST-R-R18-M-RWB'), + (0xa7bc12277dc796b1988fb3756dc8a8c8188398bd, 'Los Angeles Dodgers® Mookie Betts Base Glitch 50 Uncommon', 'MLB-22S1-U-B50-M-GLI'), + (0xa7c30d4047436d427e8ebd5c6e968ef5ef90a5ec, 'Collector', 'COLL'), + (0xa7cb76f5e2eab8c59a21edcde92f5ddcfe7026f7, 'Houston Astros® Carlos Correa Postseason Base White 50 Common', 'MLB-21POST-C-B50-S-WHI'), + (0xa7d00b21f8c61a28739ff58069b6a30a50d9cc52, 'GIF Bundle Token', 'BTK'), + (0xa7e7061f07b44b564fe8bfb803632883862587ff, 'Atlanta Braves™ Ozzie Albies National League Base White 6 Uncommon', 'MLB-22ASG-U-B6-M-WHI'), + (0xa7ea1c7a708703bf0859c9ac02b639eab12364b2, 'Atlanta Braves™ Ian Anderson Inception Base Red 4 Rare', 'MLB-INC21-R-IB4-RED'), + (0xa7eb9339b86876875ae900ff4fe24ed9809e2051, 'Common Comic 33 1-33 Bazooka Joe 2021 NFT', 'BZK-C-33C'), + (0xa7edc782f4f3636f488a5580a6860ab889996f0c, 'Angels® Base Independence Day RWB 159 Rare', 'MLB-22S1-R-B158-M-RWB'), + (0xa7f2ee6dc5d124aac9cf1b9168e7082ba0f7bed7, 'Galaxy Skill Gem', 'GLXGem'), + (0xa7f571ff7af00a37aa35285fcffdc3c14898bead, 'Milwaukee Brewers™ Devin Williams P Facsimile Signature Static Blue 485 Super Rare', 'MLB-S221-S-FS485-BLU'), + (0xa7f7877d9dc5f41b00d18ca05650369c32fd15e6, 'Tampa Bay Rays™ Joey Wendle Postseason Base White 5 Common', 'MLB-21POST-C-B5-S-WHI'), + (0xa7f9a817109fe183d0cc72755da9d50e1cdd048c, 'AvaNouns', 'NOUN'), + (0xa7fa128fa70ab30f8314db59d7677434b838f116, 'Defo Sapphire Node', 'DSN'), + (0xa7fb0abab15d5bb241e5e0ad030831c7dbeba11c, 'PDIFuelPricing', 'PDI2022'), + (0xa8006ffdd19b57fe2860f4207f6b4365556862de, 'ByBike Micromobility', 'BYBIKE'), + (0xa804af6112af8edc5ce0e041f2e60d2ea9387e36, 'Detroit Tigers® Michael Fulmer P Base Static Gold 373 Uncommon', 'MLB-S221-U-B373-GOL'), + (0xa804c2deb7dcf0d5f0ab694534be4a71bdae0952, 'New York Yankees® Gerrit Cole Inception Base Red 68 Rare', 'MLB-INC21-R-IB68-RED'), + (0xa8143ec42ba76167f6f76135c20a058f59dd68c7, 'Ermedin Demirović FCA Ascendent Blue TK-49 Super Rare', 'BUND-22TK-S-ASCTK-49-S-BLU'), + (0xa81495ddd34a5f167179ae757c4a6e2317f9231d, 'New York Yankees® Anthony Rizzo Base Vintage Stock 242 Super Rare', 'MLB-22S1-S-B239-M-VS'), + (0xa8174af793b7734dc0bc37826635ca659f847252, 'Bayer 04 Leverkusen Karim Bellarabi Base Players White 25 Common', 'BUND-SC21-C-BP25-WHT'), + (0xa82050ed58cf32bb9b0b410f46f922d381b5e473, 'Kansas City Royals® Nicky Lopez 2B Base Static White 415 Common', 'MLB-S221-C-B415-WHI'), + (0xa829ed3b4b15997a32890a1641d7aea91996d918, 'Warrior Women Galaxy', 'WWG'), + (0xa841c834235638983a467146a89d000d59ef9b72, 'Vee Fiend Animation Facsimile Signature Color 5 Super Rare', 'GPK-NFT22-S-AFS5-A-COL'), + (0xa84762f622e87142210c3eff9543b6baf4186252, 'Washington Nationals® Stephen Strasburg Inception Base Red 99 Rare', 'MLB-INC21-R-IB99-RED'), + (0xa8529315e0e406fe312382cef0ec5d837c219bd5, 'Geekers', 'GEEKER'), + (0xa8561c0dd333f1735d64dcb15286235f77fc9b5f, 'Uncommon Comic 57 2-9 Bazooka Joe 2021 NFT', 'BZK-U-57C'), + (0xa8595b78fb991d581b54c8e3d57d1a7345299ab9, 'San Francisco Giants® Brandon Belt 1B Base Motion Vintage Stock 405 Super Rare', 'MLB-S221-S-B405-VS'), + (0xa85b102e3599a6e60121a3bff48f2bbcedc3fc3c, 'Houston Astros® Jake Meyers Base Glitch 295 Uncommon', 'MLB-22S1-U-B292-M-GLI'), + (0xa8644b721246a938385779a30ab2c8b8def4e257, 'GIVE TACTICAL YOUR ENERGY', 'TACT'), + (0xa87abf6854207075e65d16cf86a8ece1216ea973, 'Sakurato Poem', 'SAKU'), + (0xa880b01828e84ec92ba672e1cf5a284c0535b6b0, 'Sport-Club Freiburg Jonathan Schmid Base Players Team Color 38 Uncommon', 'BUND-SC21-U-BP38-TMC'), + (0xa8838c20270c2574ad90ba760bf3fe14346c63c3, 'New York Mets® Noah Syndergaard P Base Motion Rainbow 631 Rare', 'MLB-S221-R-B631-RAI'), + (0xa886e550604cc2bc730715bcd672de989bff7629, 'Kansas City Royals® Salvador Perez Base Blue 1073 Common', 'MLB-22PRI-C-B68-M-BLU'), + (0xa88879a9a8a3299ba958ca47e709c8a9fd018fd9, 'St. Louis Cardinals® Yadier Molina/Adam Wainwright Topps NOW Aqua 187 ', 'MLB-22NOW-R-TN4-M-AQU'), + (0xa88f8210a490ccb03cffa20392e89f38544efb4c, 'Gerrit Holtmann BOC Animation Gold Refractor S1-08 Legendary', 'BUND-21TS1-L-AS1-08-V-GOL'), + (0xa89283436d98b8ac59109d722aff958e4098eed5, 'Minnesota Twins® Alex Kirilloff OF Base Motion Rainbow 413 Rare', 'MLB-S221-R-B413-RAI'), + (0xa8a3e6f4d03b7e629ff5eeeeb4f61a09ba6bec0f, 'Boston Red Sox® Chris Sale Inception Base Red 11 Rare', 'MLB-INC21-R-IB11-RED'), + (0xa8abd3be198f7173e6461955210e3c0daae7b8fd, 'Fiefolk', 'FIEFOLK'), + (0xa8b20f0c9642db8dc4202e205f09029672400a86, 'Avax Legoman', 'AVL'), + (0xa8c41a8177210ceae035732921f9e3e698f1f230, 'Kansas City Royals® Nick Heath Rookie and Future Phenoms Facsimile Signature Red 33 Epic', 'MLB-INC21-E-RC33-RED'), + (0xa8c4236b2600063162a1582a0bdf7adb5d34dce4, 'Cincinnati Reds® Tejay Antone P Base Motion Rainbow 333 Rare', 'MLB-S221-R-B333-RAI'), + (0xa8d5829daca025319d9cc50ef1747fcc3be0cbba, 'EYFF Founding Member', 'FFF'), + (0xa8d9afdd3839008e89bb213e11a086c918164902, 'Gemini Gene Facsimile Signature Color 12 Uncommon', 'GPK-NFT22-U-FS12-S-COL'), + (0xa8e4582d4ee7888d719340599058a234d87f8da9, 'New York Mets® Jacob deGrom Facsimile Signature Blue 330 Uncommon', 'MLB-22S1-U-FS25-S-BLU'), + (0xa8e4f90de3cc5940bf23b2d587cac042f58f476d, 'FC Augsburg Felix Uduokhai Top Players Gold 133 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP133-AFS-GLD'), + (0xa8e67bccdec7a43a559243bd325348cb28be5ca4, 'David Turnbull CEL Top Plays Purple SPTPL-07 Rare', 'SPFL-21SPSS-R-TPLSPTPL-07-V-PUR'), + (0xa8f0edb585147a504bd08acf0800aeb8a89be4c5, 'Toronto Blue Jays® Rowdy Tellez 1B/DH Base Motion Platinum 493 Epic', 'MLB-S221-E-B493-PLA'), + (0xa8f83f5ac88f7ae4cec3ee44ae88dc6cdc876e4b, 'Boston Red Sox® Rafael Devers 1987 35th Anniversary Wood T87-47 Common', 'MLB-22S1-C-1987A36-M-WD'), + (0xa8fe73749d0e16a6c9741a73cfd414f2a6c0426c, 'Atlanta Braves™ Charlie Morton Base Vintage Stock 82 Super Rare', 'MLB-22S1-S-B82-M-VS'), + (0xa90203e13187443a29f27753e46758a2d4bf157e, 'Patrik Schick B04 Top Players Facsimile Signature Team Color TK-08 Epic', 'BUND-22TK-E-TPTK-08-S-TMC'), + (0xa909710ec5e0a83b680ca012eb183d2a2ebb24fa, 'Topps Series 4 - 21-22 Bundesliga NFT Card Standard Pack', 'BUND-21TS4-SPACK-S4'), + (0xa90cded6dad06df521f22643b2ca98c068cee866, 'DigitDonuts', 'Donuts'), + (0xa9122dacf3fccf1aae6b8ddd1f75b6267e5cbbb8, 'ETH MAI Vault', 'ETHMVT'), + (0xa91aa019839a1672b08898fde4b22a5eb582d171, 'Minnesota Twins® Luis Arraez 2B Base Motion Vintage Stock 649 Super Rare', 'MLB-S221-S-B649-VS'), + (0xa91b4fa0f7a257478a15f15cde261e6ec0d0bf32, 'Miami Marlins® Brian Anderson 3B/OF Base Motion Rainbow 439 Rare', 'MLB-S221-R-B439-RAI'), + (0xa91e0dd3c8fee08b93081acb7517f7bcc499e464, 'Common Comic 12 1-12 Bazooka Joe 2021 NFT', 'BZK-C-12C'), + (0xa92162187ce74eb0c2f815f6698fabff960f5a4a, 'Avax Triangles', 'TRI'), + (0xa924361bb596df66086dc305259e6d030af6857a, 'Texas Rangers® Isiah Kiner-Falefa SS/3B Base Motion Platinum 397 Epic', 'MLB-S221-E-B397-PLA'), + (0xa9273637f75c29baffe8c4c415877710d404b70a, 'San Francisco Giants® Anthony DeSclafani Base Glitch 137 Uncommon', 'MLB-22S1-U-B136-M-GLI'), + (0xa927b984b74c6892e08adc46d116315251c25c7a, 'St. Louis Cardinals® Dakota Hudson P Base Motion Platinum 455 Epic', 'MLB-S221-E-B455-PLA'), + (0xa929b18efdc00975bc747249a6de6f2df4ad7570, 'Grischa Prömel TSG Color Splash White TK-61 Uncommon', 'BUND-22TK-U-CSTK-61-S-WHI'), + (0xa94e13901cebf09fdf3cbdd5260e03cf15adb42f, 'Super Rare Comic 97 2-49 Bazooka Joe 2021 NFT', 'BZK-S-97C'), + (0xa94e7db7efc9e66d2ba8cc46c9377a845ddcfff3, 'New York Mets® Michael Conforto Base Glitch 37 Uncommon', 'MLB-22S1-U-B37-M-GLI'), + (0xa95185a16695fdc83ee9665824369ff3443db726, 'Milwaukee Brewers™ Christian Yelich Base Glitch 288 Uncommon', 'MLB-22S1-U-B285-M-GLI'), + (0xa95456a1c96878aaf885eeffbdbaece09dfb1cf1, 'Patrik Schick B04 Motion Aqua Refractor S1-05 Rare', 'BUND-21TS1-R-MS1-05-V-AQU'), + (0xa9596f8fc90b4e7722de787dfca12dcd07e559cb, 'New York Yankees® Luis Severino P Base Static Gold 577 Uncommon', 'MLB-S221-U-B577-GOL'), + (0xa95fb9c641d0183966ea22c6b239f32a4cd3e432, 'American League™ Minnesota Meetup Base Independence Day RWB 122 Rare', 'MLB-22S1-R-B121-M-RWB'), + (0xa9652fd4c9a1769f8e01d11754305bacd15048fe, 'Chicago White Sox® Jarrod Dyson OF Base Static White 337 Common', 'MLB-S221-C-B337-WHI'), + (0xa96fbc5e3de88a91b937611a9d3c5574563cc3c6, 'New York Yankees® Anthony Rizzo 1987 35th Anniversary Chrome T87C-7 Super Rare', 'MLB-22S1-S-1987AC5-M-CHR'), + (0xa973f94e6a28012f80685b5796181205629817c7, 'Toronto Blue Jays® Vladimir Guerrero Jr. Inception Base Red 95 Rare', 'MLB-INC21-R-IB95-RED'), + (0xa97842911d5e78da8a0b8e46bb9dc9f4ecb1e67e, 'Angels® Mike Trout Base Pink 1001 Uncommon', 'MLB-22PRI-U-B1-M-PNK'), + (0xa978e9d866ffc8bee247632430293905267651c4, 'Eamonn Brophy SMI Top Plays Purple SPTPL-10 Rare', 'SPFL-21SPSS-R-TPLSPTPL-10-V-PUR'), + (0xa97cffea0f7a216dc601f8c63d7bd3f8dd3859fc, 'Cleveland Indians® Josh Naylor OF Base Static Gold 419 Uncommon', 'MLB-S221-U-B419-GOL'), + (0xa97d9430ad90657fdab2eb2e7cf8bb63858b42df, 'Niklas Stark SVW Color Splash White TK-71 Uncommon', 'BUND-22TK-U-CSTK-71-S-WHI'), + (0xa98583a71151dc056e9b7c3e926dff106bb0fb4a, 'New York Yankees® Jose Trevino American League Base White 2 Uncommon', 'MLB-22ASG-U-B2-M-WHI'), + (0xa9890015c30b39a015db96d0e80ffa97b7f94c1e, 'Chicago White Sox® Base Vintage Stock 255 Super Rare', 'MLB-22S1-S-B252-M-VS'), + (0xa989f0ad20f67670dccedd2b0b81181081cf92d6, 'St. Louis Cardinals® Kwang-Hyun Kim P Base Static White 482 Common', 'MLB-S221-C-B482-WHI'), + (0xa98c17becbb1b7575e106b9d44da4da1db2de619, 'New York Yankees® Aaron Judge Inception Base Red 65 Rare', 'MLB-INC21-R-IB65-RED'), + (0xa996a3d572db799fdee857732247dcb3ecb0f8f7, 'Toronto Blue Jays® Taijuan Walker P Base Static White 540 Common', 'MLB-S221-C-B540-WHI'), + (0xa99d3cf449bec7ee1a9041e7947896a781b7d6f1, 'FSV Mainz 05 Daniel Brosinski Base Players White 65 Common', 'BUND-SC21-C-BP65-WHT'), + (0xa9b041961a9dde9d372b581ae56844d21251f26d, 'American League™ Slugger Reunion Base White 329 Common', 'MLB-22S1-C-B325-S-WHI'), + (0xa9b71fbfbf83964c6be18ad79e9d2652c7035e9f, 'Erling Haaland DOR Club Phemons Gold S4CPH-06 Legendary', 'BUND-21TS4-L-CPHS4CPH-06-V-GOL'), + (0xa9b7685eabea87358cd7773f906267ac644f8c1a, 'LoOK Friends', 'LOOK'), + (0xa9b77f0d505ffba348b49de929a93542a0cc4684, 'Texas Rangers® Adolis Garcia Base Blue 1058 Common', 'MLB-22PRI-C-B35-M-BLU'), + (0xa9bc684412ed9881d3f892acccb30ee1d8ddfd04, 'Baltimore Orioles® Trey Mancini OF/1B Base Static White 573 Common', 'MLB-S221-C-B573-WHI'), + (0xa9c0af394b593fc52baf20788e06d75fad8442f2, 'Arizona Diamondbacks® Nick Ahmed SS Base Static White 618 Common', 'MLB-S221-C-B618-WHI'), + (0xa9c306c533c1587a04c0efb1b2c755829db45b70, '@tughra Collection', 'NPC019'), + (0xa9d793ff58bfd53c241805ff3839136e90d929c4, 'Baltimore Orioles® Alex Wells Base Vintage Stock 118 Super Rare', 'MLB-22S1-S-B117-M-VS'), + (0xa9de371071e96e2c9e3a907e5c561a6738302eb1, 'Ryu Gen2', 'Ryu G2'), + (0xa9e0ad931191add6c1d8747c814e3885a063d6df, 'vindi''s playground', 'vpg'), + (0xa9e9484f1042055f13e41145117eeb4decd35608, 'Bridget Troll Golden Animation Facsimile Signature Color 16 Legendary', 'GPK-NFT22-L-GAFS16-A-COL'), + (0xa9ea4bc25463773238da75baf79e8408d8d9345b, 'Angels® Justin Upton OF Base Static Gold 527 Uncommon', 'MLB-S221-U-B527-GOL'), + (0xa9ea5999061bb86fe118b50f358fe3cc4fd979a6, 'LazyZombie', 'LZ'), + (0xa9ee4c98a4439b58657891c80c834680412a2121, 'Wooyeong Jeong SCF Ascendent Magenta TK-46 Uncommon', 'BUND-22TK-U-ASCTK-46-S-MAG'), + (0xa9efb24f5393a89cb9cbf81fc805beb3d9efc65b, 'False Pretense Music Video Final', 'FPMVF'), + (0xa9f14eb1bb993b10c59aafb0136b77e3eb64866b, 'San Francisco Giants® Kris Bryant Base White 86 Common', 'MLB-22S1-C-B86-S-WHI'), + (0xa9fcb13e80a7e375af5aa76de0816f34a9ff92b0, 'Godzilla Mountainscape Traditional Art Black and White 3 Uncommon', 'GDZ-RAT21-U-TA3-S-BW'), + (0xa9fcea7d4345b3e885fb62d2aaa65e425c362200, 'Los Angeles Dodgers® Corey Seager Base Blue 1094 Common', 'MLB-22PRI-C-B96-M-BLU'), + (0xaa091ce7f3378c3ff50456f867acc5d4b171c359, 'Philadelphia Phillies® Didi Gregorius Base White 44 Common', 'MLB-22S1-C-B44-S-WHI'), + (0xaa096ca7433b512bd4e83b19d1d09ee905a208af, 'Tampa Bay Rays™ Mike Brosseau 2B/3B Base Static Gold 427 Uncommon', 'MLB-S221-U-B427-GOL'), + (0xaa289e56431948861d856b4ad7310d11f9fbcb30, 'MoonFkingBirds', 'MFB'), + (0xaa2b012addf5723f61781b5dc26dc1e3e278425a, 'Learn to Grow', 'LTG'), + (0xaa30d4a1a144665cf4832e6234f2cedd76f18e46, 'Super Rare Comic 7 1-7 Bazooka Joe 2021 NFT', 'BZK-S-7C'), + (0xaa34784936fc108ee9c04d6e524ede730d65852e, 'Chicago Cubs® Kyle Hendricks Base Glitch 168 Uncommon', 'MLB-22S1-U-B167-M-GLI'), + (0xaa381a4c3f04f565ad747103987774e26638a2ac, 'Astaroth Official', 'ASTA'), + (0xaa3bfa454a48711572a08ad503f52c083f674458, 'Detroit Tigers® Robbie Grossman Base Glitch 55 Uncommon', 'MLB-22S1-U-B55-M-GLI'), + (0xaa45b318fd7488c9bb7890ab8082435707bd86f7, 'Tampa Bay Rays™ Tyler Glasnow Base Independence Day RWB 302 Rare', 'MLB-22S1-R-B298-M-RWB'), + (0xaa5b1600e286c579e664c2fee41215ad6b49fe68, 'Miami Marlins® Isan Diaz 2B Base Motion Vintage Stock 364 Super Rare', 'MLB-S221-S-B364-VS'), + (0xaa61f95ebef704d1930b21efff1951d18a741b1c, 'New York Yankees® Gerrit Cole Super Short Print White 35 Super Rare', 'MLB-22S1-S-SSP3-M-WHI'), + (0xaa6cc346703a9de783476b866b5c687a1a863326, 'Cinema Spatial', 'CISP'), + (0xaa738ddde34d6fad4b77af6b35d8e1f21fef18f9, 'San Francisco Giants® Alex Wood P Base Static Gold 643 Uncommon', 'MLB-S221-U-B643-GOL'), + (0xaa81ad093c4166621ccd4fe834e78109a2e6590b, 'Chicago Cubs® Adbert Alzolay P Base Static Gold 658 Uncommon', 'MLB-S221-U-B658-GOL'), + (0xaa90dacb5b69f284f81ba4e4c4a56ee232781d38, 'Diwali', 'AVAD'), + (0xaa9bf7ffdc013db99e6b8e93dab3df4b2ac36755, 'Wolf Foxel', 'wFoxel'), + (0xaa9c35a34f9fc6b91b1f699576b3d032bca543ac, 'Godzilla RAT Page 1 Comic Page Black and White 1 Uncommon', 'GDZ-RAT21-U-CP1-S-BW'), + (0xaaa3be8cf1c319487f8660e22268e8eb2b60b5ad, 'Cincinnati Reds® Wade Miley P Base Motion Platinum 638 Epic', 'MLB-S221-E-B638-PLA'), + (0xaaa7136aa86330e142f03fbbfbbf09f7442b445f, 'Miami Marlins® Sandy Alcantara P Base Motion Platinum 594 Epic', 'MLB-S221-E-B594-PLA'), + (0xaab68c80e6a2034c3aa95e6e87fedc1a6d9cb4cf, 'Prippe', 'PIE'), + (0xaab9e8aea38604ded7e1680d2d9a1568109db14a, 'URSY MURSY', 'URSS'), + (0xaac63b611283666fedee589e28e0021f4a20fab9, 'Houston Astros® Michael Brantley Championship Series Silver 15 Epic', 'MLB-21POST-E-CS15-M-SIL'), + (0xaadb9965b36cf21b158103160d0ad3251337b537, 'Tampa Bay Rays™ Austin Meadows Postseason Base White 3 Common', 'MLB-21POST-C-B3-S-WHI'), + (0xaadf4e412f18f3c7800c0d397178147ac67fc868, 'St. Louis Cardinals® Adam Wainwright Base Vintage Stock 34 Super Rare', 'MLB-22S1-S-B34-M-VS'), + (0xaae0139666044ec6c95bea172455a1d794e951ba, 'Washington Nationals® Alex Avila C Base Static Gold 446 Uncommon', 'MLB-S221-U-B446-GOL'), + (0xaae679060500fc618d1841104231e036877691ed, 'n00ts:by b00ts', 'n00t'), + (0xaae6c45ab25750754b3a4393a1156acc16968634, 'Tampa Bay Rays™ Nelson Cruz Base Vintage Stock 104 Super Rare', 'MLB-22S1-S-B103-M-VS'), + (0xaaf00a07b9a91f2a4bc184919465551e946e0f4a, 'Arizona Diamondbacks® Christian Walker Base Independence Day RWB 75 Rare', 'MLB-22S1-R-B75-M-RWB'), + (0xaaf9eab13480ec6ec0ca3ffc5b1ee8378497f616, 'Seattle Mariners™ Evan White Rookie and Future Phenoms Facsimile Signature Blue 67 Super Rare', 'MLB-INC21-S-RC67-BLU'), + (0xaaffd65e72a65af1c5a1496a78289d47968d30bf, 'DSC Arminia Bielefeld Marcel Hartel Base Players Gold 84 Rare', 'BUND-SC21-R-BP84-GLD'), + (0xab0ff0df5eb1f7de591278779cf9e07b564cdf40, 'San Diego Padres™ Base White 124 Common', 'MLB-22S1-C-B123-S-WHI'), + (0xab112ef0d057e7b54842a79a548f0fd6086aafdb, 'Houston Astros® Carlos Correa Postseason Base Red 50 Rare', 'MLB-21POST-R-B50-M-RED'), + (0xab12ada80304ac5d75fe14726806ff672eb4921a, 'Kyogo Furuhashi CEL Top Plays Gold SPTPL-02 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-02-V-GOL'), + (0xab1c9ed8fa724675919f01eccd32028d56db5a07, 'David Raum TSG Club Phemons Gold S4CPH-12 Legendary', 'BUND-21TS4-L-CPHS4CPH-12-V-GOL'), + (0xab280de4833b3132e6fdad324a1c4d6865e3e100, 'DSC Arminia Bielefeld DSC Insert Pennant Team Color S4P-11 Uncommon', 'BUND-21TS4-U-IS4P-11-S-TMC'), + (0xab300560648a0784f3f1be88aad6b505870053f2, 'hala-systems:submission-1-kharkiv-verifications Custody Token', 'S1KVCT'), + (0xab483d1228c622e819efb12d438682d0ce98324d, 'Wrapped Cryptopunks', 'WC'), + (0xab4a6c5f324bec3d2a207386585403af82a5772a, 'American League™ Cedric Mullins Base Pink 1276 Uncommon', 'MLB-22PRI-U-B214-M-PNK'), + (0xab51dbb4591ddd3d8af5c72cbb980276bc29f70e, 'Classic Americana 2', 'CA2'), + (0xab5e1bf36fc5015aa099d730796cb5d949608242, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Day 1 BFFs', 'GDZ-GVG22-PACK-R7'), + (0xab5f530ce3a5d7579ae34497f153c673738ffa9d, 'AVAX Doodle Crew', 'ADC'), + (0xab6c4138d700ab183cfcdeb3fc687d17d1176c94, 'Miami Marlins® Jazz Chisholm Gold Signings Facsimile Signature Gold 22 Epic', 'MLB-INC21-E-SS22-GLD'), + (0xab72174a06d5c24c52c4acd797217ee905fa6ee5, 'Atlanta Braves™ Travis d''Arnaud National League Base White 2 Uncommon', 'MLB-22ASG-U-B2-M-WHI'), + (0xab7bfa18e67ff0aaa42112936239e7124f8b33f4, 'PrizeBondAvax', 'PBA'), + (0xab81b762e517ddc91f855af5b7c30261c2efb065, 'Tampa Bay Rays™ Yandy Diaz 3B/1B Base Static White 425 Common', 'MLB-S221-C-B425-WHI'), + (0xab8aad3e28bd9734ea186355ad4e8ae7b1d88ade, 'Detroit Tigers® Casey Mize Base Blue 1071 Common', 'MLB-22PRI-C-B87-M-BLU'), + (0xab9856986709b6bb1d2031675a66ae5642931f61, 'King Ghidorah Fly-by Traditional Art Black and White 7 Rare', 'GDZ-RAT21-R-TA7-A-BW'), + (0xab9baca6afcb49f7cc4b82fdc4d3043ddafb55b6, 'Rare Comic 33 1-33 Bazooka Joe 2021 NFT', 'BZK-R-33C'), + (0xab9f7da379f40fc2ee147732d23a601ef1c671e1, 'Felix Animalibus Special-Edition', 'FASE'), + (0xabaf9e096740b9b26163ffc7530e9862edcd6ceb, 'New York Yankees® Gleyber Torres Postseason Base White 77 Common', 'MLB-21POST-C-B77-S-WHI'), + (0xabb2a9672c58df3f46704839ed45f50d226aefe6, 'Kyogo Furuhashi CEL Base White SP-06 Common', 'SPFL-21SPSS-C-BSP-06-A-WHI'), + (0xabb2e9239099d04e0dfaf52ac5dd9d30d868a8d4, 'Atlanta Braves™ Ozzie Albies 2B Base Motion Platinum 500 Epic', 'MLB-S221-E-B500-PLA'), + (0xabbe8ba67b625ec5aceb291eec19e8ee7036c846, 'Tampa Bay Rays™ Wander Franco Postseason Base Navy 4 Uncommon', 'MLB-21POST-U-B4-M-NVY'), + (0xabc24866e04494ddb7fb5838615792fc5d86f1aa, 'Chris Kane STJ Base Aqua SP-23 Uncommon', 'SPFL-21SPSS-U-BSP-23-A-AQU'), + (0xabc95a9a176391356b7d2bf0f77186c1e29efea9, 'St. Louis Cardinals® Yadier Molina 1987 35th Anniversary Wood T87-63 Common', 'MLB-22S1-C-1987A44-M-WD'), + (0xabcf06825f7b522854bf3ea5f78d1b44b68f4f83, 'Milwaukee Brewers™ Luis Urias Division Series Bronze 61 Super Rare', 'MLB-21POST-S-D61-M-BRO'), + (0xabd4264128cab6fb9c7826080691f50991765a83, 'Tampa Bay Rays™ Baseball is Fun! Base Motion Platinum 353 Epic', 'MLB-S221-E-B353-PLA'), + (0xabdc60bb4974f00a6d43a02e2fc0f370d9a8ebcd, 'Vee Fiend Golden Animation Facsimile Signature Color 5 Legendary', 'GPK-NFT22-L-GAFS5-A-COL'), + (0xabdca33f517aca01fe632363272d9140d422bf74, 'Geyikli Gece', 'GG'), + (0xabdfb586921c52238646866624a970e003fc61c6, 'Houston Astros® Cristian Javier Gold Signings Facsimile Signature Gold 15 Epic', 'MLB-INC21-E-SS15-GLD'), + (0xabeef523a7156c1fdae5d13f9245bb3cf4d2b55e, 'ChadDoge Santa Clause', 'CHADXMAS'), + (0xabf401df266a655ecc97c478f0778db9fed74a80, 'Baltimore Orioles® Renato Nunez 1B Base Motion Vintage Stock 409 Super Rare', 'MLB-S221-S-B409-VS'), + (0xabf4e0173d613071c61bda6478fb711ffa36a881, 'Miami Marlins® Sandy Alcantara P Base Static Gold 594 Uncommon', 'MLB-S221-U-B594-GOL'), + (0xabf5ce1958ebd8c2e7ddcafe7ce5180a935bf1b4, 'Toronto Blue Jays® Danny Jansen C Base Motion Rainbow 597 Rare', 'MLB-S221-R-B597-RAI'), + (0xabfeedae9be0ac2eccc540067a11ebdc6d62b8bb, 'Chicago White Sox® Carlos Rodon Division Series Bronze 30 Super Rare', 'MLB-21POST-S-D30-M-BRO'), + (0xac0e95023b3bf9fa43a48859a420c5c624c52d16, 'SV Werder Bremen Niklas Füllkrug Base Players Team Color 78 Uncommon', 'BUND-SC21-U-BP78-TMC'), + (0xac0fe6393189dbd5947a1d7a86e767a481a39ba9, 'Tampa Bay Rays™ Wander Franco Postseason Base Red 4 Rare', 'MLB-21POST-R-B4-M-RED'), + (0xac12097539d7e9fca697c2b1696d78695f1b9ae5, 'Super Rare Comic 26 1-26 Bazooka Joe 2021 NFT', 'BZK-S-26C'), + (0xac1669507599394ecc48c69bc899e99d9cb89e4d, 'FuckGoose', 'FKGOS'), + (0xac17de8bed603ac9be0f1a9b0e88a1a86fa0f0f3, 'Detroit Tigers® Willi Castro Base Glitch 191 Uncommon', 'MLB-22S1-U-B190-M-GLI'), + (0xac182eb40361ee67d67372279284a25c7e9348ef, 'Tampa Bay Rays™ Ji-Man Choi 1B Base Static Gold 511 Uncommon', 'MLB-S221-U-B511-GOL'), + (0xac1c63977f8294dfe35e6e7aecfbc302d32f4e66, 'Steph & Leila''s Dunks', 'Dunk'), + (0xac2560a5be108784fe1defbea595059e2ddf7c30, 'NÉON COLLECTION', 'NC'), + (0xac25eff90a48604268a3ae674a7d462d71a9872d, 'Chicago Cubs® Brailyn Marquez P Base Motion Vintage Stock 404 Super Rare', 'MLB-S221-S-B404-VS'), + (0xac3646a03a92b3ad41ec23e628d3beb35e240d9f, 'Sascha Burchert SGF Animation Gold Refractor S3-33 Legendary', 'BUND-21TS3-L-AS3-33-V-GOL'), + (0xac3c2c4e9a69d9f91a6c963f9c5daa3d78212a08, 'Barnyard Gnome Cards', 'YALL'), + (0xac3ff5fc1f00b9ab014d12cce7e389e73c995f96, 'Uncommon Comic 38 1-38 Bazooka Joe 2021 NFT', 'BZK-U-38C'), + (0xac442a60a89e0163b06b403f44c4c6e7a8bb52e7, 'Max Stryjek LFC Base Purple SP-30 Super Rare', 'SPFL-21SPSS-S-BSP-30-A-PUR'), + (0xac45edc30b1f284ae8f31936aeedc301fc24911a, 'Baltimore Orioles® Keegan Akin P Base Motion Rainbow 562 Rare', 'MLB-S221-R-B562-RAI'), + (0xac539848f2cff9692a025c9002acacbbef5b08e1, 'Atlanta Braves™ Cristian Pache Base White 233 Common', 'MLB-22S1-C-B230-S-WHI'), + (0xac5a27f9b4f54df6ac370468653465000a05ca55, 'New York Yankees® Trey Amburgey Base Vintage Stock 263 Super Rare', 'MLB-22S1-S-B260-M-VS'), + (0xac5ca8ac6b9063f415d65f5d36c262e8e495d9e9, 'New York Mets® Tylor Megill 1987 35th Anniversary Wood T87-82 Common', 'MLB-22S1-C-1987A60-M-WD'), + (0xac63fed867b804ed06f1992de7a597011674aa42, 'Detroit Tigers® Jake Rogers Base White 198 Common', 'MLB-22S1-C-B197-S-WHI'), + (0xac72c475abab5766f4ecea6bc6be4c49c353b38d, 'Uncommon Comic 2 1-2 Bazooka Joe 2021 NFT', 'BZK-U-2C'), + (0xac7cae3e419ced434e365ebcbeeeba26de19f778, 'Toronto Blue Jays® Vladimir Guerrero Jr. Base Blue 1029 Common', 'MLB-22PRI-C-B128-M-BLU'), + (0xac86bc4fbd36333e735c12c85a69a91690a1cf46, 'Atlanta Braves™ Ian Anderson Postseason Base Red 64 Rare', 'MLB-21POST-R-B64-M-RED'), + (0xac8cad6905942b096eabbf322ff01ab929e5b523, 'Milwaukee Brewers™ Christian Yelich Stars of MLB Chrome Night SMLBC-11 Legendary', 'MLB-22S1-L-SMLBC11-M-NIT'), + (0xac97d9fa9a37c758c8d0ff81317d4a1e6619ef0c, 'Cleveland Indians® Austin Hedges C Base Static Gold 572 Uncommon', 'MLB-S221-U-B572-GOL'), + (0xac99d37f07a90684a57b592a72236517692c394f, 'titas', 'TSTIT'), + (0xac9bb6e069ae9f58366a80d98a8e0a6a5a1da1a6, 'Atlanta Braves™ Kyle Muller Base Pink 1208 Uncommon', 'MLB-22PRI-U-B158-M-PNK'), + (0xaca020e09c4e7c2a0d57d18d3c0d55162353c075, 'AVAX Doodle Oni Crew', 'ADOC'), + (0xacaaaefeec45c7f597d63870f66b111febb7d3b5, 'FlatJellyPEGV2num001', 'FJEPEGV2n001'), + (0xacaba2f0836607ab7931e42a24f324331ee10bd9, 'Super Rare Animated Comic 1 Burglar Alarm Bazooka Joe 2021 NFT', 'BZK-S-1A'), + (0xacad3cf0910ac1ee9ed4ead5b7fc1a88f9086b8b, '2021 Godzilla Rage Across Time Collection Premium Pack', 'GDZ-PACK-P'), + (0xacb73e1804c9498147604ab57ff613533c11385b, 'GOTAL', 'GTL'), + (0xacb81f6791919f9aeee2f0b81106f0c636af6952, 'Angels® Andrew Heaney P Base Motion Platinum 387 Epic', 'MLB-S221-E-B387-PLA'), + (0xacc5dbae8b35a86fb483b8fed9285c4d3ffb19cf, 'Toronto Blue Jays® Vladimir Guerrero Jr. Pure Power White 2111 Rare', 'MLB-22PRI-R-PP7-M-WHI'), + (0xacca16f5a71ec0eff4c977d55f2e2a23567779a8, 'Mighty Creatures ABC', 'MCABC'), + (0xacd379cb3ee76ec70f84b3b410329cbfc067c732, 'New York Yankees® Andrew Heaney Base White 287 Common', 'MLB-22S1-C-B284-S-WHI'), + (0xacd41afbbfcf058e65ef084598d5249741035d94, 'Minnesota Twins® Alex Kirilloff Base White 197 Common', 'MLB-22S1-C-B196-S-WHI'), + (0xacda79a23c2057ce00a1228dddf5ad60913615d3, 'Tampa Bay Rays™ Wander Franco Short Print White 215 Rare', 'MLB-22S1-R-SP43-M-WHI'), + (0xacdc42016703dcb8854986015f38ae325f8070a9, 'Jak Alnwick SMI Base Purple SP-21 Super Rare', 'SPFL-21SPSS-S-BSP-21-A-PUR'), + (0xacde88c1b963f55bb1d2c007e7d36b9481d9b683, 'FC Union Berlin Nico Schlotterbeck Young Stars Gold 165 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS165-AFS-GLD'), + (0xace0970218d63a83f07593e3babebe681fe6307c, 'Baby Pica Trainer', 'PMP'), + (0xace58eb3fbb79c21a2bab3896e41a8681334cae2, 'Los Angeles Dodgers® Corey Seager SS Base Motion Rainbow 450 Rare', 'MLB-S221-R-B450-RAI'), + (0xace768f3bc211f7a393af36b7eff1f6399554b7a, 'Bubble Cros', 'BCS'), + (0xacf091af8b544113838f69d85d764be04a8e47ed, 'FC Koln Jonas Hector Top Players Gold 132 Super Rare', 'BUND-SC21-S-TP132-GLD'), + (0xacf540d75673a3807f4cf442e325f43396024a07, 'New York Yankees® Anthony Rizzo Base Independence Day RWB 242 Rare', 'MLB-22S1-R-B239-M-RWB'), + (0xacf5b0abd7b5a16f216e8d59d9d81d19d617e8a3, 'Bounty Besties: Cats', 'BTYBTC'), + (0xacf84011f1e2b99d7339a66031f6193ba0fa7e9e, 'Boston Red Sox® Xander Bogaerts Base Vintage Stock 8 Super Rare', 'MLB-22S1-S-B8-M-VS'), + (0xacfa3057df80f54883578352384e8d15d902bfde, 'Houston Astros® Yordan Alvarez Championship Series Silver 12 Epic', 'MLB-21POST-E-CS12-M-SIL'), + (0xad06644cc1c0d45ada278d95edcd1b253351dd06, 'Atlanta Braves™ Austin Riley Postseason Base White 59 Common', 'MLB-21POST-C-B59-S-WHI'), + (0xad0753d0b617b422ee90fa815ba354c924593c43, 'Nils Petersen SCF Motion Aqua Refractor S4-64 Rare', 'BUND-21TS4-R-MS4-64-V-AQU'), + (0xad0ca4397d377d2130dddfbf177c04458d03fdca, 'MinerSam', 'MS'), + (0xad0f7a78d676663e96b5e4d2d72b4d4a6689a3c5, 'Jonas Wind WOB Motion Rainbow Refractor S4-52 Super Rare', 'BUND-21TS4-S-MS4-52-V-RAI'), + (0xad1d8d459e26b8cda3b420d4aa612a998838efe1, 'Angels® Kurt Suzuki C Base Static Gold 571 Uncommon', 'MLB-S221-U-B571-GOL'), + (0xad24b50027a00b4f7ab4bb61a32b9a528e50a196, 'Alphonso Davies BAY Ascendent Facsimile Signature Blue TK-37 Legendary', 'BUND-22TK-L-ASCTK-37-S-BLU'), + (0xad2fc9a806c48f0b54990d537fa793e8e0bdd39b, 'Los Angeles Dodgers® Zach McKinstry 2B Base Motion Rainbow 394 Rare', 'MLB-S221-R-B394-RAI'), + (0xad342d90195eb911854d63ff5cee5d224b6349ab, 'Gouweleeuw-Oxford FCA Animation Duos TSC-05 Epic', 'BUND-21TSC-E-RATSC-05-A-DUO'), + (0xad36aef9c4789db991915e3a743859240a65cd36, 'Cincinnati Reds® Tony Santillan Facsimile Signature Gold 3099 Super Rare', 'MLB-22PRI-S-FS51-M-GLD'), + (0xad3773f6848dfaabcbc2f008327b59362fa7e5ba, 'Arizona Diamondbacks® Andy Young 2B Base Motion Vintage Stock 499 Super Rare', 'MLB-S221-S-B499-VS'), + (0xad48259b914d02d9f014a21dcf09c8eb37a3ec5b, 'luxryious', 'LUX'), + (0xad4cd6122d3f4527e90343d7752327b36a625ce5, 'Godzilla RAT Page 9 Comic Page Black and White 8 Uncommon', 'GDZ-RAT21-U-CP8-S-BW'), + (0xad545586707463fc675611efa73435595a70cc78, 'Godzilla Storm Traditional Art Color 8 Epic', 'GDZ-RAT21-E-TA8-A-COL'), + (0xad595118e85b4a0ee85cca9bbc080897f1c7ad83, 'Kansas City Royals® Nick Heath Gold Signings Facsimile Signature Gold 19 Epic', 'MLB-INC21-E-SS19-GLD'), + (0xad5b38b49a3707d7379a8c2643896938121df477, 'Boston Red Sox® Jonathan Arauz SS Base Static White 468 Common', 'MLB-S221-C-B468-WHI'), + (0xad66085abc9617763cede4c81facf3301a86b766, 'GIGA JOES', 'RUGG'), + (0xad667785779cda622da4f1ea81e08be8f89624b1, 'Toronto Blue Jays® George Springer American League Base Golden 15 Super Rare', 'MLB-22ASG-S-B15-M-GLD'), + (0xad6e21a3c77aa044dbea7296b464488528bb9db3, 'Sport-Club Freiburg Baptiste Santamaria Top Players Gold 114 Super Rare', 'BUND-SC21-S-TP114-GLD'), + (0xad75a3788d92047471380ef6008789b416496274, 'Los Angeles Dodgers® Corey Seager SS Base Motion Platinum 450 Epic', 'MLB-S221-E-B450-PLA'), + (0xad8323d1590dfabb95a57990a0a041b183164f1c, 'San Diego Padres™ Manny Machado National League Base Golden 7 Super Rare', 'MLB-22ASG-S-B7-M-GLD'), + (0xad86d51689f3ef3abb6cb5a4377965bac81d1ca2, 'New York Yankees® Jose Trevino American League Base Blue 2 Rare', 'MLB-22ASG-R-B2-M-BLU'), + (0xad8b155ea82ce725f4bcf5026afb33686d1d4dee, 'Chicago Cubs® Billy Hamilton OF Base Motion Rainbow 588 Rare', 'MLB-S221-R-B588-RAI'), + (0xad8e3531574c8f867247a1dca355b9a36672f1d7, 'Bayer 04 Leverkusen Edmond Tapsoba Base Players Team Color 23 Static Facsimile Signature Rare', 'BUND-SC21-R-BP23-SFS-TMC'), + (0xad8f21a1afc17281ad6988b3314f39ea396d45bd, 'Baltimore Orioles® Trey Mancini Base White 79 Common', 'MLB-22S1-C-B79-S-WHI'), + (0xad93ea5ba90602b62c857294aa83711659ab6ddb, 'Washington Nationals® Josiah Gray Short Print White 43 Rare', 'MLB-22S1-R-SP12-M-WHI'), + (0xad9459e54c8751323c05ab565bb3dc9c09c7cf7e, 'Bruce Anderson LFC Base Purple SP-29 Super Rare', 'SPFL-21SPSS-S-BSP-29-A-PUR'), + (0xad9bf47ee2218b4ad37036f13a0b9eb50351456e, 'Tampa Bay Rays™ Randy Arozarena Short Print White 196 Rare', 'MLB-22S1-R-SP38-M-WHI'), + (0xada46847152856820990f695d768cf06eefc0193, 'Oakland Athletics™ Mark Canha Base Pink 1237 Uncommon', 'MLB-22PRI-U-B183-M-PNK'), + (0xadb3d9a95194883668c51ec8aa51180578f8af45, 'Arizona Diamondbacks® Merrill Kelly Base Independence Day RWB 74 Rare', 'MLB-22S1-R-B74-M-RWB'), + (0xadb9e1826392bcae2ca56e907840b173b3cba10a, 'Texas Rangers® Nick Solak Rookie and Future Phenoms Facsimile Signature White 75 Rare', 'MLB-INC21-R-RC75-WHT'), + (0xadc2cc6bea7fc933bcaa393d090ea452809e543d, 'Major League Baseball® How Far? Base Glitch 320 Uncommon', 'MLB-22S1-U-B316-M-GLI'), + (0xadc5c3516a2b1aeeeb44d687d21f938ff27432eb, 'Miami Marlins® Trevor Rogers P Base Motion Platinum 563 Epic', 'MLB-S221-E-B563-PLA'), + (0xadd244e4f99e962dd2e3775c3b99b1f8483fd245, 'Philadelphia Phillies® Jojo Romero P Base Static White 508 Common', 'MLB-S221-C-B508-WHI'), + (0xadd2918053348b3d7a9879f881c004ea770b1a79, 'Detroit Tigers® Spencer Turnbull Base Vintage Stock 228 Super Rare', 'MLB-22S1-S-B225-M-VS'), + (0xadd73990f409ed2eb114eba198b4dc60a0f54e30, 'Borussia Monchengladbach Ramy Bensebaini Base Players Team Color 20 Uncommon', 'BUND-SC21-U-BP20-TMC'), + (0xadd7d5e452219b579019b8766cc934881c49a766, 'Atlanta Braves™ Jorge Soler Base Vintage Stock 208 Super Rare', 'MLB-22S1-S-B207-M-VS'), + (0xadf268acd90b3d8a616028fa04fca1344569117f, 'Houston Astros® Jose Altuve American League Base Golden 5 Super Rare', 'MLB-22ASG-S-B5-M-GLD'), + (0xadf49405c369054523def10ada7a8cdd81e230fa, 'Angels® Jose Iglesias SS Base Static White 346 Common', 'MLB-S221-C-B346-WHI'), + (0xadf9991c0f226dc663f7706dfb469c978d739cb3, 'Swami Vivekananda SwamiNFT', 'SNV'), + (0xadfbc56283af0dccc745c0e1cf2750acae55ad05, 'Colorado Rockies™ Trevor Story SS Short Print Motion White 475 Super Rare', 'MLB-S221-S-SP475-WHI'), + (0xae054222061a80fa916e69fe512b1a83ba06929a, 'Milwaukee Brewers™ Lorenzo Cain Base Pink 1076 Uncommon', 'MLB-22PRI-U-B48-M-PNK'), + (0xae05ac752f6b147c7dd2a4378b34f424724569a2, 'Baltimore Orioles® Dean Kremer P Base Static Gold 391 Uncommon', 'MLB-S221-U-B391-GOL'), + (0xae0d0d92e1fd26ac296fa8c79cf677103b02765b, 'DSC Arminia Bielefeld Manuel Prietl Base Players White 81 Common', 'BUND-SC21-C-BP81-WHT'), + (0xae0e2c5f7e3e24978a5402591d2f2f914f0842a1, 'PixCat', 'PCAT'), + (0xae20f3a82ecb6d06db5a149638936bcdc09bdefb, 'Reo Hatate CEL Base White SP-05 Common', 'SPFL-21SPSS-C-BSP-05-A-WHI'), + (0xae2599ac61240f0c401c82e30c0f6da3ac0c340a, 'Boston Red Sox® Enrique Hernandez Base Pink 1093 Uncommon', 'MLB-22PRI-U-B117-M-PNK'), + (0xae26ce76c18c0346d7a4c8a2e4477aabdcc46d4c, 'St. Louis Cardinals® Nolan Arenado Postseason Base Navy 42 Uncommon', 'MLB-21POST-U-B42-M-NVY'), + (0xae27f29f291c75b7f72fead8f41feeb659d47ffc, 'Borussia Monchengladbach Jonas Hofmann Base Players Team Color 17 Uncommon', 'BUND-SC21-U-BP17-TMC'), + (0xae2dccd59c224d0a9dd1d5c56c08c83993521559, 'Milwaukee Brewers™ Kolten Wong Postseason Base White 17 Common', 'MLB-21POST-C-B17-S-WHI'), + (0xae38873321c1c860fc9c884d07820ea521991f09, 'Bored Ape AVA Club', 'BAYC'), + (0xae3a92096f0a1dae7da220078670a05d8f995ecb, 'Toronto Blue Jays® George Springer American League Base White 15 Uncommon', 'MLB-22ASG-U-B15-M-WHI'), + (0xae3bc19fd788d92d9ddbaf72f43c7fa4fab260c1, 'Milwaukee Brewers™ Kolten Wong Postseason Base Navy 17 Uncommon', 'MLB-21POST-U-B17-M-NVY'), + (0xae3eea4754418fff02f29c89262f7083d9f22fbc, 'Houston Astros® Yordan Alvarez Gold Signings Facsimile Signature Gold 16 Epic', 'MLB-INC21-E-SS16-GLD'), + (0xae4049ed271aaa082dc760410cff71b9ef66ff4c, 'Doom Dogs', 'DOOMED'), + (0xae420a1fe2d7c2cb7b60cb4201e647c4584c5c71, 'Oakland Athletics™ Ramon Laureano OF Base Static White 613 Common', 'MLB-S221-C-B613-WHI'), + (0xae45c5257d7074ac11194f7f2caceffdad702a53, 'Toronto Blue Jays® Base Vintage Stock 109 Super Rare', 'MLB-22S1-S-B108-M-VS'), + (0xae45d9e0545a81c789508c3a5b04c247874d2380, 'AvaxDoodles', 'AVDOODLES'), + (0xae4be1c69a65ecd3fc96fb632b006b577c2d3b2e, 'AvaLari', 'AvaLari'), + (0xae4d2cb220aaae62fc464255a5b466f5c2826cbd, 'MSC Standard', 'MSC-St'), + (0xae514063b96d45ee4b6d9b12b5f6dcc96eefc3f5, 'AVAX_NFT_721', 'NFT'), + (0xae5845338a10da1f35db0386ffa9929664a23e37, 'Cleveland Guardians™ Josh Naylor Base Independence Day RWB 77 Rare', 'MLB-22S1-R-B77-M-RWB'), + (0xae59c41a7b28fe523ae7cd698db4d8497e4a1548, 'FC Bayern Munich Robert Lewandowski Top Players Gold 91 Super Rare', 'BUND-SC21-S-YS91-GLD'), + (0xae6455cadbc2ac49515a5f87e4d2210917b45c9c, 'Houston Astros® Jose Altuve Regular Season Division Winners RWB 17 Rare', 'MLB-21POST-R-R17-M-RWB'), + (0xae826f061703af32a2f442a99e56d81ed2d4149c, 'Pittsburgh Pirates® Keone Kela P Base Motion Platinum 351 Epic', 'MLB-S221-E-B351-PLA'), + (0xae830253291ee1602e493d116b0b288baef5b279, 'MiniLands', 'MLD'), + (0xae865612fd8d5df1e5e6bb5c38527582962bfd2a, 'Patrick Wimmer DSC Base White S4-44 Common', 'BUND-21TS4-C-BS4-44-S-WHI'), + (0xae88be7d3fe6545c688b640b427af4bab90e2638, 'Snowball NFT Rolling Blue', 'SNOBNFTROLLINGBLUE'), + (0xae894a06a9ecb638c99521116e717a598dfff0eb, 'Arizona Diamondbacks® Merrill Kelly Base Vintage Stock 74 Super Rare', 'MLB-22S1-S-B74-M-VS'), + (0xae909f11250aade1521c79517760667da15ce93f, 'Common Comic 48 1-48 Bazooka Joe 2021 NFT', 'BZK-C-48C'), + (0xae984bdab8cc90be66a27cf2a244d0792e95fe3c, 'Colorado Rockies™ Charlie Blackmon Inception Base Blue 22 Uncommon', 'MLB-INC21-U-IB22-BLU'), + (0xae9c53972b430b2b94344f99114d4e9b01074661, 'DEGENS', 'DEGENS'), + (0xae9da15d2d91a72286ee9d8932eba4e972a6f20d, 'Super Rare Comic 62 2-14 Bazooka Joe 2021 NFT', 'BZK-S-62C'), + (0xae9e34a9d69f214c91b7717958942e146b45d72d, 'Gerrit Holtmann BOC Motion Rainbow Refractor S1-08 Super Rare', 'BUND-21TS1-S-MS1-08-V-RAI'), + (0xaea5cbe4b488112a060e95b7bb5896ac92127386, 'Washington Nationals® Josiah Gray Base Vintage Stock 43 Super Rare', 'MLB-22S1-S-B43-M-VS'), + (0xaea82b8abe646ec06cc7f57f2b53955131895f02, 'San Diego Padres™ Adrian Morejon P Base Motion Rainbow 518 Rare', 'MLB-S221-R-B518-RAI'), + (0xaeadfcfeebb8a5aa9fa79ac747809f496b78dfb0, 'Arizona Diamondbacks® Stuart Fairchild Base White 163 Common', 'MLB-22S1-C-B162-S-WHI'), + (0xaeb217779a42537fce6356edacbb8c33e2e4e031, 'Proof of possession', 'POP'), + (0xaeb25c95bf6eecf7409d936e569ed7537e0c58de, 'Buddha NFT', 'Buddha'), + (0xaeb43265559e17bc76e9e9971b8d2cd7b71d6846, 'Butterfly Paper', 'BAPER'), + (0xaeb516890f95a775022faec0cc31a0ff5ce98f7d, 'Mothra Base Collectible Magenta 4 Common', 'GDZ-RAT21-C-B4-S-MAG'), + (0xaeb5790bce778cb11dca65780f80edd3d5ab2ffc, 'Trash Land', 'TRASH'), + (0xaec42e6c1c95f81db21b77bfb19178bb1c53d6dd, 'San Francisco Giants® Sammy Long Facsimile Signature Slab Gold 3114 Epic', 'MLB-22PRI-E-FS47-M-GLD'), + (0xaec94ec4930a949157387f412deff6eb0724bea5, 'DSC Arminia Bielefeld Fabian Klos Base Players Team Color 83 Uncommon', 'BUND-SC21-U-BP83-TMC'), + (0xaecc8a07f87ad0d46c0e48a2d9be9de0e2a394cd, 'Angels® Raisel Iglesias Base Independence Day RWB 173 Rare', 'MLB-22S1-R-B172-M-RWB'), + (0xaed8f6c37038d2b1dd8d0e42f2fcb8c612621a58, 'Tampa Bay Rays™ Austin Meadows Division Series Bronze 3 Super Rare', 'MLB-21POST-S-D3-M-BRO'), + (0xaedcd850d9784b2a1378256ad4a7abdc60376baa, 'Jacob Bruun Larsen TSG Animation Black Refractor S4-54 Epic', 'BUND-21TS4-E-AS4-54-V-BLA'), + (0xaee46a73ec77ba1f048e4d6693269eec1ea0764d, 'New York Mets® Francisco Lindor SS Short Print Motion White 489 Super Rare', 'MLB-S221-S-SP489-WHI'), + (0xaee9ba861414f1fb8857411e035847a6ff342621, 'Houston Astros® Cristian Javier Silver Signings Facsimile Signature Silver 15 Super Rare', 'MLB-INC21-S-SS15-SLV'), + (0xaeeb13f1b914e48e2b1e536e389aaebeea4838aa, 'Milwaukee Brewers™ Freddy Peralta Facsimile Signature Gold 3108 Super Rare', 'MLB-22PRI-S-FS11-M-GLD'), + (0xaef9a761a7d93967335265c9fc45f551df7a1da1, 'Miami Marlins® Isan Diaz 2B Base Static Gold 364 Uncommon', 'MLB-S221-U-B364-GOL'), + (0xaf066b7ca7ea1d67294c05cf6ef191bfad77032e, 'Topps Kickoff - 22-23 Bundesliga NFT Card Premium Pack', 'BUND-22TK-PPACK-TK'), + (0xaf0d8b7d3d6f425b303965baabf5fc3d4ac79583, 'Bayer 04 Leverkusen Julian Baumgartlinger Base Players Team Color 22 Static Facsimile Signature Rare', 'BUND-SC21-R-BP22-SFS-TMC'), + (0xaf20110420284e1b3f4321f78f2a229c42ceda77, 'Ai0NE Personalized', 'AiPERS'), + (0xaf25b0d5fb42fab548c2ec48e0adf6f33fa954c4, 'Reels of Change', 'RSC'), + (0xaf2659d27d5b74f44d4d2bfc80931a905aea51d4, 'Godzilla RAT Page 19 Comic Page Color 16 Rare', 'GDZ-RAT21-R-CP16-S-COL'), + (0xaf291d415a212df86caa3171aa0711dfee09693f, 'Common Comic 73 2-25 Bazooka Joe 2021 NFT', 'BZK-C-73C'), + (0xaf2a3af957ee3a375892a042d093dd9d24634700, 'Miami Marlins® Jazz Chisholm Jr. National League Base Golden 5 Super Rare', 'MLB-22ASG-S-B5-M-GLD'), + (0xaf2bc947d1305835cffcd1acbcd4e11025e787e9, 'Aikonic NFTs', 'WENVINI'), + (0xaf2f39ac966917ef5874f455e84f0b863a1d0fd3, 'Pittsburgh Pirates® Jared Oliva OF Base Motion Platinum 471 Epic', 'MLB-S221-E-B471-PLA'), + (0xaf36ff42bf9c49d4d90d02df8aecbde24f33cd18, 'Milwaukee Brewers™ Christian Yelich Base Pink 1016 Uncommon', 'MLB-22PRI-U-B98-M-PNK'), + (0xaf3affc3f84c12c1018366ae92de0dd522f02ab9, 'Toronto Blue Jays® Vladimir Guerrero Jr. Fresh Faces White 2214 Rare', 'MLB-22PRI-R-FF9-M-WHI'), + (0xaf3ecd5d7c9e951ee0aa12d0d9f510f86241216c, 'FC Bayern Munich Leon Goretzka Base Players Team Color 3 Uncommon', 'BUND-SC21-U-BP3-TMC'), + (0xaf45142eff5cf08779e028327cd05c2535361242, 'Kansas City Royals® Tyler Zuber Rookie and Future Phenoms Facsimile Signature Blue 34 Super Rare', 'MLB-INC21-S-RC34-BLU'), + (0xaf47870201f6ae49881af27413cab3a7bc2a92f1, 'Colorado Rockies™ Dom Nunez Base Independence Day RWB 193 Rare', 'MLB-22S1-R-B192-M-RWB'), + (0xaf4bafb8b56d04be3fd2ad3cec8527b19b7147c7, 'Houston Astros® Jose Altuve Facsimile Signature Blue 278 Uncommon', 'MLB-22S1-U-FS19-S-BLU'), + (0xaf5c09af1aea72650462631d56ed44e2a592c849, 'Atlanta Braves™ Ronald Acuña Jr. 1987 35th Anniversary Chrome T87C-74 Super Rare', 'MLB-22S1-S-1987AC56-M-CHR'), + (0xaf655cff6e8cb2af1dda1969a8878d105fb7aff8, 'Bear Market Loto FOMO Ticket', 'BMLFT'), + (0xaf68a1990613b017b7c148313be8b06e1ed22189, 'Chikn Beauty Voter Postrs', 'vPOSTR'), + (0xaf6ae98711b1dbe8eda9ae6d35c1ec6fa16e383c, 'Avalanche Friends Collectible', 'AFC'), + (0xaf7541ef309fddc119f22dfc59f9fe13cf581be4, 'Skipt NFT', 'SKIPT'), + (0xaf80658b771fe09d86f31f3cdf4545bb8e11a76e, 'Boston Red Sox® Jackie Bradley Jr. OF Base Static Gold 568 Uncommon', 'MLB-S221-U-B568-GOL'), + (0xaf8643be8c9e9edb249ca4e1660f504dbddceeea, 'The Egg Project', 'THEEGGPROJECT'), + (0xaf8c50a7afb2e08254aed9c2d3111aa88c3adfd0, 'TerranArt', 'TART'), + (0xaf8d16500a58b868c34be9106d674b820d67c979, 'Yak x BenQi: USDT AVAI Vault', 'Yak x BenQi: USDT AVLT'), + (0xaf92fb610bee9895f6c4017360435fcc8999633d, 'Eintracht Frankfurt Stefan Ilsanker Base Players Team Color 44 Static Facsimile Signature Rare', 'BUND-SC21-R-BP44-SFS-TMC'), + (0xaf97f0580dcba85e749e5b5656309e69846ee540, 'Atlanta Braves™ Freddie Freeman Postseason Base Navy 57 Uncommon', 'MLB-21POST-U-B57-M-NVY'), + (0xaf9aed3962a90cfe0cd601e5866aef35547d4d01, 'Boston Red Sox® Jonathan Arauz SS Base Motion Rainbow 468 Rare', 'MLB-S221-R-B468-RAI'), + (0xafa45a47e561040fba36c7c968a5b093cadea3e9, 'San Francisco Giants® Tommy La Stella Base Independence Day RWB 241 Rare', 'MLB-22S1-R-B238-M-RWB'), + (0xafb09781d25217d7f2f98d707e1b4cbb52e2753c, 'Chicago White Sox® Gavin Sheets 2022 Inception Gold 3 Legendary', 'MLB-22LEG-L-22INC3-M-GLD'), + (0xafb350f3a4e1ad696d8c38dd4e72d810458e0a8b, 'Minnesota Twins® Jose Berrios Inception Base White 60 Common', 'MLB-INC21-C-IB60-WHT'), + (0xafb59c96188a1cfa1f141cad2a49373d50f5236e, 'Behrens-Voglsammer FCU Animation Duos TSC-13 Epic', 'BUND-21TSC-E-RATSC-13-A-DUO'), + (0xafbb79a501794f359524c74ff70ec003261d8df5, 'Deepskulls', 'DSKULL'), + (0xafbd4423a534111ba5af1b83a3927f939eef226c, 'Houston Astros® Chas McCormick World Series Broadcast RWB 1154 Rare', 'MLB-22TNP-R-WSB2-M-RWB'), + (0xafc77013fa2ac85395cd4feea8d804670a5703b1, 'Kansas City Royals® Emmanuel Rivera Base Independence Day RWB 18 Rare', 'MLB-22S1-R-B18-M-RWB'), + (0xafcae313034158b6e99e9cfc8e0f0601dca9c736, 'NFT Garden', 'NFTG'), + (0xafcdd94487d903a672e5b8b81707e48398f855bc, 'New York Yankees® Andrew Heaney Base Vintage Stock 287 Super Rare', 'MLB-22S1-S-B284-M-VS'), + (0xafd0e208bc692cd136d43d836b8ecc6ec51a8846, 'Chicago Cubs® Kyle Hendricks Inception Base White 17 Common', 'MLB-INC21-C-IB17-WHT'), + (0xafd9cec9cabbe43a8a5fde0acc1d81f1d55ab0a4, 'Houston Astros® Jose Altuve Facsimile Signature Gold 3011 Super Rare', 'MLB-22PRI-S-FS24-M-GLD'), + (0xafdd7dd72bedf340b0e5715a7046e9b4f25ff150, 'Munky', 'Munky'), + (0xafdeab14d9e8e7b0811ca628f44a644f09309e17, 'PrizeBondLink', 'PBL'), + (0xafdfbba0b04281995f39c503e9289ceebd7ea0c3, 'Joy Ride', 'JRD'), + (0xafe79fcc01676da50cb81e3c52e8145ecd78b555, 'San Diego Padres™ Ha-Seong Kim SS Base Motion Vintage Stock 398 Super Rare', 'MLB-S221-S-B398-VS'), + (0xafe9bedeb604333d45e9f11c844c4597ebf10606, 'Arizona Diamondbacks® Tim Locastro OF Base Static Gold 585 Uncommon', 'MLB-S221-U-B585-GOL'), + (0xafed9cabdf7914f901f4ac04293693c7e5b94244, 'Tampa Bay Rays™ Josh Fleming P Base Static Gold 526 Uncommon', 'MLB-S221-U-B526-GOL'), + (0xaff33e503d53e57b156795f7180d2f954834d190, 'Prippe', 'PIE'), + (0xaff4d3fb5f468450f7dc97c1d3ebcb4cda8d40b3, 'Angelińo-Simakan RBL Animation Duos TSC-03 Epic', 'BUND-21TSC-E-RATSC-03-A-DUO'), + (0xaff5356506e707659c453165c14cf48e9bd4394d, 'Chicago White Sox® Tim Anderson Facsimile Signature Red 64 Rare', 'MLB-22S1-R-FS3-S-RED'), + (0xaff8c628968a5b02966dfa5bb87f264c9eaebc9e, 'Chicago White Sox® Dane Dunning Inception Base Red 25 Rare', 'MLB-INC21-R-IB25-RED'), + (0xaffccf71875360ab97dd23e3bf4b277672cd78cb, 'Los Angeles Dodgers® Chris Taylor Postseason Base Navy 34 Uncommon', 'MLB-21POST-U-B34-M-NVY'), + (0xb0015b1c91d45e4b34f3751e2cfc1e688172c140, 'Evan Ndicka SGE Base Red S3-29 Uncommon', 'BUND-21TS3-U-BS3-29-S-RED'), + (0xb0054ff98a3f02047afd1ee3d38162e751c838ec, 'Rare Apes', 'MKY'), + (0xb0059c463257219228c2824eb21bc46a7eccd0f0, 'Dejan Ljubicic KOE Base Red S4-69 Uncommon', 'BUND-21TS4-U-BS4-69-S-RED'), + (0xb009079307539494d6fda326701047f01f356c30, 'Tampa Bay Rays™ Yandy Diaz 3B/1B Base Motion Rainbow 425 Rare', 'MLB-S221-R-B425-RAI'), + (0xb014baeb7ac7120e057b73fadb3fd592179b54e1, 'Tampa Bay Rays™ Mike Zunino C Base Motion Rainbow 430 Rare', 'MLB-S221-R-B430-RAI'), + (0xb018e454fb178cede16a9d733dfd91637da33481, 'Philadelphia Phillies® Vince Velasquez P Base Static White 653 Common', 'MLB-S221-C-B653-WHI'), + (0xb01c273b478f9c065fcb7db11164230aa3b10512, 'Uncommon Comic 14 1-14 Bazooka Joe 2021 NFT', 'BZK-U-14C'), + (0xb01eb2cb37bf59789f79f41262f321a54010a2dd, 'Bridget Troll Base Color 16 Common', 'GPK-NFT22-C-B16-S-COL'), + (0xb022558fbb05cf72efdcebd9a0ffd280b50719df, '2021 MLB Challenge Reward AL Cy Young Pack', 'MLB-21REWARD-PACK-ALCY'), + (0xb025967a7e0f62cf27cf56d61baa471b082d801a, 'Gemini Gene Animation Color 12 Rare', 'GPK-NFT22-R-A12-A-COL'), + (0xb026ae90f010135b7971d027a9936e344367bc0e, 'Vladimír Darida BSC Base White S4-37 Common', 'BUND-21TS4-C-BS4-37-S-WHI'), + (0xb043aaeb4337ea4bbb20c2ec5d846b00a0825ba5, 'Unnamed Branded', 'BRAND'), + (0xb05ab619f1e8b74c69cf51e3974c3d1f4e50c752, 'Washington Nationals® Asdrubal Cabrera 2B/3B Base Static Gold 531 Uncommon', 'MLB-S221-U-B531-GOL'), + (0xb0660c6227ce64414f30d0e9d924cdf45f55d242, 'San Francisco Giants® Evan Longoria Postseason Base Navy 29 Uncommon', 'MLB-21POST-U-B29-M-NVY'), + (0xb06c00f81ef0cd2a36c3f2b50ba1198014a6efcc, 'Philadelphia Phillies® Wild Card Broadcast RWB 1038 Rare', 'MLB-22TNP-R-WCA3-M-RWB'), + (0xb07780661bd75fc57f19818e117c1278a73efad4, 'Sport-Club Freiburg Dominique Heintz Base Players White 37 Common', 'BUND-SC21-C-BP37-WHT'), + (0xb07a8577c7a8eeae9ef3611a24e90faba5127373, 'Milwaukee Brewers™ Devin Williams Inception Base Red 55 Rare', 'MLB-INC21-R-IB55-RED'), + (0xb07aeb0b678b07c9737027808d251d53f348d07f, 'Minnesota Twins® Ryan Jeffers Rookie and Future Phenoms Facsimile Signature Blue 52 Super Rare', 'MLB-INC21-S-RC52-BLU'), + (0xb08317bd31fa72fb6d68c8710c5663c2b9e4f0c8, 'San Diego Padres™ Ha-Seong Kim SS Base Static Gold 398 Uncommon', 'MLB-S221-U-B398-GOL'), + (0xb08c2211074d2b7093ae7689f2b38e9911f7f6af, 'Oakland Athletics™ 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 20 Legendary', 'MLB-21S2SC-L-21S2SCR20-M-TC'), + (0xb09ab800c77e01ac725f749e5e939c7cf702af26, 'Atlanta Braves™ WS Redemption Gold 1022 Rare', 'MLB-21NOW-R-WS1022-GOL'), + (0xb09e6a263dc2df1eb4f3221b3c22ddf8b2bafedf, 'Danny Blum BOC Motion Aqua Refractor S2-20 Rare', 'BUND-21TS2-R-MS2-20-V-AQU'), + (0xb09f547d432aaf49a18714e5eb07efe51780ca42, 'Detroit Tigers® Spencer Turnbull Base White 228 Common', 'MLB-22S1-C-B225-S-WHI'), + (0xb0b4f1113fe597a515789db6068d3ccec701161c, 'Airdrop Angel Animation Color 14 Rare', 'GPK-NFT22-R-A14-A-COL'), + (0xb0b53a6ec7760c6e8171e54327a8a31af9af37c8, 'Atlanta Braves™ Picture Time Base Static Gold 372 Uncommon', 'MLB-S221-U-B372-GOL'), + (0xb0bbe5471e68e1f72371578da78edf1c966f0e1f, 'Wolfi Land', 'Wolfi Land'), + (0xb0bc1e9ee790efa525c478078620919cd7cd38ad, 'San Francisco Giants® Mike Yastrzemski Postseason Base Navy 27 Uncommon', 'MLB-21POST-U-B27-M-NVY'), + (0xb0c71dc1cb49179b8847e13469c66254f89bb26e, 'New York Yankees® Aaron Judge Facsimile Signature Blue 99 Uncommon', 'MLB-22S1-U-FS6-S-BLU'), + (0xb0d0e7d1556bea9d50f163a628438a4761191b02, 'Niclas Füllkrug SVW Top Players Black TK-34 Common', 'BUND-22TK-C-TPTK-34-S-BLA'), + (0xb0d6dba2419e81aae35ad40e40acc8458e9df2fd, 'Avax Degen Punks', 'AVAXDEGENPUNKS'), + (0xb0de622a1517d922077bfb912302bde97b072c4d, 'Miami Marlins® Sixto Sanchez Rookie and Future Phenoms Facsimile Signature White 45 Rare', 'MLB-INC21-R-RC45-WHT'), + (0xb0e107b5aef1fd593addd3e237e1e1f312493c9b, 'Marketplace', 'MRKTPLC'), + (0xb0e2dd76c0784d576338dfa8cfec61faecae50a9, 'SV Werder Bremen Romano Schmid Young Stars Team Color 176 Super Rare', 'BUND-SC21-S-YS176-TMC'), + (0xb0e9f9e27f6ad1effe9da9ac81d2854fa1d69fe3, 'Rare Comic 96 2-48 Bazooka Joe 2021 NFT', 'BZK-R-96C'), + (0xb0f4da4663a65f4c61b667cd70cfaa171c255af8, 'St. Louis Cardinals® Yadier Molina Facsimile Signature Red 205 Rare', 'MLB-22S1-R-FS12-S-RED'), + (0xb0f760c4e908603f767cc8a3c7a0512697df4f39, 'Houston Astros® Yordan Álvarez Topps NOW White 1015 Rare', 'MLB-21NOW-R-TN1015-WHI'), + (0xb10642c0eb830fc1edc4e68ed6299af564a7da9c, 'Rafael Borré SGE Top Players Black TK-12 Common', 'BUND-22TK-C-TPTK-12-S-BLA'), + (0xb109a8543d7e869c5c66a99bd73bcb1e96823053, 'Atlanta Braves™ Ian Anderson Inception Base Black 4 Legendary', 'MLB-INC21-L-IB4-BLK'), + (0xb11e086d4218ef37e189e6074018becef5b34b64, 'Rich RBC Founder', 'RBCFounder'), + (0xb126140183cff85ecd72c7f501eaebce48da2f44, 'San Diego Padres™ Manny Machado 1987 35th Anniversary Wood T87-55 Common', 'MLB-22S1-C-1987A38-M-WD'), + (0xb127759592c021df8d463560622e78a5b30e04a9, 'Houston Astros® Zack Greinke P Base Static White 463 Common', 'MLB-S221-C-B463-WHI'), + (0xb12e88b3e911cacc9d46d85cca813b6da7a2aa2a, 'RB Leipzig Emil Forsberg Base Players Team Color 12 Uncommon', 'BUND-SC21-U-BP12-TMC'), + (0xb13ef6966394b3f76794186e1c4a2e69905a7b91, 'bCASH NFT', 'bCASHNFT'), + (0xb1481e7b231cfef0aaa0a35e5f68ad5eae957635, 'Clans of AVAX', 'CLANX'), + (0xb153000a200b0fdfaa2a95672d75944e6bdea589, 'Atlanta Braves™ Nick Markakis OF Base Motion Rainbow 641 Rare', 'MLB-S221-R-B641-RAI'), + (0xb15380d407ad8b22f9260b370d61e7b40af0ed86, 'Artprop', 'ARTPROP'), + (0xb154f69220ba6236eb47032c22ca2fd54336f001, 'Crypto Drones Founder Collection', 'CDFC'), + (0xb15c61561866f5b626642d12078d862e99365071, 'Avaware Holiday Series', 'AHS'), + (0xb164921ac81570b3f04ee72e0d994b8e7e30d743, 'Borussia Monchengladbach Breel Embolo Base Players White 16 Common', 'BUND-SC21-C-BP16-WHT'), + (0xb1667583f1be297bc29894fa8e06e435af9d97ff, 'American League™ 2021 Wins Leaders Base Independence Day RWB 270 Rare', 'MLB-22S1-R-B267-M-RWB'), + (0xb16e50327095943d192cd72a5a678c015fd15689, 'Chain Colosseum Phoenix', 'T2WEB'), + (0xb1724f13eee9871a5ff8d6bca46884c3170894d0, 'Pittsburgh Pirates® JT Brubaker P Base Static White 560 Common', 'MLB-S221-C-B560-WHI'), + (0xb175fe2341b4dfe5b90f22831669a623bd7d81f0, 'Oakland Athletics™ Elvis Andrus SS Base Static White 651 Common', 'MLB-S221-C-B651-WHI'), + (0xb17fac0ab20c850aa60bcb3f1f91f4bbb7624a12, 'Godzilla RAT Page 3 Comic Page Black and White 3 Uncommon', 'GDZ-RAT21-U-CP3-S-BW'), + (0xb18c371cf6b763061c4d1337450bc5c44adeee57, 'woMEnderful', 'WMDFL'), + (0xb194015396916b56ebe861e033d238e46663710e, 'Fantom Survivor AVAX', 'FSA'), + (0xb1a50b19a6c76527de3f1cff779a0cebb91dba00, 'Atlanta Braves™ Jorge Soler WS Redemption Gold 1037 Rare', 'MLB-21NOW-R-WS1037-GOL'), + (0xb1a99ea887fe89471c6ebead2d15cccda7f39d03, 'The Fates', 'FATES'), + (0xb1af38879cc8090983eaf1cd142ceb96a0646735, 'Chicago White Sox® Yasmani Grandal Postseason Base Red 12 Rare', 'MLB-21POST-R-B12-M-RED'), + (0xb1b8b662809971eacedf239336f78c6f65419bab, 'San Francisco Giants® Donovan Solano 2B Base Motion Vintage Stock 605 Super Rare', 'MLB-S221-S-B605-VS'), + (0xb1b978dcc3d3a160729b431e409b84144c14e715, 'Philadelphia Phillies® Rhys Hoskins Facsimile Signature Slab Gold 3021 Epic', 'MLB-22PRI-E-FS43-M-GLD'), + (0xb1beb63c1686d338111ef093f91ee53c80c75a86, 'Minnesota Twins® Max Kepler Base Pink 1047 Uncommon', 'MLB-22PRI-U-B20-M-PNK'), + (0xb1c0b7f26d32997392e5b087da5237ff4dc7511e, 'Godzilla RAT Page 6 Comic Page Black and White 5 Uncommon', 'GDZ-RAT21-U-CP5-S-BW'), + (0xb1c1e4d49bcaf47597c7c68247f1d2ad29adf8a9, 'Borussia Monchengladbach Hannes Wolf Young Stars Gold 152 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS152-AFS-GLD'), + (0xb1c29cf7b329ef7e62765bcea494b00514c5d3e1, 'Unconcious Blobs', 'BLOBS'), + (0xb1c5bc064c5b6d1211a066aa5fa5cd1040773fea, 'Crypto Drones Validator Collection', 'CDVC'), + (0xb1cb61631f19b249effada9324b817aadfc0614e, 'Borussia Dortmund Mats Hummels Base Players White 8 Common', 'BUND-SC21-C-BP8-WHT'), + (0xb1d5ed9c8dd1f1bb269984f8f618202f3d873a0d, 'Minnesota Twins® Luis Arraez 2B Base Static White 649 Common', 'MLB-S221-C-B649-WHI'), + (0xb1d8558b393af8a2fdffcce1d463c14def1649a4, 'Oakland Athletics™ Base Static Gold 392 Uncommon', 'MLB-S221-U-B392-GOL'), + (0xb1e282a6b07e52f3ebd2ca9163954bdc3c478d02, 'Washington Nationals® Stephen Strasburg P Base Motion Rainbow 400 Rare', 'MLB-S221-R-B400-RAI'), + (0xb1e31538f311e89bca4923235c66039eb1748a8d, 'Minnesota Twins® Alex Colome P Base Motion Rainbow 533 Rare', 'MLB-S221-R-B533-RAI'), + (0xb1eba2fd10a119542d740e27cde39a566324ace2, 'Philadelphia Phillies® J.T. Realmuto C All-Star Motion Purple 14 Epic', 'MLB-S221-E-AS14-PUR'), + (0xb1ee39e180f76953a0f1781ab86787af8ff911c8, 'Tiny Based Bears', 'TBSDB'), + (0xb1ffe6084049fcdfd24f0ea7fbf1563cab996db5, 'Kaiju Thunderstorm Comic Cover Black and White 1 Uncommon', 'GDZ-RAT21-U-CC1-S-BW'), + (0xb2085330130625beb29f622daeb5c6bace0884f5, 'RNBT', 'RNBT'), + (0xb20b4d45640fe8a71ca2329f6c7ec415a2a26b51, 'OOCrazySnails', 'OOCS'), + (0xb20f7c004aad82fd21314f49f79cff51bc4b2d5e, 'Mario Götze SGE Color Splash Facsimile Signature Team Color TK-60 Legendary', 'BUND-22TK-L-CSTK-60-S-TMC'), + (0xb20fcfb59cf878076aaa7abd912ad2d3c08859f7, 'NW BAYC', 'NWBAYC'), + (0xb21403d91ef9aacef1df5494c98e72e24cf7207b, 'Things out of my Brain', 'BRAIN'), + (0xb219a3e3b54e4bd9a108de6ce5ca7b4590aaf973, 'National League™ 2021 Batting Average Leaders Base Independence Day RWB 59 Rare', 'MLB-22S1-R-B59-M-RWB'), + (0xb21ad19c5098fdc0c6a054cfee0f7ae6123c3a24, 'Los Angeles Dodgers® Cody Bellinger Postseason Base Navy 36 Uncommon', 'MLB-21POST-U-B36-M-NVY'), + (0xb22740db2c66cc2099d82d9ff2464c542fa75067, 'Nukumata', 'Nukumata'), + (0xb228c98c739d28acc9fa8f53daabff6ffcc9e875, 'Cameron Carter-Vickers CEL Base Aqua SP-04 Uncommon', 'SPFL-21SPSS-U-BSP-04-A-AQU'), + (0xb22c5f6e91b073ecc321cfa7c01e1e2b56564ab2, 'Potluck Labs Super Serums', 'PLSS'), + (0xb236bec0bf1f4f4cda4a7369b17aa5de88a3e54e, 'Chicago White Sox® Dane Dunning Rookie and Future Phenoms Facsimile Signature Blue 16 Super Rare', 'MLB-INC21-S-RC16-BLU'), + (0xb239600ffad5b8546b8b0d449fe856d01b31fa9f, 'Seattle Mariners™ Logan Gilbert Base Independence Day RWB 156 Rare', 'MLB-22S1-R-B155-M-RWB'), + (0xb23a91f31620630117ca5a1d774541ca564a0f78, 'Atlanta Braves™ Cristian Pache Rookie and Future Phenoms Facsimile Signature White 1 Rare', 'MLB-INC21-R-RC1-WHT'), + (0xb23b7b34a3c4cc27134b3b3f92fa6080853103ee, 'New York Yankees® Anthony Rizzo Facsimile Signature Glitch 242 Epic', 'MLB-22S1-E-FS16-M-GLI'), + (0xb2452ffbef4c3ffaaeb1c38de4e700a56f3ecb40, 'Chris Führich VFB Club Phemons Silver S4CPH-17 Super Rare', 'BUND-21TS4-S-CPHS4CPH-17-S-SLV'), + (0xb252407cbab43d2640efc0fbf546adb48ebee5df, 'Volare Christmas', 'Volare Christmas'), + (0xb252b96b87d2c05062fdc3a2f74e0ce10844e1fc, 'Miami Marlins® Jazz Chisholm SS Base Static Gold 538 Uncommon', 'MLB-S221-U-B538-GOL'), + (0xb25b845dac9a0d5c5563fc720a0c436f775c4782, 'Baltimore Orioles® John Means Base Vintage Stock 253 Super Rare', 'MLB-22S1-S-B250-M-VS'), + (0xb25d50a7d5c5ce39904320f9f59af23c98631b94, 'Gemini Gene Golden Animation Color 12 Epic', 'GPK-NFT22-E-GA12-A-COL'), + (0xb25fe89ed1f001fa638b727c52862678bfabf52b, 'Atlanta Braves™ Ronald Acuña Jr. Short Print White 200 Rare', 'MLB-22S1-R-SP39-M-WHI'), + (0xb26014af7d7cc5ea8a3b3212850d4bbba1c79d59, 'Detroit Tigers® Daz Cameron OF Base Motion Vintage Stock 441 Super Rare', 'MLB-S221-S-B441-VS'), + (0xb260fcb617d2eceedb8626a9359c026774a8df46, 'Minnesota Twins® Max Kepler Base White 221 Common', 'MLB-22S1-C-B218-S-WHI'), + (0xb26599e60a939f741833895e4cf0393bd4c6b88f, 'Common Comic 74 2-26 Bazooka Joe 2021 NFT', 'BZK-C-74C'), + (0xb265b9961665b316918d3c60ab00f601d3f2230d, 'Leroy Sané BAY Base Red S1-01 Uncommon', 'BUND-21TS1-U-BS1-01-S-RED'), + (0xb26bcba7e4e0d5b5d1ae0a0446edfe7cba45b23a, 'Kansas City Royals® Carlos Santana 1B Base Static White 513 Common', 'MLB-S221-C-B513-WHI'), + (0xb27145f6b1e992e6a7e5b4af489f4d3221131a96, 'Philadelphia Phillies® Mickey Moniak OF Base Static White 457 Common', 'MLB-S221-C-B457-WHI'), + (0xb277ccf2f9b3852e9656be6eec8c91f3876455b4, 'Tampa Bay Rays™ Ji-Man Choi 1B Base Static White 511 Common', 'MLB-S221-C-B511-WHI'), + (0xb2781602867ee49d5f51f777ff66fde94ba26007, 'Baltimore Orioles® Pedro Severino Inception Base White 8 Common', 'MLB-INC21-C-IB8-WHT'), + (0xb2846ee722cb82b4097b7cb72ab00b658b0e7a8e, 'Philadelphia Phillies® Bryce Harper Wild Card Newspaper BW 1048 Common', 'MLB-22TNP-C-WCN2-M-BW'), + (0xb289a0c4f5339721022a71524ab08cb60740c904, 'Davie Selke BSC Motion Rainbow Refractor S4-60 Super Rare', 'BUND-21TS4-S-MS4-60-V-RAI'), + (0xb28cfd23a4e19ff622a0c54a78d7affd194cf5b0, 'Cleveland Indians® Shane Bieber Inception Base Blue 21 Uncommon', 'MLB-INC21-U-IB21-BLU'), + (0xb29669454084c7be01f2edcea137793146372d0e, 'Xaver Schlager RBL Color Splash Team Color TK-57 Super Rare', 'BUND-22TK-S-CSTK-57-S-TMC'), + (0xb29de3dfe5611933f2aefbb1a2b276bcf6c7e645, 'Rare Comic 90 2-42 Bazooka Joe 2021 NFT', 'BZK-R-90C'), + (0xb2a33aae6c549797ba4bb1629edada0ca0c7f8eb, 'New York Mets® Michael Conforto OF 1986 Anniversary Static Team Colors 86B-11 Super Rare', 'MLB-S221-S-1986A86B-11-TMC'), + (0xb2a37799c2f4e85d073d7386d088abdd72ac2e9b, 'Cleveland Guardians™ Amed Rosario Base Vintage Stock 14 Super Rare', 'MLB-22S1-S-B14-M-VS'), + (0xb2a866ca5b2a1f93a708585a444db48304be28a0, 'Minnesota Twins® Michael Pineda P Base Motion Rainbow 354 Rare', 'MLB-S221-R-B354-RAI'), + (0xb2ac114de86ccb4925074c1c6a7d8a5a5c7b1685, 'Toronto Blue Jays® Taijuan Walker P Base Motion Vintage Stock 540 Super Rare', 'MLB-S221-S-B540-VS'), + (0xb2b9824d2664b7ced4dfae69fdf6f546bebca30a, 'Tampa Bay Rays™ Randy Arozarena Base Pink 1027 Uncommon', 'MLB-22PRI-U-B77-M-PNK'), + (0xb2c1cc4fc15ec1dcb94f63078948052232f4acea, 'All Yours by SK', 'AYSK'), + (0xb2c328cbae1b394ee5e000af298e77cbd6ae19e3, 'Godzilla RAT Pages 12 & 13 Comic Page Color 11 Rare', 'GDZ-RAT21-R-CP11-S-COL'), + (0xb2c91e2ec8f769b1daeb9c0fa575141b2947319b, 'Smudge life', 'SMUDGE'), + (0xb2d70be6b50fc4448f42b09c8cc9b5a7ff738cda, 'Blockchain Formation', 'BFT'), + (0xb2d754db336e7e22f7050b97e904df4a01fbb3cb, 'Tampa Bay Rays™ Ji-Man Choi 1B Base Motion Rainbow 511 Rare', 'MLB-S221-R-B511-RAI'), + (0xb2d77571f36c39fe201deab51cea86ad498b2c9d, 'Toronto Blue Jays® Steven Matz Base Glitch 276 Uncommon', 'MLB-22S1-U-B273-M-GLI'), + (0xb2d8f15b0be0ff095bae273131184a964d8e19e2, 'Seattle Mariners™ Mitch Haniger Base Blue 1180 Common', 'MLB-22PRI-C-B102-M-BLU'), + (0xb2df9ed581fa670d018417acb576bdfa9f780761, 'VfL Wolfsburg Kevin Mbabu Base Players Team Color 32 Static Facsimile Signature Rare', 'BUND-SC21-R-BP32-SFS-TMC'), + (0xb2e0136605a2a1c1bb76553081a4b56cae18489a, 'DSC Arminia Bielefeld Masaya Okugawa Top Players Gold 141 Super Rare', 'BUND-SC21-S-TP141-GLD'), + (0xb2ff2eae969075a350bcafb3e359a5bf33134145, 'EARTH', 'myrrh'), + (0xb301c9ee781748ec55a353931779ff0928000737, 'Chicago White Sox® Yasmani Grandal Postseason Base Navy 12 Uncommon', 'MLB-21POST-U-B12-M-NVY'), + (0xb3027d38395cd88cb5a8fedf598f7e98a96f6713, 'Angels® Mike Trout Base Glitch 27 Uncommon', 'MLB-22S1-U-B27-M-GLI'), + (0xb30b6eda7c3f7b5966de62b8a8493cae630b344f, 'I''m smol', 'MRI ART'), + (0xb31c594f30c10ac7a485764898260fa70c536314, 'Miami Marlins® Trevor Rogers Rookie and Future Phenoms Facsimile Signature Blue 46 Super Rare', 'MLB-INC21-S-RC46-BLU'), + (0xb323365b9e59b819caf63b37cf387e9e4eb5ea05, 'Chicago Cubs® Brailyn Marquez P Base Static Gold 404 Uncommon', 'MLB-S221-U-B404-GOL'), + (0xb324a00074cbb653c4edb739f0d391fef74466db, 'Common Comic 57 2-9 Bazooka Joe 2021 NFT', 'BZK-C-57C'), + (0xb3386ddd33af030f4653873abf13070dfe3107c7, 'MUA 2049', 'MUA 2049'), + (0xb33bf23bcec111431590a032bff877881bb63067, 'Pods', 'PODS'), + (0xb33e61b688f189c02beda8e83a9bddf4941cfcdf, 'Christopher Nkunku RBL Top Players Black TK-05 Common', 'BUND-22TK-C-TPTK-05-S-BLA'), + (0xb34c06c88ac702c2f95f67af574500225c083113, 'AI ALIENS', 'AI AL'), + (0xb34d319d2eeb19af87f4176e101250bb5b46e252, 'Philadelphia Phillies® Alec Bohm Rookie and Future Phenoms Facsimile Signature White 61 Rare', 'MLB-INC21-R-RC61-WHT'), + (0xb34e862d7c1f3fc8f1d9cc353cd58ff1c15acf6d, 'Super Rare Comic 80 2-32 Bazooka Joe 2021 NFT', 'BZK-S-80C'), + (0xb34f89f561048f7381149a37c06c5fa940c3a3bf, 'Milwaukee Brewers™ Luis Urias 2B/SS Base Static Gold 543 Uncommon', 'MLB-S221-U-B543-GOL'), + (0xb355b4331effc936e1258a522891f62b47103356, 'Music Market', 'MM'), + (0xb35cc98acce3dc763d205c718461884a8e333fba, 'Minnesota Twins® Jose Berrios P Base Static White 395 Common', 'MLB-S221-C-B395-WHI'), + (0xb367360d9ccc6f5904ebd5784d7a848d653c01aa, 'LadySurveyors', 'LADYSURVEYORS'), + (0xb36d40fe35f4e61c4cbf2f2713e19ed746998272, 'Los Angeles Dodgers® Cody Bellinger Championship Series Silver 28 Epic', 'MLB-21POST-E-CS28-M-SIL'), + (0xb36e5a686ffb30857183721a4fb2749c78680fc5, 'Chicago Cubs® Austin Romine C Base Motion Rainbow 342 Rare', 'MLB-S221-R-B342-RAI'), + (0xb370fd0d5b134741c93cff19ef12808881f1ca38, 'Aaron Ramsey RFC Base Aqua SP-01 Uncommon', 'SPFL-21SPSS-U-BSP-01-A-AQU'), + (0xb3733b36b12a2f4653c30005f0ad22c9d7b60a61, 'Hamsa V1 Pool Tokens', 'HP-V1-PT'), + (0xb37e1989650facc43899604e353294cb232f75d5, 'Anxiety', 'anxt'), + (0xb3892a4b7c550d314864bc95e027ae361ad11f36, 'Tampa Bay Rays™ Austin Meadows Base Vintage Stock 152 Super Rare', 'MLB-22S1-S-B151-M-VS'), + (0xb389c630b15101f1495bd934ddea69ada610e181, 'Avalanche PDX Event Tickets', 'TKTS'), + (0xb39b0476c7edca1ea39467d17b554deedbd38c65, 'Detroit Tigers® Matt Manning Fresh Faces White 2202 Rare', 'MLB-22PRI-R-FF7-M-WHI'), + (0xb3a241e15c047923f6f83a39e9498c6c1cb1d837, 'Cincinnati Reds® Eugenio Suarez Base Glitch 314 Uncommon', 'MLB-22S1-U-B310-M-GLI'), + (0xb3a550314c43b1d6ac4793bc2d590d0a63d71d28, 'New York Mets® Tylor Megill 1987 35th Anniversary Chrome T87C-22 Super Rare', 'MLB-22S1-S-1987AC18-M-CHR'), + (0xb3a5592a15835d11fb58b093030cf3b324e25f30, 'Georginio Rutter TSG Animation Gold Refractor S3-28 Legendary', 'BUND-21TS3-L-AS3-28-V-GOL'), + (0xb3a768cf2ee069399e3fdd8b77354ee980918b37, 'Oakland Athletics™ Jake Lamb 3B/1B Base Motion Vintage Stock 442 Super Rare', 'MLB-S221-S-B442-VS'), + (0xb3acb199059954102918a4471de6ba1d24dfc87f, 'Boston Red Sox® Jarren Duran Base Vintage Stock 187 Super Rare', 'MLB-22S1-S-B186-M-VS'), + (0xb3ae90b780d0dd61b738771aeabbded30ef31466, 'Unintended Consequences', 'UNNTNDDCNSQNCS'), + (0xb3b47bd82b1999e085befc45ab3bf0f24b018801, 'Common Comic 89 2-41 Bazooka Joe 2021 NFT', 'BZK-C-89C'), + (0xb3b6eed8c3169f4986aa100c77e1f8dcae63abae, 'Pittsburgh Pirates® Hoy Park Base White 184 Common', 'MLB-22S1-C-B183-S-WHI'), + (0xb3bb252f48e03e635bff448e2197b1a02eb36079, 'Limited NFT', 'SFLMTD'), + (0xb3bc9c3ed21874ce00786bb1f0ce5f3ffe09c724, 'Oakland Athletics™ Matt Olson Inception Base Blue 71 Uncommon', 'MLB-INC21-U-IB71-BLU'), + (0xb3ca2ad7e52449947fc0e807b0b6fa981f6f248c, 'mightyducks', 'MTYD'), + (0xb3cb03c911a0a91ce5fd4512029aaaca3812392f, 'Atlanta Braves™ Carl Edwards Jr. P Base Motion Vintage Stock 576 Super Rare', 'MLB-S221-S-B576-VS'), + (0xb3cc79d1d49dccbaa3eb31863d0633ff664fa437, 'Boston Red Sox® Rafael Devers Postseason Base Navy 65 Uncommon', 'MLB-21POST-U-B65-M-NVY'), + (0xb3d32f040ad07c34fb444f8393ce5604e728ebf3, '2022 MLB Topps NOW Pack', 'MLB-22NOW-PACK-TN'), + (0xb3df33180d91648e08e4fdb0061325546d06bf19, 'San Francisco Giants® Base Motion Rainbow 603 Rare', 'MLB-S221-R-B603-RAI'), + (0xb3e6a4b7cae11789b065e49ee0f959a3a23d1b80, 'Philadelphia Phillies® Adonis Medina P Base Static Gold 510 Uncommon', 'MLB-S221-U-B510-GOL'), + (0xb3e7f976ee7ba573843aa316ae008c93794f361b, 'Philadelphia Phillies® Alec Bohm Facsimile Signature Letter Booklet Team Color 13 Legendary', 'MLB-INC21-L-LB13-TMC'), + (0xb3eed9deab52bb81d05adea573596f82d41e0ddd, 'National League™ Nick Castellanos Base Blue 1289 Common', 'MLB-22PRI-C-B222-M-BLU'), + (0xb3f6f102944396135935b7e95bed0aee252d97f4, 'Funny Fun Fellows', 'FFF'), + (0xb3fc2752a903936dd744c51a426bbdf026686426, 'Chicago White Sox® Dane Dunning Inception Base White 25 Common', 'MLB-INC21-C-IB25-WHT'), + (0xb3fe3ff8525c2e42941e54dc9c37379bf29ba923, 'Arizona Diamondbacks® David Peralta OF Base Motion Platinum 640 Epic', 'MLB-S221-E-B640-PLA'), + (0xb402671ab60758a642e2c76886529f6f1694bc6e, 'Ross County F.C. RSC Club Crest Card Gold SPCCC-12 Epic', 'SPFL-21SPSS-E-CCCSPCCC-12-A-GOL'), + (0xb40706b1d8b620cbd889cd28694515f3fc71a764, 'Philadelphia Phillies® Aaron Nola P 1986 Anniversary Static Team Colors 86B-6 Super Rare', 'MLB-S221-S-1986A86B-6-TMC'), + (0xb40aa26db4793d8bf7904b82b28467bd9bf9ee0c, 'St. Louis Cardinals® Paul Goldschmidt Facsimile Signature Slab Gold 3066 Epic', 'MLB-22PRI-E-FS39-M-GLD'), + (0xb40ac6e7451066cc9df74893cdfc6c52a68c0227, 'Sport-Club Freiburg Vincenzo Grifo Top Players Gold 112 Super Rare', 'BUND-SC21-S-TP112-GLD'), + (0xb410f1db2312d94963cee8fb12e4b78c55af0c3a, 'UniversalNodes Blackhole NFT', 'UBNFT'), + (0xb4116803e09f9e9f4d335cb7820dc6484b84a668, 'Boston Red Sox® Tanner Houck P Base Motion Vintage Stock 635 Super Rare', 'MLB-S221-S-B635-VS'), + (0xb4195ee0bc01f3464f2fabe519e96e96b989f411, 'Samurai avatar', 'SamuraiAvat'), + (0xb4289744bb037834b8f133e755e864fe0f1b453b, 'Minnesota Twins® Alex Kirilloff Gold Signings Facsimile Signature Gold 26 Epic', 'MLB-INC21-E-SS26-GLD'), + (0xb432acdb442b28847e7153dadf75c6fa93c8f526, 'Atlanta Braves™ Ozzie Albies Postseason Base Red 58 Rare', 'MLB-21POST-R-B58-M-RED'), + (0xb439e8ae84581642335c33321d235ddb23f35767, 'Joshua Kimmich BAY Top Players Team Color TK-02 Rare', 'BUND-22TK-R-TPTK-02-S-TMC'), + (0xb43ddf0c88727bac45840e75547963c355fea750, 'Kevin Dąbrowski HIB Top Saves Gold SPTS-12 Legendary', 'SPFL-21SPSS-L-TSSPTS-12-V-GOL'), + (0xb43f574512f10f79461f134af29f276cce6b7c68, 'New York Yankees® Giancarlo Stanton American League Base Golden 16 Super Rare', 'MLB-22ASG-S-B16-M-GLD'), + (0xb4413c6c50b055faf4b2b374776365940be623e9, 'Chicago Cubs® Ian Happ Base Independence Day RWB 143 Rare', 'MLB-22S1-R-B142-M-RWB'), + (0xb44553484e8b64b597566e31c79c77aa42e77780, 'Atlanta Braves™ 2021 Topps MLB Inception Set Completion Reward Team Colors 2 Epic', 'MLB-21INCSC-E-21INCSCR2-M-TC'), + (0xb4529964ebd48bcb2a6f48f03e33bc02543d3de2, 'Luca Kilian KOE Club Phemons Gold S4CPH-13 Legendary', 'BUND-21TS4-L-CPHS4CPH-13-V-GOL'), + (0xb45991879a425cb8161c453c5fc7bef3f25f00b5, 'Jeremy Dudziak SGF Base Red S4-46 Uncommon', 'BUND-21TS4-U-BS4-46-S-RED'), + (0xb462e05de39a9b800c7f21e00c65c337c6e8d5ec, 'Iago FCA Base White S4-66 Common', 'BUND-21TS4-C-BS4-66-S-WHI'), + (0xb463df8ca8a58640cbf2f0faa4013a99a43dc96b, 'Avalanche Friends Collectible', 'AFC'), + (0xb4647587f547fdacda391199cc1b962f50965133, 'Cleveland Guardians™ Shane Bieber Base Independence Day RWB 21 Rare', 'MLB-22S1-R-B21-M-RWB'), + (0xb465df620e61479f30e9d841fecd793dd6dd95d5, 'New York Yankees® Aaron Judge Super Short Print White 99 Super Rare', 'MLB-22S1-S-SSP6-M-WHI'), + (0xb477f1e8f1a04dc5d5eafe6e1dd8027cea0a20c6, 'Himawari', 'HMW'), + (0xb47858aa74f600a4e5e5d5130d31fd76a9a3fc8b, 'Silvan Widmer M05 Top Players Team Color TK-24 Rare', 'BUND-22TK-R-TPTK-24-S-TMC'), + (0xb4847f15a1292d139cfdb295cc2bf83b618d73ff, 'San Diego Padres™ Trevor Rosenthal P Base Static Gold 454 Uncommon', 'MLB-S221-U-B454-GOL'), + (0xb484b6970576a8704ffa5b63dcccf0753b4d5763, 'Tampa Bay Rays™ Joey Wendle Base Independence Day RWB 145 Rare', 'MLB-22S1-R-B144-M-RWB'), + (0xb486516da165155997a67b9f0bfbe38298860c6e, 'uUNN Token', 'uUNN'), + (0xb496c69e832c0e867fa3b0beed0a324f5bd632ee, 'Toronto Blue Jays® Nate Pearson Base White 289 Common', 'MLB-22S1-C-B286-S-WHI'), + (0xb49f52b5d33e80d829561e315d209fdbfada0666, 'Super Rare Baseball Card 10 Mort Pitcher Bazooka Joe 2021 NFT', 'BZK-S-10B'), + (0xb4a34a28fa5336d5dc084e9af8b06c5fb7f1f9c9, 'Boston Red Sox® Xander Bogaerts Championship Series Silver 4 Epic', 'MLB-21POST-E-CS4-M-SIL'), + (0xb4b2068453135bde149ac729e4d6b843ff1e4143, 'Cincinnati Reds® Mike Moustakas 2B Base Motion Platinum 368 Epic', 'MLB-S221-E-B368-PLA'), + (0xb4b3cbd165494243673f88a7258408fbd717af9a, 'Los Angeles Dodgers® Edwin Rios 1B/3B Base Static White 393 Common', 'MLB-S221-C-B393-WHI'), + (0xb4b58504d70d0d74517fdf4a2b58b3364f41f2fd, 'FSV Mainz 05 Edimilson Fernandes Base Players Team Color 61 Uncommon', 'BUND-SC21-U-BP61-TMC'), + (0xb4bddc91e515c693bfa29b6762d3995145ec1cdd, 'Washington Nationals® Juan Soto Pure Power Slab White 2106 Epic', 'MLB-22PRI-E-PP3-M-WHI'), + (0xb4be679ca08e23befdef6736e0ce491559537180, 'St. Louis Cardinals® Lars Nootbaar Base Blue 1222 Common', 'MLB-22PRI-C-B187-M-BLU'), + (0xb4bfd123adabc07538f5b420cf44f77744c1a88b, 'GROOT', 'GROOT'), + (0xb4c043099d1f85867d321ce54c859dfbe8847304, 'Chicago White Sox® Jose Abreu 1B Base Motion Vintage Stock 331 Super Rare', 'MLB-S221-S-B331-VS'), + (0xb4cb27dde162ea2065c7f321c0a0bc4b201d6093, 'AVAYeahteez', 'AVAYeahteez'), + (0xb4cd5d81e937256b143fab02300d997ac9b93d4e, 'Cincinnati Reds® Nick Castellanos OF Base Static Gold 365 Uncommon', 'MLB-S221-U-B365-GOL'), + (0xb4d19943749505a3545f12417ce759d187e671b8, 'Miami Marlins® Anthony Bender Base White 160 Common', 'MLB-22S1-C-B159-S-WHI'), + (0xb4dc2572b620e9f167134ace4db3f770b1b0da4b, 'Toronto Blue Jays® Vladimir Guerrero Jr. 1987 35th Anniversary Chrome T87C-19 Super Rare', 'MLB-22S1-S-1987AC15-M-CHR'), + (0xb4e6a92a6a75a0dd3aea32ce2328275f4580d9fa, 'Seattle Mariners™ Base Motion Vintage Stock 599 Super Rare', 'MLB-S221-S-B599-VS'), + (0xb4e7b506ee192d0ca33db22669327d3d4e2bef05, 'Papa special nft', 'papasnft'), + (0xb4f8d7f4722fd2d85effd82aa1f374af708c7f4a, 'Toronto Blue Jays® George Springer Facsimile Signature Gold 3065 Super Rare', 'MLB-22PRI-S-FS12-M-GLD'), + (0xb4fe3679ed9e05b93abbafc4ab1a3596681d8106, 'Colorado Rockies™ Nolan Arenado Inception Base Black 23 Legendary', 'MLB-INC21-L-IB23-BLK'), + (0xb4fee36596f051abd81998e5df195b4a92d4db63, 'Jamez Walka x PowerHouse', 'JWPH'), + (0xb502f7b8c280ceea8a1f8afde6a05ff9ebb77b5e, 'Philadelphia Phillies® Bryce Harper Inception Base Red 74 Rare', 'MLB-INC21-R-IB74-RED'), + (0xb50359ff59764d24e0853b837619b6819d7c4c26, 'Cracker Bob', 'CBoB'), + (0xb506284ffa8362ee0fb41d008b5627392b19209f, 'Los Angeles Dodgers® Champion Fireworks Base Motion Platinum 490 Epic', 'MLB-S221-E-B490-PLA'), + (0xb508c9344b20daddc7f438251b9fe3e676e23a2e, 'Gonzalo Castro DSC Base White S4-43 Common', 'BUND-21TS4-C-BS4-43-S-WHI'), + (0xb5096e3ef802c334945e33d038c4bb1e6d18d559, 'TST', 'TST'), + (0xb50bca38389e0704564847ff7829de13dda30891, 'New York Mets® David Peterson Rookie and Future Phenoms Facsimile Signature Blue 54 Super Rare', 'MLB-INC21-S-RC54-BLU'), + (0xb51db94d85e351a30d1fea1ef5e7038ccd39e2f8, 'American League™ Minnesota Meetup Base White 122 Common', 'MLB-22S1-C-B121-S-WHI'), + (0xb529f794925c20ceef81be9a79b7188b477de0a9, 'Detroit Tigers® C.J. Cron 1B Base Motion Rainbow 504 Rare', 'MLB-S221-R-B504-RAI'), + (0xb52aad8c4645647d823ecd5473d079713e8a2d48, 'Cleveland Guardians™ Franmil Reyes Base Pink 1194 Uncommon', 'MLB-22PRI-U-B44-M-PNK'), + (0xb536ee9887d550aa166299e777a9dfdfababc0df, 'Super Rare Comic 10 1-10 Bazooka Joe 2021 NFT', 'BZK-S-10C'), + (0xb541e81e7f6b239e3736cb6fffa3ba6118bf835a, 'Avax Anglers', 'ANGLR'), + (0xb56028db254871842ac9504b28d4658c62d8cf5b, 'Miami Marlins® Lewin Diaz 1B Base Static White 417 Common', 'MLB-S221-C-B417-WHI'), + (0xb5633d2125875dad38a29795a9c01622e527f9a1, 'Washington Nationals® Juan Soto Base Pink 1030 Uncommon', 'MLB-22PRI-U-B22-M-PNK'), + (0xb56b9c4eaa4585841b66c36264367f30a1376683, 'Tampa Bay Rays™ Nelson Cruz Base White 104 Common', 'MLB-22S1-C-B103-S-WHI'), + (0xb56ff24fa062be14a1a917a2a142c7857cdcdec2, 'Twinkle Town', 'tt'), + (0xb572d16bd2c964dcef222dfb1cf007451ac3db6f, 'Cleveland Guardians™ Jose Ramirez 1987 35th Anniversary Chrome T87C-28 Super Rare', 'MLB-22S1-S-1987AC23-M-CHR'), + (0xb5734088147e2d29880230673752b089492aff88, 'St. Mirren F.C. SMI Club Crest Card Gold SPCCC-07 Epic', 'SPFL-21SPSS-E-CCCSPCCC-07-A-GOL'), + (0xb57e37f932a66bbd1fd45ebea89a017430195460, 'Jean-Paul Boëtius M05 Base Red S4-51 Uncommon', 'BUND-21TS4-U-BS4-51-S-RED'), + (0xb5822a6bd804aeba509a8d519aa938fcdf91ce1f, 'Avax Llama Special Edition', 'ALSE'), + (0xb58a68a8d5f6c1c3e46938667240b4cad970c1b5, 'Atlanta Braves™ William Contreras C 1986 Anniversary Facsimile Signature Motion Chrome 86TC-98 Legendary', 'MLB-S221-L-1986AFS86TC-98-CHR'), + (0xb59228f351e217edacc3a9d6f5be920be1db4e04, 'Mean Birds Club', 'MBCA'), + (0xb59c0cd1bf66e94d204c2c48568319e4587f6525, 'Pittsburgh Pirates® Kevin Newman SS Base Motion Vintage Stock 502 Super Rare', 'MLB-S221-S-B502-VS'), + (0xb59dbae7254db3b550004613fb49d0277ed67bf7, 'Volcanic Eruption Comic Cover Black and White 3 Uncommon', 'GDZ-RAT21-U-CC3-S-BW'), + (0xb59f242bfc8d35f23c28f5a6a55337f6149b1ee0, 'SV Werder Bremen Jiri Pavlenka Top Players Gold 137 Super Rare', 'BUND-SC21-S-TP137-GLD'), + (0xb5a468ef459e754e0f57e40b55045ece96187ba6, 'Houston Astros® Jose Altuve Championship Series Silver 9 Epic', 'MLB-21POST-E-CS9-M-SIL'), + (0xb5a5e2ecd21bf4da9be7c507b2e0819f772425f7, 'NW DOODLES', 'NWDOODLES'), + (0xb5aca09fa5797c8e0912ce2a6000a8439e95600c, 'San Francisco Giants® Mauricio Dubon Rookie and Future Phenoms Facsimile Signature White 69 Rare', 'MLB-INC21-R-RC69-WHT'), + (0xb5add626fd9624c1ef7b5d87594cd86b37adc522, 'Cai$hen Gold Pass', 'CGPN'), + (0xb5ae6e4fa4b3f5f7fe24c9b087dc4c62e8a25c2d, 'Jelly SlimeBallz', 'SlimeBallz'), + (0xb5aeba8d4765636cc58018f9637ba3ee72810a7f, 'Angels® Jo Adell Silver Signings Facsimile Signature Silver 20 Super Rare', 'MLB-INC21-S-SS20-SLV'), + (0xb5b1414531a9e68ddee2bbddb12d5968bffa194f, 'Chicago Cubs® Patrick Wisdom Base Glitch 271 Uncommon', 'MLB-22S1-U-B268-M-GLI'), + (0xb5c02943971a263011da86b274846e720f95abdc, 'CryptoBlades Junk', 'CBJ'), + (0xb5c07b398176161ac6866d54e57d13e931adabe4, 'Borussia Dortmund Youssoufa Moukoko Young Stars Team Color 148 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS148-SFS-TMC'), + (0xb5d8573c2552042c579f91a0398921bb5103bd52, 'Ronin Boys', 'RoninBoy'), + (0xb5d8d74c64e9e358b3734950a9a5aa05469a8a8a, 'Atlanta Braves™ Base Independence Day RWB 164 Rare', 'MLB-22S1-R-B163-M-RWB'), + (0xb5e3fb4e62b462c9b56f487a3dd17c22f4d474db, 'SyCreatures', 'SYC'), + (0xb5e78b5ab1c8d77f6407f5e08e22e47f7aa6571a, 'Atlanta Braves™ Freddie Freeman Postseason Base White 57 Common', 'MLB-21POST-C-B57-S-WHI'), + (0xb5ec8be366319d140b659e01ad91cce1209d336b, 'Weirdos', 'weirdos'), + (0xb5eebe508d1dadce86e3a3eb45830abefabdba8d, 'The Bestiary', 'BSTRY'), + (0xb5fa0b29aa5a74f94988ad80905682dba70cbcc4, 'Chicago White Sox® Andrew Vaughn Generation NOW Team Colors GN-11 Epic', 'MLB-22S1-E-GN11-M-TMC'), + (0xb5fcc52740ffc93937683eee2eb086b3177e1778, 'tomato nft', 'TOMS'), + (0xb606fab7ef5105b05e494b61abe3b92d7933a461, 'Cleveland Guardians™ Oscar Gonzalez Divison Series Newspaper BW 1087 Common', 'MLB-22TNP-C-DSN1-M-BW'), + (0xb608072fdf9cfd703cbaf557cfc53544af1b9509, 'Colorado Rockies™ Kyle Freeland P Base Motion Vintage Stock 615 Super Rare', 'MLB-S221-S-B615-VS'), + (0xb60d6dc918b8c10d58e2b8dc4c2e448b8cf63553, 'Boston Red Sox® Michael Chavis 2B/1B Base Static Gold 491 Uncommon', 'MLB-S221-U-B491-GOL'), + (0xb60f44f7d393e85e5e72563f3340bb119418c712, 'Milwaukee Brewers™ Christian Yelich 2022 Definitive Gold 17 Legendary', 'MLB-22LEG-L-22DEF17-M-GLD'), + (0xb61a706d969c7ee26d1264109e56cbd0b2cb02e4, 'Minnesota Twins® Twins® Up The Middle Base Static Gold 553 Uncommon', 'MLB-S221-U-B553-GOL'), + (0xb61df0c0fa1609bde7c086d40d48fd42996b25c3, 'Uncommon Comic 84 2-36 Bazooka Joe 2021 NFT', 'BZK-U-84C'), + (0xb624a35a52f2f75e695f0f2b7f1e2b3afee3db7b, 'Chicago White Sox® Jarrod Dyson OF Base Static Gold 337 Uncommon', 'MLB-S221-U-B337-GOL'), + (0xb6255148f33b5ece04def46227a671ba3d3d4480, 'Avaliens', 'AVALIENS'), + (0xb62c0f06c6594d2f52c58aa12671fb3f9a578013, 'Angels® Raisel Iglesias Base Vintage Stock 173 Super Rare', 'MLB-22S1-S-B172-M-VS'), + (0xb6372b4663ff7e46ad175e23d2ac3b3900fb6930, 'San Diego Padres™ Fernando Tatis Jr. Super Short Print White 100 Super Rare', 'MLB-22S1-S-SSP7-M-WHI'), + (0xb641aa8944972b0095a269838047ebbd7cbd9d7b, 'Philadelphia Phillies® Andrew McCutchen 1987 35th Anniversary Wood T87-24 Common', 'MLB-22S1-C-1987A19-M-WD'), + (0xb6466703859710f39f9a84ce0efabe7610827bd3, 'Cleveland Guardians™ Shane Bieber Generation NOW Team Colors GN-13 Epic', 'MLB-22S1-E-GN13-M-TMC'), + (0xb64d1244e885cd2e8693c2d446b0ba166a905987, 'Miami Marlins® Isan Diaz 2B Base Motion Rainbow 364 Rare', 'MLB-S221-R-B364-RAI'), + (0xb6540aad696d07cea8d56c58506969f6d943a00f, 'Paint Huffing Degenerates 2', 'PHDT'), + (0xb6581e443430958bec7b1838ea472624dc3237b8, 'Volcanic Eruption Event Exclusive Comic Cover Magenta 3 Epic', 'GDZ-RAT21-E-CCE3-A-MAG'), + (0xb65dfac886ae4e971efce320a4ad72a4b12b5de8, 'Atlanta Braves™ Freddie Freeman Topps NOW White 1029 Rare', 'MLB-21NOW-R-TN1029-WHI'), + (0xb66011e62e4002e8230698490b5ed0624cbc5ef0, 'Arizona Diamondbacks® Tyler Gilbert Base White 130 Common', 'MLB-22S1-C-B129-S-WHI'), + (0xb66712e6b1d8503e6896ed6d4c950213a96280eb, 'Boston Red Sox® Matt Barnes Base Glitch 303 Uncommon', 'MLB-22S1-U-B299-M-GLI'), + (0xb66a9e4c83011413702fb43968aeaa68b26473a3, 'Milwaukee Brewers™ Jedd Gyorko 1B/3B Base Static Gold 645 Uncommon', 'MLB-S221-U-B645-GOL'), + (0xb679d9954e4c962f99efe104bc451fb5e33ed41f, 'Uncommon Comic 69 2-21 Bazooka Joe 2021 NFT', 'BZK-U-69C'), + (0xb68be59b613b91b1dba0ccbcd20deb35e9a19c97, 'Common Comic 52 2-4 Bazooka Joe 2021 NFT', 'BZK-C-52C'), + (0xb69254fa3fa2ce991183e0eb53aee3caa5a4a6af, 'Fief Genesis Unit Crates', 'GenesisCrates'), + (0xb6a2bcf648a4cc1883406822e1c712f48ff00259, 'Chicago White Sox® Dylan Cease Rookie and Future Phenoms Facsimile Signature White 17 Rare', 'MLB-INC21-R-RC17-WHT'), + (0xb6abd3a13207d43f3631afd7167cc7451ee539f5, 'Footie Collectible S3', 'TSZN'), + (0xb6b8b4d60780cb9cb3ebdd79ea41190e5da6e6da, 'Philadelphia Phillies® Base Motion Vintage Stock 428 Super Rare', 'MLB-S221-S-B428-VS'), + (0xb6bd61bf57da748a2608941631c52a4317e6ca8b, 'San Francisco Giants® Johnny Cueto Base Glitch 73 Uncommon', 'MLB-22S1-U-B73-M-GLI'), + (0xb6d825abcc5c9866b744e85c5880daff945eff57, 'Japanese Fish', 'JapaneseFish'), + (0xb6d9b07cf5cf8306216f0288006d8f4ddeaff0a6, 'FC Bayern Munich David Alaba Base Players Team Color 1 Uncommon', 'BUND-SC21-U-BP1-TMC'), + (0xb6e1a64a231cd362fc9c2e2edfce70c21417bc2a, 'Houston Astros® Framber Valdez Base Independence Day RWB 261 Rare', 'MLB-22S1-R-B258-M-RWB'), + (0xb6e65b15b01024d89bedae49cbd06ddd37633879, 'Boston Red Sox® Rafael Devers Wild Card Contenders Blue 1 Common', 'MLB-21POST-C-W1-M-BLU'), + (0xb6e6beee420712bd3f543976b8ef178d304f6c72, 'Miami Marlins® Jazz Chisholm Silver Signings Facsimile Signature Silver 22 Super Rare', 'MLB-INC21-S-SS22-SLV'), + (0xb6ec05a9165e6203363984bcefa72ebe3a549684, 'HubbleSpaceCats', 'HSC'), + (0xb6f0b63cfb9aafd2fa2fae6f46995bda0159571e, 'Boston Red Sox® Double Bath Base White 229 Common', 'MLB-22S1-C-B226-S-WHI'), + (0xb702213fe377382ecf663781b14035ab02aea34b, 'Stevan Jovetić BSC Motion Aqua Refractor S3-30 Rare', 'BUND-21TS3-R-MS3-30-V-AQU'), + (0xb702d121db288ec2c812c42e5aa33a00fab0cc48, 'Boston Red Sox® Jarren Duran Base Independence Day RWB 187 Rare', 'MLB-22S1-R-B186-M-RWB'), + (0xb70b8773fc7b085d8890b0a8968b4f8bcdf6f8f5, 'VfL Wolfsburg Wout Weghorst Top Players Gold 109 Super Rare', 'BUND-SC21-S-TP109-GLD'), + (0xb71c0eaeaef7cf244b12e81614ef99cea42051fc, 'San Francisco Giants® Brandon Belt 1B Base Static Gold 405 Uncommon', 'MLB-S221-U-B405-GOL'), + (0xb720f146dc7a2e08e53676aa1e7a5ac478ad873a, 'Detroit Tigers® Jake Rogers Base Glitch 198 Uncommon', 'MLB-22S1-U-B197-M-GLI'), + (0xb7292e943bd14fd3df4773432ad0347ba3ab104b, 'American League™ Adolis Garcia Base Blue 1301 Common', 'MLB-22PRI-C-B193-M-BLU'), + (0xb72ba358c4828aea3b3b9d7adae620b1b6d25b07, 'New York Mets® Jacob deGrom Super Short Print White 330 Super Rare', 'MLB-22S1-S-SSP15-M-WHI'), + (0xb72cb879527e46d661b691ae7d711bc19118c7b5, 'Silvan Widmer M05 Motion Aqua Refractor S3-23 Rare', 'BUND-21TS3-R-MS3-23-V-AQU'), + (0xb72cd7ddaaae5103de0064713fd55539d001095e, 'Jamie Leweling FCU Ascendent Blue TK-50 Super Rare', 'BUND-22TK-S-ASCTK-50-S-BLU'), + (0xb732dfd08cdcba7b344c17f8aaf3b728b1789611, 'Cincinnati Reds® Mike Moustakas Base Blue 1068 Common', 'MLB-22PRI-C-B100-M-BLU'), + (0xb736c2ba350f43affe073594791effdc09ebd357, 'New York Mets® Marcus Stroman Base White 259 Common', 'MLB-22S1-C-B256-S-WHI'), + (0xb7378ac799645622a8630e5038560bd46d76f44d, 'Saša Kalajdžic VFB Animation Gold Refractor S4-61 Legendary', 'BUND-21TS4-L-AS4-61-V-GOL'), + (0xb74b2849c28da0af5471524bede53f4c46d4ae87, 'DSC Arminia Bielefeld Cebio Soukou Base Players White 82 Common', 'BUND-SC21-C-BP82-WHT'), + (0xb74d4993c715d01896aa996a6005e7458e1f60db, 'AI Symmetry', 'AIIA'), + (0xb74df7d9d3a834d37e5359f0bf62bb1bd4fb59c1, 'Atlanta Braves™ Freddie Freeman Base Glitch 236 Uncommon', 'MLB-22S1-U-B233-M-GLI'), + (0xb74f46d4117ee78bb1f99846dfd7ab837359ae52, 'Tricks', 'TRICKS'), + (0xb75b8ab3e53eddd43816f62fe18a329160d86dff, 'Toronto Blue Jays® Santiago Espinal Rookie and Future Phenoms Facsimile Signature White 78 Rare', 'MLB-INC21-R-RC78-WHT'), + (0xb75d0f41a3e053a322af8aa9e6a98a914c67fe50, 'Philadelphia Phillies® Jean Segura Base Independence Day RWB 178 Rare', 'MLB-22S1-R-B177-M-RWB'), + (0xb767bfec34e020ce1941fd4e1eacfaa33b2c0977, 'Houston Astros® Michael Brantley OF Base Static White 434 Common', 'MLB-S221-C-B434-WHI'), + (0xb76e72af5c37a13abd5eaf7c4b7f17a158e04443, 'Angels® Jo Adell Inception Base Blue 43 Uncommon', 'MLB-INC21-U-IB43-BLU'), + (0xb7735c95271cfcbdcb06b73d071ea461e893c462, 'TOPOGRAPHY', 'TPGRPHY'), + (0xb779d0e8095202b99ae11eb32a35d6c76a6d9609, 'SV Werder Bremen Ludwig Augustinsson Base Players Team Color 77 Static Facsimile Signature Rare', 'BUND-SC21-R-BP77-SFS-TMC'), + (0xb7873d65676ebc3bbae91e23c1a5447f3f497ed1, 'Angels® Kurt Suzuki Base Glitch 171 Uncommon', 'MLB-22S1-U-B170-M-GLI'), + (0xb787434528137e3f6e1e86468f944bf0649d22a8, 'Angels® David Fletcher 2B/SS Base Static Gold 624 Uncommon', 'MLB-S221-U-B624-GOL'), + (0xb78a0b521dacdc9808a92437d8ed70883c1266ae, 'SV Werder Bremen Niklas Füllkrug Base Players Team Color 78 Static Facsimile Signature Rare', 'BUND-SC21-R-BP78-SFS-TMC'), + (0xb7929dbc28178ca4411873a3d85a5779ee62fca6, 'Cincinnati Reds® Mike Moustakas Base Independence Day RWB 60 Rare', 'MLB-22S1-R-B60-M-RWB'), + (0xb792c1732720ac9fceefe222482f56b26c842a22, 'San Diego Padres™ Slam Diego™ Returns Base Glitch 125 Uncommon', 'MLB-22S1-U-B124-M-GLI'), + (0xb794d43de9478f674e782b4267dc5dff41700e8c, 'Houston Astros® Kyle Tucker Base Vintage Stock 319 Super Rare', 'MLB-22S1-S-B315-M-VS'), + (0xb7958946e6b2980f58ade6e03a835ee3405f6b39, 'Los Angeles Dodgers® Champion Fireworks Base Static White 490 Common', 'MLB-S221-C-B490-WHI'), + (0xb79c8025484d90f408d54698e14dbaa472e2de81, 'Chicago White Sox® Edwin Encarnacion DH Base Motion Platinum 559 Epic', 'MLB-S221-E-B559-PLA'), + (0xb7bad725f93ac60b477752f018a205d41f1c280a, 'New York Yankees® Luis Gil Facsimile Signature Gold 3115 Super Rare', 'MLB-22PRI-S-FS27-M-GLD'), + (0xb7c1101a91a1df7c528294ff5c1d51665541860d, 'Layer Zero Name Service', 'LZNM'), + (0xb7c14b5cb9590103908908bda2f6d80c63f737f7, 'Kansas City Royals® Jackson Kowar Base Glitch 264 Uncommon', 'MLB-22S1-U-B261-M-GLI'), + (0xb7ccc262d322d1dc1c64cbb56a6827589b4bc874, 'CaptureClub NFT', 'CC'), + (0xb7d34a9f74131e06a14ffe4487749463cf15ed9a, 'David Raum TSG Club Phemons Team Color S4CPH-12 Epic', 'BUND-21TS4-E-CPHS4CPH-12-V-TMC'), + (0xb7dbfe0ded91638b925f53cefeaf6105dae0809e, 'VfB Stuttgart Philipp Förster Base Players White 90 Common', 'BUND-SC21-C-BP90-WHT'), + (0xb7e533bd654f93418e245a353b2c218cea9e7cbd, 'BvBGame Lobby', 'BvB'), + (0xb7e642748f1af81f0e2decae9af92ea3377e219e, 'Kurt Destesi - Ayı Murat', 'Boru04'), + (0xb7e9da1b3abbffc4859e9b5d057647b5db01fbcf, 'Seattle Mariners™ Justin Dunn Base Vintage Stock 185 Super Rare', 'MLB-22S1-S-B184-M-VS'), + (0xb7f41471b87536eaa8a878eef703a29d187ffbf3, 'SmolMoon', 'SM'), + (0xb7f56412c84d8d222f90d890f7949f13aecb3ad7, 'Kansas City Royals® Base Motion Vintage Stock 608 Super Rare', 'MLB-S221-S-B608-VS'), + (0xb7f62ef0eea62e76e84c4a40b1c2e707ed6a71ce, 'MetaSims', 'METASIMS'), + (0xb7f665049763378a6b1385e6bfcd06d791d8b898, 'Rare Comic 68 2-20 Bazooka Joe 2021 NFT', 'BZK-R-68C'), + (0xb8018783164f99fea4f6efc141ad516f86373dab, 'St. Louis Cardinals® Giovanny Gallegos Postseason Base Red 48 Rare', 'MLB-21POST-R-B48-M-RED'), + (0xb8063134e7883541621414ce28864a841178b68e, 'Alien Crows', 'ALIEN'), + (0xb812516c4a03120eac6434e37ff170f85144a6a3, 'Chicago Cubs® Brailyn Marquez P Base Static White 404 Common', 'MLB-S221-C-B404-WHI'), + (0xb814fde395d75d311a4a9ce4c7b25cd9b1afbeb6, 'Ponz Game Season 1', 'PONZ-GAME-S1'), + (0xb81510ff1be7909ba414ecfede788d2dddfcc461, 'Seattle Mariners™ Jarred Kelenic 2022 Inception Gold 12 Legendary', 'MLB-22LEG-L-22INC12-M-GLD'), + (0xb81accd2737bce5678af0b96177e11b1bd7714e1, 'RedChainPunks', 'RCPS'), + (0xb81b754c085df436db1d553220171cc41f314f6f, 'fractionless y00t', 'FU'), + (0xb82c2f68ed3a463c1fb9bea38a43b5fe46843acb, 'Tampa Bay Rays™ Vidal Brujan Facsimile Signature Gold 3084 Super Rare', 'MLB-22PRI-S-FS52-M-GLD'), + (0xb83678cf3c143f98f21a7c44446dacb9f36a2202, 'Philadelphia Phillies® J.T. Realmuto Short Print White 180 Rare', 'MLB-22S1-R-SP33-M-WHI'), + (0xb83b922e6947484a38709742b33846b7071ee570, 'HuskyJoe Hoodie', 'HUSKYJOEHOODIE'), + (0xb842344669579ecf4cee12f740520376c4cbc6d1, 'Conscious Lines by Gabe Weis', 'Conscious Lines'), + (0xb84a6e247dd10bc1fb0788202f6708b67f8d0585, 'Boston Red Sox® Xander Bogaerts Wild Card Contenders Blue 4 Common', 'MLB-21POST-C-W4-M-BLU'), + (0xb84b78fdd41d49bc116fb01d8d5a17fd9d94e307, 'Minnesota Twins® Andrelton Simmons SS Base Motion Vintage Stock 380 Super Rare', 'MLB-S221-S-B380-VS'), + (0xb853c24321c25791a6e862c2b359ed828a41d507, 'Kansas City Royals® Greg Holland P Base Motion Platinum 467 Epic', 'MLB-S221-E-B467-PLA'), + (0xb854f543e99aa199b26aac3a0889a682fc8dc9c8, 'Mads Pedersen FCA Base White S3-26 Common', 'BUND-21TS3-C-BS3-26-S-WHI'), + (0xb85c0808c3bc4a959d85039aa4ddd01d11d0cde2, 'Davie Selke BSC Animation Gold Refractor S4-60 Legendary', 'BUND-21TS4-L-AS4-60-V-GOL'), + (0xb85dc80bc3a44d4b1f9eabb3a8882de18a6a4b9e, 'American League™ Liam Hendriks Base Blue 1280 Common', 'MLB-22PRI-C-B199-M-BLU'), + (0xb86c3fd005868ef67e1d2e13c0b6d7f8aebd6f80, 'San Francisco Giants® Kris Bryant Popular Demand Facsimile Signature Slab Teal 3502 Legendary', 'MLB-22PRI-L-PDFS10-M-TEA'), + (0xb86eb8fd4b9252dd3224f98284003c8c8406fcbc, 'ABZ', 'ABz'), + (0xb871c11a4b789881d8f5928913effec5b65d35c8, 'Miami Marlins® Jazz Chisholm Jr. Base Independence Day RWB 6 Rare', 'MLB-22S1-R-B6-M-RWB'), + (0xb87be506ff2c8632981f75f950428f43429e83bf, 'Wraphanie', 'ChadDette'), + (0xb881fe90586f4ad2b1498be9b6d54b07e9a46fa0, 'Chicago White Sox® Nick Madrigal Silver Signings Facsimile Signature Silver 12 Super Rare', 'MLB-INC21-S-SS12-SLV'), + (0xb8886904367a96d15295ea27af5c1693fd8eb21e, 'St. Louis Cardinals® Andrew Miller Base Independence Day RWB 39 Rare', 'MLB-22S1-R-B39-M-RWB'), + (0xb89229674a897b08a9d9bbba4bb787359e485ae1, 'Philadelphia Phillies® Kyle Gibson Base Independence Day RWB 57 Rare', 'MLB-22S1-R-B57-M-RWB'), + (0xb895e4c1030e094c7cf66a57d4501d5d44d821f2, 'DexSocialProfile', 'SP'), + (0xb89966d60f98975d1c9a40357d67f5bc10247edb, 'Paulinho-Diaby B04 Animation Duos TSC-11 Epic', 'BUND-21TSC-E-RATSC-11-A-DUO'), + (0xb899ea8d785a2ab64dd5561292cbbc655ae31dcc, 'Los Angeles Dodgers® Walker Buehler P Base Motion Rainbow 466 Rare', 'MLB-S221-R-B466-RAI'), + (0xb8a4be7fff9c212a1e17aefeee090f50647b2d57, 'FC Bayern Munich Kingsley Coman Base Players Gold 2 Rare', 'BUND-SC21-R-BP2-GLD'), + (0xb8aaeef1e36da18b99058acc81c61a50a429d16b, 'PolyAnt King', 'KING'), + (0xb8b01be77985233f8bc35ec0bf774b80f78e91c6, 'Seattle Mariners™ Yusei Kikuchi P Base Motion Vintage Stock 366 Super Rare', 'MLB-S221-S-B366-VS'), + (0xb8b631ae2dbd3ad3b2aa6d43a4d95e6283478dad, 'Los Angeles Dodgers® Justin Turner Postseason Base Navy 35 Uncommon', 'MLB-21POST-U-B35-M-NVY'), + (0xb8c4d5565a118ac29ed2e7b5b3e1e50481880187, 'Atlanta Braves™ Ronald Acuña Jr. Base Glitch 200 Uncommon', 'MLB-22S1-U-B199-M-GLI'), + (0xb8cbd0c30cc6f8ea0da553a9693900d06d2382da, 'Houston Astros® Alex Bregman Postseason Base White 51 Common', 'MLB-21POST-C-B51-S-WHI'), + (0xb8d1b23684b583966abbc1e8e04772d8cbe776d2, 'THE FRUIT BOWL', 'T.F.B'), + (0xb8d2b4a4e441a1fd95e8ba5af608c2d9e489bf8f, 'Rare Comic 94 2-46 Bazooka Joe 2021 NFT', 'BZK-R-94C'), + (0xb8d8b06112eb9ce0d3154d326250f7b01d340dce, 'Kansas City Royals® Hunter Dozier 3B/OF Base Static White 443 Common', 'MLB-S221-C-B443-WHI'), + (0xb8e1c00346584ae23ff7b5520224028e1adfc5c2, 'Imperium Empires Pelicouter', 'PELI'), + (0xb8e2309a04bfac5d6198f5f149a88141c903b027, 'Boston Red Sox® Bobby Dalbec Championship Series Silver 2 Epic', 'MLB-21POST-E-CS2-M-SIL'), + (0xb8e44e8199e1eb0de6e30db1706dbaad9695e6d0, 'Cleveland Indians® Cleveland Indians® Base Motion Rainbow 459 Rare', 'MLB-S221-R-B459-RAI'), + (0xb8ee9694c18e248f9f15a2dc7b72bad53f90cb93, 'Cleveland Indians® Triston McKenzie Gold Signings Facsimile Signature Gold 9 Epic', 'MLB-INC21-E-SS9-GLD'), + (0xb8fa2caa494932068becf2b85ad83c80b231e279, 'Dejan Ljubicic KOE Motion Rainbow Refractor S4-69 Super Rare', 'BUND-21TS4-S-MS4-69-V-RAI'), + (0xb8fd9dd197ce31b94a0669a8abf2c6d6e36c201e, 'Game Of Shadows', 'GOS'), + (0xb901586523feedbc8e2422da5450cac61ffe99a9, 'TSG Hoffenheim Florian Grillitsch Top Players Gold 108 Super Rare', 'BUND-SC21-S-TP108-GLD'), + (0xb903fd22ca0a060de8b414944e6e685271fe354e, 'Stephen O''Donnell MOT Captains Green SPCAP-09 Epic', 'SPFL-21SPSS-E-CAPSPCAP-09-A-GRE'), + (0xb904feaa049ecd23d5c835cf11c72591b930df67, 'Atlanta Braves™ Adam Duvall National League Base Blue 17 Rare', 'MLB-22ASG-R-B17-M-BLU'), + (0xb908aacab7ebfb7373e0d91e591e2cd8ee4fdc07, 'Minnesota Twins® Andrelton Simmons SS Base Static Gold 380 Uncommon', 'MLB-S221-U-B380-GOL'), + (0xb910041046e76d7504fe9c6a3e839403dfb5fb34, 'PDICommemorativeBadge2022', 'PDI2022'), + (0xb915ead0da3cc671a8e70205a21c1500b97fd926, 'Paper', 'PAPER'), + (0xb92269134e0865d37f790d55f06432dbcb446522, 'Pittsburgh Pirates® Bryan Reynolds OF Base Static White 564 Common', 'MLB-S221-C-B564-WHI'), + (0xb93dc43bc0b4ac838532c2e913af59439755a54d, 'MooBeanz', 'MOOBEANZ'), + (0xb93ddd15ba7d9c9e7c926fa0d458276bfaf398ee, 'Frames of Duality', 'FRM'), + (0xb94cf2ff0c2254b4bb57f4ac8f9ecc14fa9fb36a, 'Cincinnati Reds® Tejay Antone P Base Motion Vintage Stock 333 Super Rare', 'MLB-S221-S-B333-VS'), + (0xb950b5b48b353ad82884ccfeb3da243f6263a67f, 'Court of Stones and Bones', 'CSAB'), + (0xb954ae9a4374751cb3d578cfa3db96e0e5881c00, 'Snowball NFT Rolling Purple', 'SNOBNFTROLLINGPURPLE'), + (0xb95aeca508a6ba769e64700a413152542f07b0df, 'New York Mets® Marcus Stroman P Base Static Gold 549 Uncommon', 'MLB-S221-U-B549-GOL'), + (0xb95c86d307623d9d0e65269cebab6ea7af75446f, 'New York Yankees® Clarke Schmidt P Base Motion Platinum 456 Epic', 'MLB-S221-E-B456-PLA'), + (0xb95ced115e4207898e58c94a6a28cb6da45d434c, 'Chicago White Sox® Luis Robert Inception Base Blue 27 Uncommon', 'MLB-INC21-U-IB27-BLU'), + (0xb95fd544ef9efcb4445e64ba51962a6f01de6afe, 'Colorado Rockies™ Brendan Rodgers 2B Base Static White 591 Common', 'MLB-S221-C-B591-WHI'), + (0xb96d292a1e4f331c779456433b226a36d5b5247f, 'SampleNFT', 'SNFT'), + (0xb979078b0174d65e620690cf9c7454b8f7e66765, 'Medias', 'MED'), + (0xb97b1e830ebfa892157d30ee5cea11f594aba848, 'Houston Astros® Alex Bregman Inception Base Red 33 Rare', 'MLB-INC21-R-IB33-RED'), + (0xb985b5a0b6db0a58b65869d22949f76520e8646b, 'Pittsburgh Pirates® Hoy Park Base Blue 1218 Common', 'MLB-22PRI-C-B155-M-BLU'), + (0xb98985ca3082819ef2d69eea3fa17e14f9e31a20, 'Seattle Mariners™ Ty France American League Base Golden 4 Super Rare', 'MLB-22ASG-S-B4-M-GLD'), + (0xb98cb1180624e8e81798705d50097e0d514b690a, 'New York Mets® Jonathan Villar 2B/SS Base Static Gold 479 Uncommon', 'MLB-S221-U-B479-GOL'), + (0xb9914eca3cea9703495769360e2366ed9b77151c, 'Ko Itakura BMG Color Splash Team Color TK-62 Super Rare', 'BUND-22TK-S-CSTK-62-S-TMC'), + (0xb996ed256d327fec94ee87d19edf612e470972e9, 'Arizona Diamondbacks® Stefan Crichton P Base Static Gold 469 Uncommon', 'MLB-S221-U-B469-GOL'), + (0xb99a852985fe9542c5cf2c43285addece2794b53, 'San Diego Padres™ Jake Cronenworth 2B/1B Short Print Motion White 371 Super Rare', 'MLB-S221-S-SP371-WHI'), + (0xb99dab00bc53155dab589e1aefcd52352d891ae0, 'Piano Panthers', 'PIANO'), + (0xb9a05de0b4d295114470eddd18bb01b4d19f68aa, 'Retro Girls', 'RTG'), + (0xb9a3e2e2cfa43e71a22442af04bb36933893f738, 'Lucas Alario B04 Motion Rainbow Refractor S4-45 Super Rare', 'BUND-21TS4-S-MS4-45-V-RAI'), + (0xb9ab2c55c571a74cc7b41c6778b5eb76fd8dc601, 'Weirdo', 'WEIRDO'), + (0xb9b86b4581f2899b7dbe640719cfb2d8d34476fa, 'FC Koln Rafael Czichos Base Players Team Color 69 Static Facsimile Signature Rare', 'BUND-SC21-R-BP69-SFS-TMC'), + (0xb9bdbe3ac52077c1ccffc4e93b8d5003ca18fbcd, 'Colorado Rockies™ Brendan Rodgers 2B Base Motion Rainbow 591 Rare', 'MLB-S221-R-B591-RAI'), + (0xb9c0ef25f92e90881635d2bdcd8b47b2d47efe5f, 'New York Yankees® Gary Sanchez Postseason Base Navy 75 Uncommon', 'MLB-21POST-U-B75-M-NVY'), + (0xb9cb78d1d2c8729399e953bf662cc0507b963fed, 'New York Mets® Francisco Lindor 1987 35th Anniversary Chrome T87C-26 Super Rare', 'MLB-22S1-S-1987AC21-M-CHR'), + (0xb9d17a45c6211f5dca8584d10bad9d20a2fa8ea8, 'Texas Rangers® Joey Gallo Inception Base Red 92 Rare', 'MLB-INC21-R-IB92-RED'), + (0xb9d3e563966c74be7943ef8939efbaebb8e7d4b1, 'Philadelphia Phillies® Bryce Harper Base Vintage Stock 250 Super Rare', 'MLB-22S1-S-B247-M-VS'), + (0xb9d4d9f45e3be648728a6b0598036146b759cb51, 'VfL Wolfsburg Kevin Mbabu Base Players Gold 32 Rare', 'BUND-SC21-R-BP32-GLD'), + (0xb9de15229dc6817bb1c6655e4dd1827b86f7c4eb, 'Cincinnati Reds® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 6 Legendary', 'MLB-21S2SC-L-21S2SCR6-M-TC'), + (0xb9e11d14708351e73fe5f5d7ee39523b4a60fa7c, 'Derby Gear Ticket', 'Gear Ticket'), + (0xb9eb4cc36e84daed64ab625e948c36dbd9e9f598, 'Seattle Mariners™ Jarred Kelenic Generation NOW Team Colors GN-27 Epic', 'MLB-22S1-E-GN27-M-TMC'), + (0xb9ee92fd201a9f2badac7586045664a84641704d, 'Avalanche Friends Collectible', 'AFC'), + (0xb9f3e389292ea73c001235c54142582c6ca383d2, '@Sirius Collection', 'NPC016'), + (0xb9f9ca307b4327a1944a7554d0a0b61eba89d179, 'Atlanta Braves™ Ian Anderson World Series Gold 16 Epic', 'MLB-21POST-E-WS16-M-GOL'), + (0xba00af06402cda98679a2b068cc90454679f362a, 'Mental Health Matters', 'MHM'), + (0xba071d1ffbdeec91cae13034c1c4deddd6efde43, 'Eye Candy Digital Animation Color 4 Rare', 'GPK-NFT22-R-A4-A-COL'), + (0xba08b05a5dbaf290cf1a06d2b4867fffcc241e56, 'Sport-Club Freiburg Lucas Höler Base Players Team Color 39 Static Facsimile Signature Rare', 'BUND-SC21-R-BP39-SFS-TMC'), + (0xba09d3cc18d70bb7907d1d6d49cd05dabd22330b, 'Chicago White Sox® Carlos Rodon Regular Season Division Winners RWB 14 Rare', 'MLB-21POST-R-R14-M-RWB'), + (0xba0b508a6749e82b31efb577a16949ccb02bb2f9, 'Rare Comic 6 1-6 Bazooka Joe 2021 NFT', 'BZK-R-6C'), + (0xba0ef4a073eff4f00ca04d075d27972902c22fd7, 'Philipp Lienhart SCF Top Players Team Color TK-20 Rare', 'BUND-22TK-R-TPTK-20-S-TMC'), + (0xba213805893c9447b267fc205010b24a29ba4bcb, 'Tsantsas', 'TA'), + (0xba257b8fc51c65a555553b05d01e2d76188a1b0b, 'Uncommon Comic 79 2-31 Bazooka Joe 2021 NFT', 'BZK-U-79C'), + (0xba3fec16f84f3b4e643c5de80c371caea802f665, 'Jonathan Burkardt M05 Club Phemons Silver S4CPH-15 Super Rare', 'BUND-21TS4-S-CPHS4CPH-15-S-SLV'), + (0xba4dc83b713858c16013a4565c7d6c8e9ee1590a, 'GolemWormz', 'GLMWRM'), + (0xba675ed6d1a894b120513537730710caba10a2e4, 'Tampa Bay Rays™ Vidal Brujan Facsimile Signature Slab Gold 3084 Epic', 'MLB-22PRI-E-FS52-M-GLD'), + (0xba68b1273e848c83dd56a857bc89f324a3c15fd0, 'Houston Astros® Alex Bregman Inception Base White 33 Common', 'MLB-INC21-C-IB33-WHT'), + (0xba6d5067795b406a2d229cf2d5419122bcfb10b3, 'Toronto Blue Jays® Vladimir Guerrero Jr. American League Base White 3 Uncommon', 'MLB-22ASG-U-B3-M-WHI'), + (0xba7e1d73e2ea297c473f3d16f428da7a9a7dc516, 'Bifrost - Warriors of Freya', 'BIFROST'), + (0xba90cd9f76ef13c015c5ed221212dbe174a5407e, 'Jamie Leweling SGF Club Phemons Team Color S4CPH-10 Epic', 'BUND-21TS4-E-CPHS4CPH-10-V-TMC'), + (0xba99c1eb87820aa21e3fc493c07fb916992bbc22, 'New York Mets® Tylor Megill Base Independence Day RWB 134 Rare', 'MLB-22S1-R-B133-M-RWB'), + (0xbaa5dc43b9177c13e784aa271a5c8efbfeecad3b, 'New York Yankees® Giancarlo Stanton Postseason Base Red 74 Rare', 'MLB-21POST-R-B74-M-RED'), + (0xbaa7b2e0a1fe0fb877cf8ae3a835eaa1b24749bd, 'Philadelphia Phillies® Bryce Harper Inception Base White 74 Common', 'MLB-INC21-C-IB74-WHT'), + (0xbaae73afff3a2ebf58851a4eaf9d5d70cc97d816, 'Milwaukee Brewers™ Corbin Burnes 1987 35th Anniversary Wood T87-39 Common', 'MLB-22S1-C-1987A30-M-WD'), + (0xbab6066f1aa47d3322f2e5a3c9e0a3dc95463359, 'Oakland Athletics™ Sean Manaea Base Vintage Stock 281 Super Rare', 'MLB-22S1-S-B278-M-VS'), + (0xbab626dacff13f1df155fd8e74af25ccc9a5944e, 'Borussia Dortmund Marwin Hitz Top Saves Team Color TS-2 Epic', 'BUND-SC21-E-TSTS-2-TMC'), + (0xbab810d338b00d737fba716f1f2c1e5cda04b337, 'New York Yankees® Luis Gil Base White 131 Common', 'MLB-22S1-C-B130-S-WHI'), + (0xbad1f7987607135cff45ae7d7b8cc0d3df4cf481, 'Atlanta Braves™ Freddie Freeman Facsimile Signature Blue 236 Uncommon', 'MLB-22S1-U-FS14-S-BLU'), + (0xbad3da99c5bb04631852753233164a75ccd77956, 'San Diego Padres™ Jake Arrieta Base Vintage Stock 214 Super Rare', 'MLB-22S1-S-B211-M-VS'), + (0xbad4c4892be777af8731233bde5a0e149a712ce7, 'Milwaukee Brewers™ Keston Hiura 2B Base Motion Platinum 521 Epic', 'MLB-S221-E-B521-PLA'), + (0xbad512370c5d7ccb38f6b4d457f33baf6cf08a33, 'Vincenzo Grifo SCF Base Red S1-07 Uncommon', 'BUND-21TS1-U-BS1-07-S-RED'), + (0xbaf7a052598210d8597eca691d18bab8b59a9df4, 'St. Louis Cardinals® Carlos Martinez P Base Motion Vintage Stock 496 Super Rare', 'MLB-S221-S-B496-VS'), + (0xbafe0f39538e64236c3aa781e1a18c61d626a192, 'Chainsaw Propulsion Moment Color 6 Uncommon', 'GDZ-GVG22-U-M6-V-COL'), + (0xbb04b857a4549b67ca3ede20721a1ceec941e579, 'New York Yankees® Aroldis Chapman Base Glitch 142 Uncommon', 'MLB-22S1-U-B141-M-GLI'), + (0xbb0954cf2f8b167ac0df394b4a268d43aea67194, 'Texas Rangers® Spencer Howard Base Glitch 162 Uncommon', 'MLB-22S1-U-B161-M-GLI'), + (0xbb10164ffc8d937b9fc20f5838eb4ce74bebcb44, '2021 Topps MLB Inception Set Completion Reward Pack', 'MLB-21INC-COMPLETE-PACK'), + (0xbb142c33d6f3d5965651e2db20edbdc9a313d40c, 'Kansas City Royals® Salvador Perez Base White 219 Common', 'MLB-22S1-C-B216-S-WHI'), + (0xbb194bae0b1def7fc31dd7652e6dd751d95bbd01, 'Al2', 'RAL2'), + (0xbb217dd8a059402057645aecfaf4ccf325a56c75, 'Super Rare Comic 2 1-2 Bazooka Joe 2021 NFT', 'BZK-S-2C'), + (0xbb2816d205f6fe58b1cc1a9c882c2259055dc386, 'Uncommon Comic 11 1-11 Bazooka Joe 2021 NFT', 'BZK-U-11C'), + (0xbb282e2594113c412134e7f433904d7b76fd8e6c, 'Boston Red Sox® Nathan Eovaldi Postseason Base Navy 70 Uncommon', 'MLB-21POST-U-B70-M-NVY'), + (0xbb2f77678d03b7d7ae04d5cd1bf96f64e5248a95, 'Borussia Monchengladbach Jonas Hofmann Base Players White 17 Common', 'BUND-SC21-C-BP17-WHT'), + (0xbb3165c662b7ca6e745e78f57fef09b6c43e4f14, 'STEAK IT', 'STK'), + (0xbb335de13430d352960b5cf415af01d3aeee00be, 'Smol K!rby', 'SK'), + (0xbb364123020362ba703ca96959e932e72a0bb7a8, 'San Francisco Giants® Luis Alexander Basabe OF Base Static Gold 548 Uncommon', 'MLB-S221-U-B548-GOL'), + (0xbb3a7978a903cc7ea44a0ae1855d4fb652780582, 'Minnesota Twins® Jorge Polanco SS Base Motion Rainbow 598 Rare', 'MLB-S221-R-B598-RAI'), + (0xbb3b4c4c2a7ef7ebf075cfc70039c9b9b37ae9f6, 'Cleveland Indians® Shane Bieber P Base Motion Platinum 523 Epic', 'MLB-S221-E-B523-PLA'), + (0xbb3cf2d4399319ec3dce0bbcc0477af164cddbba, 'Milwaukee Brewers™ Ben Gamel OF Base Static Gold 458 Uncommon', 'MLB-S221-U-B458-GOL'), + (0xbb3de1c21a78b0ca911b87caf8e2953a8336b24c, 'Houston Astros® Framber Valdez P Base Motion Rainbow 514 Rare', 'MLB-S221-R-B514-RAI'), + (0xbb4bc8e17567fa94bacc8f19524e7077eeb24c44, 'Baltimore Orioles® Keegan Akin P Base Motion Vintage Stock 562 Super Rare', 'MLB-S221-S-B562-VS'), + (0xbb4d717bf04547052c5f86ef76bb95e6a4feaf48, 'Shadowkite', 'SHDKT'), + (0xbb6a00496e01dec1306b93b05fb4f79c3220af5a, 'Oakland Athletics™ Tony Kemp Base Glitch 114 Uncommon', 'MLB-22S1-U-B113-M-GLI'), + (0xbb71114c6dbf2605eddc192903159f91150fabf8, 'FC Koln Ismail Jakobs Young Stars Team Color 171 Super Rare', 'BUND-SC21-S-YS171-TMC'), + (0xbb723a67ff5df858afae78d7bd2a87205e918ab8, 'Satoshi Visions', 'SV'), + (0xbb78af5cfeb50bbb6046e396e758ca26465b9f94, 'Hertha Berlin Matteo Guendouzi Young Stars Team Color 163 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS163-SFS-TMC'), + (0xbb7f9c0d931eb7176001e1916062df6d4a7ba3c8, 'Airdrop Angel Event Exclusive Animated Facsimile Signature Magenta 14 Super Rare', 'GPK-NFT22-S-AFSE14-A-MAG'), + (0xbb8298a9a237ad08e5186021337f02bc63605fea, 'Atlanta Braves™ Ozzie Albies Inception Base Blue 5 Uncommon', 'MLB-INC21-U-IB5-BLU'), + (0xbb8559f16c46624336f804320c1353c8759add24, 'National League™ NL™ East Division Smiles Base Vintage Stock 98 Super Rare', 'MLB-22S1-S-B97-M-VS'), + (0xbb86d3cd8b881288164fd4e7788e7e014b369095, 'Atlanta Braves™ Base Glitch 164 Uncommon', 'MLB-22S1-U-B163-M-GLI'), + (0xbb88c5543fd9733c1cd95dc541343129f12c9035, 'Detroit Tigers® Gregory Soto Base Glitch 17 Uncommon', 'MLB-22S1-U-B17-M-GLI'), + (0xbb99a39e76a7ae055fb6b4b6ad167d4ea3f13e50, 'Cincinnati Reds® Base Independence Day RWB 96 Rare', 'MLB-22S1-R-B95-M-RWB'), + (0xbb9a405e39413d6f0d667dde55060f8de34e42f8, 'ANIMAL INSTINCT', 'ANIN'), + (0xbba3560069420abfbf1f06ad4dd90dbedd2f78a1, 'Oakland Athletics™ Base Static White 392 Common', 'MLB-S221-C-B392-WHI'), + (0xbba8691a344e4517faa7f520a8094090147019a7, 'Cincinnati Reds® Nick Castellanos OF Base Motion Rainbow 365 Rare', 'MLB-S221-R-B365-RAI'), + (0xbba92043b8059927454b98de6fd1f9d9d294f941, 'Proof of Steak Animation Color 20 Rare', 'GPK-NFT22-R-A20-A-COL'), + (0xbbbbbea99b3e100334dfb519fcca74c9e11d1610, 'Alter Eggo Chikn Coop', 'AECC'), + (0xbbc15afe8d91d72b9dc8b684452b18d16904c1b4, 'SS1 NFT LP', 'SS1NFTLP'), + (0xbbc54ac22d1f6b25809de151f7aa426806b28c1d, 'Middle East Folk Art', 'MEFA'), + (0xbbcc62a8848b5d0c00c107e929b3c2b9dba10f37, 'Pittsburgh Pirates® Jared Oliva OF Base Motion Rainbow 471 Rare', 'MLB-S221-R-B471-RAI'), + (0xbbdab88b49735e04c23d8cb1d7acec69cbef1f68, 'Buds pop', 'BDP'), + (0xbbdba9254a6c1eb1913f4be3ec211c5da4c3c769, 'Miami Marlins® Nick Neidert Rookie and Future Phenoms Facsimile Signature Black 44 Legendary', 'MLB-INC21-L-RC44-BLK'), + (0xbbdd9e137ba6134f1181ab43751fd665ddc92a10, 'Houston Astros® Yordan Alvarez Division Series Bronze 20 Super Rare', 'MLB-21POST-S-D20-M-BRO'), + (0xbbddc0be8644b4199be10f3feb807d913f004160, 'Oakland Athletics™ Matt Olson Short Print White 149 Rare', 'MLB-22S1-R-SP29-M-WHI'), + (0xbbe01f1d250f2e9583d608c236ffc292b26befc9, 'Seasons', 'SEAS'), + (0xbbe26f7ac0856a8e121c99960aaa048e2cb5a4f5, 'Tampa Bay Rays™ Team Cube 2.0 Team Colors 19 Legendary', 'MLB-22S1-L-TC219-M-TMC'), + (0xbbe406edfa24561577e651eb1f8e7c69ba78bd4d, 'Philadelphia Phillies® Mickey Moniak OF Base Motion Platinum 457 Epic', 'MLB-S221-E-B457-PLA'), + (0xbbf2807e0da57ad741f5ac72f9cb354f0538ea0c, 'Baltimore Orioles® Ryan Mountcastle Generation NOW Team Colors GN-8 Epic', 'MLB-22S1-E-GN8-M-TMC'), + (0xbbf4041df3e4a36b87354b23e95a6b987ab741e4, 'FC Augsburg André Hahn Base Players Team Color 71 Static Facsimile Signature Rare', 'BUND-SC21-R-BP71-SFS-TMC'), + (0xbbfb3da15c20013631af0a9774632a837cefc227, 'Bayer 04 Leverkusen Edmond Tapsoba Base Players White 23 Common', 'BUND-SC21-C-BP23-WHT'), + (0xbbfc52ca4e0dc956f852172e9e2a1308d24589b5, 'Christopher Nkunku RBL Motion Aqua Refractor S4-41 Rare', 'BUND-21TS4-R-MS4-41-V-AQU'), + (0xbc04cf7f6466a50ec574f27eed81c65fec720481, 'Houston Astros® Yuli Gurriel Base Pink 1187 Uncommon', 'MLB-22PRI-U-B126-M-PNK'), + (0xbc06fefd30665391f6f599ae01aaca32f30f8fdd, 'Chicago White Sox® Jose Abreu 1B Base Motion Rainbow 331 Rare', 'MLB-S221-R-B331-RAI'), + (0xbc074e2d40f5facd26de75ecd394186bb68446db, 'Atlanta Braves™ Jorge Soler Base White 208 Common', 'MLB-22S1-C-B207-S-WHI'), + (0xbc1126ff6cc5238730952fab5b5eee888ed4ddae, 'Jeremy Dudziak SGF Motion Aqua Refractor S4-46 Rare', 'BUND-21TS4-R-MS4-46-V-AQU'), + (0xbc1b0019169a12bb7405c3422f453df466e90497, 'Steampunk Girls', 'ASPG'), + (0xbc1d3e829f82b8c11d112bf9f58c69c340407d77, 'paint.jpegs', 'PJPEG'), + (0xbc27acdf04462ce1b60175be79cb15d8f75be960, 'DINO', 'DINO'), + (0xbc2bba248f291bcc212d8b962f2a66277c979c3c, 'Toronto Blue Jays® Vladimir Guerrero Jr. American League Base Golden 3 Super Rare', 'MLB-22ASG-S-B3-M-GLD'), + (0xbc2cbcb693af6e08136dca63b889147ad001603e, 'New York Mets® Francisco Lindor New Beginnings Team Colors 3 Legendary', 'MLB-INC21-L-NB3-TMC'), + (0xbc2d5030fd3de07c5c108dcbb81bd603c86eb4b1, 'Uncommon Comic 56 2-8 Bazooka Joe 2021 NFT', 'BZK-U-56C'), + (0xbc3323468319cf1a2a9ca71a6f4034b7cb5f8126, 'Wolfi Land', 'WOLFI'), + (0xbc38fa9c06fc0a9a509b4363b98eaaf7b555dfe8, 'San Diego Padres™ Manny Machado Inception Base Red 81 Rare', 'MLB-INC21-R-IB81-RED'), + (0xbc47eaf0b871a5a72dd1276257e3ecaf5d00ed3e, 'Miami Marlins® Zach Thompson Base Independence Day RWB 227 Rare', 'MLB-22S1-R-B224-M-RWB'), + (0xbc4a90521113b9065d698812c7973a0921a6cc51, 'Colorado Rockies™ Jon Gray Base Glitch 161 Uncommon', 'MLB-22S1-U-B160-M-GLI'), + (0xbc4c64d308a97adcb5199317561690d30105c01e, 'Tampa Bay Rays™ Austin Meadows Rookie and Future Phenoms Facsimile Signature Blue 72 Super Rare', 'MLB-INC21-S-RC72-BLU'), + (0xbc5d816f21388ed117f2f40b10b31eb76326268a, 'Godzilla Mountainscape Traditional Art CMYK Offset 3 Super Rare', 'GDZ-RAT21-S-TA3-A-CMYK'), + (0xbc5fc348a825f28df89044eafb439aa4407608d3, 'Land', 'LAND'), + (0xbc64d1bea52dff4336912e4bf29387df3bbc7d2a, 'Dejavue', 'djv'), + (0xbc68037347faa02b65258a4dab77cd473259b893, 'New York Mets® Edwin Diaz P Base Motion Platinum 498 Epic', 'MLB-S221-E-B498-PLA'), + (0xbc6c0d57644bc71ecb2bb3713ea1196ac9444788, 'AiCasso Investment NFT', 'AiCN'), + (0xbc7094d69215c48a802c685f718de5f3a9c9fc57, 'Houston Astros® Zack Greinke Base Vintage Stock 51 Super Rare', 'MLB-22S1-S-B51-M-VS'), + (0xbc7682c4c12198434fd8e29ffbbc8b8a04ddbb18, 'Uncommon Baseball Card 9 Joe Batter Bazooka Joe 2021 NFT', 'BZK-U-9B'), + (0xbc80c25782d7daa2c2991df9cd3d4c62b552eaae, 'San Francisco Giants® Kevin Gausman 1987 35th Anniversary Wood T87-16 Common', 'MLB-22S1-C-1987A13-M-WD'), + (0xbc819d99446118c8426185bb57e192ad4399e271, 'Tampa Bay Rays™ Tyler Glasnow Base White 302 Common', 'MLB-22S1-C-B298-S-WHI'), + (0xbc88332f543c3e9ddeaa998123b509afa4cefe5c, 'AvaxCoin V3', 'AVAXCOIN3'), + (0xbc88a8bb469e9b16e036e8713b8b50907942271e, 'PDIMarketingandLoyalty', 'PDI2022'), + (0xbc9e10bf940016c04a9199f95ee5e0456b96b057, 'Godzilla Mountainscape Traditional Art Black and White 3 Rare', 'GDZ-RAT21-R-TA3-A-BW'), + (0xbca0adcdd38631dc9a455991ce1b2b3157397ba4, 'Milwaukee Brewers™ Josh Hader Postseason Base White 24 Common', 'MLB-21POST-C-B24-S-WHI'), + (0xbcabefa0d1558e9804da2ce18f071f9af28db868, 'Ai Whisky Barrels', 'AWB'), + (0xbcaf0ea37a4a533500a24cae1a5a70f2727676d4, 'Holy Priests', 'AiHLYP'), + (0xbcb4b96b00d3607ef55725ab7397ab3520723579, 'Sascha Burchert SGF Base Red S3-33 Uncommon', 'BUND-21TS3-U-BS3-33-S-RED'), + (0xbcc0a71d832846639bb701667778a991f0183817, 'Milwaukee Brewers™ Devin Williams P Base Static Gold 485 Uncommon', 'MLB-S221-U-B485-GOL'), + (0xbcc442d9b0c27f8d8d0e07f43f4ddb46f5674b63, 'Chicago White Sox® Eloy Jimenez Base Blue 1037 Common', 'MLB-22PRI-C-B119-M-BLU'), + (0xbcd3fb1ac1a9222b4da9afbd7794e68a3909c8f3, 'Broccoli World Cup 2022', 'BWC22'), + (0xbcd97907dd91e3d8ac3ed3c1f3742919630ce7b9, 'DCG Key 2', 'DCGKEY2'), + (0xbcdc76502624e514020d1de7c7d6c52634a6e8f7, 'Atlanta Braves™ Jorge Soler Champs Gold 6 Legendary', 'MLB-21POST-L-C6-M-GOL'), + (0xbcdc76a1fd0b705229da106ff7ac8ecff2ef6ea5, 'The Broken Maze', 'TBM'), + (0xbcdcbb3c876081f7d97b48625cad4c3c74fd1870, 'Miami Marlins® Jazz Chisholm SS 70th Anniversary Facsimile Signature Motion Platinum 538 Legendary', 'MLB-S221-L-70AFS538-PLA'), + (0xbcdeec89f934c64e209eca4d483869c5941a4fa9, 'Tampa Bay Rays™ Shane Baz Base Blue 1315 Common', 'MLB-22PRI-C-B146-M-BLU'), + (0xbcdfaeef562bd2bc690b199003b84463a1dd555d, 'DCG Gen 0', 'DCGGEN0'), + (0xbce3ae14f39dadb83ca1789a1455bf0198de9fb6, 'Dovens NFT Collection', 'DONFT'), + (0xbce86eaa901261f0aad8b1de8779e2006f3259be, 'Tampa Bay Rays™ Shane McClanahan Base Vintage Stock 244 Super Rare', 'MLB-22S1-S-B241-M-VS'), + (0xbcea80b90c3a0925e116d8bd75deab1e5c7f371a, 'Atlanta Braves™ Austin Riley Base Vintage Stock 115 Super Rare', 'MLB-22S1-S-B114-M-VS'), + (0xbcf85627a8144e1020543e789ac50062b482b343, 'Topps Series Tier 2 Challenge Reward Pack - 21-22 Bundesliga NFT Cards', 'BUND-21TSC-TIER2-R'), + (0xbd0a25bcb1a8b9d7e03fe6f1c34a21d6c4839351, 'Harumi Musume', 'HRMI'), + (0xbd11d92dd1464788d440ba17b2ae11b0eb90e8be, 'Oakland Athletics™ Yan Gomes Base Independence Day RWB 294 Rare', 'MLB-22S1-R-B291-M-RWB'), + (0xbd12961c4db9451a8f5923d4b131fe9ed518014a, 'Detroit Tigers® Tarik Skubal Rookie and Future Phenoms Facsimile Signature White 26 Rare', 'MLB-INC21-R-RC26-WHT'), + (0xbd12bf1df092da9218f7ddc81ee2b51876f5dfb6, 'CryptoVikings', 'VIKING'), + (0xbd1544c04142fe8719d6176161e1d2fcca413e85, 'Butterfly Kings', 'BFK'), + (0xbd1b7153443f00a1cd3241a06007a7897f8a57c2, 'Los Angeles Dodgers® Austin Barnes C Base Motion Rainbow 367 Rare', 'MLB-S221-R-B367-RAI'), + (0xbd2135c6d4cdc986fb928ebfff304a7ad4b12a99, 'Chicago Cubs® Billy Hamilton OF Base Static Gold 588 Uncommon', 'MLB-S221-U-B588-GOL'), + (0xbd22bde5c8d2ffa73e03faaf64ffd3401ef5d7fa, 'SPACENFTB', 'SNFTB'), + (0xbd2d75e3ebfe9652d743a0e30d4b7c0ff104feec, 'St. Louis Cardinals® Paul Goldschmidt Inception Base Red 89 Rare', 'MLB-INC21-R-IB89-RED'), + (0xbd2de9e2b83d1873eb1751ca72e81f8a198634b3, 'Texas Rangers® Sam Huff C Short Print Motion White 654 Super Rare', 'MLB-S221-S-SP654-WHI'), + (0xbd310a3e3870116449412b8f36f74d0c45cbe3ad, 'Cyber Punk Animals', 'CPA'), + (0xbd47df5569027d6b7bb67923f8664bef969a3670, 'Atlanta Braves™ Ronald Acuña Jr. Base White 200 Common', 'MLB-22S1-C-B199-S-WHI'), + (0xbd4c1924b5e5982b57db2483f7d13e4e45ab8728, 'Sadio Mané BAY Color Splash Facsimile Signature Team Color TK-55 Legendary', 'BUND-22TK-L-CSTK-55-S-TMC'), + (0xbd4fd68e6d71ade4022227329c436ebc9b31b90f, 'Arizona Diamondbacks® Tim Locastro OF Base Motion Rainbow 585 Rare', 'MLB-S221-R-B585-RAI'), + (0xbd54dcf9f528e70e9e67d6a622bf4c81dac24234, 'Chicago White Sox® Jose Abreu Division Series Bronze 25 Super Rare', 'MLB-21POST-S-D25-M-BRO'), + (0xbd56f8ee8a6840d1b38ac33c13e6d4d773ffb53b, 'Baltimore Orioles® Ryan Mountcastle Inception Base White 9 Common', 'MLB-INC21-C-IB9-WHT'), + (0xbd59fe8083dc5696e913b90f13be178997fed7db, 'Seattle Mariners™ Jarred Kelenic Fresh Faces Facsimile Signature Reward White 3418 Legendary', 'MLB-22PRIASG-L-FFR9-M-WHI'), + (0xbd5d0851d157a7aabcdae4181c33171fd33985a8, 'Jordan Siebatcheu FCU Color Splash Facsimile Signature Team Color TK-68 Legendary', 'BUND-22TK-L-CSTK-68-S-TMC'), + (0xbd6da20f6ecfcb5dae85cf2d47739d7190f37c1c, 'Naouirou Ahamada VFB Ascendent Blue TK-45 Super Rare', 'BUND-22TK-S-ASCTK-45-S-BLU'), + (0xbd7a1cfa3a97b5246090b4d299ced840211ae7ce, 'San Diego Padres™ Manny Machado Base Blue 1053 Common', 'MLB-22PRI-C-B122-M-BLU'), + (0xbd80f43738837cec69e42e82dfd5ac0fca96a9fa, 'Godzilla vs. Gigan (1972) Movie Poster Red 1 Super Rare', 'GDZ-GVG22-S-MP1-A-RED'), + (0xbd82043416d7e6c61eb977330074522da9b626e0, 'Houston Astros® Yordan Alvarez DH/OF 1986 Anniversary Static Team Colors 86B-13 Super Rare', 'MLB-S221-S-1986A86B-13-TMC'), + (0xbd8249644f38090abb524398c4599537c27aca39, 'CYNFUL', 'CYN'), + (0xbd827ed676dbdaa9ec47d691adf309a8089cedd1, 'Los Angeles Dodgers® Walker Buehler Facsimile Signature Gold 3026 Super Rare', 'MLB-22PRI-S-FS53-M-GLD'), + (0xbd838bc2069639f833cb3735d1bb56ae2e19a606, 'Munk', 'Munk'), + (0xbd839d0631fa94c22be80b741d9cc424451b4ba6, 'Houston Astros® Ryan Pressly P Base Static Gold 652 Uncommon', 'MLB-S221-U-B652-GOL'), + (0xbd8a24b6080d39d90337212f97d78d40ee3b74e3, 'New York Yankees® Aroldis Chapman 2022 Definitive Gold 21 Legendary', 'MLB-22LEG-L-22DEF21-M-GLD'), + (0xbd8a30aa4bbd6cf2be5315857cfdbd1fce40c46e, 'Spookey Skull Society', 'SSS'), + (0xbd950d20adcbc52ff7ab3c75feea9284ee34a51d, 'Tampa Bay Rays™ Austin Meadows Postseason Base Navy 3 Uncommon', 'MLB-21POST-U-B3-M-NVY'), + (0xbd96087c14978aeb9a3bf646b316795b1a9a2bb4, 'Colorado Rockies™ German Marquez P Base Static White 424 Common', 'MLB-S221-C-B424-WHI'), + (0xbd98dc75baa743deb907b497f94f943d296db7df, 'Paper Hans Golden Animation Color 18 Epic', 'GPK-NFT22-E-GA18-A-COL'), + (0xbd9babcaf72ed1f8b1354fc25da388677e4143b0, 'Liel Abada CEL Young Stars Red SPYS-02 Epic', 'SPFL-21SPSS-E-YSSPYS-02-A-RED'), + (0xbda3a89f8c966bf06ee492a9383067f2c7b984ea, 'ZomZomz', 'ZOMZOMS'), + (0xbda4125d6034df8782663b76df9000d4e51929b3, 'Minnesota Twins® Max Kepler Base Independence Day RWB 221 Rare', 'MLB-22S1-R-B218-M-RWB'), + (0xbdaa2fc39a6af08d158c8580bff433e159f7ab2e, 'The Mediterranean', 'gLW'), + (0xbdaee94361a3b5ef2872ce240068a4a8c40bb4ac, 'New York Yankees® Gary Sanchez C Base Motion Vintage Stock 525 Super Rare', 'MLB-S221-S-B525-VS'), + (0xbdb7860185648a2147f86c3675be1ec8443a4619, 'Happy Chief Ducks', 'CHIEFDUCKS'), + (0xbdbbaa2abd8ba35836004a9e36a0525e49b1382c, 'Tampa Bay Rays™ Base White 274 Common', 'MLB-22S1-C-B271-S-WHI'), + (0xbdbc3bd6583df17b6f240ee546cb9e6256d634b1, 'San Diego Padres™ Ryan Weathers P Base Motion Rainbow 335 Rare', 'MLB-S221-R-B335-RAI'), + (0xbdbea76084d6c3fbfa7805b720df509040bc6376, 'Chicago White Sox® Yasmani Grandal Base Independence Day RWB 284 Rare', 'MLB-22S1-R-B281-M-RWB'), + (0xbdc028732cd7dc2985219376a83d7fe553b7e854, 'Evan Ndicka SGE Animation Gold Refractor S3-29 Legendary', 'BUND-21TS3-L-AS3-29-V-GOL'), + (0xbdca261d6f05282a9ccae207df011aaf9ff8661f, 'Happy Hippies', 'Hippies'), + (0xbdcd7012863c210b4bdb093ce2472823794f9700, 'New York Mets® Michael Conforto OF Short Print Motion White 517 Super Rare', 'MLB-S221-S-SP517-WHI'), + (0xbdd2b46520dbab3195a4a074fefdf3ecafac2e93, 'New York Yankees® Corey Kluber Base Glitch 69 Uncommon', 'MLB-22S1-U-B69-M-GLI'), + (0xbdd422c5c0bf92cf90eca3505f1a63cf09dc46b6, 'Arizona Diamondbacks® Zac Gallen P 70th Anniversary Facsimile Signature Motion Platinum 440 Legendary', 'MLB-S221-L-70AFS440-PLA'), + (0xbdd957b8f7946c11ec319b530e4b26fde2b614c1, 'San Diego Padres™ Jake Arrieta Base White 214 Common', 'MLB-22S1-C-B211-S-WHI'), + (0xbde0030603b4e68204ef68d74518b874d0781c22, 'Proof of Steak Golden Animation Color 20 Epic', 'GPK-NFT22-E-GA20-A-COL'), + (0xbde36495a46da1b81600b96cc41054388f9fd7ad, 'Baltimore Orioles® Trey Mancini OF/1B Base Motion Vintage Stock 573 Super Rare', 'MLB-S221-S-B573-VS'), + (0xbde4e5c79d8d5a3e9d076cb22bb95e2b90b41cf0, 'DSC Arminia Bielefeld Masaya Okugawa Top Players Gold 141 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP141-AFS-GLD'), + (0xbde5a7c3e10df0b5826a74af66577c63f9132368, 'Los Angeles Dodgers® Albert Pujols Base White 237 Common', 'MLB-22S1-C-B234-S-WHI'), + (0xbde9aba6ae376c02835952014ac0e075e661ae13, 'National League™ Max Muncy Base Blue 1286 Common', 'MLB-22PRI-C-B202-M-BLU'), + (0xbdf327557dc644f6527f102f82caafee118549eb, 'Colorado Rockies™ 2021 Topps MLB Inception Set Completion Reward Team Colors 8 Epic', 'MLB-21INCSC-E-21INCSCR8-M-TC'), + (0xbdf47716c217a10a23841fe1edb9149e51ea9101, 'Atlanta Braves™ William Contreras National League Base White 12 Uncommon', 'MLB-22ASG-U-B12-M-WHI'), + (0xbdf682edeea4c8318e763b636a249fc7612646aa, 'Super Rare Comic 15 1-15 Bazooka Joe 2021 NFT', 'BZK-S-15C'), + (0xbdfc43408e044d4df421868e506273b21272b536, 'Milwaukee Brewers™ Jake Cousins Base Pink 1207 Uncommon', 'MLB-22PRI-U-B141-M-PNK'), + (0xbe0014ed6ac4d91457b2826f9105bfd5238bad8a, 'Paul Jaeckel FCU Limitless White Parallel TLC-02 Super Rare', 'BUND-22TLC-S-RLSSTLC-02-A-WHI'), + (0xbe02295abd0714485c050d6d436dabea651912bc, 'National League™ Juan Soto Base Blue 1294 Common', 'MLB-22PRI-C-B215-M-BLU'), + (0xbe0348dd223ea01ef1b06c5aa5b1da6f4eb167b7, 'Dundee United F.C. DDU Club Crest Card Gold SPCCC-06 Epic', 'SPFL-21SPSS-E-CCCSPCCC-06-A-GOL'), + (0xbe0e5f2513d8286d07ddc58d02eb8b102dcd3b03, 'Assetha', 'Assetha'), + (0xbe131ed1a102a1f7b14640fb6bc91ca5431ca944, 'Bored And Chill AvApes', 'BoredAndChil'), + (0xbe16e8b9643f271e5f1abe851f9af8ed66f7c663, 'San Diego Padres™ Dinelson Lamet P Base Static Gold 418 Uncommon', 'MLB-S221-U-B418-GOL'), + (0xbe197fe54e932731f8044c85a986dfb0eba482c4, 'Chicago White Sox® Luis Robert 1987 35th Anniversary Wood T87-70 Common', 'MLB-22S1-C-1987A49-M-WD'), + (0xbe2199322b992d19b18d9f36dca5521b6ad773f1, 'Penguineer', 'Penguineer'), + (0xbe256b511a818a45eec78824c16a95c2fc21afc9, 'Ko Itakura BMG Color Splash Facsimile Signature Team Color TK-62 Legendary', 'BUND-22TK-L-CSTK-62-S-TMC'), + (0xbe269574af7ed821a93a35b7dceab8e65ce0f953, 'Blueberry', 'BLUEBERRY'), + (0xbe2c5f58bd0336d26120ba68e4a1f5ff46bab2be, 'Los Angeles Dodgers® Will Smith Base Independence Day RWB 83 Rare', 'MLB-22S1-R-B83-M-RWB'), + (0xbe32bafbdb6e56a43dda064e05214e8fa2a17d54, 'St. Louis Cardinals® Nolan Arenado Facsimile Signature Glitch 87 Epic', 'MLB-22S1-E-FS5-M-GLI'), + (0xbe38fd6ac8d8ec2e3c685646dce40020e38b2364, 'CryptoPunks', 'cs'), + (0xbe46b0e6a05c42829119d58aef3c40d14fe965f0, 'San Diego Padres™ Joe Musgrove Base Blue 1154 Common', 'MLB-22PRI-C-B123-M-BLU'), + (0xbe4c2d9878b190cb62c92dfd6caaee422d5827d0, 'Seattle Mariners™ Evan White Inception Base Blue 82 Uncommon', 'MLB-INC21-U-IB82-BLU'), + (0xbe4de5644a44023a132a9a711338b2d57e198ff2, 'Cincinnati Reds® Sonny Gray Base Glitch 45 Uncommon', 'MLB-22S1-U-B45-M-GLI'), + (0xbe4de603007bcc7fbc18ff090955a085a4f599b1, 'Rare Comic 20 1-20 Bazooka Joe 2021 NFT', 'BZK-R-20C'), + (0xbe5daf27fb3930f430cbf3dc88b36184d3b209a3, 'Eintracht Frankfurt Stefan Ilsanker Base Players Team Color 44 Uncommon', 'BUND-SC21-U-BP44-TMC'), + (0xbe6672e149084344a980d69395ac76c941cf5917, 'Chicago White Sox® Tim Anderson 1987 35th Anniversary Wood T87-11 Common', 'MLB-22S1-C-1987A9-M-WD'), + (0xbe6abe2b22c721249e4d2e74bb29e77c42455882, 'WAXy William Base Color 7 Common', 'GPK-NFT22-C-B7-S-COL'), + (0xbe74516ec4a529e77e8164fcd86d788c4eda723a, 'National League™ J.T. Realmuto Base Pink 1291 Uncommon', 'MLB-22PRI-U-B207-M-PNK'), + (0xbe748a5578b286c63382e25359a34f9f3400215f, 'Gemini Gene Animation Facsimile Signature Color 12 Super Rare', 'GPK-NFT22-S-AFS12-A-COL'), + (0xbe76fcf67b7518e5b5ca35c4213769333bbb1959, 'Milwaukee Brewers™ Eduardo Escobar Base Independence Day RWB 207 Rare', 'MLB-22S1-R-B206-M-RWB'), + (0xbe79a0d6223ff763f5bdb00b785633d0957f38da, 'Maximilian Arnold WOB Top Players Team Color TK-10 Rare', 'BUND-22TK-R-TPTK-10-S-TMC'), + (0xbe7b6689adb788eea40af501059b0d7c4ec9c9f0, 'San Diego Padres™ Jake Cronenworth Rookie and Future Phenoms Facsimile Signature White 66 Rare', 'MLB-INC21-R-RC66-WHT'), + (0xbe7b8a35cce4b0ce610213ee382b823a96d4a89d, 'Avax Ghosts', 'GHOSTS'), + (0xbe7cfa95a45f86c7bedda9a8c5cfec70bf8fd81b, 'New York Mets® Marcus Stroman P Short Print Motion White 549 Super Rare', 'MLB-S221-S-SP549-WHI'), + (0xbe8ad027623faba0c8bff3c0491fb8d646194705, 'Koné-Ginter BMG Animation Duos TSC-04 Epic', 'BUND-21TSC-E-RATSC-04-A-DUO'), + (0xbe8e4056503085f397af3233b901e8f6bcfec921, 'CannaFox.io', 'Pool 3'), + (0xbeaf87aaedffdd55c5672e24ddce8d29aa043d56, 'MY KIND OF PUNKS!', 'MKOP'), + (0xbeb095d0a90fe840da3ddd18c490f9a754cb821b, 'Breel Embolo BMG Animation Gold Refractor S2-13 Legendary', 'BUND-21TS2-L-AS2-13-V-GOL'), + (0xbeb172e6b50569c1bfdfa4e66a4006b2fb271838, 'Super Rare Comic 95 2-47 Bazooka Joe 2021 NFT', 'BZK-S-95C'), + (0xbeb1b2b5e7fd8166835874e7336b5029be4a1a53, 'St. Louis Cardinals® Yadier Molina Base White 205 Common', 'MLB-22S1-C-B204-S-WHI'), + (0xbeb4cca36fcf9749e09300d279ee555b30e565de, 'Houston Astros® Jose Altuve 2B Facsimile Signature Static Red 432 Epic', 'MLB-S221-E-FS432-RED'), + (0xbebb93c3550d5ba32477033fb8cbefd31352129d, 'TSG Hoffenheim Christoph Baumgartner Young Stars Team Color 155 Super Rare', 'BUND-SC21-S-YS155-TMC'), + (0xbebdadeecd4f914b6650277fe2ab2fcc8a91cf56, 'New York Yankees® Estevan Florial OF Short Print Motion White 406 Super Rare', 'MLB-S221-S-SP406-WHI'), + (0xbecb7bf0a31698c3f5696c09b9f27d80b35526f1, 'AVA Lamp Golden Animation Color 8 Epic', 'GPK-NFT22-E-GA8-A-COL'), + (0xbed9154e0d3bac551ffd7d6a69eb46fd82bd2ad8, 'St. Louis Cardinals® Alex Reyes Base Independence Day RWB 47 Rare', 'MLB-22S1-R-B47-M-RWB'), + (0xbef67e8d10c90ab328df4f64c2d63ff2b01db2bd, 'Atlanta Braves™ Charlie Morton Regular Season Division Winners RWB 31 Rare', 'MLB-21POST-R-R31-M-RWB'), + (0xbefb139cdcd55c8b8914aaf2fb657acc9c9ce18f, 'Boston Red Sox® Xander Bogaerts 1987 35th Anniversary Chrome T87C-15 Super Rare', 'MLB-22S1-S-1987AC12-M-CHR'), + (0xbefde08d0c80b7c4ac481c53fbb9e129446e31f3, 'Orb', 'ORB'), + (0xbf044da247d636a3f3a59cd06f59cd87839615f0, 'Texas Rangers® Corey Seager HRD Reward Red 2 Rare', 'MLB-22ASGR-R-R2-M-RED'), + (0xbf1634a5b44af25115ee91e6992ead47e1fd3dfa, 'Chicago Cubs® Willson Contreras Base Vintage Stock 147 Super Rare', 'MLB-22S1-S-B146-M-VS'), + (0xbf1c15af2901a5288161f7427c200bb946bf63ca, 'Colorado Rockies™ Antonio Senzatela P Base Motion Vintage Stock 420 Super Rare', 'MLB-S221-S-B420-VS'), + (0xbf20c23d25fca8aa4e7946496250d67872691af2, 'Cosmic Wizards', 'WIZARDS'), + (0xbf26919586b95e669331b097f635a1e7209a5af0, 'Danny Blum BOC Base Red S2-20 Uncommon', 'BUND-21TS2-U-BS2-20-S-RED'), + (0xbf2d5e5782679d033507a39fe148bb61a56991a7, 'Alfredo Morelos RFC Base White SP-03 Common', 'SPFL-21SPSS-C-BSP-03-A-WHI'), + (0xbf36dab17e1a3d1359fdc85fbe300c1ffb3060e3, 'Orc', 'RO'), + (0xbf3cd3d224acff11a04dd8ed4c0efe4a1a2e19fc, 'New York Yankees® DJ LeMahieu 2B Base Motion Platinum 350 Epic', 'MLB-S221-E-B350-PLA'), + (0xbf3d4791be814d167c2ae92bdbea6e85b574f6ef, 'Eye Candy Digital Animation Facsimile Signature Color 4 Super Rare', 'GPK-NFT22-S-AFS4-A-COL'), + (0xbf47554d320e8cc848ae36f861d8513b76646e9c, 'FC Schalke 04 Benito Raman Base Players Gold 59 Rare', 'BUND-SC21-R-BP59-GLD'), + (0xbf4eb0be33361f56c483322faa19167c20530942, 'Detroit Tigers® C.J. Cron 1B Base Motion Platinum 504 Epic', 'MLB-S221-E-B504-PLA'), + (0xbf4f7bcd86488587035311d250afece2e70ebb70, 'Rome is Burning Event Exclusive Comic Cover Cyan 2 Epic', 'GDZ-RAT21-E-CCE2-A-CYN'), + (0xbf4fbc6f93092b256922c33f21cd42cd93c78776, 'Colorado Rockies™ German Marquez Base Blue 1246 Common', 'MLB-22PRI-C-B169-M-BLU'), + (0xbf51427be99a91e7c1a043f15a744fded820b1e7, 'Mountain Nodes Tier 2', 'MNT2'), + (0xbf58607956f8047ba229f05ff1cb16a4a6896931, 'Konrad Laimer RBL Motion Aqua Refractor S1-04 Rare', 'BUND-21TS1-R-MS1-04-V-AQU'), + (0xbf6eb786c5297d150294c8eca993d54791bbbd4d, 'Philadelphia Phillies® Zach Eflin Base Vintage Stock 179 Super Rare', 'MLB-22S1-S-B178-M-VS'), + (0xbf703c7a735f6badc34c4a23e54ce0ebb0ec61b7, 'Spooky', 'Avax'), + (0xbf7906fa2c688b0c1e3c9e34d4edadf93a39c8d7, 'San Francisco Giants® Joc Pederson National League Base Golden 15 Super Rare', 'MLB-22ASG-S-B15-M-GLD'), + (0xbf85b59b82c5f404954cacf1ddc95b06ab45ef8a, 'FC Schalke 04 Salif Sané Base Players Gold 60 Rare', 'BUND-SC21-R-BP60-GLD'), + (0xbf90d619c11c2c3228e7580e17b2a1023e461eb7, 'Full Moons', 'fMOONS'), + (0xbf915ffa347f3617e032d12a437ab9e4d34aa1ad, 'Washington Nationals® Juan Soto 2022 Inception Gold 18 Legendary', 'MLB-22LEG-L-22INC18-M-GLD'), + (0xbf96d104d3e247cfe718b61de82fb835b8e5f0a9, 'Houston Astros® Lance McCullers Jr. P Base Motion Rainbow 610 Rare', 'MLB-S221-R-B610-RAI'), + (0xbf97038b07421cd7142e41148dc1c3bd121e1e54, 'VfL Wolfsburg Josip Brekalo Base Players White 31 Common', 'BUND-SC21-C-BP31-WHT'), + (0xbf98dc27cd14edfdd972944856cc9eb197cdb2f5, 'A.P. Morgan Sailing Club', 'APM'), + (0xbf9bf137d282c3847d75704c6cd8b3b9e1c99898, 'National League™ Jake Cronenworth Base Blue 1298 Common', 'MLB-22PRI-C-B206-M-BLU'), + (0xbf9ff89eecbe662ee9926f64f1bcaed95d6212b5, 'Minnesota Twins® Alex Kirilloff Facsimile Signature Gold 3041 Super Rare', 'MLB-22PRI-S-FS2-M-GLD'), + (0xbfa2d0ab5740b967fefb35ee0fd30e96a7e2f5ac, 'New York Mets® Francisco Lindor SS Super Short Print Motion White 489 Epic', 'MLB-S221-E-SSP489-WHI'), + (0xbfa2d52e9442403fb2d1f3e0bcde2b5a4ce83fb5, 'Boston Red Sox® Christian Vazquez Base Independence Day RWB 63 Rare', 'MLB-22S1-R-B63-M-RWB'), + (0xbfa404463de73d4aa8d11f69f7193c5f7faf525c, 'New York Mets® Michael Conforto Base Vintage Stock 37 Super Rare', 'MLB-22S1-S-B37-M-VS'), + (0xbfac69898d3b4803a48412c162a4cd2313157800, 'Jonathan Burkardt M05 Club Phemons Gold S4CPH-15 Legendary', 'BUND-21TS4-L-CPHS4CPH-15-V-GOL'), + (0xbfaefc2e76c56390a4e6ace38b87603f06537d7a, 'Chicago Cubs® Ian Happ Base White 143 Common', 'MLB-22S1-C-B142-S-WHI'), + (0xbfb5827f5bbaa162dbad184b02670c29d88e8946, 'Faith Fall Facsimile Signature Color 24 Uncommon', 'GPK-NFT22-U-FS24-S-COL'), + (0xbfb59a88c595818faad8544d9532df23c81a6715, 'Miami Marlins® Trevor Rogers P Base Static Gold 563 Uncommon', 'MLB-S221-U-B563-GOL'), + (0xbfbb8b4793d2d04a92af129dbb4b35d59b78a3d1, 'BvBGame Lobby', 'BvB'), + (0xbfbbb205c5ca1744378d013d070a9d3c123b432e, 'League Of The Fallen', 'LOTF'), + (0xbfc396ed2af5acfb8dd6915fb54f06991707ed45, 'Houston Astros® Alex Bregman Facsimile Signature Red 68 Rare', 'MLB-22S1-R-FS4-S-RED'), + (0xbfc4958da223405bcdcfcb47a2fc9c7d28406622, 'Crystal Winter Facsimile Signature Color 21 Uncommon', 'GPK-NFT22-U-FS21-S-COL'), + (0xbfcb7e0b5f15b644e31fa477580af04988fcb9f8, 'Baltimore Orioles® Ryan Mountcastle 2022 Definitive Gold 3 Legendary', 'MLB-22LEG-L-22DEF3-M-GLD'), + (0xbfde3f7aaddcd0539fec25169d3c7bf43e2c45f8, 'St. Louis Cardinals® Yadier Molina Postseason Base Red 41 Rare', 'MLB-21POST-R-B41-M-RED'), + (0xbfde52e9f72fab52d2b867a1a1e4c48099974bda, 'Chicago Cubs® Kyle Hendricks Base White 168 Common', 'MLB-22S1-C-B167-S-WHI'), + (0xbfdf14731a7ee6d10bc9976192bc2be4fee38e9d, 'Trading Card Crew #1', 'TCC1'), + (0xbfe976ff69f6bf87e30715a8f26ffed2bd7c6355, 'Common Comic 20 1-20 Bazooka Joe 2021 NFT', 'BZK-C-20C'), + (0xbfeaf270ecd1a94802ff1f469bf48f203cb8b134, 'Miami Marlins® Jorge Alfaro Base Independence Day RWB 36 Rare', 'MLB-22S1-R-B36-M-RWB'), + (0xbfebe8d04e7a98b4f17a91d4a255243ace3c0ce2, 'FC Koln Sebastian Andersson Base Players Team Color 70 Uncommon', 'BUND-SC21-U-BP70-TMC'), + (0xbfef97e814d70a045838c2b2141abcbf80bb0cd9, 'VOXELKIDS', 'VXLKDS'), + (0xbff7f70a4382c3a6d3885cab93df62ed6a9e1f1e, 'FC Schalke 04 Bastian Oczipka Base Players Team Color 56 Static Facsimile Signature Rare', 'BUND-SC21-R-BP56-SFS-TMC'), + (0xbffbbdf55a238260e42880f4d4b1ebd2ae176e0b, 'Toronto Blue Jays® Tanner Roark P Base Motion Rainbow 522 Rare', 'MLB-S221-R-B522-RAI'), + (0xbffe5e12e1b7194669ed578c76802c7a476e464d, 'Los Angeles Dodgers® Max Scherzer Base Pink 1091 Uncommon', 'MLB-22PRI-U-B104-M-PNK'), + (0xbffee119c93586d9a09c387d1817fd6682fb410b, 'TAPE', 'TAPE'), + (0xbfff36e949c2c508b9896408384219f9bcb34282, 'Detroit Tigers® Jeimer Candelario Base Blue 1041 Common', 'MLB-22PRI-C-B23-M-BLU'), + (0xc005fc3864c83284c2e061eca13ecac28d2c9aa2, 'PAPAYA', 'PAPAYA'), + (0xc01b3e9678c73a96ba51d040ce435d1c28fd1e1d, 'YetiSwap User NFTs', 'YSUN'), + (0xc01e653a1be41dc25325bafd779a3b00e6cf21c0, 'San Diego Padres™ Joe Musgrove P Base Static White 411 Common', 'MLB-S221-C-B411-WHI'), + (0xc022e5de4ff6f3ca8ac065aff2896357f026e283, 'Yield Whales', 'YWNFT1000'), + (0xc023e6f42339b2b572232a39e812b2107461759c, 'Frens of Art', 'FRNSART'), + (0xc0242f94cabc8c7ddd69d94c1be376da1058796d, 'Rare Comic 61 2-13 Bazooka Joe 2021 NFT', 'BZK-R-61C'), + (0xc029713e92383426c9b387b124c0bf6271d08b80, 'avaxAVLT', 'avaxAVLT'), + (0xc039a824b74f9154f5e30d342c13a69004598dd0, 'Smol Devils', 'SMDVL'), + (0xc040391468dd91607f216130b250468405d2469d, 'Smol Cars', 'SmolCars'), + (0xc04490748485979adf284bf333eed30f1d2044aa, 'Milwaukee Brewers™ Keston Hiura 2B Base Static White 521 Common', 'MLB-S221-C-B521-WHI'), + (0xc044a4ec9a7d1f88bccdbf4ba7ba8c2910c20151, 'Yield Whales', 'YWNFT10'), + (0xc0468016b1e726439f0c5fb191936c66b6e68e77, 'Meta Cards Exclusives', 'METAEX'), + (0xc04d1debb8c24ecfad4588fd3ec768d419c55777, 'Chicago White Sox® Cesar Hernandez Base White 28 Common', 'MLB-22S1-C-B28-S-WHI'), + (0xc052dc569039139dda01233116b6f68cfde4809d, 'The Great War', 'TGW'), + (0xc05aeb0e6c245ee5df1dade506140bc7b71029c0, 'Boston Red Sox® Matt Barnes Postseason Base Red 72 Rare', 'MLB-21POST-R-B72-M-RED'), + (0xc05f44344534e90230ee245664921d05fdf89a2c, 'Seattle Mariners™ Kyle Lewis OF 1986 Anniversary Facsimile Signature Motion Chrome 86TC-44 Legendary', 'MLB-S221-L-1986AFS86TC-44-CHR'), + (0xc065f5021ad53b2e878d1f3e32eca16fa153325c, 'Milwaukee Brewers™ Mark Mathias OF Base Motion Vintage Stock 421 Super Rare', 'MLB-S221-S-B421-VS'), + (0xc0756260d8d28293f89138ec030766a7da0b6c68, 'Rare Comic 84 2-36 Bazooka Joe 2021 NFT', 'BZK-R-84C'), + (0xc0783ac954144a3bb25cff5c3cc7c2fddd472e34, 'Super Rare Comic 63 2-15 Bazooka Joe 2021 NFT', 'BZK-S-63C'), + (0xc085e5e0a83701ba1e1af7abe557179653f90fc9, 'Goblins Snopp Dogg', 'GSD'), + (0xc0883758de4e600f36ae517f7978bf71832d809a, 'Boston Red Sox® 2021 Topps MLB Inception Set Completion Reward Team Colors 4 Epic', 'MLB-21INCSC-E-21INCSCR4-M-TC'), + (0xc08a1005194adea558d41c5176f6d7e018b633a7, 'Borussia Dortmund Raphaël Guerreiro Base Players Gold 9 Rare', 'BUND-SC21-R-BP9-GLD'), + (0xc0974fa3fc478116e66a0dc21ac9bd67940d1533, 'The Olympians of Avalanche', 'OoA'), + (0xc099f8135b4424c07697f33a672e4b5377c265fa, 'Soups', 'SOUP'), + (0xc09b83bdeaaf92ff85882d69da9e90bfaf0e2f44, 'Reece Oxford FCA Club Phemons Silver S4CPH-02 Super Rare', 'BUND-21TS4-S-CPHS4CPH-02-S-SLV'), + (0xc09e650037ca51d617174b5320db1de01b8e9ea7, 'Miami Marlins® Lewin Diaz 1B Base Motion Rainbow 417 Rare', 'MLB-S221-R-B417-RAI'), + (0xc0a19fa0ed6ab3cc82110061f7f02638e9eb0f66, '2022PDIIndustryInnovatorsSummit', 'PDI2022'), + (0xc0b10f09e6fd318220aa086c10b6bcdced8993dc, 'BvBGame Lobby', 'BvB'), + (0xc0b34559d3def3f8d0d8dc05f1404d4887462935, 'San Francisco Giants® Tommy La Stella Base White 241 Common', 'MLB-22S1-C-B238-S-WHI'), + (0xc0b3e5710647d5566408366637e303405ea69c70, 'Sidboy V.2', 'SID'), + (0xc0b4ab87f91b19c2bc17e9d4f50e72dbf4561c76, 'San Diego Padres™ Yu Darvish P Base Motion Platinum 357 Epic', 'MLB-S221-E-B357-PLA'), + (0xc0b816bc7995e272f02e2bb5729cee8f7d4c07ba, 'Chicago White Sox® Liam Hendriks Postseason Base Red 16 Rare', 'MLB-21POST-R-B16-M-RED'), + (0xc0b8fbd701a63759d93e761f5aace56bb2cf3161, 'Prippe', 'PIE'), + (0xc0b93b1007c6f65e685d544d77660301da969f33, 'Cincinnati Reds® Eugenio Suarez Base White 314 Common', 'MLB-22S1-C-B310-S-WHI'), + (0xc0b9ae517ebe077f70d12e3c487b8f9ccb98bebe, 'Anguirus Base Collectible Blue 9 Common', 'GDZ-RAT21-C-B9-S-BLU'), + (0xc0bba1e830183e59f6fe9fc1c05c62daae1ef842, 'Oakland Athletics™ Chad Pinder Base Glitch 95 Uncommon', 'MLB-22S1-U-B94-M-GLI'), + (0xc0c47e4361f2df66a77dc2e9eed7f5e27499a69a, 'Super Rare Comic 17 1-17 Bazooka Joe 2021 NFT', 'BZK-S-17C'), + (0xc0c9bbed486f6519cbd1928d50901a140cbada1f, 'AVAX_NEON_CLUB', 'NEON'), + (0xc0cb9170b41993f3e09ab32f2a9dd17750067a85, 'Texas Rangers® Sherten Apostel 1B/3B Base Static White 358 Common', 'MLB-S221-C-B358-WHI'), + (0xc0d0f84f31a0acd3b73485d6eeaa25bdc6a1a5eb, 'Doodleverse Specials', 'DDVS'), + (0xc0d112f83c6f4f0396952b9b2d28dc938069a8b3, '2022 Topps Pristine Baseball NFT Collection Challenge Rewards 2-Pack', 'MLB-22PRI-REWARD-PACK'), + (0xc0d12c307e67c7dd3681f5bd9788e049e56b4aff, 'Angels® Jo Adell Base Blue 1175 Common', 'MLB-22PRI-C-B69-M-BLU'), + (0xc0d82173f2c6ff1e14709d20672f51adc7dbfcdc, 'Time Piece Token', 'TPT'), + (0xc0d9be5ca90fc9df515d8f9b7eede5b88c46a3f9, 'Angels® Base Static White 621 Common', 'MLB-S221-C-B621-WHI'), + (0xc0db58909531e97655be9511de2fd80e155a8eb8, 'Cameron Carter-Vickers CEL Base Purple SP-04 Super Rare', 'SPFL-21SPSS-S-BSP-04-A-PUR'), + (0xc0ea9f42a56d6b1bb0b83b5683916e95283a801b, 'DECENTRAL HORIZONS', 'DH'), + (0xc10926d16a27de2914e7a3754574eff273cd159f, 'Atlanta Braves™ Ian Anderson Championship Series Silver 24 Epic', 'MLB-21POST-E-CS24-M-SIL'), + (0xc10b544bcdc0f0da034f6c325fb94559f99b9b3d, 'Baltimore Orioles® Jahmai Jones 2B Base Static White 507 Common', 'MLB-S221-C-B507-WHI'), + (0xc10cf5f6975cc1d84000cb05871e8fb137a8f184, 'Arizona Diamondbacks® Pavin Smith Base Vintage Stock 106 Super Rare', 'MLB-22S1-S-B105-M-VS'), + (0xc11529d3476cde83430911386d8c606029163576, 'Toronto Blue Jays® Base Glitch 109 Uncommon', 'MLB-22S1-U-B108-M-GLI'), + (0xc116fade4e80047bbe7fef41e237dee3196efc7d, 'Taked PixCat', 'SPCAT'), + (0xc11c6977c9547866ecebb877c2b2d3580b49e441, 'fgh', 'fgh'), + (0xc121efadd530b8b013a17ad06465d3ce13145219, 'Miami Marlins® Trevor Rogers P Base Static White 563 Common', 'MLB-S221-C-B563-WHI'), + (0xc124705424a0b6e172be0b5a786296b33627489a, 'Tampa Bay Rays™ Austin Meadows Postseason Base Red 3 Rare', 'MLB-21POST-R-B3-M-RED'), + (0xc1248efe4cee8e2341bc736fcc634067c64a55a6, 'Axelar Robot', 'AXELAROBOT'), + (0xc1253183750306247d47510bb960e496b660305e, 'At the Edge of Change', 'ATEOC'), + (0xc1290fb83932a3f49dd814c873dfac0fadb537f5, 'Moonbuddies World Cup', 'MBWC'), + (0xc12ba8b227fe4c90c1ee65fb4eeb928cda26939a, 'FOXY @ 2', 'FXY'), + (0xc135a5a1f3a691711fa1123eea2f51d1431b327e, 'San Francisco Giants® Kris Bryant Short Print White 86 Rare', 'MLB-22S1-R-SP20-M-WHI'), + (0xc136bae656d8c28a7a77c147fad585daa82eda5b, 'Arizona Diamondbacks® David Peralta OF Base Static Gold 640 Uncommon', 'MLB-S221-U-B640-GOL'), + (0xc1461592c32bd156bf8aceaa35cfa34ace0d0ccf, 'SV Werder Bremen Romano Schmid Young Stars Team Color 176 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS176-SFS-TMC'), + (0xc1480a9f8414dd707e87d848154fa8c8b70c9207, 'Robo Apes', 'RBPS'), + (0xc16052b1af851be7c73eb05f02e6f0d97d9a5e7d, 'Los Angeles Dodgers® Walker Buehler Division Series Bronze 47 Super Rare', 'MLB-21POST-S-D47-M-BRO'), + (0xc16841d4d4b82611fe80cdd94692cdbf5cd7d0d7, 'Abracadavrax', 'AVX'), + (0xc1745a1f9d10fa8be5dfa9e37b380f659aaabf00, 'Colorado Rockies™ Ashton Goudeau Rookie and Future Phenoms Facsimile Signature White 14 Rare', 'MLB-INC21-R-RC14-WHT'), + (0xc17db22d8360af0bc15b4b84678910d25b392f8a, 'Common Comic 6 1-6 Bazooka Joe 2021 NFT', 'BZK-C-6C'), + (0xc17fff78ac6dfb46a4e2ca199b34aded9b6dcc3a, 'Uncommon Comic 51 2-3 Bazooka Joe 2021 NFT', 'BZK-U-51C'), + (0xc182318bb0a805c48f10b90613ff1df200089e6b, 'New York Yankees® Gleyber Torres Inception Base White 69 Common', 'MLB-INC21-C-IB69-WHT'), + (0xc185812accba12ca0fb9eb1c7c50fec556734b32, 'Europe Trip 2021', 'EU21'), + (0xc189b15c2b3c1021f8ec4af0594a7edd80abd04a, 'Angels® Shohei Ohtani Base White 1 Common', 'MLB-22S1-C-B1-S-WHI'), + (0xc18b0c88122d777daa2b4968f90a224289ef6aff, 'VM x AvaxPDX - Cascade Gym', 'gLW'), + (0xc18cb7e6673eb22d2f87f2c3b46d20fdab62f4ef, 'Philadelphia Phillies® Spencer Howard Rookie and Future Phenoms Facsimile Signature Blue 62 Super Rare', 'MLB-INC21-S-RC62-BLU'), + (0xc18e47982e885c618d9ed7342cb7dcdc8dba79b5, 'San Francisco Giants® Tony Watson P Base Static Gold 589 Uncommon', 'MLB-S221-U-B589-GOL'), + (0xc193c31078d9eefe5eaa04f4d7e62a590c426f2d, 'Atlanta Braves™ Nick Markakis OF Base Static Gold 641 Uncommon', 'MLB-S221-U-B641-GOL'), + (0xc1a1fe68e953c5ff5802a75f2fda1e5de62f42cc, '1973 Megalon Rookie Card Color 5 Super Rare', 'GDZ-RAT21-S-RC5-S-COL'), + (0xc1a6fb2b415aec7d83addd614194c489d743af7a, 'Atlanta Braves™ Travis d''Arnaud Topps NOW White 1021 Rare', 'MLB-21NOW-R-TN1021-WHI'), + (0xc1a87dfdfc4ddda389cfa013d11c77b426b67f23, 'André Hahn FCA Animation Black Refractor S4-49 Epic', 'BUND-21TS4-E-AS4-49-V-BLA'), + (0xc1a8bee850187dc2b1b228f9f64d1011c4fcd719, 'BullDoggy', 'BullDoggy'), + (0xc1b73a4ca758849c2f4f889b25f9c9564be98fcb, 'CryptoVikings', 'VIKING'), + (0xc1b80b3e87eb7055cce4245b5f3f4b45b08776cd, 'Burning Bennie Base Color 6 Common', 'GPK-NFT22-C-B6-S-COL'), + (0xc1c738bbc652bd6a30bcf1fa6e1c56b64d1c2437, 'New York Yankees® Gary Sanchez Wild Card Contenders Blue 11 Common', 'MLB-21POST-C-W11-M-BLU'), + (0xc1c8284a1b916ca59db00de22a9a4d092592a1a9, 'Kirbs', 'KIRB'), + (0xc1cab9839050f7a4556fc1e3dce3b757c8acf3fa, 'Philadelphia Phillies® Mickey Moniak OF Base Static Gold 457 Uncommon', 'MLB-S221-U-B457-GOL'), + (0xc1cd7771724eb76a21bc7ab2240b47a1b7122104, 'Tampa Bay Rays™ Randy Arozarena OF Base Static White 600 Common', 'MLB-S221-C-B600-WHI'), + (0xc1d19e666891b92e676d396521c7d5f8ed2abae3, 'Atlanta Braves™ Charlie Morton Base Independence Day RWB 82 Rare', 'MLB-22S1-R-B82-M-RWB'), + (0xc1d218332551d5542d1664fd00b45d9c79646002, 'AvaMountains', 'AVAM'), + (0xc1d362b50c88563c5e17fd641b79a315c5f7dcca, 'New York Yankees® Aaron Judge Inception Base Blue 65 Uncommon', 'MLB-INC21-U-IB65-BLU'), + (0xc1d4e69edaa6fb599ea3c782424d1ad01ffacf25, 'Scruffies', 'FREN'), + (0xc1e697d4d8142b90e51f2a02d69f545dfbaae796, 'Boston Red Sox® Alex Verdugo Base Blue 1065 Common', 'MLB-22PRI-C-B58-M-BLU'), + (0xc1e78e60f7b166da247587609cdca5718f516799, 'Chicago White Sox® Steve Cishek P Base Motion Rainbow 407 Rare', 'MLB-S221-R-B407-RAI'), + (0xc1ea41d7e20b83525d81e5011641dbddaae4d034, 'Miami Marlins® Base White 326 Common', 'MLB-22S1-C-B322-S-WHI'), + (0xc1ec5656801905a14948bde4ec5ea2144d460dee, 'Erling Haaland DOR Club Phemons Silver S4CPH-06 Super Rare', 'BUND-21TS4-S-CPHS4CPH-06-S-SLV'), + (0xc1f6eaf9cb3f67831193e22d86880cbde911d093, 'Oakland Athletics™ Ramon Laureano OF Base Static Gold 613 Uncommon', 'MLB-S221-U-B613-GOL'), + (0xc20414dea3af7b8897db7a8aed788b0045cc9b27, 'Gorosaurus Base Collectible Blue 20 Common', 'GDZ-RAT21-C-B20-S-BLU'), + (0xc2084484629f7fba574f5bc9b72c3138bba95abc, 'Godzilla Toppsicle Raspberry Blue 1 Epic', 'GDZ-RAT21-E-TP1-A-BLU'), + (0xc209eae7642946109efbadc1f340618680b8af62, 'Angels® Jared Walsh 1B Base Motion Platinum 575 Epic', 'MLB-S221-E-B575-PLA'), + (0xc20d26428d3bc2eb01e1601532c7f68d58a28d03, 'American League™ Shohei Ohtani Base Blue 1268 Common', 'MLB-22PRI-C-B188-M-BLU'), + (0xc20e1601f015d18c0f4a3aaae1f09cf6501b2072, 'NODE BOOSTER', 'BOOSTER'), + (0xc2217da2b06e744bc25a1465cbff2c9d8c65f74d, 'PyscoqLeCoq', 'PLC'), + (0xc22b48a7ef27ed9c69c1e730d4489748aa5fda2b, 'Avax Gorilla', 'AVG'), + (0xc22f1ccbf2958f672e8b1dc4e9ea16eb4ee62ec4, 'Rare Comic 13 1-13 Bazooka Joe 2021 NFT', 'BZK-R-13C'), + (0xc237e74cc24f00247f8f3ed24ef342144928c6ea, 'Rare Comic 103 2-55 Bazooka Joe 2021 NFT', 'BZK-R-103C'), + (0xc238da6d5e17a47d03c3abf753055f4daa7526f5, 'New York Yankees® Mike Tauchman OF Base Motion Rainbow 449 Rare', 'MLB-S221-R-B449-RAI'), + (0xc2457f6eb241c891ef74e02ccd50e5459c2e28ea, 'Spore NFTv1', 'gSPORE'), + (0xc249c66ada4095daf5da5870c97e7ea88e34b052, 'Diamond Hans Animation Color 19 Rare', 'GPK-NFT22-R-A19-A-COL'), + (0xc24e8daa19a8610000ee41a646a7e2d3fa05fa0e, 'Super Chargies', 'SUP'), + (0xc251c20708134cf3d1925da8ddd2c2cf99725f30, 'Chicago White Sox® Steve Cishek P Base Static White 407 Common', 'MLB-S221-C-B407-WHI'), + (0xc25501433563d0f427d45b3b274beeba205aecf5, 'Detroit Tigers® Willi Castro SS Base Static Gold 339 Uncommon', 'MLB-S221-U-B339-GOL'), + (0xc2557019d8f011dbe91da322ea857cf5e504bed7, 'Boston Red Sox® Christian Arroyo 2B Base Static White 338 Common', 'MLB-S221-C-B338-WHI'), + (0xc25a5cc1ad9e2b86845c16a128ac6718803cea0c, 'Super Rare Comic 60 2-12 Bazooka Joe 2021 NFT', 'BZK-S-60C'), + (0xc2711e15382ec4f0fa2f38e740949365efc24f6f, 'Angels® Reid Detmers Base Glitch 201 Uncommon', 'MLB-22S1-U-B200-M-GLI'), + (0xc2749cd00229cf7fab28a3e31bb7cc1c1e69c6e7, 'Colorado Rockies™ Jon Gray Base Vintage Stock 161 Super Rare', 'MLB-22S1-S-B160-M-VS'), + (0xc2769f793cd857a5cba8aac649f515ab854b0e6c, 'Oakland Athletics™ Matt Chapman Inception Base Blue 70 Uncommon', 'MLB-INC21-U-IB70-BLU'), + (0xc27a1c923367919a500de5894101493c5ab9b143, 'St. Louis Cardinals® Tyler O''Neill OF Base Motion Platinum 477 Epic', 'MLB-S221-E-B477-PLA'), + (0xc282e13f88ec196949200ec6f5dfd7fa263b4f04, 'Toronto Blue Jays® Ken Giles P Base Static White 422 Common', 'MLB-S221-C-B422-WHI'), + (0xc2928928ff2f4f970cf8c7e8196b5235de1b03c0, 'Angels® Reid Detmers Facsimile Signature Slab Gold 3073 Epic', 'MLB-22PRI-E-FS41-M-GLD'), + (0xc296b278e0aa272b04a425975e277ab77186527a, 'Eintracht Frankfurt Martin Hinteregger Base Players Team Color 42 Uncommon', 'BUND-SC21-U-BP42-TMC'), + (0xc2b2abc05178e93add74a74a495adac0c1cf63b0, 'BOOhoo Ghosts', 'BOO'), + (0xc2bc6dc23c5cfaa88971aec07b2ba3b6570d50c0, 'Toronto Blue Jays® Tanner Roark P Base Static Gold 522 Uncommon', 'MLB-S221-U-B522-GOL'), + (0xc2bfc9fe75510d3b17507bf4acaa48e2fa7db826, 'LovelyWorlds', 'LWB'), + (0xc2c1f832898bcf6e39735bedb42a6912d5137cbd, 'Los Angeles Dodgers® Team Cube 2.0 Team Colors 13 Legendary', 'MLB-22S1-L-TC213-M-TMC'), + (0xc2d4535cc182e2bce0fa5c064def58b53c9b270d, 'Boston Red Sox® Eduardo Rodriguez Base Vintage Stock 192 Super Rare', 'MLB-22S1-S-B191-M-VS'), + (0xc2d72512355fafc2df47b3a4344595f1827345e9, 'Texas Rangers® Brock Holt Base Independence Day RWB 113 Rare', 'MLB-22S1-R-B112-M-RWB'), + (0xc2de0578e277ea4bd846da41a47940123f993603, 'St. Louis Cardinals® Tyler O''Neill Postseason Base Navy 43 Uncommon', 'MLB-21POST-U-B43-M-NVY'), + (0xc2e69ef96665549f0152143c30ec49ec0328ec87, 'New York Yankees® Trey Amburgey Base Glitch 263 Uncommon', 'MLB-22S1-U-B260-M-GLI'), + (0xc2e7d248a88cd1e902f006485d547ec18473100f, 'King Ghidorah Fly-by Traditional Art CMYK Offset 7 Uncommon', 'GDZ-RAT21-U-TA7-S-CMYK'), + (0xc2ee1cf622dcb980011f44e81cbbad982c4a7ed1, 'Paragon Gnomes', 'PGNO'), + (0xc2f1d6fb7d0af47ac49924c041c6d3005669ea78, 'Washington Nationals™ Juan Soto Stars of MLB Chrome Night SMLBC-23 Legendary', 'MLB-22S1-L-SMLBC22-M-NIT'), + (0xc2f3e494e4d46bcbaf4a3b158dd6b59504e8cba3, 'CreativityMarket', 'Artwork'), + (0xc2fe3844e2b9b491887e74a6d3cc2e2a771e6ddf, 'Houston Astros® Alex Bregman Base Blue 1072 Common', 'MLB-22PRI-C-B49-M-BLU'), + (0xc2ff726cc248b42472bd2bf8dded7bf2ec50aa4c, 'RB Leipzig Amadou Haidara Base Players Team Color 15 Uncommon', 'BUND-SC21-U-BP15-TMC'), + (0xc2ffe075fbcd09b40916ef299a56fc0666ff4cdd, 'Milwaukee Brewers™ Josh Hader P Base Static Gold 596 Uncommon', 'MLB-S221-U-B596-GOL'), + (0xc30509bf7d66fc2cbb6a5619f49231e0cecd2b05, 'American League™ 2021 Strikeout Leaders Base White 138 Common', 'MLB-22S1-C-B137-S-WHI'), + (0xc305c48042e4ac15ac8d1494262c245d4888f5cc, 'Toronto Blue Jays® Base Motion Rainbow 438 Rare', 'MLB-S221-R-B438-RAI'), + (0xc30ad168aca4c123c61ea112fdfc9e01c9a3808c, 'Sprot-Club Freiburg SCF Insert Pennant Team Color S2P-04 Uncommon', 'BUND-21TS2-U-IS2P-04-A-TMC'), + (0xc30c9006cdb56e67a3084a30817f7bbd3dfd82a2, 'Colorado Rockies™ Trevor Story Inception Base Blue 24 Uncommon', 'MLB-INC21-U-IB24-BLU'), + (0xc30e0217f8bf4f167bbe7ffadc6c2d472883b1e7, 'AVAX 33', 'A33'), + (0xc30e83f341df249b26059c1c22bd2936ba5554c6, 'Gigan Toppsicle Purple Grape 1 Epic', 'GDZ-GVG22-E-RTP1-A-PUR'), + (0xc313180bb4b2cfc345c7d5dbc26bf8867204fc68, 'Tampa Bay Rays™ Austin Meadows 1987 35th Anniversary Wood T87-15 Common', 'MLB-22S1-C-1987A12-M-WD'), + (0xc322f43adffff29c35f3086d1ab73de9b6012e49, 'Detroit Tigers® Jeimer Candelario Base Pink 1041 Uncommon', 'MLB-22PRI-U-B23-M-PNK'), + (0xc325059569846ed595b2134dbe8ccd6306fe8d68, 'Avalanche Yeti Surf Club', 'AYSC'), + (0xc325dd0d94022615f0635f5cb00a8237399c9eb6, 'Pittsburgh Pirates® Mitch Keller Base Vintage Stock 251 Super Rare', 'MLB-22S1-S-B248-M-VS'), + (0xc32eac7a5c4a796b13e3091655f9964d425a7d70, 'smol universe', 'smu'), + (0xc33765bca7557dc33cc84651087dd9b36fc241e9, 'Texas Rangers® Sam Huff C Facsimile Signature Static Red 654 Epic', 'MLB-S221-E-FS654-RED'), + (0xc33bbf18b1e29de974b8e4b1ccd2aecb8acf3444, 'Tampa Bay Rays™ Shane McClanahan P 1986 Anniversary Static Team Colors 86B-5 Super Rare', 'MLB-S221-S-1986A86B-5-TMC'), + (0xc33fc9fdf299d4b9f0e849eab808572601de44e1, 'Konrad Laimer RBL Animation Black Refractor S1-04 Epic', 'BUND-21TS1-E-AS1-04-V-BLA'), + (0xc3442060e23e53fd2cb72861de46e192e79d448e, 'Arizona Diamondbacks® Carson Kelly Base Glitch 177 Uncommon', 'MLB-22S1-U-B176-M-GLI'), + (0xc34d1f6e9c1cbd4b403cf28fff553c4b352df975, 'Music Ape', 'MCA'), + (0xc3504e2bde3ba5725a4c267387a342ed9b3e4a2e, 'Minnesota Twins® Alex Kirilloff OF Short Print Motion White 413 Super Rare', 'MLB-S221-S-SP413-WHI'), + (0xc35f614d85b34a5fe1c750b25001dafd1151acfb, 'Christopher Nkunku RBL Top Players Facsimile Signature Team Color TK-05 Epic', 'BUND-22TK-E-TPTK-05-S-TMC'), + (0xc36639e67ba60d231bade63c57c9fd6cd238ce15, 'Chicago White Sox® Tim Anderson Regular Season Division Winners RWB 10 Rare', 'MLB-21POST-R-R10-M-RWB'), + (0xc36b7f6f8703248cb260364fe560605dfad605e5, 'Colorado Rockies™ Brendan Rodgers Base White 232 Common', 'MLB-22S1-C-B229-S-WHI'), + (0xc36f4b4d09ea31d4c63099388a6adb04cf0aeaee, 'Houston Astros® Yordan Alvarez Postseason Base White 52 Common', 'MLB-21POST-C-B52-S-WHI'), + (0xc36f78ad6de8f6db70319b9f5891c7ce642ca92f, 'do all nuns go to heven?', 'HEVN'), + (0xc37701bb9da07e95a15780a6950c16cc59087b30, 'Boston Red Sox® Eduardo Rodriguez Championship Series Silver 7 Epic', 'MLB-21POST-E-CS7-M-SIL'), + (0xc37bfdddb2dfca36aaea5d9a6f39315d4339083c, 'misc', 'NB'), + (0xc37c0890c2210efcba87a1095caf87f5fc446e7a, 'Miami Marlins® Pablo Lopez P Base Static Gold 634 Uncommon', 'MLB-S221-U-B634-GOL'), + (0xc3816df447fa4f1790af59846023e96c20bf751c, 'New York Yankees® Mike Tauchman OF Base Motion Platinum 449 Epic', 'MLB-S221-E-B449-PLA'), + (0xc38304f3071c0b4311e456344ccfda9336454bf5, 'Atlanta Braves™ Ender Inciarte OF Base Motion Vintage Stock 515 Super Rare', 'MLB-S221-S-B515-VS'), + (0xc38328b36fcf28cb7a8f4e2dc1f208c0130eed0e, 'Boston Red Sox® Matt Barnes Base White 303 Common', 'MLB-22S1-C-B299-S-WHI'), + (0xc384c01e0b05887ba0a7c0b0689fde3281b5864c, 'Rare Comic 102 2-54 Bazooka Joe 2021 NFT', 'BZK-R-102C'), + (0xc38b170639c7924a295bdfd28b02ccf7fbaf9648, 'Philadelphia Phillies® Jean Segura Base Glitch 178 Uncommon', 'MLB-22S1-U-B177-M-GLI'), + (0xc394d31c91ddc08d5d7e9c8ec05fc04ab7703108, 'Atlanta Braves™ Kyle Muller Fresh Faces White 2207 Rare', 'MLB-22PRI-R-FF2-M-WHI'), + (0xc3a62c6d8047bd251d407bdc7202be3a06231c3b, 'Gribbly''s Creations', 'GRIBBZ'), + (0xc3abe88d19dde461a9faf551cc19f8f6d973c5b7, 'Uncommon Comic 100 2-52 Bazooka Joe 2021 NFT', 'BZK-U-100C'), + (0xc3b2d348877df4fa607466b4261dd35384efb723, 'VolareFinance NFT', 'Volare OAT'), + (0xc3b6637f785fd7ac87505af9cb3bcf265d9f4950, 'Mind of Suds', 'MoS'), + (0xc3c0bec3df7126b01ea320a6bea7a8893f1be6f6, 'Evan Ndicka SGE Animation Black Refractor S3-29 Epic', 'BUND-21TS3-E-AS3-29-V-BLA'), + (0xc3c3de8abad77396592cb2c66f0a017add48612e, 'Tampa Bay Rays™ Brandon Lowe 2B/OF Base Static White 334 Common', 'MLB-S221-C-B334-WHI'), + (0xc3db07d3a972bdb65e38014de6cd8b2d531453d9, 'New York Yankees® DJ LeMahieu Inception Base White 67 Common', 'MLB-INC21-C-IB67-WHT'), + (0xc3e0c5f07c82eb18c793180945fc8ed0544204fb, 'EYFF 2022 Super Engager', 'SUP'), + (0xc3f3bff57647c08c9d35b1e4482e78e4a2890261, 'FC Bayern Munich Alphonso Davies Young Stars Gold 145 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS145-AFS-GLD'), + (0xc4049af6a7b40cd76e8e1c44fa4f30b0dee4de6b, 'GIVE HONORARIES YOUR ENERGY', 'GHYE'), + (0xc407689deb747bcfbae80ceb9af337b54f21ba2f, 'San Diego Padres™ Jake Cronenworth Rookie and Future Phenoms Facsimile Signature Red 66 Epic', 'MLB-INC21-E-RC66-RED'), + (0xc40a1255b29fe6ddeef5f8fe642a53a0e5907235, 'Liam Boyce HEA Base White SP-15 Common', 'SPFL-21SPSS-C-BSP-15-A-WHI'), + (0xc41233d1ec2a3ebd083e8eae3ef26caa2fb2f202, 'Godzilla RAT Pages 16 & 17 Comic Page Color 14 Rare', 'GDZ-RAT21-R-CP14-S-COL'), + (0xc415126b355352a871a783957ff1ecce22551a8a, '2021 Godzilla Rage Across Time Collection Standard Pack', 'GDZ-PACK-S'), + (0xc41673284d70c12d7059860daedc7a388ecf710c, 'Boston Red Sox® Tanner Houck P Short Print Motion White 635 Super Rare', 'MLB-S221-S-SP635-WHI'), + (0xc41ad938a87ce33183b11d4a1d9ebbb6d3dc3193, 'Toronto Blue Jays® Danny Jansen C Base Static White 597 Common', 'MLB-S221-C-B597-WHI'), + (0xc41c868854d38b7f894c29d0ddb4af83f20d81d6, 'Fight Night Poster #3 Lobby Card Black and White 3 Rare', 'GDZ-GVG22-R-LC3-S-BW'), + (0xc422bd21b33a211e51c85040bbf29fcc1282b28e, 'New York Mets® Pete Alonso Pure Power Slab White 2107 Epic', 'MLB-22PRI-E-PP4-M-WHI'), + (0xc4267b8681fe5546a5880c4fdc28707b922400f5, 'Houston Astros® Yordan Alvarez American League Base White 11 Uncommon', 'MLB-22ASG-U-B11-M-WHI'), + (0xc42a0153d89ebb2fe7246607b4a59ccb31c5caec, 'Ai Chikn Art', 'ACA'), + (0xc42abda77f1ba74c2a251f0715e2f968b1cd9be1, 'Alexithymia', 'ALEXITHYMIA'), + (0xc42b1f4a29050844821b8a96fc83ab73ca8ee66b, 'SageCellars', 'SAGE'), + (0xc42bfbb6580e5de543c14f181a911a8ab3f5cb23, 'The Man With The Iron Helmet', 'MANHELMET'), + (0xc43395c546c56c4144edca18f746d785c648d92a, 'San Diego Padres™ Jake Cronenworth 2B/1B Base Motion Platinum 371 Epic', 'MLB-S221-E-B371-PLA'), + (0xc447049b832f845712692c49cb7eb714f5e519da, 'Boston Red Sox® Hunter Renfroe Base White 174 Common', 'MLB-22S1-C-B173-S-WHI'), + (0xc45268a2071908d7c316aea7ef5051da918e2ad2, 'Beauty of Oregon', 'OREGON'), + (0xc45c685a4663f9f1e81466d8fa1cf7190899f90e, 'Miami Marlins® Anthony Bender Base Independence Day RWB 160 Rare', 'MLB-22S1-R-B159-M-RWB'), + (0xc4661e61de1159bc078788c81d08906349d708c9, 'Colorado Rockies™ Dom Nunez Base White 193 Common', 'MLB-22S1-C-B192-S-WHI'), + (0xc4670cb8d36bb7373892f43a3535732c8f21d442, 'Order', 'LP'), + (0xc46c2410ed2b9b61e541fe5473bda77291a2c6ca, 'Christopher Nkunku RBL Club Phemons Gold S4CPH-14 Legendary', 'BUND-21TS4-L-CPHS4CPH-14-V-GOL'), + (0xc47115690b6c86ad112f77b2c224236f5d854ac8, 'FarmHoods', 'FRHD'), + (0xc47a6bef05c094313ae65743bfa6e85a97e23433, 'Super Rare Animated Comic 4 Memories Bazooka Joe 2021 NFT', 'BZK-S-4A'), + (0xc47c8a1209ee5e51ca33bbafefa0137bb337d264, 'San Francisco Giants® Alex Wood P Base Motion Platinum 643 Epic', 'MLB-S221-E-B643-PLA'), + (0xc47dd7d33ff3735bed68675c05af7d35d57356d5, 'Summoner', 'SMN'), + (0xc480f903efa578098ff8af3a5636afd3a534303e, 'Seattle Mariners™ Cal Raleigh Base Glitch 277 Uncommon', 'MLB-22S1-U-B274-M-GLI'), + (0xc482f3bb7708dc362b079ff53429a0c89f9d369d, 'Hope Rubyhawk: Improvisational Vocal Art', 'HRVA'), + (0xc486b1650a6978e6e2f2c15f2794da4576ae085d, 'Godzilla RAT Page 7 Comic Page Black and White 6 Uncommon', 'GDZ-RAT21-U-CP6-S-BW'), + (0xc4893cb9e982fbbbeacd0f63a2da2c4a7a3364fc, 'Philadelphia Phillies® Adam Haseley OF Base Motion Vintage Stock 590 Super Rare', 'MLB-S221-S-B590-VS'), + (0xc496bfa3668a764e2aafe78e7b567066dade8683, 'Washington Nationals® Base Independence Day RWB 218 Rare', 'MLB-22S1-R-B215-M-RWB'), + (0xc49b65e5a350292afda1f239ebefe562668717c2, 'Hyphen Liquidity Token', 'Hyphen-LP'), + (0xc49cc3beeb80848ff6150edc21ff7abc4e78b985, 'Rare Comic 54 2-6 Bazooka Joe 2021 NFT', 'BZK-R-54C'), + (0xc49f0d97af8a5870b3bd8b827540516d9ff19888, 'Hertha Berlin Dedryck Boyata Base Players Team Color 46 Static Facsimile Signature Rare', 'BUND-SC21-R-BP46-SFS-TMC'), + (0xc4a27109bc61e4fb62fcb82b78c7b05f99774abf, 'Milwaukee Brewers™ Drew Rasmussen P Base Static White 377 Common', 'MLB-S221-C-B377-WHI'), + (0xc4a76583fb6c2c9bba483a8b8bd5eba97d1c9a72, 'San Francisco Giants® Mike Yastrzemski Postseason Base Red 27 Rare', 'MLB-21POST-R-B27-M-RED'), + (0xc4ae7bf19b6f009af934524dff973c2b6da612d8, 'DSC Arminia Bielefeld Ritsu Dōan Top Players Gold 140 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP140-AFS-GLD'), + (0xc4af15f5dcc2908fa9d455297862c8e255c0de0a, 'BRAIN+', 'BRAIN+'), + (0xc4b39619aa42f530879e79767d07aa0c05428a42, 'Minnesota Twins® Luis Arraez 2B Base Motion Platinum 649 Epic', 'MLB-S221-E-B649-PLA'), + (0xc4bcd21fd33ed197f157675c3955d576335b6ba2, 'Florian Wirtz B04 Base Red S2-11 Uncommon', 'BUND-21TS2-U-BS2-11-S-RED'), + (0xc4c5c71fe70925e9a7948068ec39cfbcdeebcfc5, 'Toronto Blue Jays® Bo Bichette Inception Base Red 93 Rare', 'MLB-INC21-R-IB93-RED'), + (0xc4d9943b47c2c3e5899a6fdc6abede94c7b9315c, 'FantomSurvivor', 'FS'), + (0xc4db458fb1cd89710bd85687340068aa48913ccd, 'Kansas City Royals® Hanser Alberto Base Vintage Stock 53 Super Rare', 'MLB-22S1-S-B53-M-VS'), + (0xc4e20885653b4c74b8edde97d6f53b0f88e242c1, 'Lucas Alario B04 Animation Black Refractor S4-45 Epic', 'BUND-21TS4-E-AS4-45-V-BLA'), + (0xc4e570d47a4b43e545f33e0780dda2d210279ad3, 'Chicago White Sox® Tim Anderson American League Base White 10 Uncommon', 'MLB-22ASG-U-B10-M-WHI'), + (0xc4e8a6a89e24aaa1e23728ebff85359e31d60c36, 'Borussia Dortmund Axel Witsel Base Players White 6 Common', 'BUND-SC21-C-BP6-WHT'), + (0xc4eb31280a72670c3599afc200928a43297779fa, 'Tampa Bay Rays™ Shane McClanahan P Base Motion Platinum 408 Epic', 'MLB-S221-E-B408-PLA'), + (0xc4eef738fe93c7ba74025a4beddf719d7d8ad31f, 'Kodama Spirits', 'KODAMA'), + (0xc4f10968964fd3ec287374741ba919761267d012, 'Borussia Dortmund Youssoufa Moukoko Young Stars Team Color 148 Super Rare', 'BUND-SC21-S-YS148-TMC'), + (0xc4f9fe9614c52cbce009a60d32f8a42f09ba92c0, 'Minnesota Twins® Taylor Rogers Base Glitch 32 Uncommon', 'MLB-22S1-U-B32-M-GLI'), + (0xc4fa2f958eeb9b9f71a251bc4855b11a4c4e9947, 'Washington Nationals® Stephen Strasburg P Base Motion Platinum 400 Epic', 'MLB-S221-E-B400-PLA'), + (0xc5025520f1ba7a845a2a4ac4a755f2a8034936c6, 'Los Angeles Dodgers® Clayton Kershaw Base White 41 Common', 'MLB-22S1-C-B41-S-WHI'), + (0xc5048dfca5f16d0c7b14ed8117632ed94a01703f, 'Lukas Nmecha WOB Club Phemons Silver S4CPH-18 Super Rare', 'BUND-21TS4-S-CPHS4CPH-18-S-SLV'), + (0xc5086089d2533a93be827f2cfe6e778a37ee8713, 'Cammy Kerr DUD Base Aqua SP-31 Uncommon', 'SPFL-21SPSS-U-BSP-31-A-AQU'), + (0xc50af627c31555c1ef73dcfe11daaa4e49823a23, 'San Francisco Giants® Jeff Samardzija P Base Motion Vintage Stock 382 Super Rare', 'MLB-S221-S-B382-VS'), + (0xc50b2969cf94d81971728eb04edf313b2f305eab, 'New York Yankees® Giancarlo Stanton DH/OF Base Static Gold 642 Uncommon', 'MLB-S221-U-B642-GOL'), + (0xc50dcc005fa48a5fe337f49729c01f7c99fe49a9, 'Erling Haaland DOR Animation Black Refractor S1-02 Epic', 'BUND-21TS1-E-AS1-02-V-BLA'), + (0xc511955208593be6d502cab91ea0daba45219075, 'Faith Fall Base Color 24 Common', 'GPK-NFT22-C-B24-S-COL'), + (0xc5136bd80f5c31bcd754668cd5648df2bc668d0b, 'Philadelphia Phillies® Matt Vierling Base Independence Day RWB 316 Rare', 'MLB-22S1-R-B312-M-RWB'), + (0xc51716726113d219927b614c71be133c29e01c02, 'SoUl Kitties', 'MM'), + (0xc51a7c4332fe7053b6600cd40c5af62bd0f0b22d, 'Washington Nationals® Josiah Gray Base Blue 1219 Common', 'MLB-22PRI-C-B144-M-BLU'), + (0xc51aed152645b3b41ddf1dec6926dd31a7ba8e67, 'Colorado Rockies™ Trevor Story Base Independence Day RWB 260 Rare', 'MLB-22S1-R-B257-M-RWB'), + (0xc526959f59876e57406051fcb7e9d21d04763995, 'National League™ Freddy Peralta Base Pink 1284 Uncommon', 'MLB-22PRI-U-B196-M-PNK'), + (0xc5304d8e9e35e0d1275ab07c49fc1ec02f268da9, 'Kansas City Royals® Jackson Kowar Base Vintage Stock 264 Super Rare', 'MLB-22S1-S-B261-M-VS'), + (0xc530ba8b75ea668838091c3393def0911f033ee0, 'Toronto Blue Jays® George Springer Facsimile Signature Slab Gold 3065 Epic', 'MLB-22PRI-E-FS12-M-GLD'), + (0xc530d4e6b6ee584128a8a878dfd95d5853b9cb34, 'Borussia Monchengladbach Matthias Ginter Base Players Gold 18 Rare', 'BUND-SC21-R-BP18-GLD'), + (0xc53e5e88f2566e3fb867378980e2bad04284ba9e, 'Generals Of Freya', 'GOF'), + (0xc5445f00c4bed33788a19de5ff0edfabcabc9ef8, 'Vloaters: World Cup', 'VLOATWC'), + (0xc545b5454426467a377b51493c3abed611f44205, 'New York Yankees® Gerrit Cole Inception Base Black 68 Legendary', 'MLB-INC21-L-IB68-BLK'), + (0xc54a9627a87dfddc418b433b91d0d7a10ee339ca, 'Oakland Athletics™ Matt Olson Base Glitch 149 Uncommon', 'MLB-22S1-U-B148-M-GLI'), + (0xc550819c80022acaad4c5640b8cdf1a63a73452d, 'Crystal Winter Golden Animation Color 21 Epic', 'GPK-NFT22-E-GA21-A-COL'), + (0xc55cb965f733d739bca79072b88f8ed28bb99535, 'American League™ Marcus Semien Base Pink 1263 Uncommon', 'MLB-22PRI-U-B208-M-PNK'), + (0xc56c68b20ae3e45befd6e4dd4821229162c82130, 'Philadelphia Phillies® Bryce Harper Championship Series Broadcast RWB 1125 Rare', 'MLB-22TNP-R-CSB4-M-RWB'), + (0xc575d6de28bd847db78cdc8517c63703c580d6b2, 'New York Mets® Edwin Diaz P Base Static White 498 Common', 'MLB-S221-C-B498-WHI'), + (0xc57ba664d84e882d65eca0c9520ea044da88b1ca, 'SpVgg Greuther Fürth SGF Insert Pennant Team Color S4P-16 Uncommon', 'BUND-21TS4-U-IS4P-16-S-TMC'), + (0xc57bec18068516432a6bd45fc20b9d0f2e4e54ed, 'Super Rare Baseball Card 7 Pat Batter Bazooka Joe 2021 NFT', 'BZK-S-7B'), + (0xc589538609b0daf95927f881eb4d122fea2b456d, 'PrizeBondAvax', 'PBA'), + (0xc58e601e20834d6b5932ee86f47bcfa2eae7ae6b, 'smolkids', 'sls'), + (0xc59201485a00e736190f4a64b06894a3473b4d13, 'Leroy Sané BAY Motion Rainbow Refractor S1-01 Super Rare', 'BUND-21TS1-S-MS1-01-V-RAI'), + (0xc59467f1482c5ac89d4accdb947f327c6631e72e, 'Regenerations', 'REGN'), + (0xc596c99bd2fec1de070fd233b4cb329228f3169c, 'Cincinnati Reds® Eugenio Suarez 3B Base Motion Rainbow 627 Rare', 'MLB-S221-R-B627-RAI'), + (0xc59e92cabedfade82ada7c0f458a6c77fd500ad9, 'Chicago White Sox® Jose Abreu Base White 84 Common', 'MLB-22S1-C-B84-S-WHI'), + (0xc5a0278a201e34229407d2111c8abe4861f2e305, 'Toronto Blue Jays® Base Static White 438 Common', 'MLB-S221-C-B438-WHI'), + (0xc5a1f2782a330fcf123cbb8bdcb88d0d2a1e8599, 'New York Yankees® Aaron Judge Facsimile Signature Slab Gold 3005 Epic', 'MLB-22PRI-E-FS1-M-GLD'), + (0xc5a298ce348c07eebafb84271d75064eea113755, 'TSG Hoffenheim Andrej Kramaric Top Players Gold 106 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP106-AFS-GLD'), + (0xc5a333ed60e6382ff10f36bf2383b4db523f472b, 'Common Comic 25 1-25 Bazooka Joe 2021 NFT', 'BZK-C-25C'), + (0xc5b28c2e7607f6b56efe54913df368d7e3aa1ab3, 'New York Yankees® Luis Gil Base Blue 1229 Common', 'MLB-22PRI-C-B153-M-BLU'), + (0xc5b3dffbd0b8607184b35cfef9910fba122cb9b7, 'Void Vibrant', 'VV'), + (0xc5bad16e68b2bce5a8dac8299e088199bfef3481, 'Metamorphosis', 'MORPH'), + (0xc5c1cd49f16b9c900b2a1bdea95a555490b6d2f5, 'BMDCBT', 'BMDCBT'), + (0xc5d5ed6639c65a256a7997af181bc21867b412a8, 'Max Stryjek LFC Base Aqua SP-30 Uncommon', 'SPFL-21SPSS-U-BSP-30-A-AQU'), + (0xc5d66b08653e9c70b3c4b14995d4afbfb7611630, 'Wizard', 'WZD'), + (0xc5e2ce3efda72b4b1d88baa3ded6b3fc7411b725, 'Houston Astros® Jose Altuve Postseason Base White 49 Common', 'MLB-21POST-C-B49-S-WHI'), + (0xc5ead4ea527d674d9fcb065a6c84d4a33ce0de10, 'Houston Astros® Kyle Tucker Base Independence Day RWB 319 Rare', 'MLB-22S1-R-B315-M-RWB'), + (0xc5efeebe4e193212fb9b6ed0dbbe685f7bde59c0, 'Super Rare Comic 53 2-5 Bazooka Joe 2021 NFT', 'BZK-S-53C'), + (0xc5f95742790dddfb14ea1baa6e6e520002cf08be, 'Georginio Rutter TSG Ascendent Magenta TK-43 Uncommon', 'BUND-22TK-U-ASCTK-43-S-MAG'), + (0xc5fcdb4eb1a850b20793c09e91ad5201630c59c0, 'FC Augsburg Reece Oxford Base Players Team Color 74 Static Facsimile Signature Rare', 'BUND-SC21-R-BP74-SFS-TMC'), + (0xc6107487a76dda6242a84d703d1b498ceabe17dd, 'AeacusZ', 'AeacusZ'), + (0xc6185195ab0b9b4772aef968fae81339bf5dd526, 'PlagueGameWL', 'PLAGUEWL'), + (0xc629af83198ac1dccac464bf3e77cf41b8528bed, 'yo.wtf', 'yowtf'), + (0xc62e744046685738834b6f99edb5dc056c0b6171, 'San Diego Padres™ Blake Snell Base Pink 1083 Uncommon', 'MLB-22PRI-U-B75-M-PNK'), + (0xc641ff78ae7fff1df8da6b7f883a365a9a6ae376, 'Philadelphia Phillies® Andrew McCutchen OF 1986 Anniversary Facsimile Signature Motion Chrome 86TC-86 Legendary', 'MLB-S221-L-1986AFS86TC-86-CHR'), + (0xc657512e563aa25a5d8222e8d7e5a54d50a3278d, 'Baltimore Orioles® Ryan Mountcastle Base Blue 1004 Common', 'MLB-22PRI-C-B12-M-BLU'), + (0xc65ffcfbfd8a1e5e67d817dd12de51507199470f, 'Tampa Bay Rays™ Randy Arozarena Base Glitch 196 Uncommon', 'MLB-22S1-U-B195-M-GLI'), + (0xc6620eac524bbfd76c405c328650da89c435609a, 'Sport-Club Freiburg Christian Günter Base Players Team Color 36 Static Facsimile Signature Rare', 'BUND-SC21-R-BP36-SFS-TMC'), + (0xc67653ad85defd912eec947271029b6d3aa39af9, 'Common Comic 26 1-26 Bazooka Joe 2021 NFT', 'BZK-C-26C'), + (0xc6781ed8eb262c4894ffee658aa8ecf3227ca647, 'Tampa Bay Rays™ Wander Franco Stars of MLB Chrome Night SMLBC-20 Legendary', 'MLB-22S1-L-SMLBC19-M-NIT'), + (0xc67a1b71874f75d7b1a60f582d975f4ac0c868cd, 'Chicago White Sox® Lucas Giolito Base Independence Day RWB 291 Rare', 'MLB-22S1-R-B288-M-RWB'), + (0xc67f22df7c639ac2367ec73daa9bb689973cc070, 'VIBE SHARKS', 'VSHARKS'), + (0xc68086b6ce8482f0e83d0f394eaceec76d5a61dc, 'CornStars', 'CS'), + (0xc6832a984f7960a565eaa9f6ea9f3a72dd4122d8, 'Kansas City Royals® Bubba Starling OF Base Motion Rainbow 375 Rare', 'MLB-S221-R-B375-RAI'), + (0xc688bc336600a02d6f0ca5cf54dc46080d95d0e5, 'Kansas City Royals® Jackson Kowar Base Independence Day RWB 264 Rare', 'MLB-22S1-R-B261-M-RWB'), + (0xc68ccd7aca28cff329016f34ca604a0bef89d5cb, 'Houston Astros® Michael Brantley Base Glitch 199 Uncommon', 'MLB-22S1-U-B198-M-GLI'), + (0xc691b8ea7ee0fc37d2fab21cf0a71d74a2217c4f, 'AlienAvaxApes', 'AAVAXA'), + (0xc691fe8d0205d8836bd6ecfb1191dd123becdc7f, 'Silvan Widmer M05 Motion Rainbow Refractor S3-23 Super Rare', 'BUND-21TS3-S-MS3-23-V-RAI'), + (0xc69240187bf8d61dc81914363e14fba724b61cc9, 'MEDALLION PASS', 'SPART'), + (0xc6949934068db587ae23d5e228a1fbc54f2c6d5c, 'Oakland Athletics™ Base Independence Day RWB 210 Rare', 'MLB-22S1-R-B208-M-RWB'), + (0xc696562c598d2d39acd8e88b96722aa2e16542f8, 'Toronto Blue Jays® George Springer OF Base Motion Platinum 633 Epic', 'MLB-S221-E-B633-PLA'), + (0xc697b7bacdf9a46ac672036ac8ecb82bbf7f7881, 'Sascha Burchert SGF Motion Aqua Refractor S3-33 Rare', 'BUND-21TS3-R-MS3-33-V-AQU'), + (0xc69b2829c4c2fa49f1ccdf926c490b2703c283e6, 'Boston Red Sox® Matt Barnes P Base Motion Vintage Stock 484 Super Rare', 'MLB-S221-S-B484-VS'), + (0xc6a0075ed453ac22be9254663421ab310e6cbc8b, 'Cincinnati Reds® Nick Senzel Rookie and Future Phenoms Facsimile Signature Red 10 Epic', 'MLB-INC21-E-RC10-RED'), + (0xc6a02823e3001c3c625d77babf299cd76182b174, 'Avalanche Friends Collectible', 'AFC'), + (0xc6a20d8bb161d94662ab86514d04da99a6db3e1c, 'James Tavernier RFC Top Plays Gold SPTPL-03 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-03-V-GOL'), + (0xc6a312f1e39af733483f812318647b84df67e1e0, 'Milwaukee Brewers™ Luis Urias 2B/SS Base Motion Platinum 543 Epic', 'MLB-S221-E-B543-PLA'), + (0xc6a34a09547f6fb6aa3c362055324de88330113a, 'Seattle Mariners™ Jarred Kelenic Facsimile Signature Slab Gold 3069 Epic', 'MLB-22PRI-E-FS19-M-GLD'), + (0xc6bb17419ff11e6d8e8212b51cf9cdd130b612f1, 'New York Yankees® Giancarlo Stanton Base Blue 1079 Common', 'MLB-22PRI-C-B33-M-BLU'), + (0xc6c05557de2547eef4ce44312afbe64e33a06d7e, 'Gates of the Subworld', 'SUBWORLD'), + (0xc6c81acd4e5ba9c253ee8ef2f56641f44f818312, 'Moo Milk', 'Milk'), + (0xc6ca311b5d0a22aa6143b3e5311c712ad3684771, 'St. Louis Cardinals® Nolan Arenado National League Base Blue 8 Rare', 'MLB-22ASG-R-B8-M-BLU'), + (0xc6cada0478da5216d629b8c9c4c40d559c3d7299, 'Houston Astros® Andre Scrubb P Base Static Gold 384 Uncommon', 'MLB-S221-U-B384-GOL'), + (0xc6cba6264f309ac9b6f00fa9eab3e09d2fc154b6, 'Philadelphia Phillies® Aaron Nola Base Pink 1152 Uncommon', 'MLB-22PRI-U-B62-M-PNK'), + (0xc6d62dbb8021b57d3a919f1e0baf115145ef40e7, 'Oakland Athletics™ Starling Marte Base White 305 Common', 'MLB-22S1-C-B301-S-WHI'), + (0xc6d9a2f8099b0a22db5bb6fe5022a3c2e68f3c1c, 'Avernoyis', 'AVERNOYIS'), + (0xc6daa1492a4aa520a906f4f267b81952a8ea59a9, 'CannaFox.io', 'Pool 1'), + (0xc6de15e4933b9d3cadb8430562f82e69d11beb41, 'Toronto Blue Jays® Alejandro Kirk C Base Static Gold 551 Uncommon', 'MLB-S221-U-B551-GOL'), + (0xc6de1e9f489fb5ae591a1b9a6b01fb591e4362f2, 'AVAX Balloons', 'BALLOON'), + (0xc6e170f825f76c84b91aecc44e57c8cc430cd6a4, 'SCRIBBLE CARDS', 'SCRIBBLE CARDS'), + (0xc6e6ebfb850cd5d96bd78ae6bf62c7fcf4360728, 'Miami Marlins® Braxton Garrett P Base Motion Platinum 433 Epic', 'MLB-S221-E-B433-PLA'), + (0xc6e86b6bd65274f2ba770ccbb0302292fdd797e4, 'St. Louis Cardinals® Johan Oviedo P Base Motion Vintage Stock 535 Super Rare', 'MLB-S221-S-B535-VS'), + (0xc6f08833b90518636d7af05cb27e300b39fe037b, 'Hertha Berlin Deyovaisio Zeefuik Young Stars Team Color 164 Super Rare', 'BUND-SC21-S-YS164-TMC'), + (0xc6f103ca410c1b96951c96e1a19f07ff933023bb, 'Epic Baseball Card 1 Joe Profile Bazooka Joe 2021 NFT', 'BZK-E-1B'), + (0xc6f606bb88f4578d85772e8de1ba6bd2e41c173c, 'Dovens NFT Collection', 'DONFT'), + (0xc702ce051fe356202de59e500aa772811de0810e, 'Node Squids NFT', 'NSNFT'), + (0xc706ada913db6859b87c54209a439da1ea37027f, 'I kill you', 'iky'), + (0xc70d3e7d5abc30bf960be17f6fe30ca4ba30e008, 'Irina Collection', 'COLL'), + (0xc710be7ef6bcc00ad787810f734ffa44178681b0, 'NFT Garden', 'NFTG'), + (0xc7114b94cbc5c64d261b15854cefcac0803f05f2, 'Cobalt CAThy Base Color 10 Common', 'GPK-NFT22-C-B10-S-COL'), + (0xc7123770f133f49ef4572e3d40595160e9ef9776, 'Shit4Brainz', 'S4B'), + (0xc71f41441fbb023296a1c78d1662224167fe85e2, 'St. Louis Cardinals® Paul Goldschmidt Base Pink 1086 Uncommon', 'MLB-22PRI-U-B17-M-PNK'), + (0xc725e8c493a0bb522cf554e8bd6bd9b451f88ac5, 'Super Rare Comic 44 1-44 Bazooka Joe 2021 NFT', 'BZK-S-44C'), + (0xc726920ce810f2c8c7e9d957d0026093c4bd9b2f, 'Chicago White Sox® Carlos Rodon Base Glitch 282 Uncommon', 'MLB-22S1-U-B279-M-GLI'), + (0xc726eed7d44ba38b86a71d2afc6f63108cafe49c, 'Pittsburgh Pirates® Max Kranick Base Vintage Stock 325 Super Rare', 'MLB-22S1-S-B321-M-VS'), + (0xc72e351bf89ea4fef07a74fc196b6bf9e6938a2f, 'TSG Hoffenheim Stefan Posch Base Players Team Color 30 Uncommon', 'BUND-SC21-U-BP30-TMC'), + (0xc739ef25774470bc435d2cdc4d0b1b52e6d87582, 'Pittsburgh Pirates® Mitch Keller Base White 251 Common', 'MLB-22S1-C-B248-S-WHI'), + (0xc75cf3cbadbaff865828f18df422247f87aa3209, 'Colorado Rockies™ Jon Gray Base White 161 Common', 'MLB-22S1-C-B160-S-WHI'), + (0xc7610f3bc248c32f94ed46f07b68407babdc9a5d, 'Los Angeles Dodgers® Justin Turner Base Independence Day RWB 257 Rare', 'MLB-22S1-R-B254-M-RWB'), + (0xc7696852b6d5faaf9c4512b811a1b78b71a4800d, 'KimiNaki', 'KN'), + (0xc76d67fead5e4c75ce4d2ae2386fcbc5725c0832, 'PAPANFT', 'PAPANFT'), + (0xc77255c59c5f3c78eb13b8e0689397da75995a3f, 'Atlanta Braves™ Carl Edwards Jr. P Base Motion Platinum 576 Epic', 'MLB-S221-E-B576-PLA'), + (0xc77ca905b4cd72ec008c415f4eaa7a34286add70, 'Medellin City Dealer', 'DEALER'), + (0xc77ff94ff9c9fa2b657cd230d0bbb71c50eb8fd9, 'Mechavax Shortseries #03', 'MASS03'), + (0xc780d39daacb99d587e669ba8b1541946d3e9965, 'Boston Red Sox® Nathan Eovaldi Postseason Base White 70 Common', 'MLB-21POST-C-B70-S-WHI'), + (0xc78166f552788628b96e274a6b3ec5ad329fce5a, 'Texas Rangers® Shin-Soo Choo OF/DH Base Motion Platinum 657 Epic', 'MLB-S221-E-B657-PLA'), + (0xc78275fe09d93f2e2372249e59e40a9c112ff0b4, 'Milwaukee Brewers™ Freddy Peralta Base Vintage Stock 13 Super Rare', 'MLB-22S1-S-B13-M-VS'), + (0xc783d60799c06938107cfb85686e3195073d953b, 'New York Mets® Edwin Diaz P Base Motion Rainbow 498 Rare', 'MLB-S221-R-B498-RAI'), + (0xc787292647e7a3bb0fa9f3adbf34c2d44204cc35, 'Angels® Shohei Ohtani Base Independence Day RWB 1 Rare', 'MLB-22S1-R-B1-M-RWB'), + (0xc78b3541927d8df5bbfb0f71db9b61d27e932e38, 'Oakland Athletics™ Daulton Jefferies P Base Static White 656 Common', 'MLB-S221-C-B656-WHI'), + (0xc791e39ca3edaa4486018dfe159d568faeb4aa3d, 'New York Yankees® Gerrit Cole Wild Card Contenders Blue 15 Common', 'MLB-21POST-C-W15-M-BLU'), + (0xc7933663066b778bde945c625838297b11a397fd, 'New York Yankees® Estevan Florial OF Base Motion Rainbow 406 Rare', 'MLB-S221-R-B406-RAI'), + (0xc7b9faaa355321a25473c53bbab93bf34cdf130f, 'Uncommon Comic 18 1-18 Bazooka Joe 2021 NFT', 'BZK-U-18C'), + (0xc7d67f3d455c707eb1d4ba7584cbf5806b1a1d3d, 'New York Mets® Pete Alonso Base Pink 1048 Uncommon', 'MLB-22PRI-U-B30-M-PNK'), + (0xc7da83edeec47c37d1673862831bfab06da823c3, 'Sport-Club Freiburg Lucas Höler Base Players White 39 Common', 'BUND-SC21-C-BP39-WHT'), + (0xc7dfc1bd5337878efdfc29dee9036901af42172e, 'Bridget Troll Animation Color 16 Rare', 'GPK-NFT22-R-A16-A-COL'), + (0xc7e5c6a94b198c5c66d10b4a7503b46429ac0bf4, 'Luca Kilian KOE Color Splash Facsimile Signature Team Color TK-69 Legendary', 'BUND-22TK-L-CSTK-69-S-TMC'), + (0xc7ef5927ab9b242a9ec99b1c5a513730248e524a, 'FuturisticNature', 'FTNT'), + (0xc7f39595612c8eb7a402de994160443e0f4d12da, 'San Diego Padres™ Yu Darvish P Base Motion Vintage Stock 357 Super Rare', 'MLB-S221-S-B357-VS'), + (0xc7faecbaab96da3c4ee9c70e7083bb61d6895a09, 'Common Comic 96 2-48 Bazooka Joe 2021 NFT', 'BZK-C-96C'), + (0xc80252da6f55e088f2a196b83abe81a5e81e624e, 'Marvin Ducksch SVW Top Players Black TK-33 Common', 'BUND-22TK-C-TPTK-33-S-BLA'), + (0xc80557a4ed9438442fa0f7e33fd7e770817a23a0, 'American League™ 2021 Batting Average Leaders Base White 165 Common', 'MLB-22S1-C-B164-S-WHI'), + (0xc8062a647a89313a301080ec5c9a8ed12c976e3e, 'Seattle Mariners™ Kyle Lewis Base Vintage Stock 206 Super Rare', 'MLB-22S1-S-B205-M-VS'), + (0xc807e5473ce9475f8d20005c1194bc89a2cfe75a, 'TSG Hoffenheim Robert Skov Base Players Team Color 29 Uncommon', 'BUND-SC21-U-BP29-TMC'), + (0xc80874e8c288a62ce13c81e8ecf02068a2e758de, 'FC Schalke 04 Benito Raman Base Players White 59 Common', 'BUND-SC21-C-BP59-WHT'), + (0xc8088680580fea0b0c9e991970db953d10b62e04, 'Boston Red Sox® Xander Bogaerts SS Base Motion Platinum 476 Epic', 'MLB-S221-E-B476-PLA'), + (0xc80b48a1279f3f31f533abc917e538310b42b2f9, 'MEATSPACE', 'MEATSPACE'), + (0xc80bfd6eea94a460c5551010d914d1110cda4ffe, 'New York Yankees® Walk-Off Water Base Glitch 119 Uncommon', 'MLB-22S1-U-B118-M-GLI'), + (0xc823ea38e3b23bfd931bc69dd38e1b73c14035ca, 'ZKTRIADS TEAM LEAD BADGE', 'ZKTTL'), + (0xc8368213bd6b5829f9723bdb5200f89e9ee4d8d0, 'Karim Adeyemi DOR Color Splash Facsimile Signature Team Color TK-56 Legendary', 'BUND-22TK-L-CSTK-56-S-TMC'), + (0xc83a7bd0e73b5df914d2b4315841a7e3b15d9bcb, 'Bayer 04 Leverkusen Florian Wirtz Young Stars Team Color 153 Super Rare', 'BUND-SC21-S-YS153-TMC'), + (0xc83d87ed12eab7389e6c9774082604fb58001229, 'Atlanta Braves™ Ronald Acuña Jr. Stars of MLB Chrome Night SMLBC-2 Legendary', 'MLB-22S1-L-SMLBC2-M-NIT'), + (0xc83ec60bef27122078775982df7d255d6331336c, 'Rodan Fly-by Traditional Art CMYK Offset 9 Uncommon', 'GDZ-RAT21-U-TA9-S-CMYK'), + (0xc8412f2fbc178bcbe57fc04cffed337e967abd87, 'Boston Red Sox® Tanner Houck P Base Static Gold 635 Uncommon', 'MLB-S221-U-B635-GOL'), + (0xc84577275630f06524831bb0fd63e25bef5d7b58, 'Bored Adam Yuck Club Facsimile Signature Color 1 Uncommon', 'GPK-NFT22-U-FS1-S-COL'), + (0xc84c0c29a1c23b005ccfae5447a60ee4e2bb4a7f, 'Boston Red Sox® Rafael Devers Pure Power Slab White 2116 Epic', 'MLB-22PRI-E-PP11-M-WHI'), + (0xc84c8c55d3d40dc75f7d73bb360d46ef6082cf02, '2022 Topps Legendary MLB Collection Pack', 'MLB-22S1R-REWARD-PACK'), + (0xc8607c51380ec2f8d71875c1893969b518b45aad, 'Cleveland Indians® James Karinchak P Base Motion Rainbow 361 Rare', 'MLB-S221-R-B361-RAI'), + (0xc864a3818fb29baadffdfdcff0f068542a694816, 'Atlanta Braves™ Ronald Acuña Jr. National League Base Blue 13 Rare', 'MLB-22ASG-R-B13-M-BLU'), + (0xc868e4e859094fa9fe4dfe55ed95dbb41725cc4e, 'Houston Astros® Kyle Tucker Championship Series Silver 13 Epic', 'MLB-21POST-E-CS13-M-SIL'), + (0xc86a249dba18118030cd84502fb0b189d71d8216, 'Chicago White Sox® Dylan Cease Rookie and Future Phenoms Facsimile Signature Red 17 Epic', 'MLB-INC21-E-RC17-RED'), + (0xc86d0f383e8af4f3be36988d566b13f7cbb96e01, 'Baltimore Orioles® Jorge Mateo Base Glitch 89 Uncommon', 'MLB-22S1-U-B89-M-GLI'), + (0xc86e4a87ca960930750a1340b1d07184250adda0, 'Philipp Förster BOC Color Splash Team Color TK-72 Super Rare', 'BUND-22TK-S-CSTK-72-S-TMC'), + (0xc878943a51d3e50257c6da869c44c8618685695b, 'Chicago White Sox® Adam Eaton OF Base Motion Platinum 554 Epic', 'MLB-S221-E-B554-PLA'), + (0xc87a7e2864dd8f5fddd2f275010b7b9e6885261e, 'Kansas City Royals® Ryan O''Hearn 1B Base Motion Rainbow 492 Rare', 'MLB-S221-R-B492-RAI'), + (0xc87ff45cdff2ce4c895972d22f19ed0f9596a1f6, 'Oakland Athletics™ Tony Kemp Base White 114 Common', 'MLB-22S1-C-B113-S-WHI'), + (0xc8811d48c1fe62882083daedbe2675b827a81332, 'Squab', 'SQUAB'), + (0xc885e0aec5a3a92112d2cbb61f39f9c07e8ec6c9, 'Super Rare Comic 82 2-34 Bazooka Joe 2021 NFT', 'BZK-S-82C'), + (0xc888a6593a99e19b504b991a8be3c9fc5985884e, 'Atlanta Braves™ Ronald Acuña Jr. Inception Base Red 6 Rare', 'MLB-INC21-R-IB6-RED'), + (0xc894f5dffaf64204fb58a4b404da4f0139ad3101, 'Promotional Art Pieces', 'PAP'), + (0xc897fe08e4d9678e143901a3ed9f86121d14f0ff, 'Miami Marlins® Chad Wallach C Base Static Gold 593 Uncommon', 'MLB-S221-U-B593-GOL'), + (0xc89ad96025eda0f1bfa23fcb770cc33d5f6e7ab1, 'SkaterFrog', 'SKF'), + (0xc89bc1f782b1e4e2d474ac52517d38e1db220de3, 'Houston Astros® Ronnie Dawson Base White 231 Common', 'MLB-22S1-C-B228-S-WHI'), + (0xc8a931fe485225b9ed6d63f626ed743f1872cd98, 'Miami Marlins® Zach Thompson Base White 227 Common', 'MLB-22S1-C-B224-S-WHI'), + (0xc8afe9a2cf9bb20122d623578300743941285a5b, 'Topps NOW World Series Game 5 Ticket Redemption Pack', 'MLB-21NOW-PACK-TR-GM5'), + (0xc8b11b6ed6328f4a405d3923b90075deec16631a, 'Burrata', 'BURR'), + (0xc8b2da5c2a3b66ea8f55ff12ba7914181f900ad8, 'Colorado Rockies™ Kyle Freeland Base Vintage Stock 169 Super Rare', 'MLB-22S1-S-B168-M-VS'), + (0xc8b54b08736db7eb2b62113f69dea44937bc5852, 'San Diego Padres™ Tommy Pham Base Independence Day RWB 16 Rare', 'MLB-22S1-R-B16-M-RWB'), + (0xc8b8fae1667dfbe51b4d3ef6a357132fa03b9a02, 'Rare Comic 1 1-1 Bazooka Joe 2021 NFT', 'BZK-R-1C'), + (0xc8c5241eb197ec4413738a477115d65548bf5710, 'Cleveland Indians® Aaron Civale Rookie and Future Phenoms Facsimile Signature White 12 Rare', 'MLB-INC21-R-RC12-WHT'), + (0xc8c7afe1e6f2037b1b7dfaa696d66709507288af, 'Los Angeles Dodgers® Clayton Kershaw Super Short Print White 41 Super Rare', 'MLB-22S1-S-SSP4-M-WHI'), + (0xc8d2e8968d199fbe23c08b8979f523b7296ac990, 'Atlanta Braves™ Dansby Swanson Champs Gold 4 Legendary', 'MLB-21POST-L-C4-M-GOL'), + (0xc8d6f3895cf672c5656f03a30764119d529a631f, 'Знаряддя народовладдя (Tools of nation power)', 'nation'), + (0xc8d7bfecbe36263086157cbadd10ad6301267bbe, 'Tag Team of Terror (1973) Moment Color 2 Uncommon', 'GDZ-GVG22-U-M2-V-COL'), + (0xc8e027d92413c7be36f5395202342d5f26ff22bc, 'Houston Astros® Chas McCormick Base Independence Day RWB 135 Rare', 'MLB-22S1-R-B134-M-RWB'), + (0xc8e043e9749587289e427a74907829598c48127f, 'Uncommon Comic 1 1-1 Bazooka Joe 2021 NFT', 'BZK-U-1C'), + (0xc8ecea6f0afc88ab6938f7f48268422a4d7c7977, 'YALLZ', 'YALL'), + (0xc8ef279070aa1703a4bbe1feaefa0e81a6dbf4b4, 'Potions', 'Potions'), + (0xc8faaddcecebb2ae79769b9a166a957ef4a2902f, 'Dynamix', 'dnyx'), + (0xc903e2d0cda5263dbe8e016d8c7fa5cce290e96e, 'met4rt', 'M3T4'), + (0xc90e6a5b4518490017a6ad4b04a6496b5849dee2, 'CONGRATS WAGMI - Savvy Salesman', 'DMP'), + (0xc90e6e0bfa0093fb19954e24d004073bb3d2ad3c, 'Black', 'BLACK'), + (0xc912aba865bdb335df7fba286eedd03f5be93f66, 'Godzilla vs. Gigan Toppsicob Color 1 Epic', 'GDZ-GVG22-E-RCOB1-A-COL'), + (0xc91584c1d84172a0819467959b2b96a232cc902d, 'Kansas City Royals® Nicky Lopez 2B Base Static Gold 415 Uncommon', 'MLB-S221-U-B415-GOL'), + (0xc916a4cd268fb40f836ddf84815941e19c669568, 'Detroit Tigers® Tarik Skubal Rookie and Future Phenoms Facsimile Signature Blue 26 Super Rare', 'MLB-INC21-S-RC26-BLU'), + (0xc9188667aa7b3def39fb1d364bc3ea6604f9535c, 'Oakland Athletics™ Base Motion Platinum 392 Epic', 'MLB-S221-E-B392-PLA'), + (0xc91b516b5ebea7e4092f76115610b1f7097a4b36, 'Detroit Tigers® Willi Castro Base Independence Day RWB 191 Rare', 'MLB-22S1-R-B190-M-RWB'), + (0xc91e325531e0f75bffe61a01209d03037c453dd2, 'Slothtopia NFT', 'sn'), + (0xc92718ac24d5b2db50636f33ee6890500a65c830, 'Maximilian Arnold WOB Top Players Black TK-10 Common', 'BUND-22TK-C-TPTK-10-S-BLA'), + (0xc92c4c925826174588e77e356174d2e48f6c08d2, 'New York Yankees® Corey Kluber P Base Static Gold 567 Uncommon', 'MLB-S221-U-B567-GOL'), + (0xc92f36a8fd71ae50938eb8a0f3d87e6ac4b0b4b3, 'HOOPSvsBUTCHER', 'HvB'), + (0xc9310fb5eaa94e139ef324f7638b819d89029985, 'WISE SOUL', 'WSL'), + (0xc93ee712fc9b292b9357b83f0074eada6909ba21, 'Houston Astros® Lance McCullers Jr. P Base Motion Vintage Stock 610 Super Rare', 'MLB-S221-S-B610-VS'), + (0xc946c5a365e02c47bb9650f4956f9c468d4a7154, '$SOB Early Adopter', '$SOBea'), + (0xc94b92741dfa280fe6574b7e8222317401b98142, 'Toronto Blue Jays® Base Motion Platinum 438 Epic', 'MLB-S221-E-B438-PLA'), + (0xc94cb98650eb9d1a044839245d56aeffcb163f75, 'BROBOTS', 'BROBOTS'), + (0xc9569d42737a8d71ff57b5e4993a95dad26519c0, 'HalloweenSkele', 'HLNS'), + (0xc969dbc85bdf86e3ecc7e1563fca8ac8d0951e34, 'Topps NOW World Series Game 3 Ticket Redemption Pack', 'MLB-21NOW-PACK-TR-GM3'), + (0xc96f0924243e27ab8c46df88e72cdd402e4e9f36, 'Milwaukee Brewers™ Corbin Burnes P Base Motion Platinum 619 Epic', 'MLB-S221-E-B619-PLA'), + (0xc97b528ae24937175fa66f7d3634ac1049c5c79c, 'Black Swan Club', 'BSC'), + (0xc97fe824c424a975897759cb217dcd42ffdd9f37, 'Atlanta Braves™ Freddie Freeman Base Blue 1033 Common', 'MLB-22PRI-C-B61-M-BLU'), + (0xc9855051739fad547f3d6cf5d4be4817bf033f0a, 'San Francisco Giants® Kevin Gausman Regular Season Division Winners RWB 46 Rare', 'MLB-21POST-R-R46-M-RWB'), + (0xc98959f0922c18fd687c2b47af6f83e10d9a2516, 'Common Comic 13 1-13 Bazooka Joe 2021 NFT', 'BZK-C-13C'), + (0xc99743be0e0c0f0e4c3816e724659c98b44f666f, 'New York Yankees® 2021 Topps MLB Inception Set Completion Reward Team Colors 19 Epic', 'MLB-21INCSC-E-21INCSCR19-M-TC'), + (0xc99d67e3ec5b20cdfe3b08d81c00becae16c7ee0, 'New York Yankees® Trey Amburgey Base White 263 Common', 'MLB-22S1-C-B260-S-WHI'), + (0xc9aa40d05762d6b6698fc8df5071af04231dd960, 'Philadelphia Phillies® World Series Newspaper BW 1146 Common', 'MLB-22TNP-C-WSN10-M-BW'), + (0xc9ac1d3954ce4caf612177c44438ed43cf471826, 'Chicago White Sox® Lance Lynn Postseason Base Red 15 Rare', 'MLB-21POST-R-B15-M-RED'), + (0xc9b00adcd96bfc4a34a6904fc5f95b470921370f, 'Super Rare Baseball Card 6 Tuffy Catcher Bazooka Joe 2021 NFT', 'BZK-S-6B'), + (0xc9bd853e3ffca9eaf09744058b2e9d8efcca8976, 'Philadelphia Phillies® Freddy Galvis Base Glitch 67 Uncommon', 'MLB-22S1-U-B67-M-GLI'), + (0xc9c63e0806499276b48a8146e0048baaed801774, 'Miami Marlins® Jorge Alfaro Base Vintage Stock 36 Super Rare', 'MLB-22S1-S-B36-M-VS'), + (0xc9c7d0b58dd77b1515ef3ca89265ab45e692a6da, 'Toronto Blue Jays® Bo Bichette 1987 35th Anniversary Chrome T87C-69 Super Rare', 'MLB-22S1-S-1987AC51-M-CHR'), + (0xc9cd57980fcbda8c9dd8985ddb7f8413434dc08a, 'Pittsburgh Pirates® Ke''Bryan Hayes Base Vintage Stock 56 Super Rare', 'MLB-22S1-S-B56-M-VS'), + (0xc9d4062f2a9099f17b4886d3f41dd8dc2b77dfc3, 'Seattle Mariners™ Team Cube 2.0 Team Colors 29 Legendary', 'MLB-22S1-L-TC229-M-TMC'), + (0xc9dbd8b072d9b475a1b2f41aceec280c38be874d, 'Colorado Rockies™ Trevor Story Inception Base White 24 Common', 'MLB-INC21-C-IB24-WHT'), + (0xc9dded19bb1bd33676b977a90c1ffb1738909703, 'Johnny Depp Goblins', 'JDG'), + (0xc9df1f40159d02f7b4df39860cd82d3f53f3fe0e, 'Cincinnati Reds® Tucker Barnhart C Base Static White 580 Common', 'MLB-S221-C-B580-WHI'), + (0xc9e08b1184f6434ee07d0af40b19a605e4e806bc, 'San Diego Padres™ Jake Cronenworth 2B/1B Base Static Gold 371 Uncommon', 'MLB-S221-U-B371-GOL'), + (0xc9f0d8f2ca33d2e9de32e7ee9fce8fdca900eb87, 'Kansas City Royals® Jackson Kowar Base White 264 Common', 'MLB-22S1-C-B261-S-WHI'), + (0xc9f8df73a2bff9333f4f712fc4c54f7148c59fb2, 'Round of Hunters', '$woh_ROUND'), + (0xca01c8a807bfbdbc6de39b7746fd6b1ed141196d, 'Texas Rangers® Leody Taveras Rookie and Future Phenoms Facsimile Signature White 74 Rare', 'MLB-INC21-R-RC74-WHT'), + (0xca0d0c097867245aa5abc14836b9592104a3bd8c, 'New York Yankees® Anthony Rizzo 1987 35th Anniversary Wood T87-58 Common', 'MLB-22S1-C-1987A40-M-WD'), + (0xca15f9c2789a8544b3c2d8b5063e66416102729b, 'Borussia Dortmund Thorgan Hazard Base Players Team Color 10 Static Facsimile Signature Rare', 'BUND-SC21-R-BP10-SFS-TMC'), + (0xca1de19c37871aa799003a7d731a2c4982a5fe99, 'Blades X Glory', 'BLGL'), + (0xca2d75f4efff61e24956f85356c5ccee51630580, 'New York Mets® Javier Baez Base Blue 1036 Common', 'MLB-22PRI-C-B108-M-BLU'), + (0xca2dc2b530bead802aeac4a963002b6e6c06375d, 'Dominik Szoboszlai RBL Motion Rainbow Refractor S2-16 Super Rare', 'BUND-21TS2-S-MS2-16-V-RAI'), + (0xca2e9cc886427d2b978874c320b585153347019d, 'BSGGStaking', 'BSGGStaking'), + (0xca2fc516d698c0025818997caa4631f9c46d6063, 'Other Faces', 'AVAX'), + (0xca34f649b2b11b7e01c48eb3b5a8a9a97083b0f9, 'AVAX Balloons', 'BALLOON'), + (0xca374353f998af64f8033641321e39fe7baeacd3, 'Minnesota Twins® Jose Berrios P Base Motion Platinum 395 Epic', 'MLB-S221-E-B395-PLA'), + (0xca3ff0d7c714a46a43a459cae05b1662bd960e8f, 'Chicago White Sox® Jimmy Lambert Rookie and Future Phenoms Facsimile Signature White 19 Rare', 'MLB-INC21-R-RC19-WHT'), + (0xca40c15f55609930953ff40c25658bf1d7c26aab, 'Toronto Blue Jays® Steven Matz Base White 276 Common', 'MLB-22S1-C-B273-S-WHI'), + (0xca477bd170e8d93db534dfe2a2fd22c6f82b9eb7, 'Miami Marlins® Sixto Sanchez Inception Base Blue 52 Uncommon', 'MLB-INC21-U-IB52-BLU'), + (0xca4cb3d733010dcbf53b676eb06c530a2df2a834, 'Atlanta Braves™ Jorge Soler Topps NOW White 1011 Rare', 'MLB-21NOW-R-TN1011-WHI'), + (0xca50ca3744db994f36583f5329dc97273678e546, 'St. Louis Cardinals® Nolan Arenado Postseason Base White 42 Common', 'MLB-21POST-C-B42-S-WHI'), + (0xca51fca84c375d169ae3e8cfd09a5e32c4368978, 'Angels® Ty Buttrey P Base Motion Rainbow 363 Rare', 'MLB-S221-R-B363-RAI'), + (0xca61ee3aa44c958d74b0e418b56e1874f8e946fa, 'Cincinnati Reds® Joey Votto Short Print White 290 Rare', 'MLB-22S1-R-SP59-M-WHI'), + (0xca65838a04e0a7b255fe35e36cc523e04fd1f6d6, 'Washington Nationals® Sterling Sharp Rookie and Future Phenoms Facsimile Signature White 83 Rare', 'MLB-INC21-R-RC83-WHT'), + (0xca68d83ea7de3de4348e747abdce952c966a221b, 'Avax Skeletons', 'ASKL'), + (0xca89fd68c4961089dfd089826e4fb4a021f9e3e1, 'Houston Astros® Alex Bregman Stars of MLB Chrome Night SMLBC-8 Legendary', 'MLB-22S1-L-SMLBC8-M-NIT'), + (0xca8f67d7625580f677f7f0bac4f29e6f69f2292d, 'Miami Marlins® Bryan De La Cruz Base White 22 Common', 'MLB-22S1-C-B22-S-WHI'), + (0xca92f2105cffbfce8d5a1ee960863b6f0f200316, 'Godzilla RAT Page 19 Comic Page Black and White 16 Uncommon', 'GDZ-RAT21-U-CP16-S-BW'), + (0xca9622e63e2b600e2a316c0227adc92dbc6f7783, 'Trippy Triangles', 'TT'), + (0xcaa8fb434a18b0ae54058def07db01e348758126, 'American League™ Rafael Devers Base Pink 1264 Uncommon', 'MLB-22PRI-U-B201-M-PNK'), + (0xcaa9556ae2c186a1b1dec153a3c9e10f2a530115, 'Ai Bulls', 'AiBulls'), + (0xcaab068b2f5f959bd205b8a79cc2ddcdf9dd1455, 'San Diego Padres™ Manny Machado 1987 35th Anniversary Chrome T87C-44 Super Rare', 'MLB-22S1-S-1987AC33-M-CHR'), + (0xcab624458959a7b66c44a4222eceb778ba981bfe, 'San Francisco Giants® Sammy Long Base Blue 1223 Common', 'MLB-22PRI-C-B145-M-BLU'), + (0xcab72e40a21a17b0861bed61634ad7f5bec46a3e, 'St. Louis Cardinals® Yadier Molina Facsimile Signature Glitch 205 Epic', 'MLB-22S1-E-FS12-M-GLI'), + (0xcab897b65a00c514837a5c495b0daeffa8d89540, 'Chicago Cubs® Craig Kimbrel P Base Motion Vintage Stock 579 Super Rare', 'MLB-S221-S-B579-VS'), + (0xcaba803e99d6b34bb566bc5f9c2ad8c68b81d7b9, 'Seattle Mariners™ Yohan Ramirez P Base Motion Platinum 519 Epic', 'MLB-S221-E-B519-PLA'), + (0xcabd205a625fe3961353d22f2086091b461102c4, 'Seattle Mariners™ Justin Dunn Base White 185 Common', 'MLB-22S1-C-B184-S-WHI'), + (0xcac4a2c968bffbc4f0e4621f693499f34929e9cd, 'Baby XEN Crypto NFT', 'BABYXEN'), + (0xcac90dc91ac4d6cc2b0837fdf1a211f099014886, 'FieFolk', 'FIEFOLK'), + (0xcacdf207791409db71f4fce9af4ccd365f7067ca, 'Tampa Bay Rays™ Wander Franco Generation NOW Team Colors GN-4 Epic', 'MLB-22S1-E-GN4-M-TMC'), + (0xcada73e65c0ffb1c30672701a61ff1f2068b10bf, 'Taiwo Awoniyi FCU Motion Aqua Refractor S1-10 Rare', 'BUND-21TS1-R-MS1-10-V-AQU'), + (0xcadfb742eb1ab815d02301fa2e5aa28527038c8d, 'Los Angeles Dodgers® Julio Urias Short Print White 299 Rare', 'MLB-22S1-R-SP61-M-WHI'), + (0xcae115c521d2b63d33b9ddb28918754c312c37ee, 'New York Yankees® Deivi Garcia Gold Signings Facsimile Signature Gold 30 Epic', 'MLB-INC21-E-SS30-GLD'), + (0xcae82be5a8bfa1c9218a5185cbe6a0df4c012907, 'Toronto Blue Jays® Cavan Biggio Rookie and Future Phenoms Facsimile Signature Blue 76 Super Rare', 'MLB-INC21-S-RC76-BLU'), + (0xcae8f2e197726dc7bd8dbdc8f74347019dce9094, 'Raphaël Guerreiro DOR Base White S1-03 Common', 'BUND-21TS1-C-BS1-03-S-WHI'), + (0xcaea51e2740f5453022bdbbab5ac264e7bb3613f, 'Rare Bubbles', 'RBB'), + (0xcaf5404c2e1fe6bbb1926efe17e22ea8dadbae4d, 'San Francisco Giants® Kris Bryant Postseason Base Red 25 Rare', 'MLB-21POST-R-B25-M-RED'), + (0xcaf74d76945e274d0b3bb800db87cbc35d5d3d76, 'Rome is Burning Comic Cover Color 2 Super Rare', 'GDZ-RAT21-S-CC2-A-COL'), + (0xcaf78c0736cc742adf5378e9a7d63d78472d329a, 'Houston Astros® Alex Bregman Base Glitch 68 Uncommon', 'MLB-22S1-U-B68-M-GLI'), + (0xcb161bf132c40757161dd8173a692ebcbff08342, 'Tridimensional Gates', '3DGATE'), + (0xcb168c4251ceca64dcbed55c5b51800c95034bbe, 'New York Yankees® Aaron Judge American League Base White 13 Uncommon', 'MLB-22ASG-U-B13-M-WHI'), + (0xcb1ab713834e2c1d10441efeeaedd83efc469cb6, 'Uncommon Comic 66 2-18 Bazooka Joe 2021 NFT', 'BZK-U-66C'), + (0xcb1dd19429627f07aa732ccc358cca26f7022efd, 'Atlanta Braves™ William Contreras Rookie and Future Phenoms Facsimile Signature White 3 Rare', 'MLB-INC21-R-RC3-WHT'), + (0xcb1fd9e33680555e7941fa924169c9e293c8aa7d, 'Rodrigo Zalazar S04 Color Splash Facsimile Signature Team Color TK-70 Legendary', 'BUND-22TK-L-CSTK-70-S-TMC'), + (0xcb255e25fe27a32a6e4c902a7b82330b935e289e, 'Jordan White RSC Base Aqua SP-34 Uncommon', 'SPFL-21SPSS-U-BSP-34-A-AQU'), + (0xcb29b255c6c5798b553ebd1484fba748becfb0b2, 'Chicago Cubs® Kris Bryant 3B Facsimile Signature Static Blue 660 Super Rare', 'MLB-S221-S-FS660-BLU'), + (0xcb2ddcc0e1f834dcf559ebebb4927bab2aa091b7, 'Liam Kelly MOT Base White SP-25 Common', 'SPFL-21SPSS-C-BSP-25-A-WHI'), + (0xcb31a08e28924a92ac5d4d2caf390f9f56ccf084, 'Borussia Monchengladbach Breel Embolo Base Players Gold 16 Rare', 'BUND-SC21-R-BP16-GLD'), + (0xcb3bf893f5c4e5c38463cefe9208ee1bddbfbead, 'Babylons ERC721', 'BABI'), + (0xcb44707090824da71a42483e5c240d1eedc42577, 'Ava GangSol', 'GangSol'), + (0xcb4ca8bafdd1a3cadc3fca3582543fff4caba1c6, 'Atlanta Braves™ Ozzie Albies Base Blue 1063 Common', 'MLB-22PRI-C-B34-M-BLU'), + (0xcb4cb32c13e80db44b210f3afd301d534fa5e963, 'Chicago Cubs® Jason Heyward OF Base Static White 501 Common', 'MLB-S221-C-B501-WHI'), + (0xcb4db7a498f5bd7f75ca90501a16e922003b21c8, 'Shin Godzilla Form 3 Toppsicle Color 2 Legendary', 'GDZ-RAT21-L-RTP2-A-COL'), + (0xcb56c30b5435bffd6e6ddf7665d1f8c5828a637f, 'Houston Astros® World Series Newspaper BW 1150 Common', 'MLB-22TNP-C-WSN4-M-BW'), + (0xcb621bf2db4ed591b03c47e965d07e8584c0e149, 'Angels® Mike Trout Short Print White 27 Rare', 'MLB-22S1-R-SP7-M-WHI'), + (0xcb62bcc92ca2fbc0d14019df87c38fadfce06aa2, 'Angels® Shohei Ohtani Base Blue 1031 Common', 'MLB-22PRI-C-B125-M-BLU'), + (0xcb62c2453e0821b6314cd2c8c08498f83ae9fab4, 'San Francisco Giants® Logan Webb Postseason Base Red 32 Rare', 'MLB-21POST-R-B32-M-RED'), + (0xcb6567fc2a99a433a7d935a1670ab80adba0087a, 'New York Mets® Pete Alonso National League Base White 4 Uncommon', 'MLB-22ASG-U-B4-M-WHI'), + (0xcb6b7e6313dac03df87b58f0245df5b14064bddc, 'Cincinnati Reds® Tony Santillan Base Pink 1203 Uncommon', 'MLB-22PRI-U-B174-M-PNK'), + (0xcb70b55b7a27d15cde8e1030e4d9413020d08ae4, 'Neon Community', 'n'), + (0xcb730b91903d013dbc17c4d3d9f4bb5604d0b07b, 'Minnesota Twins® John Gant Base White 280 Common', 'MLB-22S1-C-B277-S-WHI'), + (0xcb76d51beba5736047581cfb1ac0cf74e1f620a6, 'Minnesota Twins® Mitch Garver C Base Motion Platinum 470 Epic', 'MLB-S221-E-B470-PLA'), + (0xcb8cb38983a6d9a1f3e84c79cd1c059753fbe620, 'mfers legendary (avax)', 'MFLA'), + (0xcb9ebe824ae5d53f1ac1f261d6e38bb17d74db03, 'Chicago White Sox® Garrett Crochet P Base Motion Vintage Stock 362 Super Rare', 'MLB-S221-S-B362-VS'), + (0xcba4732e463363e86b5c437b4e5d19a889fe06d2, 'Kansas City Royals® Whit Merrifield Inception Base Blue 41 Uncommon', 'MLB-INC21-U-IB41-BLU'), + (0xcbaca316d909f60352f67bed6f2af9149bb82c1e, 'bay-city-news:2022-starling-stockton Custody Token', 'SPCT'), + (0xcbacea568d35c0a48af68dbc09edaae26ffac08d, 'San Diego Padres™ Adam Frazier Base Blue 1082 Common', 'MLB-22PRI-C-B19-M-BLU'), + (0xcbad8e7ea984be13ef8c6f6b860fe3cc1ed43cdf, 'Tampa Bay Rays™ Brandon Lowe Postseason Base Navy 1 Uncommon', 'MLB-21POST-U-B1-M-NVY'), + (0xcbaee2150f628543390a60d544ff0185471eeae8, 'Shipwreck Collection', 'SHC'), + (0xcbb0a4640a4c502346faeda9b58b14ff32b315c1, 'CHIMPONZEES', 'CHPZ'), + (0xcbb32458935ad45fa4b19875ea39a48350bf8561, 'Tampa Bay Rays™ Brett Phillips OF Base Motion Vintage Stock 586 Super Rare', 'MLB-S221-S-B586-VS'), + (0xcbb662417db19891d96a38de1e9085463424c59d, 'Philadelphia Phillies® City of Walk-Off Love Base Independence Day RWB 321 Rare', 'MLB-22S1-R-B317-M-RWB'), + (0xcbbb99b283ae175afa51d8a4361c5aa25b7c6a1d, 'Dolphina', 'DLP'), + (0xcbc0a079eb29fec5831f9106499e4e0d8eff19fb, 'Ryan Edwards DDU Top Plays Purple SPTPL-04 Rare', 'SPFL-21SPSS-R-TPLSPTPL-04-V-PUR'), + (0xcbd7a879bfb54dfc69ad9a7f1415d9efdee90ddb, 'NW Azuki', 'NWAZUKI'), + (0xcbdbc0afac7ea5d069807995fbe9ced4794dacbf, 'Monkey''s Dream', 'mm'), + (0xcbdc3050bf38f38d86683223a8956de2b92170af, 'Tampa Bay Rays™ Mike Zunino Base Pink 1258 Uncommon', 'MLB-22PRI-U-B185-M-PNK'), + (0xcbee98fff177b375eb3253678e687b26ad84cb4a, 'Binary Punk Warriors', 'BPW'), + (0xcbeed8c359acbe70db48046441f243a1b7e4f869, 'Gassie Infinity Facsimile Signature Color 2 Uncommon', 'GPK-NFT22-U-FS2-S-COL'), + (0xcbf5bece4ae2564bd4aa58cb617497611b682e17, 'Colorado Rockies™ Brendan Rodgers 2B Base Motion Vintage Stock 591 Super Rare', 'MLB-S221-S-B591-VS'), + (0xcbf8beff4b0619d3d93dbacfbe78305741dd9a19, 'Colorado Rockies™ Garrett Hampson Base Vintage Stock 234 Super Rare', 'MLB-22S1-S-B231-M-VS'), + (0xcbffc06f48fed9e0dab985c8e2a21c70d5cd308f, 'Cleveland Guardians™ Shane Bieber 1987 35th Anniversary Chrome T87C-54 Super Rare', 'MLB-22S1-S-1987AC40-M-CHR'), + (0xcc0234849ec80da1345dee7c61921a7833410ab0, 'VALIFI YIELDKEY', 'VRYK'), + (0xcc0420e0fd709b73daebc5315bdcbb8dbb61fe76, 'Atlanta Braves™ Cristian Pache Base Vintage Stock 233 Super Rare', 'MLB-22S1-S-B230-M-VS'), + (0xcc098890f71628234e0a75b87fa8e13eb28df1d3, 'Philadelphia Phillies® Jean Segura Base White 178 Common', 'MLB-22S1-C-B177-S-WHI'), + (0xcc0b8900c70760868bef20741043c2210825c697, 'Niklas Dorsch FCA Motion Aqua Refractor S3-31 Rare', 'BUND-21TS3-R-MS3-31-V-AQU'), + (0xcc0d36f8467d9f3163ef218dcdb933bc68718567, 'San Francisco Giants® Buster Posey Postseason Base Navy 28 Uncommon', 'MLB-21POST-U-B28-M-NVY'), + (0xcc0f16368921a08562fda1295b466782f4068a76, 'Alassane Plea BMG Base White S3-24 Common', 'BUND-21TS3-C-BS3-24-S-WHI'), + (0xcc0ff00acf9d14e14dbde088c079345d11f40bd6, 'San Diego Padres™ Jake Cronenworth 2B/1B All-Star Motion Purple 16 Epic', 'MLB-S221-E-AS16-PUR'), + (0xcc19332cd540cabc5cc74294a221e225233dd7c4, 'Los Angeles Dodgers® 2021 Topps MLB Inception Set Completion Reward Team Colors 14 Epic', 'MLB-21INCSC-E-21INCSCR14-M-TC'), + (0xcc1dd19c616183738980506cf2f9f5cdb9f2fcf1, 'Chicago White Sox® Eloy Jimenez Inception Base White 26 Common', 'MLB-INC21-C-IB26-WHT'), + (0xcc22c192f5a8eb3c0dbd9365c875065e0193d568, 'Cleveland Guardians™ Oscar Gonzalez Wild Card Broadcast RWB 1043 Rare', 'MLB-22TNP-R-WCA1-M-RWB'), + (0xcc25bfc21e714112069dc0f3e96bc8e006e4a97d, 'Miami Marlins® Sandy Alcantara P Base Motion Vintage Stock 594 Super Rare', 'MLB-S221-S-B594-VS'), + (0xcc2aecd665461ddae6bd7c611a5f9e7e352910e0, 'Dolcelatte', 'DOLCE'), + (0xcc42e9c59533482fc96170c42de2b361e2aac28d, 'Common Comic 98 2-50 Bazooka Joe 2021 NFT', 'BZK-C-98C'), + (0xcc49db9d0c279625e402a03344d077fe0013f0ba, 'Chicago White Sox® Lance Lynn Base Blue 1240 Common', 'MLB-22PRI-C-B162-M-BLU'), + (0xcc4cb3f104cde5bdbd3991d132c7030c419d576b, 'Maximilian Arnold WOB Base White S4-67 Common', 'BUND-21TS4-C-BS4-67-S-WHI'), + (0xcc4e79203c89a6ba2c6f456cac6eb82eef710d36, 'Yann Sommer BMG Animation Black Refractor S4-39 Epic', 'BUND-21TS4-E-AS4-39-V-BLA'), + (0xcc530b8e362c1ed765a5f0e84c3ddd1753ace107, 'Cleveland Indians® Francisco Lindor Inception Base Blue 20 Uncommon', 'MLB-INC21-U-IB20-BLU'), + (0xcc5badce9b8ac7f2009c8d0e499730c1e0723ff4, 'Faith Fall Animation Color 24 Rare', 'GPK-NFT22-R-A24-A-COL'), + (0xcc6e2c2c8c5e362ffd7e4dc25e5926752da37cae, 'San Diego Padres™ Luis Campusano Silver Signings Facsimile Signature Silver 34 Super Rare', 'MLB-INC21-S-SS34-SLV'), + (0xcc7dc405c50c0f4d003f3fb4e8ae1f1ec0857bf6, 'Toronto Blue Jays® Tanner Roark P Base Motion Platinum 522 Epic', 'MLB-S221-E-B522-PLA'), + (0xcc7e85bf58b9187bf53363e171fab0569e8f4aa3, 'nightbane', 'nb'), + (0xcc80f579e9788925d2fc7b901cd92909c14f6d81, 'Boston Red Sox® Jonathan Arauz Rookie and Future Phenoms Facsimile Signature White 7 Rare', 'MLB-INC21-R-RC7-WHT'), + (0xcc8245f7be7254e93fec2033930932165b26cb06, 'Milwaukee Brewers™ Corbin Burnes Base Glitch 240 Uncommon', 'MLB-22S1-U-B237-M-GLI'), + (0xcc8c26b2bd3ba4c9202d8737ac646bbe78296dd7, 'Zaidan Clan NFT', 'ZCN'), + (0xcc90853d6e8863e56cd3dfc32fb479bf39f01456, 'YeDiwaliAvalancheWali', 'YDAW'), + (0xcca0b5a5ab33397b37a6fe5789e03d8f2f300844, 'Dejan Ljubicic KOE Animation Gold Refractor S4-69 Legendary', 'BUND-21TS4-L-AS4-69-V-GOL'), + (0xccaa7ceee15aa426c9c48ebecf13266239cb7446, 'Super Rare Comic 30 1-30 Bazooka Joe 2021 NFT', 'BZK-S-30C'), + (0xccb0122bf72bd32a5204cc2d512b3b5b5b7edae0, 'Kansas City Royals® Salvador Perez 2022 Definitive Gold 13 Legendary', 'MLB-22LEG-L-22DEF13-M-GLD'), + (0xccb95c187ef0e7a22939e3acfe3201f30a1d8d4d, 'Chicago White Sox® Andrew Vaughn Base Glitch 120 Uncommon', 'MLB-22S1-U-B119-M-GLI'), + (0xccc135c208d142263efa1e4d0fbac0ae7f4e39b7, 'Toronto Blue Jays® Santiago Espinal American League Base Golden 6 Super Rare', 'MLB-22ASG-S-B6-M-GLD'), + (0xccc691285d1b018de68730ffd47a57ca7e14c953, 'New York Mets® Jacob deGrom Inception Base Red 63 Rare', 'MLB-INC21-R-IB63-RED'), + (0xccc8d29a3ec2eb1b4ee1eb36f101a47b98bc678b, 'Kansas City Royals® Brady Singer Base Vintage Stock 313 Super Rare', 'MLB-22S1-S-B309-M-VS'), + (0xccd1b76b0b349713aa1aef0461e1045b21f3e464, 'St. Louis Cardinals® Paul DeJong Base Pink 1254 Uncommon', 'MLB-22PRI-U-B161-M-PNK'), + (0xccd3588588eaacaba36059a591ca364ec3ecbc2a, 'Houston Astros® Kyle Tucker Base White 319 Common', 'MLB-22S1-C-B315-S-WHI'), + (0xcce126a3f46311e03c3edf394b6a210c0ecb3b27, 'Minnesota Twins® Luis Arraez 2B Base Static Gold 649 Uncommon', 'MLB-S221-U-B649-GOL'), + (0xccea6ff38a17563e1115ceee482883a4af7da665, 'Detroit Tigers® Casey Mize Facsimile Signature Slab Gold 3033 Epic', 'MLB-22PRI-E-FS7-M-GLD'), + (0xccec53b4b4a58a72aefde900d9ea898842513222, 'Eintracht Frankfurt Filip Kostic Top Players Gold 117 Super Rare', 'BUND-SC21-S-TP117-GLD'), + (0xccf2eee3b334bb06e0f91157ec56e8efd6f10dca, 'YetiSwap Special NFT', 'YTSSNFT'), + (0xccfad04abc3a259c376690e5ff933c8e6e54f721, 'Order', 'LP'), + (0xccfc1869b92c0ced15f3a2619cea91a64f00a727, 'Chicago White Sox® Jose Abreu Base Independence Day RWB 84 Rare', 'MLB-22S1-R-B84-M-RWB'), + (0xcd07d47daccc94e8e70927b957bcbd08d5667316, 'Along The Way', 'Lost'), + (0xcd1386fcbda282f59795acdd9ff65c04ae0fae3e, 'StardustBoxes', 'SBOX'), + (0xcd173f5cdf5b623d80898f6a87af07ae30ea3c17, 'Toronto Blue Jays® Bo Bichette Inception Base White 93 Common', 'MLB-INC21-C-IB93-WHT'), + (0xcd1d5f44a8ad7e61a22dea36fd1ea39dc4860503, 'Hamsa V1 Pool Tokens', 'HP-V1-PT'), + (0xcd2f13ba2bc16cd0422994056c7fe3f63a1e5a96, 'Cleveland Guardians™ Jose Ramirez Stars of MLB Chrome Night SMLBC-7 Legendary', 'MLB-22S1-L-SMLBC7-M-NIT'), + (0xcd301f705becf410f9beffae891a2651a8715b61, 'Rare Comic 4 1-4 Bazooka Joe 2021 NFT', 'BZK-R-4C'), + (0xcd33a51eeb14bca11e384d70389d3d53d610fcf1, 'St. Louis Cardinals® Jack Flaherty Inception Base Blue 87 Uncommon', 'MLB-INC21-U-IB87-BLU'), + (0xcd367ce032b02963d0e4bddef0da30fdcda6a21a, 'Arab Munkz', 'ARBZ'), + (0xcd3e1d0406d56c6bf869458fc03a45ca9e95275a, 'Baltimore Orioles® John Means Base White 253 Common', 'MLB-22S1-C-B250-S-WHI'), + (0xcd3e89a07e119ed1ee42de532a967f4cbe1e7660, 'Redlight Finance - BIP', 'RLFBIP'), + (0xcd4b5dd701053d54d9da43a31603b3100c9c24d9, 'Baltimore Orioles® Trey Mancini Base Independence Day RWB 79 Rare', 'MLB-22S1-R-B79-M-RWB'), + (0xcd525d86da8796ea495d700caa650faf6ffb8f07, 'Chicago White Sox® Eloy Jimenez Silver Signings Facsimile Signature Silver 11 Super Rare', 'MLB-INC21-S-SS11-SLV'), + (0xcd55b7652668c0aa185931e7cbbb7c0631948c68, 'Toronto Blue Jays® Ken Giles P Base Static Gold 422 Uncommon', 'MLB-S221-U-B422-GOL'), + (0xcd5809f2ff6f855abb53f7f6dd58e8d725dbfc10, 'Houston Astros® Andre Scrubb P Facsimile Signature Static Red 384 Epic', 'MLB-S221-E-FS384-RED'), + (0xcd619300ac70cf2338f366f6358e07d8c96bc8d5, 'Los Angeles Dodgers® Julio Urias Championship Series Silver 32 Epic', 'MLB-21POST-E-CS32-M-SIL'), + (0xcd6754b1d55f12093448771f1f859d7f40431b62, 'No Name', 'NONAME'), + (0xcd6a3c3606124769ec6f91fc43c46f3c178dcc36, 'Tampa Bay Rays™ Josh Fleming P Base Motion Vintage Stock 526 Super Rare', 'MLB-S221-S-B526-VS'), + (0xcd6e4a5d60e47a4505c8a49836a20155eac91fba, 'Superpower Mystery Box B', 'SSMBBTest'), + (0xcd79e3698446fe97b8ea8429d06909acbdfc88e9, 'Chicago White Sox® Yermin Mercedes Base Independence Day RWB 141 Rare', 'MLB-22S1-R-B140-M-RWB'), + (0xcd876d7f56d9b392acdc8f1ca4f5b6ed415a63b7, 'Godzilla: Final Wars (2004) Movie Poster Blue 3 Super Rare', 'GDZ-GVG22-S-MP3-A-BLU'), + (0xcd88b27ef924c5f87d8bb558aece53961fd6d65a, 'Boston Red Sox® Connor Wong Base Pink 1224 Uncommon', 'MLB-22PRI-U-B148-M-PNK'), + (0xcd89a05155326df8afc6a1977b5dbda11562762b, 'Cleveland Indians® Triston McKenzie P 1986 Anniversary Static Team Colors 86B-2 Super Rare', 'MLB-S221-S-1986A86B-2-TMC'), + (0xcd8a290372959d22bae4a31481ee53fef9624ab4, 'vjhb', 'hjn'), + (0xcd8ef7166e63699ba5367f4231fa37950752d4fc, 'Texas Rangers® Nick Solak 2B/OF Base Motion Platinum 583 Epic', 'MLB-S221-E-B583-PLA'), + (0xcd9199fafb70c63de5631ff217cedf4d2358c80c, 'Colony Booth', 'gLW'), + (0xcd9e25e06a093c24e0fd6873a187c7a17445f13a, 'Turkish fight club', 'Truck'), + (0xcda4376178bf8c5b378260f9bd4f63a20e0240a6, 'Jamie Leweling FCU Ascendent Facsimile Signature Blue TK-50 Legendary', 'BUND-22TK-L-ASCTK-50-S-BLU'), + (0xcdaf96bb0d5c4e08f134e96c61589c987e848cfb, 'Atlanta Braves™ Dansby Swanson Division Series Bronze 52 Super Rare', 'MLB-21POST-S-D52-M-BRO'), + (0xcdb06a03af8b26ea825869d38100aacaf0c50249, 'Super Rare Comic 45 1-45 Bazooka Joe 2021 NFT', 'BZK-S-45C'), + (0xcdc66d6009bcea6aee244db9ff121562b07e25cb, 'New York Mets® Francisco Lindor Base Pink 1078 Uncommon', 'MLB-22PRI-U-B57-M-PNK'), + (0xcdc8ce46c671e6bab7973311cc72144838d97f3e, 'Angels® Jared Walsh Base Independence Day RWB 154 Rare', 'MLB-22S1-R-B153-M-RWB'), + (0xcdcd172b65485882fb38fe61b1ed8cc6fddab606, 'BTDCBT', 'BTDCBT'), + (0xcdd28298766d4c7f1ed7d8ad7d18cec613d10284, 'Tampa Bay Rays™ Austin Meadows Generation NOW Team Colors GN-25 Epic', 'MLB-22S1-E-GN25-M-TMC'), + (0xcdd6140799e20fc162676c5969470d8be084b648, 'Eintracht Frankfurt SGE Insert Pennant Team Color S4P-15 Uncommon', 'BUND-21TS4-U-IS4P-15-S-TMC'), + (0xcddb12266243fafeec689ce5d4237976b70f0f88, 'City Badges', 'CTBADGE'), + (0xcddc2c92323274fec0576139d505bee23706cceb, 'Chicago Cubs® Nico Hoerner Gold Signings Facsimile Signature Gold 6 Epic', 'MLB-INC21-E-SS6-GLD'), + (0xcde5599bc39f9c31f6ad5079755639598f230a21, 'Kansas City Royals® Brad Keller P Base Motion Rainbow 544 Rare', 'MLB-S221-R-B544-RAI'), + (0xcde9a85bc20cf5a87c11f5af782a17a674c9ed14, 'Detroit Tigers® Zack Short Base Independence Day RWB 148 Rare', 'MLB-22S1-R-B147-M-RWB'), + (0xcded249eccd41722fbae8d3f6ae637702261b77f, 'My NFT Token', 'MNT'), + (0xcdf2be7092b5963c614e90faf13a92203f43787e, 'Baltimore Orioles® Trey Mancini OF/1B Base Motion Platinum 573 Epic', 'MLB-S221-E-B573-PLA'), + (0xce048aadbfdcb496d7548be3236899279e97d637, 'San Francisco Giants® Brandon Belt 1B Base Motion Platinum 405 Epic', 'MLB-S221-E-B405-PLA'), + (0xce09a06dc6ac2fe5dfb16d1883c2305ceb3bfad8, 'Erling Haaland DOR Club Phemons Team Color S4CPH-06 Epic', 'BUND-21TS4-E-CPHS4CPH-06-V-TMC'), + (0xce21e1a9dec0a671b6fd84861c1d2782c16d16a3, 'Arizona Diamondbacks® Ketel Marte Base Glitch 275 Uncommon', 'MLB-22S1-U-B272-M-GLI'), + (0xce248c0933511aa6f0e32d7d77d5c2a231c1acaf, 'Atlanta Braves™ Dansby Swanson Topps NOW White 1038 Rare', 'MLB-21NOW-R-TN1038-WHI'), + (0xce25a0d62e21488c8b0abc57f9820ea2d63a780c, 'TERRAFERMA', 'TERRA'), + (0xce25a26d00e312863c8e34c36ff69c8c068d0cea, 'Angels® Shohei Ohtani Inception Base Black 45 Legendary', 'MLB-INC21-L-IB45-BLK'), + (0xce298abf6e0b57f2b706d56c1e42320fe18b1b3c, 'Fat GainZ NFT', 'FGAINZ'), + (0xce2cff70bed9041bcb6e5bd33cfd62467d4f7648, 'Texas Rangers® Nick Solak Base Blue 1088 Common', 'MLB-22PRI-C-B107-M-BLU'), + (0xce2fe4973849018522627302fd394f3830e00a91, 'Texas Rangers® Isiah Kiner-Falefa SS/3B Base Static Gold 397 Uncommon', 'MLB-S221-U-B397-GOL'), + (0xce30366cae09ca109e8c5d860dceb717951dfb62, 'Bored Adam Yuck Club Golden Animation Facsimile Signature Color 1 Legendary', 'GPK-NFT22-L-GAFS1-A-COL'), + (0xce36e84aab4accce3a31ebfce7f9538f1ec99071, 'Chicago White Sox® Garrett Crochet P Base Motion Rainbow 362 Rare', 'MLB-S221-R-B362-RAI'), + (0xce3fa9bc0a09b9b2b3229d3f276bb6e415166bb7, 'Chicago Cubs® Jason Heyward Base Glitch 323 Uncommon', 'MLB-22S1-U-B319-M-GLI'), + (0xce5228f2067721aeb8195e9aea57afb9f52fb114, 'Pittsburgh Pirates® Bryan Reynolds Base Blue 1052 Common', 'MLB-22PRI-C-B89-M-BLU'), + (0xce5e861df8487bde0c27f97a8b516612ff096169, 'DSC Arminia Bielefeld Arne Maier Young Stars Team Color 177 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS177-SFS-TMC'), + (0xce5f29ea2e2b86fb087febeac7d343a3ac91c95c, 'Common Comic 90 2-42 Bazooka Joe 2021 NFT', 'BZK-C-90C'), + (0xce8161d301c132096690e97dc73fc075cb929e5f, 'PDIManagedServices', 'PDI2022'), + (0xce8568149b4b2618442d49093b2d14e8fdc9f7c3, 'Patrick Wimmer WOB Color Splash Facsimile Signature Team Color TK-59 Legendary', 'BUND-22TK-L-CSTK-59-S-TMC'), + (0xce897514cd9c6436ed5684979deb0fc4e96aab76, 'Philadelphia Phillies® Alec Bohm Inception Base White 72 Common', 'MLB-INC21-C-IB72-WHT'), + (0xce8f1bb51a81b3ba9f44c80095dcfc516173cf2f, 'VfL Wolfsburg Pavao Pervan Top Saves Team Color TS-7 Epic', 'BUND-SC21-E-TSTS-7-TMC'), + (0xce9c119eb2581837f49a6a23d9b2ba535864eddb, 'Bayer 04 Leverkusen Julian Baumgartlinger Base Players Gold 22 Rare', 'BUND-SC21-R-BP22-GLD'), + (0xcea384e19de5e6abe7d0253be071e75815036cc1, 'Tampa Bay Rays™ Tyler Glasnow P Base Motion Vintage Stock 629 Super Rare', 'MLB-S221-S-B629-VS'), + (0xcea60ac8b7f25afd5bb6defab0c892d31f341be9, 'Borussia Monchengladbach Breel Embolo Base Players Team Color 16 Uncommon', 'BUND-SC21-U-BP16-TMC'), + (0xcea73f162c0345260497b89b3ea16e6983647bcd, 'Washington Nationals® Alcides Escobar Base Glitch 116 Uncommon', 'MLB-22S1-U-B115-M-GLI'), + (0xceb26c2b268752bfa4e8d30ef9721bed27d8e37e, 'Cincinnati Reds® Eugenio Suarez Base Vintage Stock 314 Super Rare', 'MLB-22S1-S-B310-M-VS'), + (0xceb4c32b2987f3476e70894f90167b12f8f06db8, 'New York Yankees® Joey Gallo Base Independence Day RWB 322 Rare', 'MLB-22S1-R-B318-M-RWB'), + (0xcebfcdfe861d1047743492c347a172bebdb7ef32, 'Boston Red Sox® Christian Vazquez C Base Static Gold 557 Uncommon', 'MLB-S221-U-B557-GOL'), + (0xcec4108fb5f400101ae586f9c32776a8933b4b95, 'San Diego Padres™ Yu Darvish Base Glitch 309 Uncommon', 'MLB-22S1-U-B305-M-GLI'), + (0xceccbfc4f1e0bb64034280c5505f66eaf185a851, 'FC Union Berlin Max Kruse Top Players Gold 121 Super Rare', 'BUND-SC21-S-TP121-GLD'), + (0xcecf23ed89575c5ba597aeec3b0e0edc0929fadd, 'Common Comic 77 2-29 Bazooka Joe 2021 NFT', 'BZK-C-77C'), + (0xced5a1061f5507172059fe760ca2e9f050cabf02, 'Universal Vault v1', 'VAULT-v1'), + (0xced6b353c898a8aa700dfffd3271876ee43f977a, 'City Destroyer Moment Color 5 Uncommon', 'GDZ-GVG22-U-M5-V-COL'), + (0xced9c152e7ca4bb364874fe1eb4d57a7fb83f552, 'Hertha Berlin Krzysztof Piatek Top Players Gold 119 Super Rare', 'BUND-SC21-S-TP119-GLD'), + (0xcedbdf7f30af615d14066ecb8cc866926301ada3, 'Atlanta Braves™ Freddie Freeman Inception Base White 3 Common', 'MLB-INC21-C-IB3-WHT'), + (0xcedcc1970300437e0f0f35b4b3f1ba1c9646f5d2, 'CloudHeadz Customs', 'ChzC'), + (0xcee65b88d44362842eb1f319d1cd574f8a1d292c, 'Angels® Anthony Rendon 3B Base Motion Platinum 550 Epic', 'MLB-S221-E-B550-PLA'), + (0xcee89c474f1250559ca494332153c5e003d9eccb, 'Manu Koné BMG Ascendent Blue TK-44 Super Rare', 'BUND-22TK-S-ASCTK-44-S-BLU'), + (0xcef744cbba7bb89c24821de552c823b06b270e8b, 'Boston Red Sox® Matt Barnes Postseason Base White 72 Common', 'MLB-21POST-C-B72-S-WHI'), + (0xcef87decc4d9fe8356a0b1fbed9b5f497bb9dbae, 'Common Comic 97 2-49 Bazooka Joe 2021 NFT', 'BZK-C-97C'), + (0xcefc6c323689795156d113f064eb2627af3e4fc1, 'Luca Kilian KOE Color Splash White TK-69 Uncommon', 'BUND-22TK-U-CSTK-69-S-WHI'), + (0xcefce3c3c61f961cbbc9b7fd81124afdc021f08d, 'Tampa Bay Rays™ Shane McClanahan Postseason Base White 8 Common', 'MLB-21POST-C-B8-S-WHI'), + (0xcf14ef139cf4319308ce386ec5e8ddab61f51fed, 'Mogul Productions', 'mp'), + (0xcf212a3e3828637068ea3123e229482cc5b98472, 'Danny Da Costa M05 Color Splash Facsimile Signature Team Color TK-66 Legendary', 'BUND-22TK-L-CSTK-66-S-TMC'), + (0xcf21484ab11164d30ec264f778ce9125b369c6e1, 'Toronto Blue Jays® George Springer OF 1986 Anniversary Facsimile Signature Motion Chrome 86TC-20 Legendary', 'MLB-S221-L-1986AFS86TC-20-CHR'), + (0xcf2cdba60b8c8b589f46f77e133f646f86564c2c, 'San Francisco Giants® Base Static White 603 Common', 'MLB-S221-C-B603-WHI'), + (0xcf30f11aec1a59412b406a6a570e16123afcc4a8, 'Houston Astros® Kyle Tucker OF Base Motion Platinum 617 Epic', 'MLB-S221-E-B617-PLA'), + (0xcf379eb832f35a6dbabf06a05bfd0303cf87ad9b, 'Sproutcoin Spring Animation Facsimile Signature Color 22 Super Rare', 'GPK-NFT22-S-AFS22-A-COL'), + (0xcf39ff4bf444540cb177ccf02425e9c812869600, 'Atlanta Braves™ Cristian Pache Base Independence Day RWB 233 Rare', 'MLB-22S1-R-B230-M-RWB'), + (0xcf4300933d62cfa10704f8c659d25c6ec8f08c31, 'Tampa Bay Rays™ Randy Arozarena OF Base Motion Vintage Stock 600 Super Rare', 'MLB-S221-S-B600-VS'), + (0xcf4ac4b06ffaadd09b68243abbf914105a382b5b, 'San Diego Padres™ Joe Musgrove Wild Card Broadcast RWB 1052 Rare', 'MLB-22TNP-R-WCA4-M-RWB'), + (0xcf560d8f3baa3c9f34a0a61a7ac86857646dd690, 'St. Louis Cardinals® Andrew Miller P Base Static White 437 Common', 'MLB-S221-C-B437-WHI'), + (0xcf574970a5a861a168939a3e63cffda9ae3c6904, 'Kansas City Royals® Nicky Lopez 2B Base Motion Rainbow 415 Rare', 'MLB-S221-R-B415-RAI'), + (0xcf599e276821fdff2cce299b031d13f24e9119b8, 'Jordan White RSC Base White SP-34 Common', 'SPFL-21SPSS-C-BSP-34-A-WHI'), + (0xcf5a43a03654f5990bfa54ae54b079a4c5bd4845, 'FC Augsburg Florian Niederlechner Top Players Gold 135 Super Rare', 'BUND-SC21-S-TP135-GLD'), + (0xcf5da26e4fd5b41c63976bc46b0f8604a0587546, 'Cleveland Guardians™ Josh Naylor Base White 77 Common', 'MLB-22S1-C-B77-S-WHI'), + (0xcf63bd2f3284aec4dc2aee040f227f9975100291, 'Diamond Hans Base Color 19 Common', 'GPK-NFT22-C-B19-S-COL'), + (0xcf662266cf4095c67b16ec2fcb926294292b1552, 'Oakland Athletics™ Sean Manaea Base Glitch 281 Uncommon', 'MLB-22S1-U-B278-M-GLI'), + (0xcf6c644c2c5372738164e2dce723df2f7fd08ad5, 'Niclas Füllkrug SVW Top Players Team Color TK-34 Rare', 'BUND-22TK-R-TPTK-34-S-TMC'), + (0xcf6e65c6493452e86b2b8ae42ba3c845c7de4c12, 'Philadelphia Phillies® Luke Williams Base Glitch 62 Uncommon', 'MLB-22S1-U-B62-M-GLI'), + (0xcf735808a42c06ea06533ce2bc4a4a3a78565326, 'pumpskin Golden NFTicket', 'PGN'), + (0xcf7e3b3c19efcb54fd41bb7bbbe2c67078026f49, 'Chicago White Sox® Andrew Vaughn Base Independence Day RWB 120 Rare', 'MLB-22S1-R-B119-M-RWB'), + (0xcf899eb3b4f49bd8404cd0ea81c9392c03773f64, 'National League™ Max Muncy Base Pink 1286 Uncommon', 'MLB-22PRI-U-B202-M-PNK'), + (0xcf9077e3cf826b8d27cd063a5929656e20107125, 'Pinoepple Club', 'PNPL'), + (0xcf9560a68c3f4525c6accefbf5374718b8305cb5, '111 AAA', 'AAA'), + (0xcf9a114be408bc09dc9fae22af1c3bacc113e2f8, 'Chicago White Sox® Lucas Giolito Regular Season Division Winners RWB 13 Rare', 'MLB-21POST-R-R13-M-RWB'), + (0xcfa13d92198244ee62cf68af19c8a4a80bb3541f, 'Mile High Ape Club', 'MHC'), + (0xcfa6cd045eccf56403751d3479c3f28743510fac, 'ArtPrompt X AI', 'AXAI'), + (0xcfa94122dba3fe4ce1a2dd2753005b250635768b, 'GBWarehouse', 'GBW'), + (0xcfab3385d8a45e050faeaa1a0f550ac82cab773c, 'UC22-PDIHostingServices', 'PDI2022'), + (0xcfaf7b4359fdc04b0fbed5aa2661e9da36719d31, 'Houston Astros® Jose Altuve Popular Demand Facsimile Signature Teal 3529 Legendary', 'MLB-22PRI-L-PDFS8-M-TEA'), + (0xcfb65cd8c29cab455a296d0caba7afaa65cad0e1, 'Alassane Plea BMG Motion Rainbow Refractor S3-24 Super Rare', 'BUND-21TS3-S-MS3-24-V-RAI'), + (0xcfba227800b052e8c587abf9868f0db974f5ba63, 'Pittsburgh Pirates® Bryan Reynolds Rookie and Future Phenoms Facsimile Signature White 63 Rare', 'MLB-INC21-R-RC63-WHT'), + (0xcfc9ab0fd7e17fdb7dcd90e136baa8922661667a, 'Boston Red Sox® Hunter Renfroe Wild Card Contenders Blue 3 Common', 'MLB-21POST-C-W3-M-BLU'), + (0xcfd5db6977e114533650f92c39c83a330f16ce99, 'Philadelphia Phillies® Scott Kingery 2B/OF Base Motion Vintage Stock 464 Super Rare', 'MLB-S221-S-B464-VS'), + (0xcfdd59ec7fffbed8315e1ccce6a86295311d9a46, 'Wooyeong Jeong SCF Ascendent Facsimile Signature Blue TK-46 Legendary', 'BUND-22TK-L-ASCTK-46-S-BLU'), + (0xcfe6a9638b58570dba883fd11c43591906f144de, 'Oakland Athletics™ Matt Chapman Base Independence Day RWB 176 Rare', 'MLB-22S1-R-B175-M-RWB'), + (0xcfe6b22c606d39b6dba27429207ca73dacda2cbe, 'Chicago White Sox® Lance Lynn Division Series Bronze 31 Super Rare', 'MLB-21POST-S-D31-M-BRO'), + (0xcfea1b741d927172a566e04ab8a9e5373cefe0fb, 'New York Mets® James McCann C Base Motion Platinum 410 Epic', 'MLB-S221-E-B410-PLA'), + (0xcfecb295dfc9147ff722539508209464cca00392, 'Ellyes Skhiri KOE Top Players Team Color TK-30 Rare', 'BUND-22TK-R-TPTK-30-S-TMC'), + (0xcfed49f8cdce7582ec86327016e18153e8f2875a, 'Kansas City Royals® Brady Singer Base Independence Day RWB 313 Rare', 'MLB-22S1-R-B309-M-RWB'), + (0xcff1013584060cf075adf27dba1d2b5ad99d134c, 'The Pickaxes', 'Pickaxes'), + (0xcff4f6c04685536434193ab4d486cb285cc850a6, 'Oakland Athletics™ Matt Chapman 2022 Definitive Gold 23 Legendary', 'MLB-22LEG-L-22DEF23-M-GLD'), + (0xcff6ffcb5839fac764d8fa4c481bda463a5a089c, 'New York Mets® Pete Alonso Base Blue 1048 Common', 'MLB-22PRI-C-B30-M-BLU'), + (0xcff738fcb420c78a1cb8181e1e3cb941ed7a38d1, 'Philadelphia Phillies® Bryce Harper Popular Demand Facsimile Signature Slab Teal 3504 Legendary', 'MLB-22PRI-L-PDFS2-M-TEA'), + (0xcffeb77b53dd3cbd7a00ec20bf48a41ad5bd7cd1, 'Atlanta Braves™ Cole Hamels P Base Motion Platinum 495 Epic', 'MLB-S221-E-B495-PLA'), + (0xd00bd9f0d255cca3018c6c8276a964ed31f1eb78, 'Houston Astros® Jason Castro C Base Motion Vintage Stock 620 Super Rare', 'MLB-S221-S-B620-VS'), + (0xd00e7f7fa1636da390d17f1ee03ba109b74ba40b, 'New York Yankees® Deivi Garcia P 1986 Anniversary Static Team Colors 86B-25 Super Rare', 'MLB-S221-S-1986A86B-25-TMC'), + (0xd00fc1b81f5edcb739d5e404ce25a399707f2269, 'Houston Astros® Framber Valdez P Base Motion Platinum 514 Epic', 'MLB-S221-E-B514-PLA'), + (0xd010a7a904999d9ab94a0be940c8ce793a4258da, 'Houston Astros® Luis Garcia P Base Motion Rainbow 547 Rare', 'MLB-S221-R-B547-RAI'), + (0xd012ec9d873777c90fd7a93785c9ff3a2635dc19, 'Munas Dabbur TSG Motion Aqua Refractor S3-35 Rare', 'BUND-21TS3-R-MS3-35-V-AQU'), + (0xd018b14b65046c9526e172d92ec884a957671123, 'National League™ Trevor Rogers Base Blue 1296 Common', 'MLB-22PRI-C-B191-M-BLU'), + (0xd028b8c018dfc0c9ca299bc31a33fdc73c063ca4, 'MetaCats', 'MTC'), + (0xd02c8ceed2c2f0263316cf9e18f710d9a79671cc, 'Los Angeles Dodgers® Corey Seager SS Base Static White 450 Common', 'MLB-S221-C-B450-WHI'), + (0xd054460840fa476ae6f1a835030bed928935cf66, 'New York Mets® Jacob deGrom Base White 330 Common', 'MLB-22S1-C-B326-S-WHI'), + (0xd05a0e2c25294ac029ab5c27a73e821a7122f750, 'Chicago White Sox® Garrett Crochet Base White 239 Common', 'MLB-22S1-C-B236-S-WHI'), + (0xd05c4c1a9dea65fb6e45fcaa6f3907e468b00714, 'Shin Godzilla Form 4 Toppsicle Color 3 Legendary', 'GDZ-RAT21-L-RTP3-A-COL'), + (0xd05f0d5365ff7186ba02dcd7c59a4434fc668317, 'Los Angeles Dodgers® Max Scherzer Base Blue 1091 Common', 'MLB-22PRI-C-B104-M-BLU'), + (0xd0608665e05e4d07b092eaabd21ba6f5d140cb1e, 'Patrick Wimmer DSC Base Red S4-44 Uncommon', 'BUND-21TS4-U-BS4-44-S-RED'), + (0xd06122508d4077cab4495f567bc044df523f1ab7, 'Borussia Monchengladbach Nico Elvedi Base Players Gold 19 Rare', 'BUND-SC21-R-BP19-GLD'), + (0xd0623802f2db7f5f78a1096356a777fe9e26f062, 'Los Angeles Dodgers® Justin Turner Wild Card Contenders Blue 19 Common', 'MLB-21POST-C-W19-M-BLU'), + (0xd066ccf405275106618a20be7a8e1ea6a3fd9d37, 'Atlanta Braves™ Freddie Freeman Facsimile Signature Glitch 236 Epic', 'MLB-22S1-E-FS14-M-GLI'), + (0xd066e1ef9fddd66e9d2c2fca0358a25bd50aabbb, 'Chicago White Sox® Liam Hendriks Postseason Base Navy 16 Uncommon', 'MLB-21POST-U-B16-M-NVY'), + (0xd0696e2a33da416f0f79bf7eb4e2f64371abb756, 'Washington Nationals® Juan Soto Inception Base Red 96 Rare', 'MLB-INC21-R-IB96-RED'), + (0xd06e475d8f465e0b55312a3e0fde2f913940ebc2, 'Washington Nationals® Victor Robles OF Base Motion Rainbow 343 Rare', 'MLB-S221-R-B343-RAI'), + (0xd0729e9bbf1e8149d7d5f50740af79b240567632, 'San Diego Padres™ Adrian Morejon P Base Motion Platinum 518 Epic', 'MLB-S221-E-B518-PLA'), + (0xd0749100609868b00a039e86eb3fdc7aa11acd06, 'Chicago White Sox® Nick Madrigal 2B 1986 Anniversary Static Team Colors 86B-10 Super Rare', 'MLB-S221-S-1986A86B-10-TMC'), + (0xd075e705913728fb3f27971fa2168adb8435bf1d, 'New York Yankees® Gary Sanchez C Base Static Gold 525 Uncommon', 'MLB-S221-U-B525-GOL'), + (0xd078254d0db6fcbf95ec25cbda8d022f6f8986ae, 'Milwaukee Brewers™ Devin Williams P Facsimile Signature Static Red 485 Epic', 'MLB-S221-E-FS485-RED'), + (0xd07ba5b031d2f37e49456ee02e23ef13c73f2435, 'Allan McGregor RFC Top Saves Gold SPTS-10 Legendary', 'SPFL-21SPSS-L-TSSPTS-10-V-GOL'), + (0xd085f99d435d8e67eb7ca4f8899a069b12fb19af, 'Rome is Burning Comic Cover Color 2 Rare', 'GDZ-RAT21-R-CC2-S-COL'), + (0xd0868b02a1e15726d36ce4872e57c9716fc58767, 'Philadelphia Phillies® Ian Kennedy Base Glitch 102 Uncommon', 'MLB-22S1-U-B101-M-GLI'), + (0xd08eead1c534c2df3a09d80622360826c20479fb, 'Uncommon Comic 40 1-40 Bazooka Joe 2021 NFT', 'BZK-U-40C'), + (0xd09438cd73eda41edfcd8be48d6748fd89345ca1, 'National League™ 2021 Wins Leaders Base White 105 Common', 'MLB-22S1-C-B104-S-WHI'), + (0xd0a1b035339e98257b8904d907b50a7a61912523, 'Toronto Blue Jays® Julian Merryweather P Base Motion Rainbow 581 Rare', 'MLB-S221-R-B581-RAI'), + (0xd0a29392db95d578b4dbcd3ca11dca24d34a6af2, 'Houston Astros® Zack Greinke Base Independence Day RWB 51 Rare', 'MLB-22S1-R-B51-M-RWB'), + (0xd0a493b17bd0730015e4214fb8d5849ca0084d6b, 'Non Fungible Minutes', 'NFM'), + (0xd0ac7011db96140d335f6188877992510660634c, 'SMOL KIRBY', 'SK'), + (0xd0b0c98e069ea2eb2abd0641e1b2de9873d2f7be, 'Tampa Bay Rays™ Randy Arozarena AL Rookie of the Year Reward Gold Epic', 'MLB-21REWARD-E-ALROY1-M-GOLD'), + (0xd0b343eb1e7cb2f7b7152e8fc753707c90b6774f, 'Joepegs Spaces', 'JPGSPACES'), + (0xd0b5b2bd0a4b65b353fae69ebce7e3d65894637b, 'Cosmic Flora', 'CSM'), + (0xd0bdcd629758df4011ac3a85caba69d3d07f59e2, 'Salty Sea Birds', 'SSB'), + (0xd0c694af94bffb108667aa26962f921b25cc8a1c, 'RunBlox', 'SHOE'), + (0xd0c6b64cdb74b6b6cd2d37aaef74d8b7a27057fd, 'Kori Toy', 'KoriToy'), + (0xd0db045e4daa73dee74f107066ee3925fbc964c2, 'Toronto Blue Jays® Vladimir Guerrero Jr. Base Vintage Stock 300 Super Rare', 'MLB-22S1-S-B296-M-VS'), + (0xd0ebd0ead762aea3d10a99a766a2d5b89be6f88e, 'Super Rare Comic 11 1-11 Bazooka Joe 2021 NFT', 'BZK-S-11C'), + (0xd0f277337b6b0e3f3f6dd68d3b7cce6d42f8eb01, 'New York Mets® Taijuan Walker Base Vintage Stock 312 Super Rare', 'MLB-22S1-S-B308-M-VS'), + (0xd0f63d12aa85893697a7dc8fda6ee134d9d32c5e, 'Godzilla Base Collectible Blue 11 Common', 'GDZ-RAT21-C-B11-S-BLU'), + (0xd0f8212b67e3a3a4e2753714deccbf6184a6a17f, 'Ai0NE Planets', 'AiPLTS'), + (0xd10308c7e053b3c7a80dd697bc6bb78c3b42cf1f, 'Neon City Racing League', 'NCRL'), + (0xd10dd675a4485175b4d614f7bcf297f1bde605a4, 'Cincinnati Reds® Jonathan India NL Rookie of the Year Reward Gold Epic', 'MLB-21REWARD-E-NLROY1-M-GOLD'), + (0xd11181f8bdfe7f732a8d75dabb31225cc6338c96, 'Texas Rangers® Yonny Hernandez Base Pink 1306 Uncommon', 'MLB-22PRI-U-B139-M-PNK'), + (0xd112bd33bfabcd38952dacfd01ac6887bde25901, 'Woo-yeong Jeong SCF Animation Gold Refractor S1-06 Legendary', 'BUND-21TS1-L-AS1-06-V-GOL'), + (0xd118a38eb865f19117d19fa6ce39f92c7f8c82d7, 'Superpower Mystery Box B', 'SSMBBTest'), + (0xd11d2c22f25dda7078ef99435ac0d1275f53d797, 'Philadelphia Phillies® J.T. Realmuto Base Independence Day RWB 180 Rare', 'MLB-22S1-R-B179-M-RWB'), + (0xd11f1f9e6aac31b014c63a93ab7921b697ba3c38, 'San Diego Padres™ Luis Campusano C Base Static White 381 Common', 'MLB-S221-C-B381-WHI'), + (0xd1284a2e66ad47c5d6db5fd97d63641a3cbb38e0, 'Cincinnati Reds® Tony Santillan Base Blue 1203 Common', 'MLB-22PRI-C-B174-M-BLU'), + (0xd12cf7061877aa96c74ac672a083863ab5a9d09a, 'RB Leipzig Marcel Sabitzer Top Players Gold 97 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP97-AFS-GLD'), + (0xd132e2a83a6c73e03c18dfa4c53a976ac25dbdf7, 'Baltimore Orioles® Jahmai Jones 2B Base Motion Vintage Stock 507 Super Rare', 'MLB-S221-S-B507-VS'), + (0xd13317a3ee5d07efcac1c8e4e85add5ce057ea31, 'Hodl B4C', 'HB4C'), + (0xd135f80bcda175f7f85f07e8736812e24e9267e7, 'FONTANELLES', 'FNT'), + (0xd1376169f27a9805aae5962794b6383c8bc2f46e, 'EAT-NFTs', 'EAT'), + (0xd13ac43578017e292cf0d2aa561802b19536d60f, 'Super Rare Comic 101 2-53 Bazooka Joe 2021 NFT', 'BZK-S-101C'), + (0xd13b2fd0f98714daa5f4fe67ab5b7a5e0c8a9a0c, 'Kevin Dąbrowski HIB Top Saves Purple SPTS-12 Rare', 'SPFL-21SPSS-R-TSSPTS-12-V-PUR'), + (0xd1401c99f05f52913f693d8ec823e3fd8531142f, 'Miloš Pantović BOC Motion Rainbow Refractor S3-21 Super Rare', 'BUND-21TS3-S-MS3-21-V-RAI'), + (0xd14ffd82d4b247061f3de163bb68de7e99ac084c, 'Atlanta Braves™ Kyle Muller Base Vintage Stock 30 Super Rare', 'MLB-22S1-S-B30-M-VS'), + (0xd15901fbc8a0c67bae1596761e0d6a6f99f0cb1c, 'Superpower Mystery Box A', 'SSMBATest'), + (0xd15c271d9b93bf2e2aae2f3a2e776a64789743d1, 'Angels® Shohei Ohtani Base Glitch 1 Uncommon', 'MLB-22S1-U-B1-M-GLI'), + (0xd166211fb8a5760d894e202abd41a37734ff8289, 'Uncommon Comic 5 1-5 Bazooka Joe 2021 NFT', 'BZK-U-5C'), + (0xd167300b1977568c4ab543f0ba78e7e33ad39362, 'Philadelphia Phillies® Luke Williams Base Vintage Stock 62 Super Rare', 'MLB-22S1-S-B62-M-VS'), + (0xd1688ef18726e7196eadbd1240ab19939bfd4d05, 'Kansas City Royals® Bubba Starling OF Base Static White 375 Common', 'MLB-S221-C-B375-WHI'), + (0xd16f1c8aff65bc57230bd73990773757f6f70286, 'Jonathan Burkardt M05 Base White S2-19 Common', 'BUND-21TS2-C-BS2-19-S-WHI'), + (0xd175419c8632e749780865d22a184289c81e0bf2, 'Jungle Keys', 'JNGLKEYS'), + (0xd1808b3a24216034d80dc1423d9fc544ef6886c6, 'marix', 'MARIX'), + (0xd18a975367e676ab254a4fc8669cc5582749a8c6, 'Whiskey & Coq', 'WHISKEYCOQ'), + (0xd1907ea8443b0e8ae61bd4f345f0d56b0155d585, 'Kyogo Furuhashi CEL Base Aqua SP-06 Uncommon', 'SPFL-21SPSS-U-BSP-06-A-AQU'), + (0xd1919cd5981d958b4d50b2968e96403534cd3032, 'Toronto Blue Jays® Tom Hatch P Base Motion Platinum 556 Epic', 'MLB-S221-E-B556-PLA'), + (0xd191bb4cd59e049d5b8721e465e90450b8fce011, 'San Francisco Giants® Mauricio Dubon Base White 246 Common', 'MLB-22S1-C-B243-S-WHI'), + (0xd1920e8164a9e75da843744577b7ae3b5d807ec5, 'Milwaukee Brewers™ Jake Cousins Base Glitch 20 Uncommon', 'MLB-22S1-U-B20-M-GLI'), + (0xd1939d99941c6fa02ad1287938b021ec0c2c2297, 'VfB Stuttgart Philipp Förster Base Players Team Color 90 Static Facsimile Signature Rare', 'BUND-SC21-R-BP90-SFS-TMC'), + (0xd1966d855860d8d56619025438cadda852afbfb8, 'Just_Folks', 'J_Folks'), + (0xd19cde79786e2f84b8bd146d858cf281da85c2d0, 'Zomboiz AVA', 'ZomboizA'), + (0xd1a108a4a6789a13741fa52bda2a02c51f39d864, 'New York Yankees® Walk-Off Water Base White 119 Common', 'MLB-22S1-C-B118-S-WHI'), + (0xd1a5bca23e84342f0bf31d43cca6a79b672266c1, 'Seattle Mariners™ Cal Raleigh Base Blue 1214 Common', 'MLB-22PRI-C-B164-M-BLU'), + (0xd1abe083ebf824d48f7ac406d85da05f392862c3, 'Los Angeles Dodgers® Walker Buehler Postseason Base White 39 Common', 'MLB-21POST-C-B39-S-WHI'), + (0xd1b605d0a7fdc00c8fb5f03edc8476f7431ce440, 'Pittsburgh Pirates® Hoy Park Base Glitch 184 Uncommon', 'MLB-22S1-U-B183-M-GLI'), + (0xd1bea550e9425d703693f637de253b7c780e1735, 'Los Angeles Dodgers® Justin Turner Championship Series Silver 27 Epic', 'MLB-21POST-E-CS27-M-SIL'), + (0xd1c2bdc077531252beae287289629e98dca3c791, 'Oakland Athletics™ Jake Lamb 3B/1B Base Motion Platinum 442 Epic', 'MLB-S221-E-B442-PLA'), + (0xd1d15e5a01674d01e5edfd0b550e953c1030e982, 'Hellion Homies', 'Homies'), + (0xd1d55784fda0c3c030a2271daaa9f5e29b873ecf, 'Tampa Bay Rays™ Yandy Diaz Regular Season Division Winners RWB 6 Rare', 'MLB-21POST-R-R6-M-RWB'), + (0xd1da06f449cdfca6824e6b5cfc0ccc3332258743, 'Kansas City Royals® Whit Merrifield Base Glitch 245 Uncommon', 'MLB-22S1-U-B242-M-GLI'), + (0xd1f1f856ffada6a2684cbe0b1981398b6dcb464d, 'Sadio Mané BAY Color Splash Team Color TK-55 Super Rare', 'BUND-22TK-S-CSTK-55-S-TMC'), + (0xd1f3a590be3ecc97cb0f5855e1d10e8671d69ca7, 'Houston Astros® Cristian Javier Base Glitch 211 Uncommon', 'MLB-22S1-U-B209-M-GLI'), + (0xd1f640463efe6ab38e07a7700b9233e77839a486, 'TSG Hoffenheim Robert Skov Base Players Team Color 29 Static Facsimile Signature Rare', 'BUND-SC21-R-BP29-SFS-TMC'), + (0xd1fbd150e897707f9cd2f1de40c488914738e033, 'New York Yankees® Deivi Garcia Silver Signings Facsimile Signature Silver 30 Super Rare', 'MLB-INC21-S-SS30-SLV'), + (0xd1fbdee3c30951ed8212e3c29850efec7eae56b5, 'Cincinnati Reds® Shogo Akiyama OF Base Static White 647 Common', 'MLB-S221-C-B647-WHI'), + (0xd209b9b6f9cba37710f01adc1e00b51b1e3e949f, 'Punk', 'Punk'), + (0xd20acb353eedd5b3cb5ffe9325d3781240df04a2, 'Common Comic 1 1-1 Bazooka Joe 2021 NFT', 'BZK-C-1C'), + (0xd20c41b8ec89da8ff081712d886bd050f4ffc27c, 'Milwaukee Brewers™ Eduardo Escobar Base Glitch 207 Uncommon', 'MLB-22S1-U-B206-M-GLI'), + (0xd218272534f4889ca2cdaa4d641709b77cef534b, 'NFT', 'ZCN'), + (0xd224a060ad587c81a5f3ddcc9ed11f46a6cd856f, 'Grischa Prömel TSG Color Splash Team Color TK-61 Super Rare', 'BUND-22TK-S-CSTK-61-S-TMC'), + (0xd2369ab25d156c7cc93a41e75d93d52e4a2b5ece, 'Eldritch Rising Sprites of Legend', 'LERS'), + (0xd23f4293a46419af653a70b9031efd5df75db26a, 'Philadelphia Phillies® Bryce Harper Inception Base Black 74 Legendary', 'MLB-INC21-L-IB74-BLK'), + (0xd24494927d7ff1c8dc16a140c6cfbb00a25fd808, 'San Francisco Giants® Alex Wood Postseason Base Red 31 Rare', 'MLB-21POST-R-B31-M-RED'), + (0xd2498ed081d9d0a68a2bc07eb2b90cca78b01c21, 'VfL Wolfsburg Maxence Lacroix Young Stars Team Color 157 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS157-SFS-TMC'), + (0xd24fd401489817cdf8f392af6d8ed304bf7f48c6, 'Jan Thielmann KOE Ascendent Blue TK-51 Super Rare', 'BUND-22TK-S-ASCTK-51-S-BLU'), + (0xd250b9c54b35ff96ae74ec00e58fdfbb1e070c8b, 'American League™ Slugger Reunion Base Independence Day RWB 329 Rare', 'MLB-22S1-R-B325-M-RWB'), + (0xd2609a9fb8ac8ffa0ef223f885f34052e20d384d, 'Baltimore Orioles® Renato Nunez 1B Base Motion Platinum 409 Epic', 'MLB-S221-E-B409-PLA'), + (0xd26614dc235d0ba8a3dd6d845cc755483b8f0af5, 'Texas Rangers® Nick Solak Rookie and Future Phenoms Facsimile Signature Blue 75 Super Rare', 'MLB-INC21-S-RC75-BLU'), + (0xd27a1a7594d5be35f81b962c0cd70a289b70c506, 'Borna Sosa VFB Animation Black Refractor S3-27 Epic', 'BUND-21TS3-E-AS3-27-V-BLA'), + (0xd27eda9d5af8387d89a671604da16dd5cb496fe8, 'Atlanta Braves™ Mike Soroka P Base Motion Platinum 388 Epic', 'MLB-S221-E-B388-PLA'), + (0xd2838dcebab0fe0cf8abdf186f6ad4fb82dd4a06, 'cryptoroulette1', 'CRYPROUL1'), + (0xd2882353472ecad2d39510e8d9daca5f4163de45, 'Seattle Mariners™ Rafael Montero P Base Motion Platinum 637 Epic', 'MLB-S221-E-B637-PLA'), + (0xd29da657c92e23ea96bbb190c8c6ff7123cb1c99, 'Kaiju Thunderstorm Event Exclusive Comic Cover Black 1 Epic', 'GDZ-RAT21-E-CCE1-A-BLA'), + (0xd2a322bd45b5dee714d0f6b97154c8ea23f466b1, 'Tampa Bay Rays™ Ji-Man Choi Base Vintage Stock 183 Super Rare', 'MLB-22S1-S-B182-M-VS'), + (0xd2a4a630024a1df0a7405a1fe95e5efb221970e6, 'Borussia Monchengladbach Hannes Wolf Young Stars Team Color 152 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS152-SFS-TMC'), + (0xd2a6159f0600f909430bc0887fcc9c596666f346, 'Philadelphia Phillies® J.T. Realmuto C Base Static White 611 Common', 'MLB-S221-C-B611-WHI'), + (0xd2a779c3493169311612b725854f77f9cb4f6819, 'Chicago Cubs® Willson Contreras Base White 147 Common', 'MLB-22S1-C-B146-S-WHI'), + (0xd2a840fa505d5f709a6a7d13f749b9b5233c4818, 'Cleveland Indians® Franmil Reyes DH Base Static White 341 Common', 'MLB-S221-C-B341-WHI'), + (0xd2b2b3aeab02c59d04331cb7cae5142a147e556c, 'Philadelphia Phillies® Vince Velasquez P Base Motion Platinum 653 Epic', 'MLB-S221-E-B653-PLA'), + (0xd2b68ab21afb13b211d8f90fe3b9aa7342761610, 'Vintage Landscapes', 'LV'), + (0xd2be7425511dcf43e0d18fa40a75b7cdab7cbd3c, 'San Francisco Giants® Joc Pederson National League Base Blue 15 Rare', 'MLB-22ASG-R-B15-M-BLU'), + (0xd2c0a695e3cd1c42ee526cdf2faf75f39256e5d2, 'No Jake!', 'JAKE'), + (0xd2c7b65a24224d4bddd520c1f535bdb2c9cfd1d1, 'mrt', 'MRT'), + (0xd2cabc05a375fb1d638ea38f40d9def80029a64f, 'Detroit Tigers® Daz Cameron OF Base Motion Rainbow 441 Rare', 'MLB-S221-R-B441-RAI'), + (0xd2d02264a8237c35a630174c0933fb535be2dcce, 'Minnesota Twins® Miguel Sano 1B/3B Base Motion Rainbow 383 Rare', 'MLB-S221-R-B383-RAI'), + (0xd2d148e59839d1eb0ea26d7e6717ebcf9b81aae6, 'AvaxMugs', 'AMUG'), + (0xd2df675318407de5812d82de5e51f8c4e32ff168, 'FarmStocks', 'FRCK'), + (0xd2e0b89be6cf373dd0acac3800b492d6efc9163f, 'Philadelphia Phillies® Rhys Hoskins Pure Power Facsimile Signature Reward White 3309 Legendary', 'MLB-22PRICR-L-PPR5-M-WHI'), + (0xd2e5009b77c8c6b5c1426e2f5c74a81ef86067cf, 'Jonathan Burkardt M05 Base Red S2-19 Uncommon', 'BUND-21TS2-U-BS2-19-S-RED'), + (0xd2edc2676b4c4094dea8ca7a279310bd920c9101, 'ET Community', 'ET'), + (0xd2ef2742585291f78e92a2f768bba7521faa2b89, 'RB Leipzig Yussuf Poulsen Top Players Gold 99 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP99-AFS-GLD'), + (0xd2f40a0f7c4b216cd02e6a5c43f982ecd838fd27, 'Rare Comic 82 2-34 Bazooka Joe 2021 NFT', 'BZK-R-82C'), + (0xd2f5853f1193a48df6cc68c6e19696ebf7e91a69, 'Houston Astros® Liftoff Base White 110 Common', 'MLB-22S1-C-B109-S-WHI'), + (0xd2f6ce524ce5fadd309697d433d5a73d9ff71d11, 'Atlanta Braves™ Charlie Morton Postseason Base White 63 Common', 'MLB-21POST-C-B63-S-WHI'), + (0xd2fdc3f755cfae8e15728db74554526cd5ed5e27, 'Hertha Berlin Dodi Lukébakio Top Players Gold 120 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP120-AFS-GLD'), + (0xd300fc7f5e2fec599028fe839cfd2b9eb3cf3a51, 'cyberXX', 'CBXX'), + (0xd304fa6d5046f615ea7f5aa616f115b6f92f5882, 'Cincinnati Reds® Joey Votto Inception Base Blue 19 Uncommon', 'MLB-INC21-U-IB19-BLU'), + (0xd305d43fb56cf662e8cd27d5fd7007d310944600, 'My NFT Token', 'MNT'), + (0xd32131bc37a8bb53be5651cccca73fc05f8e2d98, 'VfB Stuttgart Gonzalo Castro Base Players Gold 86 Rare', 'BUND-SC21-R-BP86-GLD'), + (0xd337a4f1047a269163af90550057228bd70b7411, 'St. Louis Cardinals® Tyler O''Neill Wild Card Contenders Blue 27 Common', 'MLB-21POST-C-W27-M-BLU'), + (0xd33dfb4b9465e1e9315b066f5f64a16c958425ee, 'Jamie McCart STJ Base Aqua SP-22 Uncommon', 'SPFL-21SPSS-U-BSP-22-A-AQU'), + (0xd34501b2dfd84842ad45fa1ba84f02b25fd15e12, 'New York Mets® Pete Alonso Facsimile Signature Letter Booklet Team Color 12 Legendary', 'MLB-INC21-L-LB12-TMC'), + (0xd34dcf4c457633481debca3e50c929601e3cb15b, 'EE', 'EE'), + (0xd355c4e2f2e80cbe13430216ad5fa32152c6534c, 'New York Mets® Tylor Megill Base Blue 1211 Common', 'MLB-22PRI-C-B151-M-BLU'), + (0xd35c99af6ddd019bba7013a9496f4aaf400e94c5, 'Godzilla RAT Page 20 Comic Page Black and White 17 Uncommon', 'GDZ-RAT21-U-CP17-S-BW'), + (0xd35fa332f3a112da1335603ed36f3cb2daefe8b5, 'Common Comic 3 1-3 Bazooka Joe 2021 NFT', 'BZK-C-3C'), + (0xd3606be5b124e3391ce3e73b8ce2523f8c83e08b, 'Hodor the HODLer Animation Color 17 Rare', 'GPK-NFT22-R-A17-A-COL'), + (0xd377bdb3f7d2f1a38cbea81192920bab62eca16e, 'BASIC', 'BS'), + (0xd37e2191fd2c49a31fa2ac5cb88d6e969a2cf481, 'Minnesota Twins® Jorge Polanco SS Base Motion Platinum 598 Epic', 'MLB-S221-E-B598-PLA'), + (0xd38822b83806fcb893409dcd4d6d69313c5bc890, 'Colorado Rockies™ German Marquez P Base Motion Vintage Stock 424 Super Rare', 'MLB-S221-S-B424-VS'), + (0xd38b5217cc9c2ade22da374e0f4c86fd93c4d525, 'Konrad Laimer RBL Motion Rainbow Refractor S1-04 Super Rare', 'BUND-21TS1-S-MS1-04-V-RAI'), + (0xd38fd2829641caa6cca83bad99c0cbccd4034390, 'Common Comic 35 1-35 Bazooka Joe 2021 NFT', 'BZK-C-35C'), + (0xd394e74d629732de487926884f7270b36ae02ccf, 'Atlanta Braves™ Ozzie Albies Base Pink 1063 Uncommon', 'MLB-22PRI-U-B34-M-PNK'), + (0xd3953bec994d1cd78b66b2b6636ca9fbe8466116, 'RATZ', 'RAT'), + (0xd396e374d019eb761ee795c8a83b5ed3cd5d5e09, 'Danny Blum BOC Base White S2-20 Common', 'BUND-21TS2-C-BS2-20-S-WHI'), + (0xd3993892b0a5e2131a7a9f3179c91ea91b7db1e9, 'AVAX', 'AVAX'), + (0xd3aa1bc4fc562a3fa644699cd7ac7379d71345ee, 'High Society Collabs', 'HSC'), + (0xd3b2699ddae04193c120059df6925e14035b96ea, 'Oakland Athletics™ Jake Lamb 3B/1B Base Static Gold 442 Uncommon', 'MLB-S221-U-B442-GOL'), + (0xd3b84407c33225d4e8d565f8df48fc68aea40de2, 'San Francisco Giants® Jeff Samardzija P Base Motion Platinum 382 Epic', 'MLB-S221-E-B382-PLA'), + (0xd3c94835a3963ef49623376a0182a2a80d17b621, 'Common Comic 34 1-34 Bazooka Joe 2021 NFT', 'BZK-C-34C'), + (0xd3d1cbd8edb01c989fa201d3bd73625ba7ba2c1d, 'Miami Marlins® Elieser Hernandez Base White 9 Common', 'MLB-22S1-C-B9-S-WHI'), + (0xd3dd72b86c284f30a209d678be4995b26fae0fbb, 'Seattle Mariners™ Kyle Lewis Short Print White 206 Rare', 'MLB-22S1-R-SP42-M-WHI'), + (0xd3e7eb4e19778d704c89e24582c28d8674248a51, 'Woorld Island', 'WL'), + (0xd3ee59f15a480213821f58374cfd037a0d1d3df0, 'Chicago White Sox® Lucas Giolito Postseason Base Navy 13 Uncommon', 'MLB-21POST-U-B13-M-NVY'), + (0xd3f5224666af52593ae0172a675e5a7401a939a3, 'BvBGame Lobby', 'BvB'), + (0xd3f82b2b3adc64795fddc1ac361b86951a5d9ca1, 'PrizeBondAvax', 'PBA'), + (0xd3f9c05faf7e8b79c373a6049022b8f0f824bb2e, 'Pittsburgh Pirates® Colin Moran Base Glitch 317 Uncommon', 'MLB-22S1-U-B313-M-GLI'), + (0xd3f9faea265668727d2aee391c8b28af2914fb3c, 'Rulers of Earth #1 Comic Cover Color 1 Legendary', 'GDZ-GVG22-L-RCC1-A-COL'), + (0xd3fadd753988bd9834005fefc281090b9767d954, 'Philadelphia Phillies® Alec Bohm Rookie and Future Phenoms Facsimile Signature Black 61 Legendary', 'MLB-INC21-L-RC61-BLK'), + (0xd3fda333f4d92599d2ccc5e2f48554840d9ab15c, 'Seattle Mariners™ 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 24 Legendary', 'MLB-21S2SC-L-21S2SCR24-M-TC'), + (0xd401791a73e4a2bd4ac72eeb71064bf0c12f6e73, 'Dayot Upamecano BAY Club Phemons Gold S4CPH-04 Legendary', 'BUND-21TS4-L-CPHS4CPH-04-V-GOL'), + (0xd4071cad13f4c34e302f6d6913404bac3b550ccd, 'Subnet Speedster T-Shirt', 'gLW'), + (0xd40d4bc9b57e728abd54e1941579caae061c8ed1, 'Seattle Mariners™ J.P. Crawford SS Base Motion Rainbow 506 Rare', 'MLB-S221-R-B506-RAI'), + (0xd416afb1f748062d714e93cab9295eaaa19e6aab, 'Deep in the Forest', 'DEEP'), + (0xd4179796cc671a5799a211f4af61a14c6b2114cc, 'Boston Red Sox® Xander Bogaerts Popular Demand Facsimile Signature Slab Teal 3522 Legendary', 'MLB-22PRI-L-PDFS17-M-TEA'), + (0xd42a874b9223577be1d527bfe91aac018f56a5ea, 'Eintracht Frankfurt Stefan Ilsanker Base Players Gold 44 Rare', 'BUND-SC21-R-BP44-GLD'), + (0xd42b294d899c87dd19767bc8f91c79b5c157e900, 'Chicago White Sox® Adam Eaton OF Base Static Gold 554 Uncommon', 'MLB-S221-U-B554-GOL'), + (0xd43435361322bec2880ebdbd6c8ad6c8797127e8, 'DBT', 'DBT'), + (0xd4360b761b545fa9299d0fc2d4b3d343be59977e, 'Warrior Women Galaxy', 'WWG'), + (0xd43735a0775d927ce9feaa8ff43f531a8c8eb6f3, 'Tampa Bay Rays™ Wander Franco Facsimile Signature Blue 215 Uncommon', 'MLB-22S1-U-FS13-S-BLU'), + (0xd4379ba52da1d13aa9bbb4c60316fb4a96591079, 'Philadelphia Phillies® Aaron Nola P 1986 Anniversary Facsimile Signature Motion Chrome 86TC-68 Legendary', 'MLB-S221-L-1986AFS86TC-68-CHR'), + (0xd43a13429e4b165fd6e9f74b6226b86e1e255f23, 'Bampie', 'PIE'), + (0xd44371c6c40e095a3f9df57970800f8b090697b2, 'avax', 'ava'), + (0xd449e174ff87a221772ef12ad355a1b72e0b7346, 'San Diego Padres™ Jake Cronenworth Inception Base Red 80 Rare', 'MLB-INC21-R-IB80-RED'), + (0xd45485e23bc2910b59ff3119bfc87259af2101e5, 'Houston Astros® Base Glitch 136 Uncommon', 'MLB-22S1-U-B135-M-GLI'), + (0xd4567ed2197c23afd75815597ad7faae950c8b5d, 'Uncommon Comic 101 2-53 Bazooka Joe 2021 NFT', 'BZK-U-101C'), + (0xd4582c95c56fba3ddac1bc9fae50da34475aad12, 'Houston Astros® Blake Taylor Rookie and Future Phenoms Facsimile Signature White 27 Rare', 'MLB-INC21-R-RC27-WHT'), + (0xd45f083f932d93da9e0fb6fc11e3b5e4e9ac7361, 'Boston Red Sox® Rafael Devers American League Base Golden 8 Super Rare', 'MLB-22ASG-S-B8-M-GLD'), + (0xd472ec068198d58880a7ce05820d49bc422b1c38, 'Seattle Mariners™ Jarred Kelenic Base Blue 1055 Common', 'MLB-22PRI-C-B97-M-BLU'), + (0xd48667c7a995154d4c077efa039404df660313a2, 'Keith Watson RSC Captains Green SPCAP-12 Epic', 'SPFL-21SPSS-E-CAPSPCAP-12-A-GRE'), + (0xd48d4e1b08dcdae1a262f6f41de0b6311b5564db, 'New York Mets® Starling Marte National League Base White 16 Uncommon', 'MLB-22ASG-U-B16-M-WHI'), + (0xd48dd036844f63b098233b09b3bac0f08db960fd, 'Airdrop Angel Golden Animation Color 14 Epic', 'GPK-NFT22-E-GA14-A-COL'), + (0xd49e98a689ea521203ef362408cad82a1d061a6e, 'Chicago Cubs® Nico Hoerner Rookie and Future Phenoms Facsimile Signature Blue 9 Super Rare', 'MLB-INC21-S-RC9-BLU'), + (0xd4affbc63f086c1a85a1d1839a558a51d934ebf5, 'monkey', 'mon'), + (0xd4b9c2a3f7479466e83e8d743fa3de6e468b5bed, 'Minnesota Twins® Alex Kirilloff OF 1986 Anniversary Static Team Colors 86B-48 Super Rare', 'MLB-S221-S-1986A86B-48-TMC'), + (0xd4bc36693baffc989691229675fa980792959daf, 'VfL Bochum 1848 BOC Insert Pennant Team Color S2P-05 Uncommon', 'BUND-21TS2-U-IS2P-05-A-TMC'), + (0xd4d0fee46b1a859e577ff608713386ee0ce9b1f7, 'Janus NFT Stake', 'JNSNFT'), + (0xd4de3f8acea10723bf5f2ae26ddf965ff8ba3bc9, 'Angels® Jo Adell Inception Base White 43 Common', 'MLB-INC21-C-IB43-WHT'), + (0xd4e00616df10fc065659a1880f48a9310e194952, 'Chicago White Sox® Luis Robert Inception Base White 27 Common', 'MLB-INC21-C-IB27-WHT'), + (0xd4e8b995ca80d1d493c49763898f5ecf0bae2695, 'Kingsley Schindler KOE Base White S4-63 Common', 'BUND-21TS4-C-BS4-63-S-WHI'), + (0xd4f45b0700109ac3a08ac4a72ed161d7c4e16c2e, 'Seattle Mariners™ Ty France American League Base White 4 Uncommon', 'MLB-22ASG-U-B4-M-WHI'), + (0xd4f9b363015518ef2b41259771704b33d24bd90e, 'The Things', 'THINGS'), + (0xd5003a9a5d6167a679bc58b72eb974c2e5204d10, 'Houston Astros® Alex Bregman Base Pink 1072 Uncommon', 'MLB-22PRI-U-B49-M-PNK'), + (0xd501bd5c5a267d3e1a97f06fde0fcfded44ac908, 'Oakland Athletics™ Chris Bassitt P Base Motion Vintage Stock 626 Super Rare', 'MLB-S221-S-B626-VS'), + (0xd5072b4ab79ca6154b4afad11f6baf812b60ebc3, 'Philadelphia Phillies® Matt Vierling Base Pink 1221 Uncommon', 'MLB-22PRI-U-B173-M-PNK'), + (0xd50c158c48cf7cd98df41d529a2528c60c77c4dc, 'The Crypt', 'CRPT'), + (0xd510b6bc4b03567f2eaa4430929c58791dce3eb8, 'Toronto Blue Jays® Vladimir Guerrero Jr. Generation NOW Team Colors GN-1 Epic', 'MLB-22S1-E-GN1-M-TMC'), + (0xd5168829be1bbd7b123104c29712c28db97e4895, 'Colorado Rockies™ Trevor Story Base Vintage Stock 260 Super Rare', 'MLB-22S1-S-B257-M-VS'), + (0xd518bc47ed89978dc4718fb035ea1c2bd8dec11a, 'Atlanta Braves™ Jorge Soler Base Pink 1144 Uncommon', 'MLB-22PRI-U-B101-M-PNK'), + (0xd51a092a12302555c0b145c52fcf2cfc105e46f2, '$SOB Early Adopter', '$SOBea'), + (0xd525dc0056d8f374b9c78519c5299b26659c8188, 'Chicago Cubs® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 5 Legendary', 'MLB-21S2SC-L-21S2SCR5-M-TC'), + (0xd5277dbfde4df9fd240c5d0ae0603bc32e818647, 'Christopher Nkunku RBL Animation Gold Refractor S4-41 Legendary', 'BUND-21TS4-L-AS4-41-V-GOL'), + (0xd52950ad2e3a01d5f6f9115cb8ac993864911509, 'Chicago White Sox® Tim Anderson Base Glitch 64 Uncommon', 'MLB-22S1-U-B64-M-GLI'), + (0xd52d7df59d8a4b278e2a7096767e478115a80de2, 'Oakland Athletics™ Sean Murphy C Base Static White 349 Common', 'MLB-S221-C-B349-WHI'), + (0xd52f4eb86087a5cedf5b551ddd6a1123a021c58d, 'Rare Comic 69 2-21 Bazooka Joe 2021 NFT', 'BZK-R-69C'), + (0xd53c748e9f5830dd7ef714bce8ea6134bcb28240, 'Houston Astros® Yuli Gurriel Division Series Bronze 22 Super Rare', 'MLB-21POST-S-D22-M-BRO'), + (0xd5422ccd15acc909e4dfdeb7f4dbdd642bf7d2ec, 'Baltimore Orioles® Rio Ruiz 3B Base Static White 369 Common', 'MLB-S221-C-B369-WHI'), + (0xd55b33166ff0773221482acfe8763a560780b3d2, 'Gonzalo Castro DSC Animation Gold Refractor S4-43 Legendary', 'BUND-21TS4-L-AS4-43-V-GOL'), + (0xd56b7e38f0ff7cab1fa7ef71b4b655ca91e58dcf, 'Philadelphia Phillies® J.T. Realmuto World Series Newspaper BW 1136 Common', 'MLB-22TNP-C-WSN8-M-BW'), + (0xd588627e7224bad1b267592a72a5ae832fc9d8f0, 'Ratapo', 'Ratapo'), + (0xd5a33ba6ed5431a7dc0d07663f9cded7e2dc358b, 'Chikn Party Hat', 'PartyHat'), + (0xd5abbd880c563fbeefbe96b820c4f7ce20616063, 'Boston Red Sox® Rafael Devers American League Base Blue 8 Rare', 'MLB-22ASG-R-B8-M-BLU'), + (0xd5abc30d87cd3febb5d053fc4596fe8c3307781f, 'Red 2022 ASG Event Exclusive Super Rare', 'MLB-22ASGEVENT-S-22ASGR2-M-RED'), + (0xd5abea5504b4915617c7eefd0c2e9c79ff29ef47, 'FC Augsburg Iago Top Players Gold 134 Super Rare', 'BUND-SC21-S-TP134-GLD'), + (0xd5b5179417bb388c0be23b428d15c4035e3c764d, 'Angels® Jared Walsh 1B Base Motion Rainbow 575 Rare', 'MLB-S221-R-B575-RAI'), + (0xd5b693fbb97cbb4fad9f83541290c26a6068e1ef, 'Tampa Bay Rays™ Ji-Man Choi Base Glitch 183 Uncommon', 'MLB-22S1-U-B182-M-GLI'), + (0xd5ba6c09258a46ca1200933515e73cbe387fd62d, 'Sewer Rat Crew', 'SRC'), + (0xd5bcaef17494244cababe1dc533109c22aa20b0d, 'Texas Rangers® Mike Foltynewicz Base White 293 Common', 'MLB-22S1-C-B290-S-WHI'), + (0xd5bf85e7ec3fd1cffadbff6f218beb5edaef70b4, 'Boston Red Sox® Team Cube 2.0 Team Colors 17 Legendary', 'MLB-22S1-L-TC217-M-TMC'), + (0xd5c20c7230e862dc4a64c5d15e9b3c7e9b5e49a1, 'National League™ Trevor Rogers Base Pink 1296 Uncommon', 'MLB-22PRI-U-B191-M-PNK'), + (0xd5cc9c0947b42e30513a743683aa4430d645bd7e, 'Miami Marlins® Trevor Rogers Base Pink 1198 Uncommon', 'MLB-22PRI-U-B84-M-PNK'), + (0xd5cdcb4e6161805a4a3bbe2c74c67697c3021b48, 'Minnesota Twins® Michael Pineda Base Vintage Stock 189 Super Rare', 'MLB-22S1-S-B188-M-VS'), + (0xd5cf5bcdc73642d466015980098b617f30b284e8, 'FC Augsburg Ruben Vargas Young Stars Team Color 173 Super Rare', 'BUND-SC21-S-YS173-TMC'), + (0xd5da0679b5fb204e4c13ea05c57c1d6604235c27, 'Minnesota Twins® Michael Pineda P Base Static Gold 354 Uncommon', 'MLB-S221-U-B354-GOL'), + (0xd5dd1979d6eabdf07bfe9e9819fd7c3d2d25af31, 'Cincinnati Reds® Eugenio Suarez Base Independence Day RWB 314 Rare', 'MLB-22S1-R-B310-M-RWB'), + (0xd5e1b65650de3f0b351ffb78791c98d84b5c52e6, 'Rare Comic 76 2-28 Bazooka Joe 2021 NFT', 'BZK-R-76C'), + (0xd5e2a38542ea1f5ea058f7cb360ecf31d5aed230, 'Minnesota Twins® Joe Ryan Base Blue 1312 Common', 'MLB-22PRI-C-B81-M-BLU'), + (0xd5f0bed143e32d8635f8ac3861806ec0f755e238, 'Christian Ramirez ABE Base Purple SP-12 Super Rare', 'SPFL-21SPSS-S-BSP-12-A-PUR'), + (0xd5fa25df2fb55e4efe4378f7566b21af926c1f94, 'Classic Americana', 'HSCA'), + (0xd5fc561c11cefab8d946dd15010376d0bcdc75ae, 'Boston Red Sox® Kyle Schwarber Base Vintage Stock 216 Super Rare', 'MLB-22S1-S-B213-M-VS'), + (0xd60460fb9e42d63729bd1fbfa92d06760899ae3a, 'Mads Pedersen FCA Animation Black Refractor S3-26 Epic', 'BUND-21TS3-E-AS3-26-V-BLA'), + (0xd60881670e875db9285625df6d5bcafc33fc52d4, 'Common Comic 82 2-34 Bazooka Joe 2021 NFT', 'BZK-C-82C'), + (0xd609c78865f6cf0d07445effc6df072003d02041, 'Los Angeles Dodgers® Albert Pujols Base Vintage Stock 237 Super Rare', 'MLB-22S1-S-B234-M-VS'), + (0xd60b6e8fd705b8e957abf9a4bf39914801004ae1, 'New York Yankees® Gio Urshela Base Glitch 23 Uncommon', 'MLB-22S1-U-B23-M-GLI'), + (0xd60ba869ccbfa344c5e6bed1f2de6fae8c85bd33, 'FSV Mainz 05 Jean-Paul Boëtius Base Players Gold 62 Rare', 'BUND-SC21-R-BP62-GLD'), + (0xd611a9df7c61d2483b8f36fd43723135b58ece12, 'Pel Gators', 'PELG'), + (0xd61f5c0f97829a655cb44c97608c3f88e9da0556, 'San Diego Padres™ Tommy Pham Base Vintage Stock 16 Super Rare', 'MLB-22S1-S-B16-M-VS'), + (0xd63376b447a75ef75778a81cc65a57587534b404, 'GTB Stage 2', 'GTBS2'), + (0xd638d168435bc3a2bebe765e150901f3ce7854dd, 'Bull Series', 'BULL'), + (0xd64322affb9546f2351d183ae8336307c5eac9d5, 'RATom', 'RATom'), + (0xd6453936c1d1b519e534ffcd2e87e4ac823f1d23, 'Twinkle Town', 'tt'), + (0xd6480746015da9c0e0547246737b7aeb9fdabfe3, 'Mads Pedersen FCA Motion Aqua Refractor S3-26 Rare', 'BUND-21TS3-R-MS3-26-V-AQU'), + (0xd64b6cb1541a0c69abe8ec1d07429a9a03df1d4e, 'Detroit Tigers® Matt Manning Base White 31 Common', 'MLB-22S1-C-B31-S-WHI'), + (0xd6633706cced3c72d27dd9c6ceee9fce648d7824, 'Baltimore Orioles® Cedric Mullins OF Base Static White 487 Common', 'MLB-S221-C-B487-WHI'), + (0xd66f8a894a3be019279d9dd9cdd6e7f6656857d7, 'Athena''s Athenaeum', 'ATHENA'), + (0xd68f75c394511f8b5991502f3a871cc97733ecde, 'Texas Rangers® Joe Barlow Base Pink 1310 Uncommon', 'MLB-22PRI-U-B156-M-PNK'), + (0xd6906f11fb6e8061f0fa6530287415369c0517b4, 'Volcanic Eruption Event Exclusive Comic Cover Black 3 Epic', 'GDZ-RAT21-E-CCE3-A-BLA'), + (0xd694f97dd5874fa4e712fdfb781231d93642d29b, 'Yak x BenQi: USDC AVAI Vault', 'Yak x BenQi: USDC AVLT'), + (0xd6b22cab2ebc55007e8f7f3327ba71b1db25aacf, 'Eintracht Frankfurt Steven Zuber Base Players White 45 Common', 'BUND-SC21-C-BP45-WHT'), + (0xd6b996656f4b9dbedab35cb6fdef54b0735d73bc, 'National League™ NL™ East Division Smiles Base White 98 Common', 'MLB-22S1-C-B97-S-WHI'), + (0xd6c4c2326cbaec2f4259bd29201ac7a993a9917a, 'BET A JET', 'BETAJ'), + (0xd6c616a900c3b9524de6603b476c0a13c44c3bfc, 'PROPOSED ORISHA COLLECTION', 'POC'), + (0xd6c6ab4fb465869f85c5ab4fb33a45e32860b306, 'Boston Red Sox® Xander Bogaerts Base White 8 Common', 'MLB-22S1-C-B8-S-WHI'), + (0xd6cef0ef788b1b6cbe0b8b14845b702679854a30, 'Arizona Diamondbacks® Zac Gallen P Base Motion Vintage Stock 440 Super Rare', 'MLB-S221-S-B440-VS'), + (0xd6d3197af27d4302e96e4f4d253c27617127f4c5, 'Pittsburgh Pirates® Ke''Bryan Hayes Base Pink 1022 Uncommon', 'MLB-22PRI-U-B45-M-PNK'), + (0xd6d6470b7d05cc835fcad09b80c0c88cdf4c83b9, 'Angels® Brandon Marsh Base Pink 1217 Uncommon', 'MLB-22PRI-U-B133-M-PNK'), + (0xd6d86632e111c25341261a92997ca5a1c9c1f795, 'Cleveland Indians® Josh Naylor OF Base Motion Platinum 419 Epic', 'MLB-S221-E-B419-PLA'), + (0xd6fe50c23b62e903ef180644aff25cf1c0f623b8, '2022 Topps Series 1 Baseball Premium Pack', 'MLB-22S1-PACK-P'), + (0xd6febb19383aea593c0306200df0b0d4cf26a5f7, 'Milwaukee Brewers™ Avisail Garcia Division Series Bronze 60 Super Rare', 'MLB-21POST-S-D60-M-BRO'), + (0xd70047142b7c79499d55198bb444fcfa95a58d2f, 'Atlanta Braves™ Freddie Freeman Base Independence Day RWB 236 Rare', 'MLB-22S1-R-B233-M-RWB'), + (0xd702f4089c6119e1b64aa645640f094ff154874c, 'Minnesota Twins® Alex Kirilloff Fresh Faces Facsimile Signature Reward White 3403 Legendary', 'MLB-22PRIASG-L-FFR2-M-WHI'), + (0xd70373756db3d505a06553c9c18204807b07f3dd, 'Chars #1', 'CHARS'), + (0xd7043371ee17bb8801f3f36f99755aa3ba59504e, 'Houston Astros® Framber Valdez P Base Motion Vintage Stock 514 Super Rare', 'MLB-S221-S-B514-VS'), + (0xd70e484ed8b92c61891ec8773f6546c4a643a98a, 'Baltimore Orioles® Dean Kremer P Short Print Motion White 391 Super Rare', 'MLB-S221-S-SP391-WHI'), + (0xd713c2b4c10573d7a41cd27c6d1088157b74d8af, 'CYCLE', 'CYCLE'), + (0xd7191d638a4bee74c278193ed3059126faaa2085, 'Beta Game Ticket', 'BGT'), + (0xd7193f7fd94b6b77ba7f4d8547ab943745ebc241, 'Gengars Customs', 'CSTM'), + (0xd71e1ba13db549fc16bc241159992d265cdff10f, 'Seattle Mariners™ Kyle Lewis Inception Base Blue 83 Uncommon', 'MLB-INC21-U-IB83-BLU'), + (0xd7239e3c310310a167b0918754b21fcafd0f370a, 'HeadPunk', 'HeadPunk'), + (0xd723b9eda51364ceea8d9d842063e559c8828507, 'New York Yankees® Clint Frazier OF Base Motion Vintage Stock 429 Super Rare', 'MLB-S221-S-B429-VS'), + (0xd72e16c4be4bf50dc8e44074c6bdf01c5d2deee6, 'Chicago Cubs® Willson Contreras Base Blue 1066 Common', 'MLB-22PRI-C-B91-M-BLU'), + (0xd72e1b0a60d0875065894ab5310c6623c15a36f6, 'Toronto Blue Jays® Nate Pearson Base Vintage Stock 289 Super Rare', 'MLB-22S1-S-B286-M-VS'), + (0xd737866d636a716770efb9e420fa83ac06c6fceb, 'Boston Red Sox® Base Motion Vintage Stock 401 Super Rare', 'MLB-S221-S-B401-VS'), + (0xd73d2950f773c49d57890788971bc7e6d6e5f516, 'Chicago White Sox® Nick Madrigal Gold Signings Facsimile Signature Gold 12 Epic', 'MLB-INC21-E-SS12-GLD'), + (0xd73df73e1f106e9dfd54e49e2ceae725f5d94032, 'The LOLers', 'LOL'), + (0xd744a0ec7973c5110e33c74175b511b5210be4f3, 'St. Louis Cardinals® Andrew Miller P Base Static Gold 437 Uncommon', 'MLB-S221-U-B437-GOL'), + (0xd749a1830820f342b4a5a3bf4cac839f459c720c, 'Rare Comic 26 1-26 Bazooka Joe 2021 NFT', 'BZK-R-26C'), + (0xd7555326dbf7aef2c82754b3fa9b5ebc49ded595, 'Hoepegs', 'HPEG'), + (0xd7572c558b89f680e779a593fce29b8443d56029, 'Common Comic 70 2-22 Bazooka Joe 2021 NFT', 'BZK-C-70C'), + (0xd75f1dfb88ab3146273cabccd981aab119c4803e, 'Chicago White Sox® South Side Strength Base Static White 486 Common', 'MLB-S221-C-B486-WHI'), + (0xd767307f10640f03d3f4436e3cc138dd4937810c, 'Texas Rangers® Jonah Heim C Base Static White 628 Common', 'MLB-S221-C-B628-WHI'), + (0xd767ae8a94f92e6f4782e0a5c76e58bfd5068b92, 'DSC Arminia Bielefeld Cebio Soukou Base Players Team Color 82 Uncommon', 'BUND-SC21-U-BP82-TMC'), + (0xd768acc66b11d61dd7fe7a864a310b81b14ba9c4, 'Uncommon Comic 22 1-22 Bazooka Joe 2021 NFT', 'BZK-U-22C'), + (0xd76a3140a8373c15976e8ffec85b609193f4727d, 'James Tavernier RFC Captains Green SPCAP-01 Epic', 'SPFL-21SPSS-E-CAPSPCAP-01-A-GRE'), + (0xd76c2607c8ec33f0cf26776da4ed9213cd348203, 'Seattle Mariners™ Cal Raleigh Base Pink 1214 Uncommon', 'MLB-22PRI-U-B164-M-PNK'), + (0xd76f91b6723f0860487060fa3a0df9c814843150, 'Detroit Tigers® Jonathan Schoop 2B Base Motion Platinum 595 Epic', 'MLB-S221-E-B595-PLA'), + (0xd778fd6fe090ff520bf7cbd8d3a26cf10f7fe2e0, 'Texas Rangers® Curtis Terry Base White 97 Common', 'MLB-22S1-C-B96-S-WHI'), + (0xd78035381849c905ce5e50c81e131462f8cbcefe, 'VfL Wolfsburg John Anthony Brooks Top Players Gold 111 Super Rare', 'BUND-SC21-S-TP111-GLD'), + (0xd7842a724bc534e72d91603c160b9e9ef497164c, 'Chicago White Sox® Craig Kimbrel Base White 2 Common', 'MLB-22S1-C-B2-S-WHI'), + (0xd7852d1250a3a1b8add049a0327564a534ac1215, 'St. Louis Cardinals® Adam Wainwright Base White 34 Common', 'MLB-22S1-C-B34-S-WHI'), + (0xd786936b6c21546108c21eb66cce0673378eaab7, '@sur3yya Collection', 'NPC017'), + (0xd788a95583899cc6794fbaf33d6462cd221f6552, 'Toronto Blue Jays® Base White 109 Common', 'MLB-22S1-C-B108-S-WHI'), + (0xd796d1c3d3ce214c2b7162dea13718ab2331ce94, 'Munas Dabbur TSG Motion Rainbow Refractor S3-35 Super Rare', 'BUND-21TS3-S-MS3-35-V-RAI'), + (0xd797e11d872c17c18d3b30b367c99604b1a3d2b2, 'NFT Garden', 'NFTG'), + (0xd7988a9066f9a03aae13b3eb985270af8929c700, 'Detroit Tigers® Robbie Grossman Base Independence Day RWB 55 Rare', 'MLB-22S1-R-B55-M-RWB'), + (0xd79cf6abd34a106ade2e56ec57d3d0c123e8b110, 'Pepeland', 'PL'), + (0xd7a153d10bc6089514a32a9edba767a6ea9fac6b, 'Seattle Mariners™ Jarred Kelenic Base White 235 Common', 'MLB-22S1-C-B232-S-WHI'), + (0xd7a77abbf37028aa0c17fe8b1b6896ed4b1bd647, 'Cleveland Guardians™ Shane Bieber Popular Demand Facsimile Signature Teal 3520 Legendary', 'MLB-22PRI-L-PDFS14-M-TEA'), + (0xd7aef470f3d2c72ee7b156bace2647cc42c91b3d, 'HeartManiaxNFT', 'HMNFT'), + (0xd7b20511a0c0e675c8b7a80770a1285964614aa3, 'Baltimore Orioles® Cedric Mullins OF Base Motion Rainbow 487 Rare', 'MLB-S221-R-B487-RAI'), + (0xd7c079dc397b83651803bd4e2a725d82d4640fdd, 'Borussia Dortmund Giovanni Reyna Young Stars Team Color 147 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS147-SFS-TMC'), + (0xd7c0df7c01dfc4dc334d4136d67c3879f9692164, 'Star Woman', 'StarWoman'), + (0xd7c448d44a23e8fcf0e281fccb63dc49347ca0b2, 'Skwgglz', 'SKWGGLZ'), + (0xd7c5edb9cf784d5a9b69747c76b5646853bfdb29, '11/8/15:17_1-2_ReMonster_Production', 'T2WEB'), + (0xd7d01dfe9f0d6f02cc9dd5a8a0d1437bb54f6202, 'San Diego Padres™ Adam Frazier Base Vintage Stock 304 Super Rare', 'MLB-22S1-S-B300-M-VS'), + (0xd7d73dcaa91fc52b339994688906ef39ab65f50d, 'New York Yankees® Anthony Rizzo Base Blue 1092 Common', 'MLB-22PRI-C-B99-M-BLU'), + (0xd7dcdf0b861bc357788342fdf2554e6313326474, 'Philadelphia Phillies® Alec Bohm Inception Base Red 72 Rare', 'MLB-INC21-R-IB72-RED'), + (0xd7e2d07ff12665d1b109f4576ebc3bfd1302608b, 'Dayot Upamecano BAY Club Phemons Silver S4CPH-04 Super Rare', 'BUND-21TS4-S-CPHS4CPH-04-S-SLV'), + (0xd7e5a5522067b716d5ce7e7888e9819bb508b956, 'Toronto Blue Jays® Gloves are Hats Base Motion Platinum 539 Epic', 'MLB-S221-E-B539-PLA'), + (0xd7e63faa42f9bd02c562d621937756bc89f74ca7, 'Cleveland Indians® James Karinchak P Base Static White 361 Common', 'MLB-S221-C-B361-WHI'), + (0xd7e8e4c4b05019ea1af62945373b5e1304e412a9, 'Los Angeles Dodgers® Clayton Kershaw Topps NOW Aqua 110 ', 'MLB-22NOW-R-TN2-M-AQU'), + (0xd7ea5db25594e38692bcf4c89885cf1831ab2341, 'Chicago White Sox® Matt Foster P Base Motion Rainbow 426 Rare', 'MLB-S221-R-B426-RAI'), + (0xd7f00b2fc1d3a0b1cd76a9622b7bbda2abb628d9, 'Staking NFT', 'SKN'), + (0xd7f3c708cb2039c3b0b7166c57518f8e3f5f844a, 'Philadelphia Phillies® Didi Gregorius SS Base Static Gold 561 Uncommon', 'MLB-S221-U-B561-GOL'), + (0xd7fb81841687e4edd5b36379c089220f22b4fdd3, 'Uncommon Comic 44 1-44 Bazooka Joe 2021 NFT', 'BZK-U-44C'), + (0xd7feaee60f6ec548d7cfd622bb7893d0dc54e8f9, 'Chicago White Sox® Yasmani Grandal C Base Static White 524 Common', 'MLB-S221-C-B524-WHI'), + (0xd812199f7da59791207b29dcb3d6bf27ffd4da38, 'Maximilian Arnold WOB Animation Black Refractor S4-67 Epic', 'BUND-21TS4-E-AS4-67-V-BLA'), + (0xd81f89933aff0e0abfdf05af4ab9244b7139ea22, 'AiCasso New', 'AiC'), + (0xd81f9e6a0c95030f6b059ee3f46583c934e868a8, 'Detroit Tigers® C.J. Cron 1B Base Static Gold 504 Uncommon', 'MLB-S221-U-B504-GOL'), + (0xd83bd08c2d7677d1e71d0396896e5fca289bca8e, 'Colorado Rockies™ Trevor Story Base Pink 1010 Uncommon', 'MLB-22PRI-U-B27-M-PNK'), + (0xd850a3822703e101bc76cba6970e1ba8c0f39ba9, 'Atlanta Braves™ Huascar Ynoa Base Glitch 3 Uncommon', 'MLB-22S1-U-B3-M-GLI'), + (0xd85c55c1f55f654bc5ea7eb5ffd3cc9cdcd29167, 'St. Louis Cardinals® Giovanny Gallegos Postseason Base Navy 48 Uncommon', 'MLB-21POST-U-B48-M-NVY'), + (0xd8627c478ec21d0ca055ed39d58ceeb48bf27767, 'Houston Astros® Chas McCormick Base Glitch 135 Uncommon', 'MLB-22S1-U-B134-M-GLI'), + (0xd86e22a9d54606b37e3f1320d098a953eca997cb, 'AI Degens', 'AIDEGEN'), + (0xd8733e802a44b7355897d764a9094f3894b154dd, 'Borussia Dortmund Axel Witsel Base Players Gold 6 Rare', 'BUND-SC21-R-BP6-GLD'), + (0xd874c75b91bc0cd61929f9579e31a72cfb160d9e, 'New York Mets® Javier Baez 1987 35th Anniversary Chrome T87C-95 Super Rare', 'MLB-22S1-S-1987AC69-M-CHR'), + (0xd875af44b6979f7ff7dae7779d9c399b8dd5d4c3, 'Miloš Pantović BOC Motion Aqua Refractor S3-21 Rare', 'BUND-21TS3-R-MS3-21-V-AQU'), + (0xd88ffa9ba5f7fc8969a110e8e3a904ee37739aea, 'Baltimore Orioles® Ryan Mountcastle Silver Signings Facsimile Signature Silver 3 Super Rare', 'MLB-INC21-S-SS3-SLV'), + (0xd89438615933bd5705f45fe392bc37bc394a5ef2, 'AKAJUKUS', 'AKA'), + (0xd8aa3a3a870acb6cabba5aa41f190617eb00c148, 'Ice Cream', 'ICECREAM'), + (0xd8b671853e7f473e2313635293c257fd84463d53, 'Texas Rangers® Joey Gallo Inception Base Blue 92 Uncommon', 'MLB-INC21-U-IB92-BLU'), + (0xd8bae8ee979cded206ae0d1098e81dde4a4dbc25, 'Octane Renders', 'OCTANE'), + (0xd8c4f77052d0a9f8652440ba8fec026d2c59cac3, 'Cleveland Indians® Jose Ramirez 3B Base Motion Platinum 360 Epic', 'MLB-S221-E-B360-PLA'), + (0xd8cb0b4602fb8b0d7aca9401a1b84839a50ee6d9, 'Couple O Dead Owls', 'CODO'), + (0xd8dc8ef20ef8e2aaf5f6ef43dec26c2cbf8a695f, 'Smol Estates', 'ESTATE'), + (0xd8de38ecfebbf9728f62484943cd4619073c8304, 'SPK-Vouchers', 'SPK-V'), + (0xd8e355fdf8e4b912573af4220d118a2a1c344f4c, 'Toronto Blue Jays® Alek Manoah Base Glitch 248 Uncommon', 'MLB-22S1-U-B245-M-GLI'), + (0xd8e4b72593d71e191cee8571e39ef51b9256ede4, 'Minnesota Twins® Twins® Up The Middle Base Motion Platinum 553 Epic', 'MLB-S221-E-B553-PLA'), + (0xd8e53daa7e65c1f633f8e52733c44a3e21a78f2a, 'Vramshero', 'Vramshero'), + (0xd8e56c93d2104a1e38c6affe31027c090958cf3f, 'Monkey', 'Monkey'), + (0xd8ec708d79780710ce048f08a09454f12f6c9d3c, 'Danny Blum BOC Animation Gold Refractor S2-20 Legendary', 'BUND-21TS2-L-AS2-20-V-GOL'), + (0xd8f7114f005565e1e9a7af58129dc581a17dae24, 'Philadelphia Phillies® Adam Haseley OF Base Motion Platinum 590 Epic', 'MLB-S221-E-B590-PLA'), + (0xd90317dd3077061c9c3703bf31efc0cb7b73a3e9, 'Chicago White Sox® Yoan Moncada Base Pink 1096 Uncommon', 'MLB-22PRI-U-B110-M-PNK'), + (0xd9060d33920523e48da7dbe17a89944b965bbcdd, 'Beelzebean Transmission', 'BBTRN'), + (0xd90671454730f9953cf6e8fd7105410ed3520258, 'New York Yankees® Giancarlo Stanton Base Pink 1079 Uncommon', 'MLB-22PRI-U-B33-M-PNK'), + (0xd908ee6022309cdb492253092940a4e3152cc4d9, 'Super Rare Comic 18 1-18 Bazooka Joe 2021 NFT', 'BZK-S-18C'), + (0xd90966f1ae9baaca3b3ef43ebc07186b550c977f, 'INSIDE THE MACHINE', 'ITM'), + (0xd911b867bffd0e57fc2a3f809f7706c2da958f54, 'San Francisco Giants® Anthony DeSclafani Base Independence Day RWB 137 Rare', 'MLB-22S1-R-B136-M-RWB'), + (0xd911c27ba7d81b32dfd465db9349baadf90becc3, 'Green Joggy Doggy', 'DGGY'), + (0xd91323d7e2b6d4f6193b97a71cac6ca8d15ee414, 'Miami Marlins® Trevor Rogers Rookie and Future Phenoms Facsimile Signature White 46 Rare', 'MLB-INC21-R-RC46-WHT'), + (0xd915dc680b3e8e0d867e221f84e2cd1d6f12dd29, 'Atlanta Braves™ Ozzie Albies 2B 1986 Anniversary Static Team Colors 86B-28 Super Rare', 'MLB-S221-S-1986A86B-28-TMC'), + (0xd918529f144a220b7282420faad720278798e4cf, 'LoFi Leopards', 'LOFI'), + (0xd91af47b5a1b0e1be3ec72fe6dcbfbaa611fb149, 'Ian Lawlor DUD Top Saves Purple SPTS-11 Rare', 'SPFL-21SPSS-R-TSSPTS-11-V-PUR'), + (0xd91e13e8df9720d23f8180a43395fce6ef86192f, 'Seattle Mariners™ Evan White Silver Signings Facsimile Signature Silver 35 Super Rare', 'MLB-INC21-S-SS35-SLV'), + (0xd92e6e07045e0ad3090a103163f5124e826368d6, 'San Diego Padres™ Blake Snell Base Blue 1083 Common', 'MLB-22PRI-C-B75-M-BLU'), + (0xd94268c29304c5b7f411f408b71e8d4c41905b0e, 'Toronto Blue Jays® Randal Grichuk OF Base Motion Platinum 352 Epic', 'MLB-S221-E-B352-PLA'), + (0xd950df7af4934b0d426f6ac06d67d436ae8d5037, 'Angels® Mike Trout Base Vintage Stock 27 Super Rare', 'MLB-22S1-S-B27-M-VS'), + (0xd953cf1b6909a2abf0f7dd53b8f1c2e14282f0bd, 'Bayer 04 Leverkusen Jonathan Tah Base Players Gold 21 Rare', 'BUND-SC21-R-BP21-GLD'), + (0xd95a99772d7cea5961176e407b27eb48f29dfdca, 'San Francisco Giants® Buster Posey Inception Base Black 84 Legendary', 'MLB-INC21-L-IB84-BLK'), + (0xd95caeb4d6308b9b6e1192e2c520b1703ff84f69, 'Wataru Endō VFB Animation Black Refractor S1-09 Epic', 'BUND-21TS1-E-AS1-09-V-BLA'), + (0xd96392c1c35f2b9e1d59c17514b85a023ea4178e, 'Detroit Tigers® Victor Reyes Base Vintage Stock 252 Super Rare', 'MLB-22S1-S-B249-M-VS'), + (0xd967695b7e761ace4613685794dcc3bf575e6a7b, 'Colorlove', 'CL'), + (0xd96b5bfb41da17c6ec04f336acbe5291ba01918f, 'Minnesota Twins® Michael Pineda Base White 189 Common', 'MLB-22S1-C-B188-S-WHI'), + (0xd97acf9222af24ced5616597eb418aeca22a5507, 'Alassane Plea BMG Animation Black Refractor S3-24 Epic', 'BUND-21TS3-E-AS3-24-V-BLA'), + (0xd97e49142c173e61e16d8c2c6b030616155cab9f, 'Pittsburgh Pirates® Ke''Bryan Hayes Fresh Faces Facsimile Signature Reward White 3402 Legendary', 'MLB-22PRIASG-L-FFR1-M-WHI'), + (0xd982388249fa5624761d72380014dbefe9100b93, 'American League™ 2021 Batting Average Leaders Base Glitch 165 Uncommon', 'MLB-22S1-U-B164-M-GLI'), + (0xd9854bed8f66fc9b88bbe885aa4da4cdef612a75, 'Minnesota Twins® Byron Buxton Base Blue 1017 Common', 'MLB-22PRI-C-B4-M-BLU'), + (0xd98bf7b9f45c742c5221d8d8f320d1a13fb42e96, 'Uncommon Comic 42 1-42 Bazooka Joe 2021 NFT', 'BZK-U-42C'), + (0xd98cd9de82c92dedda5c277acd12ec2fbad4bef4, 'Yeahteez', 'Yeahteez'), + (0xd98e5c1c687b0930c148a0999d964d0e580957c2, 'New York Mets® Patrick Mazeika Base Independence Day RWB 166 Rare', 'MLB-22S1-R-B165-M-RWB'), + (0xd9914df7e1e724207a5238ae52568d54fb70b6d8, 'St. Louis Cardinals® Paul Goldschmidt Postseason Base White 44 Common', 'MLB-21POST-C-B44-S-WHI'), + (0xd991781fd04b87cdae56eec639b79aa801921523, 'AVAX SKULL', 'SKULL'), + (0xd998454236244baed095fdc8fbbd7a80b09821bc, 'Cosmic Punks', 'COSMIC'), + (0xd9a0159c46f26f70ae599897cdb2917e21d2226b, 'San Diego Padres™ Luis Campusano C Base Motion Vintage Stock 381 Super Rare', 'MLB-S221-S-B381-VS'), + (0xd9a7af95c6132253b976b09d9b483f91aa36decf, 'Bridget Troll Golden Animation Color 16 Epic', 'GPK-NFT22-E-GA16-A-COL'), + (0xd9acda662b45dd35ea7fb065bc0bd44deef05eaf, 'Kumonga and Godzilla Base Collectible Blue 5 Common', 'GDZ-RAT21-C-B5-S-BLU'), + (0xd9ba57d5fcaf091bf5c1c8eaecb23533648fb5da, 'Gnome Nodes', 'GNFT'), + (0xd9bc65377acd0bebfe76ff5a948bac728e36e849, 'Oakland Athletics™ Matt Olson 1B 1986 Anniversary Static Team Colors 86B-44 Super Rare', 'MLB-S221-S-1986A86B-44-TMC'), + (0xd9c3f467b9d140683e89665e5a39d7d3e775b6e9, 'Ancient Future LIfe', 'AFL'), + (0xd9c545a3f2cf7874df6e6b219ab0a207725990b4, 'King Ghidorah Fly-by Traditional Art Color 7 Rare', 'GDZ-RAT21-R-TA7-S-COL'), + (0xd9d7372fb9dcfb61a0953d629526230506a5a7b0, 'Cosmic Punks', 'CP'), + (0xd9e2364734cbd409ad7602f5219e769a8d9dae95, 'Holovax', 'HOLO'), + (0xd9e40b00ed5cb7ba3a93e85427662c8878203213, 'Lava Venture Pass', 'LVP'), + (0xd9eafd18105365eff586886a81341ce93421ae09, 'Skullios', 'SKLS'), + (0xd9f03258b4b3dd3bebfde6097bf797910093ffb8, 'Cryptonians', 'CRT'), + (0xd9ff5bc307848590fafe6d24baece13366725394, 'New York Yankees® Gerrit Cole Short Print White 35 Rare', 'MLB-22S1-R-SP10-M-WHI'), + (0xda127cbd1d0cb9107bf5062d9fa5bd01191440da, 'Toronto Blue Jays® Alejandro Kirk C Base Motion Vintage Stock 551 Super Rare', 'MLB-S221-S-B551-VS'), + (0xda1731f2c29f26db26b2448afd42369fa1db90ea, 'Chicago White Sox® Luis Robert Short Print White 107 Rare', 'MLB-22S1-R-SP25-M-WHI'), + (0xda1bf31d241a17159ae4d493caadb7b8f8112511, 'PGFKs', 'PGFK'), + (0xda31dc6d01fe60224dbb7305065f5216c6e433ae, 'Tampa Bay Rays™ Tyler Glasnow P Base Static White 629 Common', 'MLB-S221-C-B629-WHI'), + (0xda32481f0e9683acbca1cce13958811a7bff80a6, 'Atlanta Braves™ William Contreras Rookie and Future Phenoms Facsimile Signature Red 3 Epic', 'MLB-INC21-E-RC3-RED'), + (0xda35d5185c74ee308a7fa18a71edd301e744c042, 'Atlanta Braves™ Freddie Freeman Stars of MLB Chrome Night SMLBC-3 Legendary', 'MLB-22S1-L-SMLBC3-M-NIT'), + (0xda43574d07f4872b9fcefc477a325ea9b35ef2e0, 'VfL Wolfsburg Maxence Lacroix Young Stars Team Color 157 Super Rare', 'BUND-SC21-S-YS157-TMC'), + (0xda442664f5e5a5c852456b3bbe0225d6509d78d0, 'Chicago White Sox® Dylan Cease P Base Motion Vintage Stock 435 Super Rare', 'MLB-S221-S-B435-VS'), + (0xda4dc1582bec0ee2e3bf1f7ab24419d52247a6d2, 'Rare Baseball Card 8 Tex Batter Bazooka Joe 2021 NFT', 'BZK-R-8B'), + (0xda5425a597a0ae152d0dd7f209dfa5872b44e797, 'Chicago Cubs® Willson Contreras Inception Base Red 18 Rare', 'MLB-INC21-R-IB18-RED'), + (0xda57a46f950b6efab98faadbb7cd8ead2ef5d8c1, 'Seattle Mariners™ Tom Murphy Base White 262 Common', 'MLB-22S1-C-B259-S-WHI'), + (0xda5ada2510adbf429e5a5af77e1a2ec597e2fea0, 'Sheraldo Becker FCU Animation Black Refractor S4-58 Epic', 'BUND-21TS4-E-AS4-58-V-BLA'), + (0xda664659bbdf30a71815d2d3ff55653b2fb16825, 'Tampa Bay Rays™ Mike Zunino C Base Static White 430 Common', 'MLB-S221-C-B430-WHI'), + (0xda6d8a97946f9992eed346a10534f0a179864f19, 'Luvcraft Collector Reward Tokens', 'LCRT'), + (0xda747c0999fdfd5e2dac03bcfd79a24976ad824a, 'Los Angeles Dodgers® Champion Fireworks Base Static Gold 490 Uncommon', 'MLB-S221-U-B490-GOL'), + (0xda76cc6d1437198b7e2e9c7f23f2c197d4b9b847, 'St. Louis Cardinals® Albert Pujols HRD Reward Red 1 Rare', 'MLB-22ASGR-R-R1-M-RED'), + (0xda7c994fd5f672ab4aea06f738b5f73b55733334, 'Marco Reus DOR Top Players Team Color TK-03 Rare', 'BUND-22TK-R-TPTK-03-S-TMC'), + (0xda81ad112d546f5587cca0b24d2364e9515e40fb, 'Boston Red Sox® Chris Sale P Base Motion Vintage Stock 609 Super Rare', 'MLB-S221-S-B609-VS'), + (0xda86088939cf22663f89367acbc078a5474e7c0d, 'Boston Red Sox® Shopping Cart Surf! Base Static White 436 Common', 'MLB-S221-C-B436-WHI'), + (0xda86520c05c31e7d897c84d14e6a5c7ff3a3e72b, 'American League™ Jose Ramirez Base Blue 1274 Common', 'MLB-22PRI-C-B211-M-BLU'), + (0xda8e935378eb0f08175d113214e6dbba2fd638a8, 'XYZ', 'XYZ'), + (0xda8f6d3adeae77f5185947537735cd53443c6e51, 'Houston Astros® Enoli Paredes P Base Static White 569 Common', 'MLB-S221-C-B569-WHI'), + (0xda929d9588e92ee439bf789464479dc884c4748a, 'Jonas Wind WOB Ascendent Blue TK-41 Super Rare', 'BUND-22TK-S-ASCTK-41-S-BLU'), + (0xda9adb27a822115bb065ebdc569b6f5fc253671c, 'Uncommon Baseball Card 10 Mort Pitcher Bazooka Joe 2021 NFT', 'BZK-U-10B'), + (0xda9ba84c584473fcc4472d77edf9f34e7b97ee7a, 'Boston Red Sox® Bobby Dalbec Division Series Bronze 10 Super Rare', 'MLB-21POST-S-D10-M-BRO'), + (0xda9d285c56bcf448221d42fc9a761ced75b1944f, 'Angels® Mike Trout Base Blue 1001 Common', 'MLB-22PRI-C-B1-M-BLU'), + (0xda9d454eec5548d121c57b040f5310202dbae990, 'FC Union Berlin Christopher Trimmel Base Players Gold 54 Rare', 'BUND-SC21-R-BP54-GLD'), + (0xda9efd81b9b462e475ab1c76f3201da5f1edba75, 'Reece Oxford FCA Top Players Team Color TK-25 Rare', 'BUND-22TK-R-TPTK-25-S-TMC'), + (0xdaa16d14114ef8cd40efcfc9ca835cb1ae53f6e5, 'Milwaukee Brewers™ Mark Mathias OF Base Static Gold 421 Uncommon', 'MLB-S221-U-B421-GOL'), + (0xdaa4282dcddd609f9025e10058b83a77af31ed0e, 'Joško Gvardiol RBL Animation Gold Refractor S3-22 Legendary', 'BUND-21TS3-L-AS3-22-V-GOL'), + (0xdaac60851665d54f8313bb5e3c2a2d90f5458e55, 'PrizeBond', 'PZB'), + (0xdaac6cf643520f39a8bd7c4ba99bc8163e2d5a32, 'Bean Baristas', 'bBean'), + (0xdaad8bbfb56af7ec4066da8c8a87356ffc964722, 'Boston Red Sox® Xander Bogaerts Postseason Base Navy 68 Uncommon', 'MLB-21POST-U-B68-M-NVY'), + (0xdaaf803579fc88b3ca26e322249ad311fb29aa90, 'Atlanta Braves™ Jorge Soler Topps NOW White 1041 Rare', 'MLB-21NOW-R-TN1041-WHI'), + (0xdab3a25a300dda18737ba4a674c9a01af7e84df2, 'Ryan Porteous HIB Base Aqua SP-07 Uncommon', 'SPFL-21SPSS-U-BSP-07-A-AQU'), + (0xdab64e12169e6f32aedb83d3110ec21059f02c67, 'Houston Astros® Framber Valdez Base Glitch 261 Uncommon', 'MLB-22S1-U-B258-M-GLI'), + (0xdabcbfae66178e0f4a4bb528569d1133db11e188, 'Tom Krauß S04 Ascendent Facsimile Signature Blue TK-52 Legendary', 'BUND-22TK-L-ASCTK-52-S-BLU'), + (0xdad174ea93d063f60ded054d11be3cd66dadf264, 'National League™ 2021 Strikeout Leaders Base White 127 Common', 'MLB-22S1-C-B126-S-WHI'), + (0xdad294c05dd2fc5e852b9536b268e2effc4511f5, 'Obsession', 'OBSS'), + (0xdad97f4de6ab047d77ea62ab8a73d082f9b3ebd6, 'TV-HEAD', 'TVvHEAD'), + (0xdad9a3de93added0a05993a80274e43fb58ba46a, 'AIWorld', 'AIWorld'), + (0xdade61e3ac0ec823c37e7e6fa7438cad0c7755da, 'NFT Collectible', 'NFTC'), + (0xdadf327b7b31d929755ca0c0267bc50cc132fceb, 'New York Yankees® Luis Gil Short Print White 131 Rare', 'MLB-22S1-R-SP27-M-WHI'), + (0xdae165a6d46259e9b76882d19e9a2c90f99e2710, 'Grantsville Super Cars', 'GSC'), + (0xdaee20c1e72d7427805b39eac23047581c822a43, 'Tampa Bay Rays™ Mike Zunino Base White 324 Common', 'MLB-22S1-C-B320-S-WHI'), + (0xdb05da15a08b59e6227f2d5047723243be5b8525, 'Elk Team NFT', 'ETNFT'), + (0xdb0726ebbdab7d6546bd394b6452c788c90c2cd1, 'Pittsburgh Pirates® Steven Brault Base White 307 Common', 'MLB-22S1-C-B303-S-WHI'), + (0xdb07ec03ff66ac8b842be4f7c78a72c54e708a99, 'Los Angeles Dodgers® Clayton Kershaw Inception Base Red 46 Rare', 'MLB-INC21-R-IB46-RED'), + (0xdb0e54bd952e1611750cd24a885cbc1a811c9be4, 'Chicago White Sox® Tim Anderson Base Blue 1183 Common', 'MLB-22PRI-C-B124-M-BLU'), + (0xdb14c5e8a073ca389879ec640a96442bffd0f0d9, 'Wickedman', 'WKM'), + (0xdb15481c4219011ba2014f2fff5289c4c5b6b52b, 'New York Yankees® Corey Kluber Base White 69 Common', 'MLB-22S1-C-B69-S-WHI'), + (0xdb1880ae51570410c5968f333bfe7fc39e00d2dc, 'RB Leipzig Angeliño Base Players White 14 Common', 'BUND-SC21-C-BP14-WHT'), + (0xdb22944da55bc00cb7f7b932b435889c1e6ca516, 'San Diego Padres™ Yu Darvish Base Blue 1097 Common', 'MLB-22PRI-C-B11-M-BLU'), + (0xdb36ab682c5de0a776e16fab396cc63e00436e0a, 'Colorado Rockies™ German Marquez P Base Motion Rainbow 424 Rare', 'MLB-S221-R-B424-RAI'), + (0xdb3e0ce228b3300549ef084b1edb165473537712, 'Boston Red Sox® Xander Bogaerts Base Independence Day RWB 8 Rare', 'MLB-22S1-R-B8-M-RWB'), + (0xdb423200eb9c6ddef6f854eabd685260fb0b9741, 'DancingFrens', 'dFREN'), + (0xdb518cbb942da55249fa2bf4e3767becd9780f5f, 'Max Anderson DUD Young Stars Red SPYS-11 Epic', 'SPFL-21SPSS-E-YSSPYS-11-A-RED'), + (0xdb52860f308cffe8da6eb7281f3bb4c92c21b121, 'Antarctica', 'gLW'), + (0xdb58510062810e3bfd86a5cb7873258051269b75, 'San Diego Padres™ Ha-Seong Kim Base Vintage Stock 188 Super Rare', 'MLB-22S1-S-B187-M-VS'), + (0xdb590b4d8cc4c4fd2f912c877e723b5b2a9bc4bb, 'Chicago White Sox® Dane Dunning Inception Base Blue 25 Uncommon', 'MLB-INC21-U-IB25-BLU'), + (0xdb5ad849b81ed0f6aff5d536018e562098ca9962, 'DSC Arminia Bielefeld Cedric Brunner Base Players Team Color 85 Static Facsimile Signature Rare', 'BUND-SC21-R-BP85-SFS-TMC'), + (0xdb64a954bd492df0bc863fad47f0b58b801fcd78, 'Troubleshooting', 'TROUBLESHOOTING'), + (0xdb68b6f4fe177ba7fabea5a3c6d457d18d146de8, 'Miami Marlins® Jesus Luzardo Base Vintage Stock 11 Super Rare', 'MLB-22S1-S-B11-M-VS'), + (0xdb70488deb68938c2e7a8f7797ae9d298850a17e, 'Penguiin', 'Penguiin'), + (0xdb7360c1df4c24cdb425934cbe9d178da8f6ca45, 'Jurgen Ekkelenkamp BSC Club Phemons Team Color S4CPH-11 Epic', 'BUND-21TS4-E-CPHS4CPH-11-V-TMC'), + (0xdb8acaf138f268a6a845b70b1d07e4964bfcf92a, 'Trader Joe Pumpkins', 'Pumpkin'), + (0xdb9069e2774ed7545c7002b7fc60ef12d8bf20f1, 'Reece Oxford FCA Club Phemons Team Color S4CPH-02 Epic', 'BUND-21TS4-E-CPHS4CPH-02-V-TMC'), + (0xdb93d88108becc0ec72e3992249bedf21398b0a3, 'Milwaukee Brewers™ Christian Yelich 1987 35th Anniversary Chrome T87C-76 Super Rare', 'MLB-22S1-S-1987AC58-M-CHR'), + (0xdb943b41752d9f62b76ae32eff9a3a34272c5d24, 'Glenn Middleton STJ Young Stars Red SPYS-08 Epic', 'SPFL-21SPSS-E-YSSPYS-08-A-RED'), + (0xdba0c2d88e8b1cf7d1b1891274e80a9797ce392f, 'Toronto Blue Jays® Vladimir Guerrero Jr. Super Short Print White 300 Super Rare', 'MLB-22S1-S-SSP13-M-WHI'), + (0xdbb4b25ab562e094559a9eece6aa7d81a252c899, 'Arizona Diamondbacks® Ketel Marte Base Blue 1002 Common', 'MLB-22PRI-C-B66-M-BLU'), + (0xdbdc86af14c076ba950efef34bf6e31c7efb773b, 'Cleveland Indians® Shane Bieber P Base Static Gold 523 Uncommon', 'MLB-S221-U-B523-GOL'), + (0xdbdcd887106c9b9d07d59884e4dfa423be163c12, 'San Francisco Giants® Austin Slater OF Base Static Gold 378 Uncommon', 'MLB-S221-U-B378-GOL'), + (0xdbe46b509a91c5963eb4a2695023c93c42721669, 'Woo-yeong Jeong SCF Base Red S1-06 Uncommon', 'BUND-21TS1-U-BS1-06-S-RED'), + (0xdbe53cf147254bfc60bafbb6178ffe9da93c9b53, 'San Diego Padres™ Adrian Morejon P Base Motion Vintage Stock 518 Super Rare', 'MLB-S221-S-B518-VS'), + (0xdbf42400e4a1b251b53ad7442740805e7a0f3249, 'Niklas Stark SVW Color Splash Facsimile Signature Team Color TK-71 Legendary', 'BUND-22TK-L-CSTK-71-S-TMC'), + (0xdbfba45c2e779e78a845f955bf704fb528616db5, 'Miami Marlins® Jazz Chisholm Rookie and Future Phenoms Facsimile Signature Black 40 Legendary', 'MLB-INC21-L-RC40-BLK'), + (0xdc09f25fcc4dc25558e6ba17196a5bf8fc0ec610, 'Oakland Athletics™ Matt Olson Facsimile Signature Gold 3045 Super Rare', 'MLB-22PRI-S-FS32-M-GLD'), + (0xdc12e2d0904e0e33ded7666e00d7f9224f04002a, 'Kansas City Royals® 2021 Topps MLB Inception Set Completion Reward Team Colors 12 Epic', 'MLB-21INCSC-E-21INCSCR12-M-TC'), + (0xdc192cf53f3215bcee0d3d2e93d1b5b8fbcc050e, 'New York Yankees® Gio Urshela Postseason Base Navy 76 Uncommon', 'MLB-21POST-U-B76-M-NVY'), + (0xdc1aed611cb3c0563ccc187d861e965bdda135ec, 'Chicago Cubs® Jason Kipnis 2B Base Motion Vintage Stock 494 Super Rare', 'MLB-S221-S-B494-VS'), + (0xdc1b27c49cabd37010391ad5e828bd57c37d4533, 'Chicago White Sox® Tim Anderson Inception Base Red 29 Rare', 'MLB-INC21-R-IB29-RED'), + (0xdc1d61a75b74b3c22064a832baba3a7ecaec9779, 'Oakland Athletics™ Sean Murphy C Base Static Gold 349 Uncommon', 'MLB-S221-U-B349-GOL'), + (0xdc276c2c96fcfd35805d59a99ac818f49acc33fc, 'RARE', 'RR'), + (0xdc291137f7e170aab3a23f4ad4f65a49ff7066e9, 'Wins and Losses', 'WNL'), + (0xdc2917fa5ee9278d9302ad95c9fec2344052804a, 'Los Angeles Dodgers® Edwin Rios 1B/3B Base Motion Platinum 393 Epic', 'MLB-S221-E-B393-PLA'), + (0xdc3c6d2eaddbff989e05270760059fe328b978cc, 'Boston Red Sox® Enrique Hernandez Base White 90 Common', 'MLB-22S1-C-B90-S-WHI'), + (0xdc51a7476b088401742e611299aa162de879144d, 'Rare Comic 5 1-5 Bazooka Joe 2021 NFT', 'BZK-R-5C'), + (0xdc5ac4fde6030b11d272bdc1b2773e172d165867, 'Sean Goss MOT Base Aqua SP-27 Uncommon', 'SPFL-21SPSS-U-BSP-27-A-AQU'), + (0xdc5cf556f558a5a21544d506325dbb3019d7a0d1, 'San Diego Padres™ Yu Darvish P Base Static Gold 357 Uncommon', 'MLB-S221-U-B357-GOL'), + (0xdc63c66f9b21524f5c24596cd19b693584843808, 'WAXy William Golden Animation Color 7 Epic', 'GPK-NFT22-E-GA7-A-COL'), + (0xdc6c1a680a95cd704ddbb82a528afcda32c0f3fc, 'Tampa Bay Rays™ Blake Snell Inception Base White 90 Common', 'MLB-INC21-C-IB90-WHT'), + (0xdc6c75c7e07317ee71aad84d3c3b0765b4285717, 'Giovanni Reyna DOR Ascendent Facsimile Signature Blue TK-38 Legendary', 'BUND-22TK-L-ASCTK-38-S-BLU'), + (0xdc73f82d9b6541927f42e2e2c5d0e2b3f207cbcd, 'Janni Serra DSC Base White S4-48 Common', 'BUND-21TS4-C-BS4-48-S-WHI'), + (0xdc7806ce4abc184826d870508460096be2175b4f, 'St. Louis Cardinals® Kwang-Hyun Kim P Base Motion Platinum 482 Epic', 'MLB-S221-E-B482-PLA'), + (0xdc7ed3fa15da595c34223082e3dc7113bcc2a56e, 'San Diego Padres™ Ryan Weathers P Base Motion Platinum 335 Epic', 'MLB-S221-E-B335-PLA'), + (0xdc82ae576c15cdae2755c8fff6e9c3ebef8eced7, 'Strekzans', 'Strekzans'), + (0xdc841b97e2100c055693625a5a317439d8448e74, 'New York Yankees® Gerrit Cole Postseason Base Red 79 Rare', 'MLB-21POST-R-B79-M-RED'), + (0xdc8d16cdbbe380b2bb22623ccdfd7142aa527f90, 'FC Union Berlin Christopher Trimmel Base Players White 54 Common', 'BUND-SC21-C-BP54-WHT'), + (0xdc959c504e934e04da8b71edc68b62bce7c88673, 'Volcanic Eruption Event Exclusive Comic Cover Cyan 3 Epic', 'GDZ-RAT21-E-CCE3-A-CYN'), + (0xdc9946480aaa9c19bf87f3f9c254613722945d58, 'Common Comic 65 2-17 Bazooka Joe 2021 NFT', 'BZK-C-65C'), + (0xdc9a35ba46143000e798aa400e7f7af1ef839021, 'Minnesota Twins® Luis Arraez Rookie and Future Phenoms Facsimile Signature Red 50 Epic', 'MLB-INC21-E-RC50-RED'), + (0xdc9f626fa0ba6ee33f66193693e574b8227d661a, 'HappyLuckyBees', 'HLB'), + (0xdca0901d25d85d48db0e21bc0caa2d499cc0f3ad, 'Milwaukee Brewers™ Christian Yelich Division Series Bronze 58 Super Rare', 'MLB-21POST-S-D58-M-BRO'), + (0xdca2a8dc0e41bab3587430eef6d0f26c74036680, 'Kansas City Royals® Greg Holland Base Vintage Stock 52 Super Rare', 'MLB-22S1-S-B52-M-VS'), + (0xdca4a22c18c682ff44f8d555b3bcd42cc9912e85, 'Danny Latza S04 Top Players Facsimile Signature Team Color TK-31 Epic', 'BUND-22TK-E-TPTK-31-S-TMC'), + (0xdca567adc82ad39322fbb8c5fe88ae95799c841e, 'Atlanta Braves™ Ronald Acuña Jr. OF 1986 Anniversary Facsimile Signature Motion Chrome 86TC-65 Legendary', 'MLB-S221-L-1986AFS86TC-65-CHR'), + (0xdcaa6bdcb1cf60e04e445ffdced26eca009b07f8, 'Grungy', 'GRUN'), + (0xdcb209d5b4dfa154e0c69dcfc42d2d63fe5a642f, 'San Francisco Giants® Evan Longoria Base Pink 1188 Uncommon', 'MLB-22PRI-U-B85-M-PNK'), + (0xdcb24c3d75282aeb8c25c46fb6b0e60b9850dd41, 'Chicago White Sox® Gavin Sheets Base Blue 1210 Common', 'MLB-22PRI-C-B138-M-BLU'), + (0xdcb79218d501349b79889caf5579d136ca96f6bf, 'Cleveland Indians® James Karinchak P Base Motion Vintage Stock 361 Super Rare', 'MLB-S221-S-B361-VS'), + (0xdcc3d72bf4701900d7945b8672aef0ed062afc0e, 'Los Angeles Dodgers® Walker Buehler P Base Static White 466 Common', 'MLB-S221-C-B466-WHI'), + (0xdcc50051fffbcf8ea0795a3184da685f7e4d800b, 'Toronto Blue Jays® Lourdes Gurriel Jr. American League Base Blue 17 Rare', 'MLB-22ASG-R-B17-M-BLU'), + (0xdcc5d679aa20b638a9a3a3250d1d007ab43052e7, 'MetaMasks NFT', 'MMNFT'), + (0xdcc67b7cc17412f640e8724f3fca1658d402bcf9, 'Scott Georges Art Collection', 'SG42'), + (0xdccc5a12523f37a5c8b9468b357a0b327b50f0a6, 'Erling Haaland DOR Base Red S1-02 Uncommon', 'BUND-21TS1-U-BS1-02-S-RED'), + (0xdcdb824eb025498dafe31dd51ecdc3101bb8f9dc, 'VfB Stuttgart Gonzalo Castro Base Players Team Color 86 Uncommon', 'BUND-SC21-U-BP86-TMC'), + (0xdce11aa7c3289915a6b1ada0bde4dbfebf30020e, 'Godzilla Offshore Traditional Art Black and White 1 Uncommon', 'GDZ-RAT21-U-TA1-S-BW'), + (0xdce17842b69a9db82d64543e86d1662439910cac, 'St. Louis Cardinals® Yadier Molina Wild Card Contenders Blue 25 Common', 'MLB-21POST-C-W25-M-BLU'), + (0xdce238da6b1d416a5a2cb89ea23e8414ba745a35, 'AvaIanchick', 'AVCK'), + (0xdce37145e433d43e94aac26a06b2fe841745cd32, 'RUG TICKET', 'RRGG'), + (0xdce7f8ee3a590fb785b08f87f2ea58bb150fd9b4, 'Rugpull Prevention', 'RUGPUL'), + (0xdce9d3e5b144563a48936dd096389e55426b8856, 'Abstract Koi', 'KOI'), + (0xdcebcb9a643d10c6e369efeb33224d3d900cfead, 'Philadelphia Phillies® Zack Wheeler Base Vintage Stock 249 Super Rare', 'MLB-22S1-S-B246-M-VS'), + (0xdcee15012817a15affb7080d8bafffd620d630b8, 'Demon Face', 'DMF'), + (0xdcf0905b2718bef30c5234ed16732f0e2d5e5a20, 'Detroit Tigers® Daz Cameron OF Base Static White 441 Common', 'MLB-S221-C-B441-WHI'), + (0xdd006594928d26d0d9b2f23e0b629bdcaafaa0f1, 'Pittsburgh Pirates® Ke''Bryan Hayes Generation NOW Team Colors GN-24 Epic', 'MLB-22S1-E-GN24-M-TMC'), + (0xdd0123535b1fb647ca4bf1d82bf3276ae7f3a2ce, 'Miami Marlins® Trevor Rogers Base White 24 Common', 'MLB-22S1-C-B24-S-WHI'), + (0xdd018eecae10f3fb8fdfdbb1b8b45ac75210c602, '1992 Battra Rookie Card Color 4 Super Rare', 'GDZ-RAT21-S-RC4-S-COL'), + (0xdd06c863cfa961399e18cee8630fcee9b045b1ee, 'Seattle Mariners™ Kendall Graveman P Base Motion Platinum 340 Epic', 'MLB-S221-E-B340-PLA'), + (0xdd099485f6e973d7de62c4964d4d2f9e184b282e, 'G Dzima', 'GoDzima'), + (0xdd114f3a9773afd14249d0bdd6c470993c7a9901, 'Steph''s Dunks', 'Dunk'), + (0xdd11778f1d2766b5f19fe29db83e9a9dc26ca738, 'Atlanta Braves™ Freddie Freeman Ultra Short Print White 236 Epic', 'MLB-22S1-E-USP3-M-WHI'), + (0xdd13161c3245c92da21771a9b8296e8bf4c055a4, 'Toronto Blue Jays® Hyun-Jin Ryu Base Glitch 297 Uncommon', 'MLB-22S1-U-B293-M-GLI'), + (0xdd1d63c508cc2159d2f712bee112b5b66af06e55, 'New York Yankees® Gerrit Cole Postseason Base Navy 79 Uncommon', 'MLB-21POST-U-B79-M-NVY'), + (0xdd2166510f2e8c9cd247d812c9855da58b9855df, 'Chicago White Sox® Yoan Moncada 3B Base Motion Vintage Stock 520 Super Rare', 'MLB-S221-S-B520-VS'), + (0xdd2916396cef73dd41499a1b324fa71a2ddd41a1, 'FC Schalke 04 Matthew Hoppe Young Stars Team Color 167 Super Rare', 'BUND-SC21-S-YS167-TMC'), + (0xdd2a2a05edc9cf4e473e72855b5bbcdb65aefde7, 'Plot', 'PLOT'), + (0xdd2b36d970f1a9707d2063b078b5def3782ab355, 'Arizona Diamondbacks® Christian Walker Base Glitch 75 Uncommon', 'MLB-22S1-U-B75-M-GLI'), + (0xdd32bc8f93139eaff3f68899a9d308c8bdc46ca0, 'Cleveland Guardians™ Ernie Clement Base Vintage Stock 71 Super Rare', 'MLB-22S1-S-B71-M-VS'), + (0xdd36a1be8800c3298a9eada591adb5f472013e33, 'New York Yankees® Joey Gallo Base Pink 1028 Uncommon', 'MLB-22PRI-U-B25-M-PNK'), + (0xdd3a063cc4851878e2cb66225e64ab73dbe670e6, 'Shaman Tribe Chant Golden Record', 'STCGR'), + (0xdd3fd402ef8b9062fa1035c4374652768cf69c7c, 'The Saudis', 'SDS'), + (0xdd42688a083f617eb7720d7964de3e151f7e9d5f, 'Calvin Ramsay ABE Top Plays Gold SPTPL-01 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-01-V-GOL'), + (0xdd44a3ff190cca57abbfe94d0c15773bdc94b3f3, 'Seattle Mariners™ Cal Raleigh Facsimile Signature Gold 3096 Super Rare', 'MLB-22PRI-S-FS8-M-GLD'), + (0xdd538fb5378531f023048ea79606c2bd4a63a271, 'New York Mets® Kevin Pillar Base White 170 Common', 'MLB-22S1-C-B169-S-WHI'), + (0xdd5f2970c0745738d0642714316631fa1ffd2fe9, 'Chicago White Sox® Nick Madrigal Inception Base Blue 28 Uncommon', 'MLB-INC21-U-IB28-BLU'), + (0xdd65ce4000d2b17d121bb4a0784c61b8c792acee, 'KSVArt Community', 'ASKSV'), + (0xdd70dd581c22b04b5950be4a297e8c4e9b75aafb, 'Chicago White Sox® Gavin Sheets 1987 35th Anniversary Wood T87-19 Common', 'MLB-22S1-C-1987A16-M-WD'), + (0xdd73961da4baabe07fc78d1a7fbae9ce0478fa43, 'Toronto Blue Jays® Teoscar Hernandez Base Blue 1089 Common', 'MLB-22PRI-C-B70-M-BLU'), + (0xdd7eb99309f3bfc1c970bb52f0935ca60640f653, 'Seattle Mariners™ Ty France Base Vintage Stock 327 Super Rare', 'MLB-22S1-S-B323-M-VS'), + (0xdd811213c7d94d5243815884ed273c934e7db009, 'ZeBruh', 'ZBR'), + (0xdd874675458045cebcc35429a2d002d8924092ab, 'Angels® Jo Adell OF 1986 Anniversary Facsimile Signature Motion Chrome 86TC-96 Legendary', 'MLB-S221-L-1986AFS86TC-96-CHR'), + (0xdd899f51a37fdc7253a10ac7194d674d32635242, 'Midnight Grinders', 'MDGR'), + (0xdd8b635a33d3a0245d94a4df008afdaa3d7fa5b3, 'irishpride1in', '1in'), + (0xdd8d3712bfac165f22e1dce9a8b0f9ad642da383, 'Miami Marlins® Zach Thompson Base Glitch 227 Uncommon', 'MLB-22S1-U-B224-M-GLI'), + (0xdd90280345a96d208342b71989188deb9ec81d37, 'New York Yankees® Aaron Judge Facsimile Signature Red 99 Rare', 'MLB-22S1-R-FS6-S-RED'), + (0xdd946f6412fe36cb23971a9b7e057bbc7a3bf42e, 'Burning Bennie Animation Color 6 Rare', 'GPK-NFT22-R-A6-A-COL'), + (0xddab2160a4ae501504e178556c10ba117c5a2a7e, 'Smol Santa', 'Santa'), + (0xddad1551ce673596e07e9c21f9d1102b8e530c86, 'Washington Nationals® Ryan Zimmerman 1B Base Static White 461 Common', 'MLB-S221-C-B461-WHI'), + (0xddb50452622f86bac2242ee77c9a365856a27a8d, 'Milwaukee Brewers™ Corbin Burnes Facsimile Signature Blue 240 Uncommon', 'MLB-22S1-U-FS15-S-BLU'), + (0xddb84cd320055903ef073876741278a1014f9de0, 'Philadelphia Phillies® Vince Velasquez P Base Motion Rainbow 653 Rare', 'MLB-S221-R-B653-RAI'), + (0xddb94483c5337e758f0d39862163f2fc0b88cf43, 'National League™ 2021 ERA Leaders Base Vintage Stock 204 Super Rare', 'MLB-22S1-S-B203-M-VS'), + (0xddbe8f826f3d05002b62b0b95d7d0b6618cd706e, 'Arizona Diamondbacks® Tim Locastro OF Base Motion Platinum 585 Epic', 'MLB-S221-E-B585-PLA'), + (0xddc46bda07b1891a092ddff96a317ca736536f70, 'Cleveland Indians® Zach Plesac P Base Motion Vintage Stock 403 Super Rare', 'MLB-S221-S-B403-VS'), + (0xddca56086617a592f98bd9c2de112042de6be4b1, 'Beers', 'BEER'), + (0xddde69253898af59525428c80cab60265852a5cf, 'Toronto Blue Jays® Alejandro Kirk American League Base White 1 Uncommon', 'MLB-22ASG-U-B1-M-WHI'), + (0xdde8413cec6b342f633012cfb1feffdd997a8bfa, 'NW Cool Cats', 'NWCCATS'), + (0xddef16aaa3f29b699c80e17b973d3497bdbafa72, 'Philadelphia Phillies® Bryce Harper 1987 35th Anniversary Wood T87-41 Common', 'MLB-22S1-C-1987A31-M-WD'), + (0xddf13c1b18686212a6365ac8ede2e798d43a7407, 'Los Angeles Dodgers® Andre Jackson 1987 35th Anniversary Chrome T87C-14 Super Rare', 'MLB-22S1-S-1987AC11-M-CHR'), + (0xddf8564aff4d92df0194358e331934409ed2df99, 'Iago FCA Animation Gold Refractor S4-66 Legendary', 'BUND-21TS4-L-AS4-66-V-GOL'), + (0xddfceed77e11658090634927bebd05892f261a21, 'AvA Dolls', 'a'), + (0xde00bc34db71d35c95f83e9679bcd547efede30e, 'Nicky Devlin LFC Captains Green SPCAP-10 Epic', 'SPFL-21SPSS-E-CAPSPCAP-10-A-GRE'), + (0xde0e722904987edbaa6b7d55fc182652bee824f5, 'Masaya Okugawa DSC Motion Aqua Refractor S3-25 Rare', 'BUND-21TS3-R-MS3-25-V-AQU'), + (0xde0ea58a89dc2161fce92a4a68cbfebae3aca3ab, 'Chads & Friends', 'C&F'), + (0xde135ec069b37905e0201e7c121844e834562663, 'Houston Astros® Jeremy Peña Championship Series Broadcast RWB 1128 Rare', 'MLB-22TNP-R-CSB1-M-RWB'), + (0xde1bc7d0701c316830569952a11d28aaa77507e3, 'Philadelphia Phillies® Mickey Moniak OF Base Motion Vintage Stock 457 Super Rare', 'MLB-S221-S-B457-VS'), + (0xde3baf94f8afde5aba63d1f61e17239311d5137e, 'Houston Astros® Base White 136 Common', 'MLB-22S1-C-B135-S-WHI'), + (0xde3ca1e6933998d5b237250be334b13a9032e486, 'PolyAnt Queen', 'ANT'), + (0xde40901840acbd4876a2dee85beff316f9a0f2f2, 'Jonas Wind WOB Animation Gold Refractor S4-52 Legendary', 'BUND-21TS4-L-AS4-52-V-GOL'), + (0xde4724365a534421bb2581eccaa0074f43dc5b70, 'SplashKings', 'SPK'), + (0xde48a1907e08b43bd0577e7eae5e26bda0acc786, 'New York Mets® Michael Conforto Base Blue 1149 Common', 'MLB-22PRI-C-B95-M-BLU'), + (0xde4ea2691c4038829a3b39edbe5087a694f1a9bc, 'Mutant Ape Club avax', 'maca'), + (0xde5aac325a18f4b6cc40f23c8351ede9516a3c4a, 'Chicago White Sox® Lucas Giolito Base Glitch 291 Uncommon', 'MLB-22S1-U-B288-M-GLI'), + (0xde5c7bdebf9a7441ecf267dae9de31d332f28602, 'Uncommon Comic 29 1-29 Bazooka Joe 2021 NFT', 'BZK-U-29C'), + (0xde5f97ad128cb41309528eaa62bdfcbb6b518210, '8-bit leopards', '8BITLEO'), + (0xde63c3ecd958ba42885cb4f4c32a22eca608b7bb, 'Borussia Dortmund Thorgan Hazard Base Players Gold 10 Rare', 'BUND-SC21-R-BP10-GLD'), + (0xde687f3c1bc2855222d9b7aa5566d3e70734fa7c, 'St. Louis Cardinals® Paul Goldschmidt Pure Power Facsimile Signature Reward White 3307 Legendary', 'MLB-22PRICR-L-PPR3-M-WHI'), + (0xde6acfc5a7628a2e7d6af893c15b89d4b7bd2bf8, 'Atlanta Braves™ Dansby Swanson/Jorge Soler WS Redemption Gold 1026 Rare', 'MLB-21NOW-R-WS1026-GOL'), + (0xde6eaded3093d84fa40f1cbcb04a22886f221f3c, 'Philadelphia Phillies® Rhys Hoskins Facsimile Signature Gold 3021 Super Rare', 'MLB-22PRI-S-FS43-M-GLD'), + (0xde6fa48a61f3732c32ed21df6d997210fa341164, 'TriPod-X', 'TriPod-X'), + (0xde73103c53b82a5071225c1a5b53b0dc75c76ac5, 'JohannesBeavers', 'JBV'), + (0xde74c67dc69964d47eeb66e74477bf1aa4f9c32a, 'Baltimore Orioles® Jahmai Jones 2B Base Motion Platinum 507 Epic', 'MLB-S221-E-B507-PLA'), + (0xde7c89a6350aff52da40a85ef1086a053c7faa48, 'Toronto Blue Jays® Alejandro Kirk C Base Static White 551 Common', 'MLB-S221-C-B551-WHI'), + (0xde837744c9fb0bfd3adf02dab930515066015cb8, 'FC Bayern Munich David Alaba Base Players White 1 Common', 'BUND-SC21-C-BP1-WHT'), + (0xde911fbc7aa829e0d4e8a2e2d8d3af1879c67e2d, 'Smolrun Cans', 'CANS'), + (0xdeb06a18b7e3a6628f6313b7c622e94395b4a99e, 'Washington Nationals® Max Scherzer Inception Base Black 98 Legendary', 'MLB-INC21-L-IB98-BLK'), + (0xdeb880ab603ffef203ad9ddab1e9ac6934edede3, 'Please Respect', 'RESPECT'), + (0xdec01a63307f9573ab42c0b9ef0271ff7223c3d6, 'The FCKERS AVAX', 'FVCKA'), + (0xdec2588b0484fe2edaa2936aa041de6b5e3f41fc, 'Seattle Mariners™ Tom Murphy Base Independence Day RWB 262 Rare', 'MLB-22S1-R-B259-M-RWB'), + (0xdec316c0c801fd9c1a9424f552117000620832fd, 'San Diego Padres™ Adam Frazier Base Glitch 304 Uncommon', 'MLB-22S1-U-B300-M-GLI'), + (0xdec3f9daf90b86373fca55696949181839b39164, 'CloudHeadz Customs', 'ChzC'), + (0xdec60435faa66469f0b74dedfba1ccd7aa940c21, 'The Blue Hippos', 'BHIPS'), + (0xdec789c563c934e0840caae322750fa4e11f9406, 'Hmong Butterflies', 'hmo'), + (0xdeccfec3ef0ddba8dd7de672479b28375b4496db, 'San Diego Padres™ Base Motion Rainbow 604 Rare', 'MLB-S221-R-B604-RAI'), + (0xded244c76c9e1455df96667243aafac0ca3d2839, 'FC Union Berlin Christopher Trimmel Base Players Team Color 54 Uncommon', 'BUND-SC21-U-BP54-TMC'), + (0xded26c5ab18dfa5b03afafcfd2b210793a893c33, 'Philadelphia Phillies® Archie Bradley Base Glitch 10 Uncommon', 'MLB-22S1-U-B10-M-GLI'), + (0xdee951d26e77d73ea7191d7261dced3ea939bd12, 'New York Mets® Patrick Mazeika Base White 166 Common', 'MLB-22S1-C-B165-S-WHI'), + (0xdeea436d9773bbe389173df0584c27e0437a48bd, 'APA_AI', 'APAAI'), + (0xdeeb35f99279a19d2a534aae06bcb8f796f78785, 'Joško Gvardiol RBL Ascendent Facsimile Signature Blue TK-39 Legendary', 'BUND-22TK-L-ASCTK-39-S-BLU'), + (0xdeedb54ac8954756a667552ebe4935d7714fbe90, 'Cyborg Angel', 'CyborgAngel'), + (0xdef0607dfb45d8deafe2bc3e41874292551ffc17, 'Alassane Plea BMG Animation Gold Refractor S3-24 Legendary', 'BUND-21TS3-L-AS3-24-V-GOL'), + (0xdef26df2fd5aa05608757345750f93a3839893cc, 'Atlanta Braves™ Kyle Muller Facsimile Signature Gold 3098 Super Rare', 'MLB-22PRI-S-FS26-M-GLD'), + (0xdef4e06bb6d94c1647cefb35ca943e7a3777b90f, 'Miami Marlins® Fish out of Water Base Static White 530 Common', 'MLB-S221-C-B530-WHI'), + (0xdefb4138afd179da9835a52636d35b002d4fee1d, 'Mile High Ape Club', 'MHC'), + (0xdf099b2e02293f9ecd5f7c01b0b41dccde1617bb, 'Chicago White Sox® Zack Burdi P Base Motion Vintage Stock 483 Super Rare', 'MLB-S221-S-B483-VS'), + (0xdf0ce50e09bf65a127b340e75c16637bda41052a, 'TSG Hoffenheim TSG Insert Pennant Team Color S4P-17 Uncommon', 'BUND-21TS4-U-IS4P-17-S-TMC'), + (0xdf122d0eb9e617a72988b5de508b8a12f83c2aa6, 'St. Louis Cardinals® Kwang-Hyun Kim P Base Static Gold 482 Uncommon', 'MLB-S221-U-B482-GOL'), + (0xdf1ba99f31215cd6d8dc18381cd6aa0b98238e1a, 'Support Pass', 'Love'), + (0xdf1d8014194761880e297a8603259094900ef34a, 'Atlanta Braves™ Freddie Freeman Facsimile Signature Red 236 Rare', 'MLB-22S1-R-FS14-S-RED'), + (0xdf1de87d12417cd71040ae983688bc74a3d91933, 'New York Yankees® Giancarlo Stanton Postseason Base Navy 74 Uncommon', 'MLB-21POST-U-B74-M-NVY'), + (0xdf206f464de9c771a80b9fd24a81764619264900, 'American League™ 2021 Batting Average Leaders Base Vintage Stock 165 Super Rare', 'MLB-22S1-S-B164-M-VS'), + (0xdf256b17d845e97f390ecb7e75a86c14fa08edec, 'New York Yankees® Clarke Schmidt P Base Motion Vintage Stock 456 Super Rare', 'MLB-S221-S-B456-VS'), + (0xdf312fd6866330e24c6320217f52a885f20f1a75, 'Arizona Diamondbacks® Pavin Smith Base Glitch 106 Uncommon', 'MLB-22S1-U-B105-M-GLI'), + (0xdf3221540144dd77b4eea4e10c96ffe7664505c1, 'Miami Marlins® Brian Anderson Base Vintage Stock 19 Super Rare', 'MLB-22S1-S-B19-M-VS'), + (0xdf3253fa374cf83b6cbb7a8fe677d4d904d84847, 'Kostić-Lindström SGE Animation Duos TSC-08 Epic', 'BUND-21TSC-E-RATSC-08-A-DUO'), + (0xdf3484deee6b6d8e9e5d3ea9e50f731902b73835, 'Konstantinos Mavropanos VFB Motion Rainbow Refractor S2-15 Super Rare', 'BUND-21TS2-S-MS2-15-V-RAI'), + (0xdf39dc4d70b31feb40e5c4cc85ceabfb1303ed3a, 'Ai0NE Dark', 'AiDRK'), + (0xdf3bd14a6ca350da3cebbc996cc6b2d2f1327c56, 'Bayer 04 Leverkusen Moussa Diaby Young Stars Team Color 154 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS154-SFS-TMC'), + (0xdf45131c3df43de849aeb8ddc72b6d2f51ded49e, 'spunk', 'SPUNK'), + (0xdf489cb91a9cd4ef86288ccce60d0d39c461c099, 'National League™ 2021 Home Run Leaders Base White 146 Common', 'MLB-22S1-C-B145-S-WHI'), + (0xdf4ef43309a04ef140fff99830acfb0aaecaa2e1, 'DinoFrens by Avax Dinos', 'DINOFRNS'), + (0xdf4f92c2066187d0ffa910e4fa718d2ec171b953, 'Odos.xyz NFT Campaign v2.0', 'Odos'), + (0xdf6a9e5fca1720b54c042e5010846a13944652c0, 'PENGUIN', 'PNG'), + (0xdf6f5def02d5c55e6efa2db9aa526ec480c1aa2c, 'Cleveland Indians® Shane Bieber Inception Base White 21 Common', 'MLB-INC21-C-IB21-WHT'), + (0xdf7ee10652ba3d267f151315f3aca19fb4ce6897, 'St. Louis Cardinals® Base Motion Vintage Stock 478 Super Rare', 'MLB-S221-S-B478-VS'), + (0xdf87e2cd34f1e0087eddb7d3f95970d414e6a3bf, 'Atlanta Braves™ Jorge Soler Topps NOW White 1037 Rare', 'MLB-21NOW-R-TN1037-WHI'), + (0xdf98c6d194a9a183482d3f16ade28d8800ef73c1, 'Chicago Cubs® Kris Bryant Inception Base Black 16 Legendary', 'MLB-INC21-L-IB16-BLK'), + (0xdfa56be4fe001d5d0e34272be51914bb778e4c8d, 'Cleveland Indians® Jose Ramirez 3B Base Motion Vintage Stock 360 Super Rare', 'MLB-S221-S-B360-VS'), + (0xdfaa1ec6640e5ac9649aa0600a43cf8717806894, 'VfL Wolfsburg Josip Brekalo Base Players Team Color 31 Static Facsimile Signature Rare', 'BUND-SC21-R-BP31-SFS-TMC'), + (0xdfac8042d9a973c5b429d706f731d84a61765de8, 'Florian Neuhaus BMG Top Players Facsimile Signature Team Color TK-15 Epic', 'BUND-22TK-E-TPTK-15-S-TMC'), + (0xdfaee936c58eff4dc994f1925c7c4990dc92c326, 'Detroit Tigers® Miguel Cabrera Base Pink 1011 Uncommon', 'MLB-22PRI-U-B15-M-PNK'), + (0xdfafc7d34d40a8470d09983ef9dcc918865bfc90, 'Weirdless', 'WDLS'), + (0xdfb00e816bc17f46f90aed507f9e36c3c1db1f53, 'Zaidan Clan NFT', 'ZCN'), + (0xdfb1b2ed5846240c4c17b94ec911d3e9284c4a6d, 'NW Crypto Punk', 'NWCPUNK'), + (0xdfbbe49c43a925c9c97a1ba27d6f885f263b18fe, 'Atlanta Braves™ Drew Smyly Base Vintage Stock 195 Super Rare', 'MLB-22S1-S-B194-M-VS'), + (0xdfc39c757465aaa3c31ddfe856f68ecd4be9da66, 'FC Bayern Munich Joshua Kimmich Top Players Gold 93 Animated Facsimile Signature Epic', 'BUND-SC21-E-TP93-AFS-GLD'), + (0xdfc720be0ea51eb5b823925218dc8657f7594a1b, 'Colorado Rockies™ Trevor Story Inception Base Red 24 Rare', 'MLB-INC21-R-IB24-RED'), + (0xdfca094bee63828c9ce3dfeb69161bc67f2bfd72, 'Atlanta Braves™ Austin Riley Facsimile Signature Blue 115 Uncommon', 'MLB-22S1-U-FS7-S-BLU'), + (0xdfcc75911213e4345c916fb976eecc776cf757f5, 'Cosmic Punks', 'CP'), + (0xdfd31829f6d62c19cfdb4332f5228275d08e2371, 'Angels® Justin Upton OF Base Static White 527 Common', 'MLB-S221-C-B527-WHI'), + (0xdfd955a8df8f07b9bed2ebf88a2a7ed8a721b659, 'Atlanta Braves™ Travis d''Arnaud Second Place Palm Trees 8 Super Rare', 'MLB-22ASG-S-SEC8-M-PLM'), + (0xdfdefba13ae9eb2958e2bc2c17b2f2638ee73f97, 'the Zen Den', 'tZD'), + (0xdfdf9dc8bf254048cdfda18ec23936acb1672c72, 'Follow The Banana', 'FTB'), + (0xdfe659bca3cc1116a4d709360713012eb65479d4, 'Milwaukee Brewers™ Josh Hader P Base Motion Vintage Stock 596 Super Rare', 'MLB-S221-S-B596-VS'), + (0xdfeb23cadcfdaaaa21eb16f4d9e2cde23093fd31, 'Colorado Rockies™ Base Glitch 222 Uncommon', 'MLB-22S1-U-B219-M-GLI'), + (0xdff0655aecdb00939125707075a5447169e10b1b, 'Angels® Brandon Marsh Base Glitch 243 Uncommon', 'MLB-22S1-U-B240-M-GLI'), + (0xdff258a3b6c5bb4f6f662c70888553cdd768d806, 'Boston Red Sox® Jose Iglesias Base Glitch 15 Uncommon', 'MLB-22S1-U-B15-M-GLI'), + (0xdff52496782d851546e44cf5c4dfea260d133868, 'Chicago Cubs® Javier Baez Inception Base White 15 Common', 'MLB-INC21-C-IB15-WHT'), + (0xdff8329b4f4ebd782d57d18eabeebf914e1748ae, '2022PDIWholesaleSummit', 'PDI2022'), + (0xdff9806a6ca1d11588ee316e74f5d8c09f4d36ba, 'CryptoQuokka', 'CQ'), + (0xdffc81a72cc8273cea72909e96695a89cd69e012, 'PLEASEGAWD', 'MNT'), + (0xe002157b281fb23adec4f781f66526dfcc0b81bc, 'Los Angeles Dodgers® Corey Seager Base Vintage Stock 301 Super Rare', 'MLB-22S1-S-B297-M-VS'), + (0xe022454603b6fa73c4e2a6a98beb9d8fe04ef392, 'Psychedelic Rams', 'RAMS'), + (0xe02467aa005f9a3c0f1c99be47424a4bbc2e94d6, 'Dumpys', 'DMPY'), + (0xe028725c77157078805b01c5abf5dc309e9139d4, 'Kieran Freeman DDU Young Stars Red SPYS-06 Epic', 'SPFL-21SPSS-E-YSSPYS-06-A-RED'), + (0xe0304988a7b11e8bb25c13384159dfd0239a4c5c, 'San Diego Padres™ Ivan Castillo Base White 140 Common', 'MLB-22S1-C-B139-S-WHI'), + (0xe03b661d1e1ac6175511b70f641a2824441144c5, 'FC Schalke 04 Malick Thiaw Young Stars Gold 168 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS168-AFS-GLD'), + (0xe041489e8ea91eb06e85f5272da320ca2c37d78c, 'Defiolio Lifetime Access', 'Olio'), + (0xe05275a28aee4ab8cb5e91e6d10548de294a6432, 'Robert Lewandowski BAY Base Red S4-36 Uncommon', 'BUND-21TS4-U-BS4-36-S-RED'), + (0xe05b7e702a2c06a1ee0f42a2fa99ea870545cc82, 'American League™ 2021 Batting Average Leaders Base Independence Day RWB 165 Rare', 'MLB-22S1-R-B164-M-RWB'), + (0xe05ce2ae4ec1ab70ba7e32968ace779a53e22041, 'Erhan Mašović BOC Ascendent Blue TK-54 Super Rare', 'BUND-22TK-S-ASCTK-54-S-BLU'), + (0xe0618403fd9a8aae2c45aafe67c60a39b306460f, 'Angels® Jo Adell OF 1986 Anniversary Static Team Colors 86B-23 Super Rare', 'MLB-S221-S-1986A86B-23-TMC'), + (0xe0637a0eb1625881221ed054c75d5059ab368fb9, 'tablet', 'tab'), + (0xe065d2694861f1ec6cdb6b8f870060c654883bc9, 'AMIGO', 'HOLA'), + (0xe0675541f68aa6fd903d923ef828fbaafc0f8086, 'Cobalt CAThy Facsimile Signature Color 10 Uncommon', 'GPK-NFT22-U-FS10-S-COL'), + (0xe067dc8ea1a80633068b69ba71f82f9a843d1479, 'Cincinnati Reds® Tony Santillan Base White 111 Common', 'MLB-22S1-C-B110-S-WHI'), + (0xe07138c839fd646aa9a6e02972c54170c06d9b59, 'Masks of the Spirit', 'mots'), + (0xe077bdb7faebb2a1dea58519df96942042e1f9eb, 'Cleveland Guardians™ Jose Ramirez Pure Power White 2117 Rare', 'MLB-22PRI-R-PP11-M-WHI'), + (0xe077d559815efa4fc3c10f08140cafb92d14b939, 'Common Comic 51 2-3 Bazooka Joe 2021 NFT', 'BZK-C-51C'), + (0xe07a2387fc635b1f7e76c7a2f7daebe33874d8a6, 'Sick Society', 'SICS'), + (0xe084dc89372e204e4f1370031f5e7afa70455db1, 'Angels® Base Motion Vintage Stock 621 Super Rare', 'MLB-S221-S-B621-VS'), + (0xe095a20be2b57c0686c2de9be5bcfd4413eaae69, 'Toronto Blue Jays® Bo Bichette Facsimile Signature Glitch 126 Epic', 'MLB-22S1-E-FS8-M-GLI'), + (0xe0a40a53c3313ac8936287d7b3f5262636558216, 'MetaMasks Genesis', 'MMGEN'), + (0xe0a5a5180ecdd5da5e636795e95bfb7a6d8f140a, 'Pittsburgh Pirates® Gregory Polanco OF Base Static White 412 Common', 'MLB-S221-C-B412-WHI'), + (0xe0a67b7740f11328b831148d4511c16154b7a782, 'MIMI 33 Monoliths', 'MM33'), + (0xe0ab2ce5e2a50e2c2b421da812ba79b049ceecad, 'RCS Cows', 'RCSC'), + (0xe0b169d7b5f85543f0af493c8ff86ae81360efdb, 'Angels® Jared Walsh Base White 154 Common', 'MLB-22S1-C-B153-S-WHI'), + (0xe0b3173d6aa33d144da7eba25b157d413330ef15, 'Airdrop Angel Event Exclusive Animated Facsimile Signature Yellow 14 Super Rare', 'GPK-NFT22-S-AFSE14-A-YEL'), + (0xe0b89d998e6e7fce223c88eee201f2db684dbf18, 'Oakland Athletics™ A.J. Puk P Base Static Gold 636 Uncommon', 'MLB-S221-U-B636-GOL'), + (0xe0bb6a9686ce74174df815d6ee67a005c961d5f7, 'Detroit Tigers® Victor Reyes Base Independence Day RWB 252 Rare', 'MLB-22S1-R-B249-M-RWB'), + (0xe0c208d0dc76d966ba26716a7ff6bb6f855505b8, 'Super Rare Comic 57 2-9 Bazooka Joe 2021 NFT', 'BZK-S-57C'), + (0xe0cee51ba708cd31a08ee1e584e11fc15d01f10e, 'New York Mets® Andres Gimenez Inception Base Black 62 Legendary', 'MLB-INC21-L-IB62-BLK'), + (0xe0d01fba9d338b0cfbb69915f281c4de532711b1, 'Kingdom Quest Ship', 'KQS'), + (0xe0ddb7865fc6f9cedf95dd9a8826c7cc965d16e3, 'COTC2Serum', 'COTC2Serum'), + (0xe0dea1bc50ec1fe25d78574fd0645d5988ea10ca, 'Rare Comic 92 2-44 Bazooka Joe 2021 NFT', 'BZK-R-92C'), + (0xe0e8c7fb1e45dbb6e89a8bc301226e945e29c2e8, 'Angels® David Fletcher 2B/SS Base Static White 624 Common', 'MLB-S221-C-B624-WHI'), + (0xe0f5606ff45b7b8d4d0ed7677d75a155244fc2dc, 'Houston Astros® Justin Verlander Inception Base White 37 Common', 'MLB-INC21-C-IB37-WHT'), + (0xe0fa1f8ca9403e5265041fb56bb78a6571b21959, 'Boston Red Sox® Alex Verdugo Inception Base Blue 10 Uncommon', 'MLB-INC21-U-IB10-BLU'), + (0xe0ffe55272031a2976eba427adcdbd60277dfd03, 'New York Mets® Base Static Gold 555 Uncommon', 'MLB-S221-U-B555-GOL'), + (0xe1006f13f65b291f88bd4ca1bcf606411f5e6c57, 'Kevin Trapp SGE Motion Rainbow Refractor S2-14 Super Rare', 'BUND-21TS2-S-MS2-14-V-RAI'), + (0xe116e63df98480d5222b9ec6654e71b4a63a9e28, 'New York Mets® Dominic Smith 1B/OF Base Static White 546 Common', 'MLB-S221-C-B546-WHI'), + (0xe11948fe711bf08c9089914eaf0a5422dc5901e1, 'SV Werder Bremen Leonardo Bittencourt Base Players White 76 Common', 'BUND-SC21-C-BP76-WHT'), + (0xe12b094d9dc4c7d6b9ff93aa36bfc180368a4c90, 'Heads', 'HEADS'), + (0xe12d079de05fbe60e402c96acad4956385425388, 'Arizona Diamondbacks® Daulton Varsho Inception Base Red 1 Rare', 'MLB-INC21-R-IB1-RED'), + (0xe130c1397f654f9e8935de5fc27e0540ff676e1e, 'Boston Red Sox® Rafael Devers Second Place Beach 4 Epic', 'MLB-22ASG-E-SEC4-M-BCH'), + (0xe13254ce6933ef9fcea4dbe105814278097855eb, 'Texas Rangers® Nick Solak 2B/OF Base Motion Rainbow 583 Rare', 'MLB-S221-R-B583-RAI'), + (0xe13906e7b2b7500a5227cc796f5e062ffe048269, 'Atlanta Braves™ Tucker Davidson P Base Static White 423 Common', 'MLB-S221-C-B423-WHI'), + (0xe1486a213620d0ad74bfd9a290165fb625075656, 'Golden Tickets', 'GOLD'), + (0xe15a4220124e9e751d10bc024777225c27eb27c3, 'Assetha: Genesis', 'ASTGEN'), + (0xe15ad091870353aa28828fcfa59197583e848d91, 'Seattle Mariners™ Jarred Kelenic 1987 35th Anniversary Chrome T87C-20 Super Rare', 'MLB-22S1-S-1987AC16-M-CHR'), + (0xe15db2aff3d773536466d6755722a6b97c52d744, 'Kansas City Royals® Greg Holland Base Independence Day RWB 52 Rare', 'MLB-22S1-R-B52-M-RWB'), + (0xe1661ce9e62e83e85aaa6ff81d22cae6d07f4ea5, 'Tampa Bay Rays™ Mike Brosseau Base White 223 Common', 'MLB-22S1-C-B220-S-WHI'), + (0xe16b729dfcc4bd932c4296463702f1ee2137194b, 'Godzilla RAT Page 2 Comic Page Color 2 Super Rare', 'GDZ-RAT21-S-CP2-A-COL'), + (0xe17456c84757f74a97458ec30664d9003e65ae3b, 'TSG Hoffenheim Diadie Samassékou Base Players White 26 Common', 'BUND-SC21-C-BP26-WHT'), + (0xe17c72283a38343a3488989e87f2d314d1f13d76, 'Angels® Anthony Rendon 3B Short Print Motion White 550 Super Rare', 'MLB-S221-S-SP550-WHI'), + (0xe17f1f704a4d0f9d7d922ff38f9225c5b404bbb3, 'Future Gromps GENESIS', 'FGG'), + (0xe18b3c6b1c3d66f143255e7f779e60376b4d9c4a, 'DSC Arminia Bielefeld Arne Maier Young Stars Gold 177 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS177-AFS-GLD'), + (0xe191c217b56aeccfd7beeab0b0cdb53144f07d2d, 'Godzilla in the City Traditional Art Color 5 Epic', 'GDZ-RAT21-E-TA5-A-COL'), + (0xe1940cd50bc4c01b2a2866df20fa9c2efd101e4f, 'Toronto Blue Jays® Nate Pearson Gold Signings Facsimile Signature Gold 40 Epic', 'MLB-INC21-E-SS40-GLD'), + (0xe19932dc2900414c91ae96ac59253ed11a49f843, 'Borussia Monchengladbach Matthias Ginter Base Players Team Color 18 Uncommon', 'BUND-SC21-U-BP18-TMC'), + (0xe19c08ea9c8aeba8a88f0fb324d22426f6ec04f6, 'Anthony Modeste KOE Base White S2-18 Common', 'BUND-21TS2-C-BS2-18-S-WHI'), + (0xe1a1640c6163d2f933f5a26ed30bebed6debe55c, 'Myna Members Club', 'MMC'), + (0xe1a33724f5766eae389c86f96ca4846373b997e3, 'Shrimpy''s Music Shrimps', 'SHRMP'), + (0xe1a7445709a838ceb5580d22ced27cd9e106d8e9, 'Kansas City Royals® Mike Minor Base Independence Day RWB 155 Rare', 'MLB-22S1-R-B154-M-RWB'), + (0xe1ad298927798fdc3de01bf4a0af78bc00e22548, 'Houston Astros® Carlos Correa SS 1986 Anniversary Static Team Colors 86B-16 Super Rare', 'MLB-S221-S-1986A86B-16-TMC'), + (0xe1addc0c92eabca8f7c65645c7359cf9008ebb53, 'Houston Astros® Alex Bregman 1987 35th Anniversary Wood T87-81 Common', 'MLB-22S1-C-1987A59-M-WD'), + (0xe1ae11b9dc9d3e57ac6953bc4be9329efd6267e9, 'Milwaukee Brewers™ Keston Hiura Base Glitch 265 Uncommon', 'MLB-22S1-U-B262-M-GLI'), + (0xe1b52862953aea64090fb5bf23871e123a23d782, 'Encapsulation', 'CAPSULE'), + (0xe1ba85b2cc5687c207bcef8f9c544cd699d50bae, 'New York Yankees® Aaron Judge Postseason Base Navy 73 Uncommon', 'MLB-21POST-U-B73-M-NVY'), + (0xe1be2b2cea989f4949dec253a2f94e9fa8c916c5, 'Mads Pedersen FCA Base Red S3-26 Uncommon', 'BUND-21TS3-U-BS3-26-S-RED'), + (0xe1c7b85fa1da33185e51b86a2253109c5cb93ab9, 'Chicago White Sox® Garrett Crochet P Base Static White 362 Common', 'MLB-S221-C-B362-WHI'), + (0xe1c91d2ff53f403f3022b681bef2bb290368a923, 'Cincinnati Reds® Eugenio Suarez 3B Base Motion Vintage Stock 627 Super Rare', 'MLB-S221-S-B627-VS'), + (0xe1d3b33dda5e107c6075d2921ef125028d0fdb54, 'Suat Serdar BSC Top Players Facsimile Signature Team Color TK-22 Epic', 'BUND-22TK-E-TPTK-22-S-TMC'), + (0xe1daa52f674985670f345f3bb13cb437336ed363, 'Shades of Abstraction - The Banners', 'Shades Banners'), + (0xe1de2bc81eb15567e45cc99e5a2262e9804afaa1, 'The One Awards 2022 Entrant', 'OCE'), + (0xe1e06faa0581df1008e84945c4d3d7a03157b1b0, 'Chicago Cubs® Jason Heyward Base Vintage Stock 323 Super Rare', 'MLB-22S1-S-B319-M-VS'), + (0xe1e635d286bc00fd310e37cc3ade05f71aa4a453, 'New York Yankees® Giancarlo Stanton ASG 2022 MVP Premium Reward Gold 1 Epic', 'MLB-22ASGR-E-R1-M-GLD'), + (0xe1f4b569b0d32f3a9b9dbf63df248f2dd2d8cbc5, 'Texas Rangers® Shin-Soo Choo OF/DH Base Motion Vintage Stock 657 Super Rare', 'MLB-S221-S-B657-VS'), + (0xe1facae244550bf0a2ebc3f6d941352c29804cdc, 'Atlanta Braves™ Jorge Soler Division Series Bronze 54 Super Rare', 'MLB-21POST-S-D54-M-BRO'), + (0xe1fc49056da708b7332df18c4148f2e65f9fedbf, 'Houston Astros® Base Vintage Stock 136 Super Rare', 'MLB-22S1-S-B135-M-VS'), + (0xe202d78f488db49d9462e8af98910839a9417c26, 'New York Mets® Patrick Mazeika Base Vintage Stock 166 Super Rare', 'MLB-22S1-S-B165-M-VS'), + (0xe2094076cdcc501b0e0f077064e28a46e93af880, 'Texas Rangers® Jonah Heim Base White 230 Common', 'MLB-22S1-C-B227-S-WHI'), + (0xe20c4ca9850cb6f3b9590e12b66fe12746f21cc7, 'Daichi Kamada SGE Base White S4-42 Common', 'BUND-21TS4-C-BS4-42-S-WHI'), + (0xe212e120ac510aad8487e8daee44b39d06306d5d, 'Colorado Rockies™ Raimel Tapia Base Pink 1040 Uncommon', 'MLB-22PRI-U-B36-M-PNK'), + (0xe216955b18c4dca61b2569e221bc33d568b59100, 'Trading Card Crew', 'TCC'), + (0xe21757f20f0a770d483eb1597a14ac104545afc1, 'Sproutcoin Spring Animation Color 22 Rare', 'GPK-NFT22-R-A22-A-COL'), + (0xe222eefb30ccd243bc0c47867ccb7fd0df02d92b, 'Tony Watt DDU Base Purple SP-16 Super Rare', 'SPFL-21SPSS-S-BSP-16-A-PUR'), + (0xe22bb5a77616ac608601a8a59b6a24ae94166792, 'DSC Arminia Bielefeld Stefan Ortega Moreno Top Saves Team Color TS-17 Epic', 'BUND-SC21-E-TSTS-17-TMC'), + (0xe22f9beb31e9159583872bdf89d28c9af913c230, 'Leroy Sané BAY Animation Black Refractor S1-01 Epic', 'BUND-21TS1-E-AS1-01-V-BLA'), + (0xe231db66f86013ee19efbbc6793b57eec95b387a, 'Oakland Athletics™ Starling Marte Base Independence Day RWB 305 Rare', 'MLB-22S1-R-B301-M-RWB'), + (0xe2390704b56066d14dc11dfecf58529ab60c7681, 'Nico Schlotterbeck SCF Motion Rainbow Refractor S4-62 Super Rare', 'BUND-21TS4-S-MS4-62-V-RAI'), + (0xe24285ae93fc18975a16eb09b2630d015ba083fc, 'Houston Astros® Justin Verlander Inception Base Blue 37 Uncommon', 'MLB-INC21-U-IB37-BLU'), + (0xe245df41acda99a583b13cd0140fcbd36fbb8208, 'dev''s Arts', '«DEV»'), + (0xe2478453c573b10fe46479f9021b69902a6aca09, 'M4 LAND NFT avalanche', 'M4LAND'), + (0xe249aeca35ac566bf80941b787f14f7a6cb5166e, 'VfL Wolfsburg Renato Steffen Base Players White 34 Common', 'BUND-SC21-C-BP34-WHT'), + (0xe24c9178715b4546156cd11bf761be5dcf44ce12, 'Green Wizard', 'GW'), + (0xe24d1124180c9c0cfcf383c1d8fd06c7f0a7dd71, 'Slimetown', 'SLMT'), + (0xe25c194feff224268d48af86bc482ce857b92e6b, 'Yeti', 'YET'), + (0xe271b80f06342ec89e012badd054b247a25ee5b5, 'Cai$hen Gold NFT', 'CGNF'), + (0xe2737e2d6ff6c2d55b7dd165320bdb1388ca4c31, 'JOE Love Moonbags', 'JOEMB'), + (0xe2767a76afa02b6b819aabe65330c75494d88e93, 'Saša Kalajdžic VFB Motion Aqua Refractor S4-61 Rare', 'BUND-21TS4-R-MS4-61-V-AQU'), + (0xe2784d7fbdbcfded1631a58194a4f3f9e7c43685, 'Philadelphia Phillies® Zach Eflin Base White 179 Common', 'MLB-22S1-C-B178-S-WHI'), + (0xe27c1db4b5828d2c65708219611877ecb68fcda6, 'Chicago White Sox® South Side Strength Base Motion Rainbow 486 Rare', 'MLB-S221-R-B486-RAI'), + (0xe281ef60d5a13197c887135f2a258747b707615a, 'Joesballs', 'JBALLS'), + (0xe285eaf6729d8f1ccc7b42a7ce04182eb5aea563, 'Dodi Lukébakio BSC Color Splash Team Color TK-65 Super Rare', 'BUND-22TK-S-CSTK-65-S-TMC'), + (0xe29d195cf3614e6e338a2bb7d01a16025bb33127, 'Babykrakens', 'BBKNFTS'), + (0xe2a0ce0c2999ef31d5da9cb6016a5d89921293cd, 'Boston Red Sox® Matt Barnes P Base Static White 484 Common', 'MLB-S221-C-B484-WHI'), + (0xe2a48b3cdff33e714fc3be7ea0e6f529dc1afad3, 'San Diego Padres™ Eric Hosmer 1B Base Motion Vintage Stock 639 Super Rare', 'MLB-S221-S-B639-VS'), + (0xe2b03e5166486c5320edbcab9b55da4381867b32, 'Sebastian Griesbeck SGF Base Red S4-59 Uncommon', 'BUND-21TS4-U-BS4-59-S-RED'), + (0xe2b05d03f891aca86d1b19d2df3349494a8e11b0, 'Cincinnati Reds® Joey Votto Facsimile Signature Blue 290 Uncommon', 'MLB-22S1-U-FS21-S-BLU'), + (0xe2d4396f74974a3b92c518e7981b5710d46d3d5a, 'ANUBIS ARMY', 'ANUBIS'), + (0xe2d60e2bd9f93befa3d886b25804fbaaa24c0d7b, 'Houston Astros® Martín Maldonado Topps NOW White 1032 Rare', 'MLB-21NOW-R-TN1032-WHI'), + (0xe2d87951a48fe4c64c1de0a152b6eff80d7053ba, 'The Key of Sunset', 'MOON'), + (0xe2dd6058c40b2d63bfbe6631592221e4af729b36, 'Toronto Blue Jays® George Springer OF Short Print Motion White 633 Super Rare', 'MLB-S221-S-SP633-WHI'), + (0xe2df70a9d5f6b6d60ecf10f2841f628ab57d5bb6, 'Philadelphia Phillies® J.T. Realmuto World Series Broadcast RWB 1136 Rare', 'MLB-22TNP-R-WSB8-M-RWB'), + (0xe2e2d61d1e6120edd07f8783c174378ace40cbe0, 'PrizeBondAvax', 'PBA'), + (0xe2e6cdf8e13575bddeee8d1d40ff3bb0810143dc, 'Christoph Baumgartner TSG Base Red S4-55 Uncommon', 'BUND-21TS4-U-BS4-55-S-RED'), + (0xe2e85db5412713ec017f251fa77d45e01bfb97db, 'Godzilla Destroys the City Traditional Art Color 2 Rare', 'GDZ-RAT21-R-TA2-S-COL'), + (0xe2eed02bfbe44cb927fc1dc80e2e8eeaae40761d, 'Ermedin Demirović FCA Ascendent Magenta TK-49 Uncommon', 'BUND-22TK-U-ASCTK-49-S-MAG'), + (0xe2f1672c9893e0cd17f1bc1ef1c1e8d18485abcf, 'Chicago White Sox® Jose Abreu 2022 Definitive Gold 8 Legendary', 'MLB-22LEG-L-22DEF8-M-GLD'), + (0xe2f3211aba5d0b681bb256fb9f6911411fab4bde, 'Los Angeles Dodgers® Walker Buehler 2022 Definitive Gold 16 Legendary', 'MLB-22LEG-L-22DEF16-M-GLD'), + (0xe2f3c95778e4cda1d1027f563108fc2e6313439d, 'Chicago White Sox® Jose Abreu 1B 70th Anniversary Facsimile Signature Motion Platinum 331 Legendary', 'MLB-S221-L-70AFS331-PLA'), + (0xe2fed619d2e88636b881a4024edd79523f9bd0c5, 'Furucombo Avalanche Free Pass', 'FurucomboAvaFreePass'), + (0xe301cc38cea98b27c9b46156ef1e58701fdfcef4, 'Arizona Diamondbacks® Carson Kelly Base Pink 1032 Uncommon', 'MLB-22PRI-U-B26-M-PNK'), + (0xe303ac1b5e4d1c2aceeb834fb777e86823d8f1f6, 'Magic $BEAN Drop', 'mBEAN'), + (0xe313f1a8e91809831bc0e85cf9f4d0d332b20de1, 'Rodan Fly-by Traditional Art CMYK Offset 9 Super Rare', 'GDZ-RAT21-S-TA9-A-CMYK'), + (0xe31442699bc8c04fdcac9daa8849af516f60853d, 'Upside Down', 'YPN:UD'), + (0xe314839701ad70d3e1e1ec14a241e27e22165ff2, 'Cleveland Indians® Zach Plesac P Base Motion Rainbow 403 Rare', 'MLB-S221-R-B403-RAI'), + (0xe317988b423fe62ed16d9929375c2e1475ae9b97, 'Karim Adeyemi DOR Color Splash Team Color TK-56 Super Rare', 'BUND-22TK-S-CSTK-56-S-TMC'), + (0xe31b126042b463c794414ea08a067b459453bb79, 'Ridle Baku WOB Motion Aqua Refractor S2-12 Rare', 'BUND-21TS2-R-MS2-12-V-AQU'), + (0xe31fd91b867f69aebd6e16f27b62cc725eee7eed, 'Boston Red Sox® Xander Bogaerts SS All-Star Motion Purple 4 Epic', 'MLB-S221-E-AS4-PUR'), + (0xe320b94b0ab1741e61e3f2bb1d0f1edd4f5ed0ed, 'Toronto Blue Jays® Lourdes Gurriel Jr. Base Vintage Stock 54 Super Rare', 'MLB-22S1-S-B54-M-VS'), + (0xe32a32e3bfa397db6350c78aadfa77c7c47dc2eb, 'NFT Garden', 'NFTG'), + (0xe32c29fa2df7cbbc698730ef7601f20928ce9ab2, 'Naouirou Ahamada VFB Ascendent Facsimile Signature Blue TK-45 Legendary', 'BUND-22TK-L-ASCTK-45-S-BLU'), + (0xe3390693c693670b04bc10f3cc2b388a488d1fa9, 'Uncommon Comic 99 2-51 Bazooka Joe 2021 NFT', 'BZK-U-99C'), + (0xe33db0fa21c9b091b71a5d33d3e40078a4cae60d, 'San Diego Padres™ Yu Darvish P Short Print Motion White 357 Super Rare', 'MLB-S221-S-SP357-WHI'), + (0xe33f20631bda0147e1cab4bc7dccf8491363449a, 'Colorado Rockies™ Daniel Bard P Base Motion Vintage Stock 376 Super Rare', 'MLB-S221-S-B376-VS'), + (0xe356c2d1cd881421a16521700974bf30cf8f4f38, 'Lil Homies', 'LHOM'), + (0xe35722178e8c74007222ad83c2397b2d62065dd2, 'Robert Lewandowski BAY Motion Rainbow Refractor S4-36 Super Rare', 'BUND-21TS4-S-MS4-36-V-RAI'), + (0xe35fa7e36096f8b69695ffe7d8c94703a55debe6, 'Avax Kira', 'AKA'), + (0xe360e7b8b5b4c808fa1e010cf4ddbdbe448c418c, 'Chicago Cubs® Patrick Wisdom Base Independence Day RWB 271 Rare', 'MLB-22S1-R-B268-M-RWB'), + (0xe3645c409db99d474e0178ef201549add2737dff, 'Milwaukee Brewers™ Avisail Garcia Regular Season Division Winners RWB 36 Rare', 'MLB-21POST-R-R36-M-RWB'), + (0xe36959c7249d44855e3de4d64148c382a1c1c5ce, 'Shin Godzilla Form 2 Toppsicle Color 1 Legendary', 'GDZ-RAT21-L-RTP1-A-COL'), + (0xe36e5240380a3611be2a45f5fe97973e476df024, 'Houston Astros® Enoli Paredes P Base Motion Rainbow 569 Rare', 'MLB-S221-R-B569-RAI'), + (0xe36f3ac14324d0115df4016dee8aedd609dc89e7, 'GALLERIA', 'GALLERIA'), + (0xe36f752d5f219c1bb1a977b7d5f852a146ea0a01, 'Cincinnati Reds® Dwight Smith Jr. OF Base Motion Platinum 582 Epic', 'MLB-S221-E-B582-PLA'), + (0xe37cf8904dafa1735bb303bf9c0c57eb0f657169, 'Seattle Mariners™ Chris Flexen Base Vintage Stock 311 Super Rare', 'MLB-22S1-S-B307-M-VS'), + (0xe37e53dcba6b5e50d29b6750daaf3e9530163bc9, 'Milwaukee Brewers™ Jedd Gyorko 1B/3B Base Static White 645 Common', 'MLB-S221-C-B645-WHI'), + (0xe396bf0c74e28000aa000f98e386e4eb3c5e510b, 'Philadelphia Phillies® Andrew McCutchen Base Blue 1081 Common', 'MLB-22PRI-C-B72-M-BLU'), + (0xe39fa9030619488e6a87c983b80f126755c9b896, 'Scapecase', 'SCAP'), + (0xe39faef8da7fc755af88a73e5a0d8b34908c8f53, 'Atlanta Braves™ Joc Pederson Postseason Base Red 61 Rare', 'MLB-21POST-R-B61-M-RED'), + (0xe3b00e34d17857cc1a322020f3eba2cc526e7547, 'Cincinnati Reds® Jesse Winker Base Glitch 81 Uncommon', 'MLB-22S1-U-B81-M-GLI'), + (0xe3b0ed546bb029d9349e1804bc880fe274bbf1cc, 'Arizona Diamondbacks® Andy Young 2B Base Static Gold 499 Uncommon', 'MLB-S221-U-B499-GOL'), + (0xe3b3658ae9531c27e2ddeaa5008ae4d11bb26dac, 'Los Angeles Dodgers® Justin Turner 3B Base Motion Platinum 370 Epic', 'MLB-S221-E-B370-PLA'), + (0xe3ba1df8f01b87eca7c6bf597deb5726486ed3ca, '3dpunk', 'Vdpunk'), + (0xe3c7018fc16fb86feda78bd6474c748cb7e499d8, 'American League™ 2021 Wins Leaders Base Vintage Stock 270 Super Rare', 'MLB-22S1-S-B267-M-VS'), + (0xe3c7ed52eae629e1ec9c88c24e4664d32abc811b, 'Miami Marlins® Brian Anderson 3B/OF Base Static White 439 Common', 'MLB-S221-C-B439-WHI'), + (0xe3ca180e535f382b6468a1bb777ca867c39ec5f7, 'Space And Adventures', 'SPC'), + (0xe3cbd79392441a8e7d1c02bbc378cb012b03e14e, 'Amad Diallo RFC Young Stars Red SPYS-01 Epic', 'SPFL-21SPSS-E-YSSPYS-01-A-RED'), + (0xe3cc4a7297b1d5deab223cad5762d43204656081, 'Jan Thielmann KOE Motion Rainbow Refractor S4-38 Super Rare', 'BUND-21TS4-S-MS4-38-V-RAI'), + (0xe3d7d0b9f6d0d7a0d925380e4d1aaed5785304fc, 'Miami Marlins® Corey Dickerson OF Base Static White 541 Common', 'MLB-S221-C-B541-WHI'), + (0xe3e4d576fecd5300dd8b154a00a044ca7a79e625, 'Do It Everyday (D.I.E.) remix', 'DIE'), + (0xe3e99b4174b9a2257323216123ea3fa9c4d75e6c, 'Los Angeles Dodgers® Max Muncy Base Blue 1178 Common', 'MLB-22PRI-C-B42-M-BLU'), + (0xe3ea357f3cce464eab7a37c8421e16bdbdce67fd, 'New York Yankees® Mike Tauchman OF Base Static Gold 449 Uncommon', 'MLB-S221-U-B449-GOL'), + (0xe3eaa2f01c9a66025593f8f7f6e5983a5d8c725e, 'Uncommon Comic 72 2-24 Bazooka Joe 2021 NFT', 'BZK-U-72C'), + (0xe3f14e054e4020254281547191b1162067e479f8, 'Boston Red Sox® Jonathan Arauz SS Base Motion Platinum 468 Epic', 'MLB-S221-E-B468-PLA'), + (0xe3f3eff2bac7081405cc7d60270c0783f08e4ed5, 'Philadelphia Phillies® Zack Wheeler Base Independence Day RWB 249 Rare', 'MLB-22S1-R-B246-M-RWB'), + (0xe3f8c52b17b0cd028b2502c5bc886aa369d6126c, 'St. Louis Cardinals® Nolan Arenado National League Base White 8 Uncommon', 'MLB-22ASG-U-B8-M-WHI'), + (0xe3fdfd58097d2f5d16f5b6970b9275435bbf85c3, 'Bean Baristas', 'bBean'), + (0xe40250cd7b8cc1f2e5d31efb2c5ffcd3606f80f6, 'St. Louis Cardinals® Paul DeJong Popular Demand Facsimile Signature Slab Teal 3530 Legendary', 'MLB-22PRI-L-PDFS13-M-TEA'), + (0xe41321891f2e14a62e9c992b487a7e5523698307, 'Exotic Creatures', 'EXOTIC'), + (0xe414d7c4a9c5acf2ad80575038fe7a192c430f5a, 'Common Comic 88 2-40 Bazooka Joe 2021 NFT', 'BZK-C-88C'), + (0xe425a141c4a04bf024a45321d6add63c69a3f0e4, 'Sport-Club Freiburg Philipp Lienhart Base Players White 40 Common', 'BUND-SC21-C-BP40-WHT'), + (0xe427a70697138b8be906b771f46a6a04091fb939, 'Savvy Portal', 'svPortal'), + (0xe427b386357f863868d08275985da038a5e6b87a, 'Minnesota Twins® Alex Kirilloff Base Vintage Stock 197 Super Rare', 'MLB-22S1-S-B196-M-VS'), + (0xe427d2fff019f728eb6b41bef67bae1cc9bec0ab, 'Texas Rangers® Nick Solak 2B/OF Base Static Gold 583 Uncommon', 'MLB-S221-U-B583-GOL'), + (0xe4333defc6bd27ad6d9961e5151656e9b3276103, 'Subnet Stage', 'gLW'), + (0xe4344dbb724f12a77d47faa9753a3975504393e8, 'Iago FCA Base Red S4-66 Uncommon', 'BUND-21TS4-U-BS4-66-S-RED'), + (0xe439cba238d2c1bd1c7c2c07a870f93a38949278, 'Asgardian', 'ASG'), + (0xe43a55f9bc496484cf45b2fe51e0292bde7d9e7f, 'New York Yankees® Aaron Judge Postseason Base Red 73 Rare', 'MLB-21POST-R-B73-M-RED'), + (0xe43cb739254e37ad27b63f14e312e96d33b48e95, 'Cleveland Guardians™ Shane Bieber Facsimile Signature Slab Gold 3029 Epic', 'MLB-22PRI-E-FS44-M-GLD'), + (0xe43e43ed4a41aa40d53b80f8e9f50b25b8dee5cb, 'New York Yankees® Aaron Judge First Place Skyline 7 Legendary', 'MLB-22ASG-L-FIR7-M-SKY'), + (0xe4437962c7bbc29cead188683a89c1d0e6192fab, 'Pods', 'PODS'), + (0xe44a03e97a38511af9048bc5ebc641134689b36b, 'Minnesota Twins® Mitch Garver C Base Motion Rainbow 470 Rare', 'MLB-S221-R-B470-RAI'), + (0xe44c606895723896cbe10fa31d2624a3db77e424, 'Neko Friends Haloween 2022', 'NFTh2022'), + (0xe44cc04d6241dfb9b080857e213457c91556bdb7, 'Kansas City Royals® Greg Holland P Base Motion Vintage Stock 467 Super Rare', 'MLB-S221-S-B467-VS'), + (0xe45f01f912849212cd52c0d864969733f6d48cf8, 'Snow Vitalies', 'SVT'), + (0xe46208c73753ad78f12a7da465d76f2141e636df, 'FC Koln Sebastian Andersson Base Players Team Color 70 Static Facsimile Signature Rare', 'BUND-SC21-R-BP70-SFS-TMC'), + (0xe462a49d3aab7a8bd953d9d0c7439ea79bf67ce4, '2021 MLB Challenge Reward World Series Champion Pack', 'MLB-21REWARD-PACK-WSC'), + (0xe463b03f3f27d6673b99fe59f2691173e800cc0b, 'Valkyrie', 'Valkyrie'), + (0xe46c25027818a80f1e898fce4c9e541a18c0518d, 'Founders NFT', 'FFNT'), + (0xe47b148c73a31d2b3a2f1a1b8e886fa3f3a8fea8, 'My LandNFT Token', 'LNT'), + (0xe48c12beb71f44d9b5669a364fd434eac97c5242, 'BEEG SON', 'BA'), + (0xe48ec1d792ac994eae5e8412b976f7c5e5fcc5fe, 'Boston Red Sox® Bobby Dalbec Rookie and Future Phenoms Facsimile Signature Blue 6 Super Rare', 'MLB-INC21-S-RC6-BLU'), + (0xe491c89995b7fa9afcdb818caafb4737b9890dfd, 'Chicago Cubs® Willson Contreras First Place Skyline 8 Legendary', 'MLB-22ASG-L-FIR8-M-SKY'), + (0xe4927b16f9b323959625b439d06b29de1323f10a, 'Jeremie Frimpong B04 Club Phemons Gold S4CPH-03 Legendary', 'BUND-21TS4-L-CPHS4CPH-03-V-GOL'), + (0xe4939794630bcb53ce448f1534895c17ff1701bf, 'gg1', 'gg1'), + (0xe4b7c13785def49e9987bcd8532768e44131be37, 'Ryan Kent RFC Top Plays Gold SPTPL-11 Legendary', 'SPFL-21SPSS-L-TPLSPTPL-11-V-GOL'), + (0xe4b97aef0f5f4393e15ec7f42a0ffd54bfb25b60, 'San Francisco Giants® Mike Yastrzemski Regular Season Division Winners RWB 43 Rare', 'MLB-21POST-R-R43-M-RWB'), + (0xe4c2f6a84b7006212e35fb0a7d36eab9826de40d, 'Boston Red Sox® Chris Sale P Base Static Gold 609 Uncommon', 'MLB-S221-U-B609-GOL'), + (0xe4c6753324a8f453e124983bfbb4bd14c44383f2, 'FC Koln Jannes Horn Base Players Team Color 68 Uncommon', 'BUND-SC21-U-BP68-TMC'), + (0xe4cedd62cc4beb310c7e9583d37e3028a585e3a0, 'Arizona Diamondbacks® Pavin Smith Base White 106 Common', 'MLB-22S1-C-B105-S-WHI'), + (0xe4d9527e95d9580c5e3b16ce226657b87625b2ef, 'Houston Astros® Framber Valdez P Base Static White 514 Common', 'MLB-S221-C-B514-WHI'), + (0xe4df0a19e77cb621ab344e98edbb00653f4c6b7f, 'Godzilla Destroys the City Traditional Art CMYK Offset 2 Uncommon', 'GDZ-RAT21-U-TA2-S-CMYK'), + (0xe4eb4a3e323df1d22ab39d9bbf872ce53e933334, 'St. Louis Cardinals® Paul Goldschmidt Postseason Base Navy 44 Uncommon', 'MLB-21POST-U-B44-M-NVY'), + (0xe4f347f5ab97adbe6d738c31dfeab05cbaab9897, 'Borna Sosa VFB Top Players Team Color TK-18 Rare', 'BUND-22TK-R-TPTK-18-S-TMC'), + (0xe50327eea2d0e1391e6de321a3372a50e8fedcb9, 'Valkyrie', 'VAL'), + (0xe5032aca696b8a57e2063a0fe05b7e15d66426a9, 'Toronto Blue Jays® Ken Giles P Base Motion Vintage Stock 422 Super Rare', 'MLB-S221-S-B422-VS'), + (0xe5089e865c954abc13db51536ed3cd3837be50d1, 'Boston Red Sox® Kyle Schwarber Base White 216 Common', 'MLB-22S1-C-B213-S-WHI'), + (0xe5109687a6a2b1e018a203ec92896cf85369d904, 'Cincinnati Reds® Wade Miley Base Vintage Stock 203 Super Rare', 'MLB-22S1-S-B202-M-VS'), + (0xe511a294fe2f33c2367e6a95188538173abdb3ca, 'Lucas Alario B04 Base Red S4-45 Uncommon', 'BUND-21TS4-U-BS4-45-S-RED'), + (0xe5177d0d17462daf4cd01ad5496d1db603e06f67, 'Common Comic 9 1-9 Bazooka Joe 2021 NFT', 'BZK-C-9C'), + (0xe53665fa35dad5d82d6ce711009bc711ac5d1b89, 'Colorado Rockies™ Daniel Bard Base Glitch 167 Uncommon', 'MLB-22S1-U-B166-M-GLI'), + (0xe53726d0d484f1bd63215aab04611ac5b32b8c0a, 'Liam Boyce HEA Base Purple SP-15 Super Rare', 'SPFL-21SPSS-S-BSP-15-A-PUR'), + (0xe537e587b5d0889427684bdd98e3e0c8eb7554fb, 'Uncommon Comic 26 1-26 Bazooka Joe 2021 NFT', 'BZK-U-26C'), + (0xe53ad5ab20e38bc70950b6dc669597f44dabedc6, 'Cleveland Indians® Shane Bieber P Base Static White 523 Common', 'MLB-S221-C-B523-WHI'), + (0xe54102b4d65f317c0634b733b87453e86e196454, 'New York Yankees® Anthony Rizzo Base Pink 1092 Uncommon', 'MLB-22PRI-U-B99-M-PNK'), + (0xe542c9fd379f873c98e9d0f59bd8582aa80e2f77, 'Tampa Bay Rays™ Chris Archer Base Independence Day RWB 254 Rare', 'MLB-22S1-R-B251-M-RWB'), + (0xe546da759d188e474d83d9e935dc09e81dd83b77, 'PNFT34', 'PNFTIST'), + (0xe549a92d4d24f8112f17229a263d084395c8a49e, 'St. Louis Cardinals® Paul Goldschmidt National League Base White 3 Uncommon', 'MLB-22ASG-U-B3-M-WHI'), + (0xe560d882eb959b53cfdcf0a5bc83582c8d23d354, 'AI is the Artist', 'AI4RT'), + (0xe56435fd4bf8228c1056653d472000c2ef38f597, 'Legend Boss', 'LBOSS'), + (0xe565c7619cc84738aa2668cacabd476e31045a56, 'ADDICTED', 'USDC2'), + (0xe5699e94cde939a4ed753860a5b15d3786513188, 'New York Yankees® Brett Gardner Base White 49 Common', 'MLB-22S1-C-B49-S-WHI'), + (0xe571be70877d6cc5416193fc11a189c56700c597, 'Super Rare Comic 13 1-13 Bazooka Joe 2021 NFT', 'BZK-S-13C'), + (0xe574b01fbe18f10a42eb2e5fe9b4f3df8cbf7f3a, 'Raum-Geiger TSG Animation Duos TSC-10 Epic', 'BUND-21TSC-E-RATSC-10-A-DUO'), + (0xe574f7bdb56505e2d0ae9b4626faf8842aea9348, 'Uncommon Comic 67 2-19 Bazooka Joe 2021 NFT', 'BZK-U-67C'), + (0xe584286e0d8b1f7c84f92faa0b45422fb33cba56, 'Munas Dabbur TSG Base White S3-35 Common', 'BUND-21TS3-C-BS3-35-S-WHI'), + (0xe586198d0bbffcf28a1aa1259b328064ffa15f1b, 'Timo Hübers KOE Top Players Facsimile Signature Team Color TK-29 Epic', 'BUND-22TK-E-TPTK-29-S-TMC'), + (0xe5890145c5c0a2a138dfb9b4952c04b9ec84b541, 'Chicago White Sox® Jake Burger Base Pink 1209 Uncommon', 'MLB-22PRI-U-B135-M-PNK'), + (0xe58d1a29e79c994c3b5dd723602e0b850dbe51f6, 'Seattle Mariners™ Yusei Kikuchi P Base Static Gold 366 Uncommon', 'MLB-S221-U-B366-GOL'), + (0xe596cc20486faa3450975308ec0e69e48c1a3d54, 'Tampa Bay Rays™ Randy Arozarena 2022 Definitive Gold 31 Legendary', 'MLB-22LEG-L-22DEF31-M-GLD'), + (0xe5979877c1dba42d18675697ea538f603cd31483, 'Giovanni Reyna DOR Ascendent Blue TK-38 Super Rare', 'BUND-22TK-S-ASCTK-38-S-BLU'), + (0xe5a398ce858d51cc433d92388c7d00c391c33748, 'Tampa Bay Rays™ Mike Zunino C Base Static Gold 430 Uncommon', 'MLB-S221-U-B430-GOL'), + (0xe5a40ff391feab8a3df24cc0f79c9c4fba6bfea4, 'Kevin van Veen MOT Base Purple SP-26 Super Rare', 'SPFL-21SPSS-S-BSP-26-A-PUR'), + (0xe5a46ff23c99d779d373d08ddad8d2bcadebca24, 'Toronto Blue Jays® Vladimir Guerrero Jr. Base White 300 Common', 'MLB-22S1-C-B296-S-WHI'), + (0xe5a84fd6037c56021af39d5b29d0bdf8c55997d4, 'Chicago White Sox® Gavin Sheets Base Pink 1210 Uncommon', 'MLB-22PRI-U-B138-M-PNK'), + (0xe5a8fbc98b9702f1eb5aa0cb2e1f05c7c9f79ef6, 'Ai-Elephants-Renders', 'ALPS'), + (0xe5b3e2d285e4f5390f2b67258f4a3063490864f0, 'Evox', 'Evox'), + (0xe5be6e550c5808ed5acd5b077c344855e555de0b, 'Milwaukee Brewers™ Christian Yelich Postseason Base White 18 Common', 'MLB-21POST-C-B18-S-WHI'), + (0xe5c1e11aa673ed46906cee40a82dc82c2f553e96, 'Cincinnati Reds® Wade Miley P Base Static Gold 638 Uncommon', 'MLB-S221-U-B638-GOL'), + (0xe5c3b19160bfc09410fbce6598e10908775bef08, 'y00ts Fan Art', 'YTTA'), + (0xe5c8592ff52d2ae41476d17633b17e253965e2ec, 'New York Mets® James McCann C Base Motion Rainbow 410 Rare', 'MLB-S221-R-B410-RAI'), + (0xe5d29d93599303f3cc3d0d747efdab11b69e08c6, 'DugoutPunks', 'DoP'), + (0xe5d5577671072a82e07f0884e0e30550bf856a86, 'Benjamin Siegrist DDU Base Purple SP-18 Super Rare', 'SPFL-21SPSS-S-BSP-18-A-PUR'), + (0xe5e04bc3d8f9ad0ec1d75500b93035e2bd562ea1, 'New York Mets® Pete Alonso 2022 Inception Gold 10 Legendary', 'MLB-22LEG-L-22INC10-M-GLD'), + (0xe5ea790e01f8b003ae36861401b96bb620836088, 'Toronto Blue Jays® Bo Bichette Base Blue 1059 Common', 'MLB-22PRI-C-B53-M-BLU'), + (0xe5ed3062695e388ff02885cda903d452ca09d5d5, 'BUNNY FRENS', 'BUNNY'), + (0xe5f41f0f1296e60df035c884933c758c5d0cebda, 'New York Mets® Pete Alonso Facsimile Signature Gold 3092 Super Rare', 'MLB-22PRI-S-FS37-M-GLD'), + (0xe5f6e07e45ed63998342f3edf243b76ee05c4cd5, 'New York Mets® Base Motion Vintage Stock 555 Super Rare', 'MLB-S221-S-B555-VS'), + (0xe611ddc0e7844e4190a4495d87d82d65254347e7, 'UC22-PDISecuritySolutions', 'PDI2022'), + (0xe613472abf15d085388c6baed890ee62c7c1407e, 'CRYPTO WORLD', 'CW'), + (0xe61959e767dd036a2e400453105d4c2a367813ab, 'Chicago White Sox® Dallas Keuchel P Base Static Gold 488 Uncommon', 'MLB-S221-U-B488-GOL'), + (0xe61aaeb033c9969d147c024c7d465de0df568239, 'Minnesota Twins® Andrelton Simmons Base Vintage Stock 306 Super Rare', 'MLB-22S1-S-B302-M-VS'), + (0xe61f4c7c00f23896d7dc32898bf5f355ede8b7f3, 'Kansas City Royals® Carlos Santana 1B Base Motion Vintage Stock 513 Super Rare', 'MLB-S221-S-B513-VS'), + (0xe621dfd025b450fd07d4c6b36bd1983728193d00, 'Boston Red Sox® Jose Iglesias Base Independence Day RWB 15 Rare', 'MLB-22S1-R-B15-M-RWB'), + (0xe623116fa3e8849886602523676c486825855774, 'Mads Pedersen FCA Motion Rainbow Refractor S3-26 Super Rare', 'BUND-21TS3-S-MS3-26-V-RAI'), + (0xe62988c47882886d424ee12927189c78c895c354, 'Boston Red Sox® Christian Vazquez Base Glitch 63 Uncommon', 'MLB-22S1-U-B63-M-GLI'), + (0xe629e77ca2a0ffa9f42f7cab059e96db8c937d22, 'FeRARI Frank Facsimile Signature Color 11 Uncommon', 'GPK-NFT22-U-FS11-S-COL'), + (0xe633d2acea497748ecd36fa0b49e38ad07e0f63c, 'Uncommon Comic 103 2-55 Bazooka Joe 2021 NFT', 'BZK-U-103C'), + (0xe637ceb4080dcf00e57c630c85adff5338745d1c, 'Boston Red Sox® Christian Vazquez C Base Motion Vintage Stock 557 Super Rare', 'MLB-S221-S-B557-VS'), + (0xe638830e5aab29c16e1d5253aa8b8beb0bdeadec, 'San Diego Padres™ 2021 Topps MLB Inception Set Completion Reward Team Colors 23 Epic', 'MLB-21INCSC-E-21INCSCR23-M-TC'), + (0xe63bf7397f8adb08ce231748e9dfceb4436b8c15, 'Oakland Athletics™ Base Motion Vintage Stock 392 Super Rare', 'MLB-S221-S-B392-VS'), + (0xe64e24fede67258b7a9a6f2b03731a85449c56a0, 'Dean Lyness SMI Top Saves Gold SPTS-08 Legendary', 'SPFL-21SPSS-L-TSSPTS-08-V-GOL'), + (0xe6530dc1f9a75579eb48f7c6292315a2fcb289c6, 'The Noble Quran', 'TNQ'), + (0xe65f76555e869b236d2b34c7a28522cccf58d0cf, 'Oakland Athletics™ Jake Lamb 3B/1B Base Motion Rainbow 442 Rare', 'MLB-S221-R-B442-RAI'), + (0xe667c31356c0bc0945c188b9d0c98742efbd800e, 'Soul Society', 'sty'), + (0xe667e47968f22bfe33a8da0e60c4bc77ae12c659, 'National League™ Kris Bryant Base Blue 1299 Common', 'MLB-22PRI-C-B220-M-BLU'), + (0xe6882188234b15dfdec15b1524ac7e1202690bcd, 'SmolRobotics', 'SRS'), + (0xe691934867da9cc6fb0e419d69e15d43cdb2abe6, 'New York Yankees® DJ LeMahieu 2B Base Motion Vintage Stock 350 Super Rare', 'MLB-S221-S-B350-VS'), + (0xe697e4d41b5c2769bf4b95a938b89ae46e1ef5c4, 'Joe Scally BMG Club Phemons Gold S4CPH-07 Legendary', 'BUND-21TS4-L-CPHS4CPH-07-V-GOL'), + (0xe6a28bf627086701e1f30abf705d8e40637ab2b9, 'Uncommon Comic 52 2-4 Bazooka Joe 2021 NFT', 'BZK-U-52C'), + (0xe6acd3f14e70bd8a211cf0f3da985fce7406f5ae, 'smol doomers', 'SD'), + (0xe6aeae2a64aef657e9f8d36994473c49d67900d4, 'FC Schalke 04 Timo Becker Base Players White 57 Common', 'BUND-SC21-C-BP57-WHT'), + (0xe6b0f3f5796a4bc24806457ba430ffb337a29d41, 'Joe Aribo RFC Base Purple SP-02 Super Rare', 'SPFL-21SPSS-S-BSP-02-A-PUR'), + (0xe6b235485279c789fbf110a95a377aec90812bd5, 'JustRats', 'RAT'), + (0xe6b6932ae0d14cde98505f3a7f0d0c642a611051, 'Dura Putla', 'DP'), + (0xe6bd22dc430a11cf5c2898e9317c7ccfeead6fee, 'New York Yankees® Joey Gallo Base Blue 1028 Common', 'MLB-22PRI-C-B25-M-BLU'), + (0xe6c155cece4fe2c4f7fedd6a914f8a04355c2af0, 'SV Werder Bremen Maximilian Eggestein Top Players Gold 138 Super Rare', 'BUND-SC21-S-TP138-GLD'), + (0xe6cc12584b50cf04499c45bf1a79e584da4d06ec, 'San Diego Padres™ Adrian Morejon P Base Static White 518 Common', 'MLB-S221-C-B518-WHI'), + (0xe6cef7565afa1f3073f4a6992ab0ef2af0aa580e, 'Houston Astros® Carlos Correa Division Series Bronze 18 Super Rare', 'MLB-21POST-S-D18-M-BRO'), + (0xe6d12a0722efc2d8f7daca43d095c1d1cc9922d9, 'Boston Red Sox® Bobby Dalbec Gold Signings Facsimile Signature Gold 4 Epic', 'MLB-INC21-E-SS4-GLD'), + (0xe6d9a1c645ff9ef09f5634db7c73479bc8543035, 'Tony Watt DDU Base White SP-16 Common', 'SPFL-21SPSS-C-BSP-16-A-WHI'), + (0xe6e0800c6a45947f16439067e52b4299beb59d13, 'VfB Stuttgart Pascal Stenzel Base Players Gold 89 Rare', 'BUND-SC21-R-BP89-GLD'), + (0xe6e3ef1bc81578180520fe00c93a04f0d3c34141, 'Godzilla RAT Page 7 Comic Page Color 6 Super Rare', 'GDZ-RAT21-S-CP6-A-COL'), + (0xe6e5f073de3f74a3657c1fc917e10977c7d7fdec, 'Toronto Blue Jays® Marcus Semien 1987 35th Anniversary Chrome T87C-70 Super Rare', 'MLB-22S1-S-1987AC52-M-CHR'), + (0xe6ea45ccbdb5a34abef53b4379e79d831061a6d6, 'Zander Clark STJ Base Aqua SP-24 Uncommon', 'SPFL-21SPSS-U-BSP-24-A-AQU'), + (0xe6f1cd7dc764215a23ad75044edb063cf68c5802, 'my''avalanche', 'MONA'), + (0xe6f4aa8e3f49ce8f11527f258a08dcd8ff187166, 'Crazy Eggs', 'CEGG'), + (0xe6f6cc4e6d3eba438bcb8eb8631d9300009b617d, 'Angels® Kurt Suzuki Base White 171 Common', 'MLB-22S1-C-B170-S-WHI'), + (0xe6fdde0e598571ae760cc7abacd222a09e3c2449, 'Avaxclan', 'Ac'), + (0xe7039a9741dec1c44b77c27ba87f002d9a79ae75, 'New York Yankees® Rougned Odor Base Independence Day RWB 5 Rare', 'MLB-22S1-R-B5-M-RWB'), + (0xe705f47840c238a66812e73b02a85905eefa9425, 'False Pretense Web3 Music Video', 'FPW3MV'), + (0xe7067a83c0b3b7624508d03eb095edfafddc3d1e, 'Baltimore Orioles® Alex Wells Base Glitch 118 Uncommon', 'MLB-22S1-U-B117-M-GLI'), + (0xe70cf847de8dde710f146f0cd0aebc23d47bd0e6, 'Alice''s Feelings', 'ALICEF'), + (0xe71066bd04d34e01bff8e957991b39d6558488bf, 'Rodan Fly-by Traditional Art Color 9 Rare', 'GDZ-RAT21-R-TA9-S-COL'), + (0xe7124a9829091b6b00cbc8aa5d688918ded8cddc, 'New York Mets® Base Static White 555 Common', 'MLB-S221-C-B555-WHI'), + (0xe713812fd524398fad44fe97264c0359c1e0cb38, 'Seattle Mariners™ Yohan Ramirez P Base Motion Vintage Stock 519 Super Rare', 'MLB-S221-S-B519-VS'), + (0xe715f3da627e18dd8419ff80e36528e65b95414a, 'Twitter Banners', 'TWEET'), + (0xe71cef38efa70c7ffddb95437ad56c82a1be46d8, 'Washington Nationals® Asdrubal Cabrera 2B/3B Base Motion Rainbow 531 Rare', 'MLB-S221-R-B531-RAI'), + (0xe71f20c67e6ddd03e1191481274e8bc9484726c6, '3ULL Node', '3ULL NODE'), + (0xe720e2f8c78d5d74efc12607be2957406785fe35, 'Philadelphia Phillies® Rafael Marchan C Base Static White 622 Common', 'MLB-S221-C-B622-WHI'), + (0xe73415ea76cb7182bf26da0d5e211725ad0d6b46, 'Kansas City Royals® Ryan McBroom 1B Base Static Gold 606 Uncommon', 'MLB-S221-U-B606-GOL'), + (0xe73f61a619283630769f69eb46faa449423ef5b8, 'John Souttar HEA Base Aqua SP-13 Uncommon', 'SPFL-21SPSS-U-BSP-13-A-AQU'), + (0xe74ad10aeccec0ead1cdc6b2a2844c22c909c036, 'San Diego Padres™ Tommy Pham OF Facsimile Signature Static Red 399 Epic', 'MLB-S221-E-FS399-RED'), + (0xe74d1d02285ce25e249e56d3dae2eafef400b96d, 'Philadelphia Phillies® Aaron Nola P Base Static White 537 Common', 'MLB-S221-C-B537-WHI'), + (0xe750cf365383507774d23612aa20343e99d2bcf8, 'Chicago White Sox® Yoan Moncada Regular Season Division Winners RWB 11 Rare', 'MLB-21POST-R-R11-M-RWB'), + (0xe7525d30207f4d79b738884b270127ff68e8a8f1, 'PixelAvaxstar', 'PAVX'), + (0xe75421b53ef833185a77d7e18ec094fe4882e6e5, 'Philadelphia Phillies® Andrew McCutchen OF Short Print Motion White 431 Super Rare', 'MLB-S221-S-SP431-WHI'), + (0xe7551168da62a9412aeaacf5dce1964901eba5d0, 'Aaron Ramsey RFC Base White SP-01 Common', 'SPFL-21SPSS-C-BSP-01-A-WHI'), + (0xe75df74144606d702f87dd1426fda107ea78cdab, 'Angels® Shohei Ohtani Second Place Beach 6 Epic', 'MLB-22ASG-E-SEC6-M-BCH'), + (0xe76038938e814ccab29e40cdee3ee84a20bd8fce, 'Atlanta Braves™ Charlie Morton Championship Series Silver 23 Epic', 'MLB-21POST-E-CS23-M-SIL'), + (0xe7727c034e7575ec92dc043e6ba7ac8149fc97d6, 'Matthias Ginter SCF Color Splash Team Color TK-64 Super Rare', 'BUND-22TK-S-CSTK-64-S-TMC'), + (0xe772ca24b123ad1c281f48042eed92f4b0afa4d9, 'San Francisco Giants® Kris Bryant Postseason Base Navy 25 Uncommon', 'MLB-21POST-U-B25-M-NVY'), + (0xe787d6fe3945663d8a50e53503e9aa8f8eae432e, 'Sneakerheadz', 'SNKZ'), + (0xe78bfa6f566b8a1cf3b11df9872445ca1dbdc19f, 'Borussia Monchengladbach Matthias Ginter Base Players Team Color 18 Static Facsimile Signature Rare', 'BUND-SC21-R-BP18-SFS-TMC'), + (0xe78dbd492aa2c2c42784aa95c70bc354e4af8d64, 'Chad Sports Art Auctions', 'CHADART'), + (0xe790ac41c0a2e177ebdf6cbdf938fddc6d1c4110, 'Degen Gamepiece', 'dGAME'), + (0xe792381f967ca7b55d5a95adab855e392d17a7ea, 'Airdrop Angel Golden Animation Facsimile Signature Color 14 Legendary', 'GPK-NFT22-L-GAFS14-A-COL'), + (0xe7a4ec4df22623d38f3cdb5f256c4c9365895e82, 'Minnesota Twins® Alex Kirilloff Inception Base White 57 Common', 'MLB-INC21-C-IB57-WHT'), + (0xe7a66da7ecfe392615300a68fba2052535f0d6c6, 'Houston Astros® Jose Altuve 2B Short Print Motion White 432 Super Rare', 'MLB-S221-S-SP432-WHI'), + (0xe7acddcd225e1dfdc43d2d9f3f046192dd4b0c14, 'Atlanta Braves™ Freddie Freeman Base Vintage Stock 236 Super Rare', 'MLB-22S1-S-B233-M-VS'), + (0xe7ad7f1bdba027c1211c40010c656db5908ab15a, 'Soldiers', 'Soldiers'), + (0xe7b1598c65f1344edd1c1cde6d9249e5dc42add7, 'Worlds Beyond', 'WBS'), + (0xe7bd8b751af09b41966d218f81ede56a4b878dbe, 'DRAGON EGG GAME', 'DEG'), + (0xe7cf32da6cf7f57348489584b49d191626a3ea4b, 'Houston Astros® Jose Altuve 2B Facsimile Signature Static Blue 432 Super Rare', 'MLB-S221-S-FS432-BLU'), + (0xe7cf7d6c363a82df60cb4d38fe141678639e5b8e, 'Seattle Mariners™ Ty France Base Independence Day RWB 327 Rare', 'MLB-22S1-R-B323-M-RWB'), + (0xe7d1e2588c67075b7e69acf6154ca9a25ece94c6, 'Tiny Huskies', 'TINY'), + (0xe7d9beb00c26deb41ac3b8fae41244ef0d038af2, 'Milwaukee Brewers™ Drew Rasmussen P Base Motion Platinum 377 Epic', 'MLB-S221-E-B377-PLA'), + (0xe7ee901a0fae36052349058e9f723b8c8af1ba80, 'Tampa Bay Rays™ Brett Phillips OF Base Static Gold 586 Uncommon', 'MLB-S221-U-B586-GOL'), + (0xe7f24bfa504ce2c9803999780cd5adc4dd3ba1da, '0xMargo''s Custom PFP Shop', '0xMargoPFP'), + (0xe8085943f2547f5e8c15e4cc575c7420b79964d1, 'Common Comic 43 1-43 Bazooka Joe 2021 NFT', 'BZK-C-43C'), + (0xe80a5184ca2a0057f44d4ce2922d85c58bc18a7e, 'Cammy Kerr DUD Base Purple SP-31 Super Rare', 'SPFL-21SPSS-S-BSP-31-A-PUR'), + (0xe80e87f412d2cc73045b73ef7e07a47ef0a41cc0, 'Papilio Palatia', 'PAPILIO'), + (0xe81355897717f906110cbea7d671ea2d77e0677d, 'Rare Comic 8 1-8 Bazooka Joe 2021 NFT', 'BZK-R-8C'), + (0xe81d4b88cfe0e747c1f4b1b20d450c3bfbc7b885, 'Detroit Tigers® Willi Castro Base White 191 Common', 'MLB-22S1-C-B190-S-WHI'), + (0xe8243f0e0e7155827c350560e8ed6419b2178cdb, 'Cleveland Indians® Eddie Rosario OF Base Static White 356 Common', 'MLB-S221-C-B356-WHI'), + (0xe829684b6d868c5cf2d0efd4e00c8af7f1aaac0c, 'Cleveland Guardians™ Shane Bieber Short Print White 21 Rare', 'MLB-22S1-R-SP5-M-WHI'), + (0xe847b415998ab60ddcbb9e180625a94029251bc2, 'Hello Ghost Kid', 'HGK1'), + (0xe84ebb69053154bc1fe4582a68cf38b5dc575ec7, 'Milwaukee Brewers™ Jedd Gyorko 1B/3B Base Motion Rainbow 645 Rare', 'MLB-S221-R-B645-RAI'), + (0xe86118198a4da1e269272ebd83601c07b3d1783b, 'Miami Marlins® Lewin Diaz 1B Base Static Gold 417 Uncommon', 'MLB-S221-U-B417-GOL'), + (0xe8633f434430a3cc86a40b949f57a33ce859ea9f, 'Abracadavrax', 'AVX'), + (0xe86735b22cf5faa297c37cb218454723f53d0668, 'Topps NOW World Series Game 4 Ticket Redemption Pack', 'MLB-21NOW-PACK-TR-GM4'), + (0xe8689ba8722a36d003fffc9cb6b3555280d6106c, 'Philadelphia Phillies® Rhys Hoskins Inception Base Blue 75 Uncommon', 'MLB-INC21-U-IB75-BLU'), + (0xe877cfdfd4881eb06790dbfe0e3dd6fbaf3ac244, 'TSG Hoffenheim Pavel Kaderábek Base Players Team Color 28 Uncommon', 'BUND-SC21-U-BP28-TMC'), + (0xe87bfc5ffc5510b7d56e8dc246217afa964c01df, 'DGNX Private Sale Token', 'PST'), + (0xe87cfa98d1c83ce2e93840860caba29c75f88090, 'Boston Red Sox® Rafael Devers Stars of MLB Chrome Night SMLBC-4 Legendary', 'MLB-22S1-L-SMLBC4-M-NIT'), + (0xe87df29f85f970b8f8b8e71f61518abdb359b561, 'St. Louis Cardinals® Yadier Molina Base Independence Day RWB 205 Rare', 'MLB-22S1-R-B204-M-RWB'), + (0xe8809806718a0e175296d911598f8eb3b01abe7a, 'Minnesota Twins® Max Kepler Facsimile Signature Gold 3057 Super Rare', 'MLB-22PRI-S-FS29-M-GLD'), + (0xe89b83f012906e44d173fdee05d80f7f261cd7e4, 'TAPEMONGER', 'TMG'), + (0xe89f698279d460990dbdde26b3e8cd00aced9166, 'Colorado Rockies™ Raimel Tapia Base White 46 Common', 'MLB-22S1-C-B46-S-WHI'), + (0xe89fe19d152edae8525982ea97778d02dd207c2c, 'Houston Astros® Carlos Correa WS Redemption Gold 1033 Rare', 'MLB-21NOW-R-WS1033-GOL'), + (0xe8a28666c69fbab4a84f6e1f65c07b1bc70ce7a6, 'King Ghidorah Mountainscape Traditional Art CMYK Offset 10 Uncommon', 'GDZ-RAT21-U-TA10-S-CMYK'), + (0xe8a477a89d685556b9ddc5b3a55887f15cbc5700, 'Dogeon Card', 'DOGEC'), + (0xe8a77e622d4a8fed154add0b4c87a65b5bf14870, 'Rugrats & Hey Arnold!', 'RHA'), + (0xe8b7f6b0b65342ea0539dad2035b80e680799655, 'Houston Astros® Jake Meyers Base Vintage Stock 295 Super Rare', 'MLB-22S1-S-B292-M-VS'), + (0xe8ba8d252e954a62879cd0b33f5dad825e6451a7, 'Colorado Rockies™ Trevor Story SS Base Motion Platinum 475 Epic', 'MLB-S221-E-B475-PLA'), + (0xe8bf815f3f14579a6fb1009ed2946d498cafe809, 'Sadio Mané BAY Color Splash White TK-55 Uncommon', 'BUND-22TK-U-CSTK-55-S-WHI'), + (0xe8c383fa1a4c48db94306e609863efb34c27e1b5, 'National League™ 2021 RBI Leaders Base White 181 Common', 'MLB-22S1-C-B180-S-WHI'), + (0xe8ddfaf27424ee3873c65834eca0c4097970dde6, 'Atlanta Braves™ Mike Soroka P Base Static Gold 388 Uncommon', 'MLB-S221-U-B388-GOL'), + (0xe8df63543eadcbfe0f5745331a38e7e6f43f0c06, 'Arizona Diamondbacks® 2021 Topps MLB Inception Set Completion Reward Team Colors 1 Epic', 'MLB-21INCSC-E-21INCSCR1-M-TC'), + (0xe8e08c895a0da91b9fbab7da2d260cc17753b1ac, 'Warh4m3r Degens', 'WARD'), + (0xe8e28bfa563dacfa84807756a7dd14615aea62ba, 'Pittsburgh Pirates® Ke''Bryan Hayes Base Blue 1022 Common', 'MLB-22PRI-C-B45-M-BLU'), + (0xe8e2f4135b8add4425707bdf886a1ea24a97f959, 'Arizona Diamondbacks® Zac Gallen Base Blue 1062 Common', 'MLB-22PRI-C-B8-M-BLU'), + (0xe8e36fe396467885e6b9517199511e58a8b927f7, 'Philadelphia Phillies® Didi Gregorius SS Base Motion Rainbow 561 Rare', 'MLB-S221-R-B561-RAI'), + (0xe8e39a860c845da600396809dd25edf8f96e8b51, 'Boston Red Sox® Rafael Devers 2022 Definitive Gold 4 Legendary', 'MLB-22LEG-L-22DEF4-M-GLD'), + (0xe8eec976618e3c9d760d545b0bc377a40fa3fc44, 'St. Louis Cardinals® Adam Wainwright Postseason Base Red 47 Rare', 'MLB-21POST-R-B47-M-RED'), + (0xe8f172b51186a4c8127d5ee05617dca6aaf478fe, 'CryptoBlades weapon', 'CBW'), + (0xe8f685110bf3a5047c73b4da5c5ad5c8e9a328ad, 'Festivals With Avalanche', 'AVAX Festivals'), + (0xe9038428cb037dc4b1427bc6824360d7ec4ee833, 'Cleveland Guardians™ Jose Ramirez 1987 35th Anniversary Wood T87-93 Common', 'MLB-22S1-C-1987A68-M-WD'), + (0xe904a007af3401f7f7cc6484c457709792a7be6f, 'PIXEL WORLD', 'PIXELW'), + (0xe90615b1408c9b5828df3af389fe69fb5b57565e, 'San Francisco Giants® Buster Posey Postseason Base Red 28 Rare', 'MLB-21POST-R-B28-M-RED'), + (0xe9062bd17a9698aa331702b9071b42a0146fc3bf, 'Atlanta Braves™ Kyle Muller Facsimile Signature Slab Gold 3098 Epic', 'MLB-22PRI-E-FS26-M-GLD'), + (0xe9094988c9fb95cadcf540fd91afc886d13d595c, 'Pittsburgh Pirates® Oneil Cruz Base Blue 1319 Common', 'MLB-22PRI-C-B175-M-BLU'), + (0xe90d492bac62744e142edb4ffc78306a3d500aba, 'Baltimore Orioles® Dean Kremer P Base Static White 391 Common', 'MLB-S221-C-B391-WHI'), + (0xe90f7ea538f2923c5f245a0a06da65d298a6fa33, 'Arizona Diamondbacks® Base White 144 Common', 'MLB-22S1-C-B143-S-WHI'), + (0xe91249d19da79d2e35a375d3661e3613b17256c9, 'Philadelphia Phillies® Adam Haseley OF Base Static White 590 Common', 'MLB-S221-C-B590-WHI'), + (0xe9206b486c2437e05f850e2e73208904c4f42599, 'Miami Marlins® Elieser Hernandez Base Vintage Stock 9 Super Rare', 'MLB-22S1-S-B9-M-VS'), + (0xe9274519ab7d168f909157afc9ab704213413fa6, 'FC Bayern Munich Jamal Musiala Young Stars Gold 146 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS146-AFS-GLD'), + (0xe935e0ed39df789067812f9554eed8f79a6bdef0, 'Chicago White Sox® Tim Anderson Postseason Base Red 10 Rare', 'MLB-21POST-R-B10-M-RED'), + (0xe94a286745e2e1ac31a05cde6540af149463995e, 'Minnesota Twins® Alex Colome P Base Static White 533 Common', 'MLB-S221-C-B533-WHI'), + (0xe94e8b3486b1aee2fc0815bebc3e3625b9b7ae0f, 'New York Yankees® Aaron Judge 61st Home Run Gold 975 Legendary', 'MLB-22TNP-L-HR1-M-GLD'), + (0xe953ddd0f342356c8fd15618c6d1fbdf4ef2f9de, 'Omnicats', 'OMNICAT'), + (0xe960de9559c037605e7e8d029c220778f71bad1f, 'Godzilla RAT Pages 16 & 17 Comic Page Black and White 14 Uncommon', 'GDZ-RAT21-U-CP14-S-BW'), + (0xe962481ecc3b14818b6cc6a3aa84ac4abab19279, 'Oakland Athletics™ Starling Marte Base Pink 1075 Uncommon', 'MLB-22PRI-U-B55-M-PNK'), + (0xe966679721c32ac5d5cda7ccdccb007fb6c17c8c, 'Angels® Anthony Rendon Inception Base White 42 Common', 'MLB-INC21-C-IB42-WHT'), + (0xe96800969afbb6df33ce9780835468bdf41b5a24, 'American League™ 2021 Wins Leaders Base Glitch 270 Uncommon', 'MLB-22S1-U-B267-M-GLI'), + (0xe978df0ea104d8d7a518f8bd36a38b4e9661f523, 'Colorado Rockies™ Nolan Arenado Inception Base White 23 Common', 'MLB-INC21-C-IB23-WHT'), + (0xe982c1890b664b8c207615203225844b74e1b3f4, 'Atlanta Braves™ Eddie Rosario Base White 153 Common', 'MLB-22S1-C-B152-S-WHI'), + (0xe9844283f02c170b4827a4024edc99208fa41134, 'Hertha Berlin Nemanja Radonjic Base Players White 48 Common', 'BUND-SC21-C-BP48-WHT'), + (0xe9888d0c73612493f8db20a02d80bd75d64408a4, 'New York Yankees® Jose Trevino American League Base Golden 2 Super Rare', 'MLB-22ASG-S-B2-M-GLD'), + (0xe98bb3cafd918c3293b19cfafc612ee5e9892274, 'Rare Comic 10 1-10 Bazooka Joe 2021 NFT', 'BZK-R-10C'), + (0xe98fe0c7851e18f6afe67e612fdbdd84271caf44, 'New York Mets® Jacob deGrom Stars of MLB Chrome Night SMLBC-13 Legendary', 'MLB-22S1-L-SMLBC13-M-NIT'), + (0xe99d7bbe6a2d424f149af885b94c8c5071874cd9, 'Suat Serdar BSC Base Red S4-68 Uncommon', 'BUND-21TS4-U-BS4-68-S-RED'), + (0xe9b1e127f4ba89187482f242ddcd21db23d6c63f, 'Chris Führich VFB Club Phemons Gold S4CPH-17 Legendary', 'BUND-21TS4-L-CPHS4CPH-17-V-GOL'), + (0xe9baa1d9b43d228a02a040aa4de19c2e0e16236a, 'PIXEL WORLD', 'PIXELW'), + (0xe9bae9d35a4d34b701bfdba0666b46f6c7988065, 'Rare Comic 97 2-49 Bazooka Joe 2021 NFT', 'BZK-R-97C'), + (0xe9cd55e776a6f0b2921699bb7ba377ba14a7e62e, 'Arizona Diamondbacks® Seth Beer Base Blue 1317 Common', 'MLB-22PRI-C-B154-M-BLU'), + (0xe9d399d78e6782f4bded0ba1151c5da0bfa61c3f, 'Rare Comic 36 1-36 Bazooka Joe 2021 NFT', 'BZK-R-36C'), + (0xe9d981ea63b9d9cc23b65e5e0e548fc58eee6079, 'Cleveland Guardians™ Josh Naylor Base Glitch 77 Uncommon', 'MLB-22S1-U-B77-M-GLI'), + (0xe9e0fb6253cf54652ad2c4dfe38b866a687aa7d5, 'Joe Shaughnessy SMI Captains Green SPCAP-07 Epic', 'SPFL-21SPSS-E-CAPSPCAP-07-A-GRE'), + (0xe9e484d3f8c4ef940e3029b7623cfb9405f39c45, 'Uncommon Comic 13 1-13 Bazooka Joe 2021 NFT', 'BZK-U-13C'), + (0xe9ea99b73429f1b307809f249de3db700795e36e, 'Detroit Tigers® Michael Fulmer P Base Motion Rainbow 373 Rare', 'MLB-S221-R-B373-RAI'), + (0xe9ed4a34b75b8d387f6b54a33dbb21609ccc9ce5, 'Washington Nationals® Juan Soto Base White 150 Common', 'MLB-22S1-C-B149-S-WHI'), + (0xe9f38e8d04c5eb2662e647b31ad337e0e4f28a8b, 'Paper Hans Facsimile Signature Color 18 Uncommon', 'GPK-NFT22-U-FS18-S-COL'), + (0xe9fac6f8147bd91bf146d634b39862c4b635ff72, 'FREEBananaNFT', 'FREE-BANANA'), + (0xe9fb87cb7b0b15d7a9acc36f83b2182209e6a042, 'Los Angeles Dodgers® David Price Base Independence Day RWB 40 Rare', 'MLB-22S1-R-B40-M-RWB'), + (0xea01376b3d033f148d994d09b2935287c5f5bb9b, 'Niklas Stark SVW Color Splash Team Color TK-71 Super Rare', 'BUND-22TK-S-CSTK-71-S-TMC'), + (0xea03cdcdd912522400d21ee89a5bc46bffe11ac3, 'Yax x BenQi: DAI AVAI Vault', 'Yax x BenQi: DAI AVLT'), + (0xea0665cabe84f9b7dff43678906d96d8914eb111, 'VfB Stuttgart Gregor Kobel Top Saves Team Color TS-18 Epic', 'BUND-SC21-E-TSTS-18-TMC'), + (0xea0a6f4292197047a838d094d3aee57405a5529e, 'Hot Coin Summer Animation Color 23 Rare', 'GPK-NFT22-R-A23-A-COL'), + (0xea0cc9ef2bb5fcd399f28445ba06c9248dedf6d2, 'Degen Joker', 'DJKR'), + (0xea0e028c9ce733e89681b29344dc92f80f8c1353, 'Florian Wirtz B04 Ascendent Magenta TK-40 Uncommon', 'BUND-22TK-U-ASCTK-40-S-MAG'), + (0xea114bf280cb4bdaa54679d4738c4c25b4a53801, 'Tampa Bay Rays™ Randy Arozarena Facsimile Signature Gold 3034 Super Rare', 'MLB-22PRI-S-FS40-M-GLD'), + (0xea13203da687249e128f8cf2baa4256dbacce53d, 'St. Louis Cardinals® Adam Wainwright Postseason Base White 47 Common', 'MLB-21POST-C-B47-S-WHI'), + (0xea17b297ad6c1abd950dca7bb59871db079d609b, 'Washington Nationals® Riley Adams Base Independence Day RWB 158 Rare', 'MLB-22S1-R-B157-M-RWB'), + (0xea19ba432df19ae48a1a5f8688c4abe80be73432, 'Nico Schlotterbeck SCF Club Phemons Silver S4CPH-09 Super Rare', 'BUND-21TS4-S-CPHS4CPH-09-S-SLV'), + (0xea1a7760a75b5c27c07f07c8d2ea95eee739bb53, 'Lukas Nmecha WOB Club Phemons Gold S4CPH-18 Legendary', 'BUND-21TS4-L-CPHS4CPH-18-V-GOL'), + (0xea201ade1a40a6bc2efb4bccfa4d883ad289cc7e, 'Atlanta Braves™ Dansby Swanson National League Base White 10 Uncommon', 'MLB-22ASG-U-B10-M-WHI'), + (0xea224452adef99b167a37815dc7fb2d9c8bf7b11, 'Boston Red Sox® Rafael Devers Division Series Bronze 9 Super Rare', 'MLB-21POST-S-D9-M-BRO'), + (0xea263ca5c93b5105d44c6e62eeaa533480c3aa3d, 'Baltimore Orioles® Trey Mancini OF/1B Base Static Gold 573 Uncommon', 'MLB-S221-U-B573-GOL'), + (0xea32c893bfe2166a4912985f4b3af55799a5c0af, 'San Diego Padres™ Ha-Seong Kim SS Super Short Print Motion White 398 Epic', 'MLB-S221-E-SSP398-WHI'), + (0xea337ce36c5952be3002c64e2b39516f51094891, 'Toronto Blue Jays® Nate Pearson Inception Base White 94 Common', 'MLB-INC21-C-IB94-WHT'), + (0xea3d5a5d4ff46364e9692d9b640a0ee3f83750f2, 'Gezizade Memories', 'GZZDM'), + (0xea472e6e964ee85431444aa697230bba9bbdd44e, 'Toronto Blue Jays® Bo Bichette Fresh Faces White 2212 Rare', 'MLB-22PRI-R-FF5-M-WHI'), + (0xea4ad7f8e2ff8c0cb479b9dd2a46b4685d05ded6, 'Houston Astros® Jose Altuve Base Glitch 278 Uncommon', 'MLB-22S1-U-B275-M-GLI'), + (0xea4e2d0218649248a1e3d879ab12c5b985d95a17, 'Houston Astros® Yordan Alvarez Regular Season Division Winners RWB 20 Rare', 'MLB-21POST-R-R20-M-RWB'), + (0xea4e38e489aa61a74eea6fc5c80388ac79343967, '1-10_ReMonster(20221109)', 'T2WEB'), + (0xea5043f17799dc11f249a06a92585eb12d9bf557, '1-8_csv_No_production', 'T2WEB'), + (0xea533daa519848b2b404a084fe9e7a844f1b085b, 'Bounty Baddies Honoraries', 'BTYBDH'), + (0xea5401a48a921db37334b61289a11b33986cd7f9, 'San Diego Padres™ Luis Campusano C Base Motion Platinum 381 Epic', 'MLB-S221-E-B381-PLA'), + (0xea5b35261e3daae27257fa9a04b80ce41951257d, 'ApexDucks', 'ApexDucks'), + (0xea6d6cd9b7793e07b8b2b30adf061c4b7cbe8cb1, 'New York Yankees® Giancarlo Stanton DH/OF Base Motion Rainbow 642 Rare', 'MLB-S221-R-B642-RAI'), + (0xea6dfe63798703d796e8423832402103fd178203, 'National League™ Bryan Reynolds Base Blue 1297 Common', 'MLB-22PRI-C-B212-M-BLU'), + (0xea713c8d0d872a308b5b84573d784a3a8b9dd6aa, 'New York Yankees® Brett Gardner Base Vintage Stock 49 Super Rare', 'MLB-22S1-S-B49-M-VS'), + (0xea74f4a8721a4855d7ab5ccf6361286316a40e18, 'New York Yankees® Gleyber Torres Postseason Base Navy 77 Uncommon', 'MLB-21POST-U-B77-M-NVY'), + (0xea77cd23863df98e5de187b01b6014f0b66d6992, 'Alfredo Morelos RFC Base Purple SP-03 Super Rare', 'SPFL-21SPSS-S-BSP-03-A-PUR'), + (0xea7b04db2ec19c6403edccd6c02a290b4c2ca42a, 'Angels® Shohei Ohtani Inception Base Red 45 Rare', 'MLB-INC21-R-IB45-RED'), + (0xea7c5a0d34fa5b4a547e0d08d6b47030a030c9ee, 'Milwaukee Brewers™ Keston Hiura 2B Base Motion Vintage Stock 521 Super Rare', 'MLB-S221-S-B521-VS'), + (0xea86b73152bb21a2385ed7d4b1efe2c2333c94ed, 'Rodan Fly-by Traditional Art Color 9 Epic', 'GDZ-RAT21-E-TA9-A-COL'), + (0xea886b0583741cabf969a51b532f41725e3d93ec, 'Houston Astros® Alex Bregman 2022 Definitive Gold 10 Legendary', 'MLB-22LEG-L-22DEF10-M-GLD'), + (0xea94439d52f413ba2609b1e18fa6225838da75a8, 'Boston Red Sox® Xander Bogaerts Facsimile Signature Slab Gold 3020 Epic', 'MLB-22PRI-E-FS56-M-GLD'), + (0xea97a4d0bb8e89458d6cb89b003454ea19b35995, 'CryptoPukes Golden Animation Color 3 Epic', 'GPK-NFT22-E-GA3-A-COL'), + (0xeaaf18014aa377cf05f9b3be13312253cdf75800, 'Los Angeles Dodgers® Max Scherzer Base Independence Day RWB 310 Rare', 'MLB-22S1-R-B306-M-RWB'), + (0xeab04b42097c902205cea044ed47b0ffda7f0a40, 'Boston Red Sox® Enrique Hernandez Base Vintage Stock 90 Super Rare', 'MLB-22S1-S-B90-M-VS'), + (0xeab6b75d2a1359e82d0ce0e51a94334ee4b8a8fd, 'New York Yankees® Anthony Rizzo Postseason Base White 78 Common', 'MLB-21POST-C-B78-S-WHI'), + (0xeab86094342520573d9f23b43311b641adb2ce62, 'PAIN-T', 'PAIN-T'), + (0xeac010a99939163bbd542a31ce6e327c608f4d72, 'Detroit Tigers® Casey Mize Inception Base White 30 Common', 'MLB-INC21-C-IB30-WHT'), + (0xeac6f570f232c475a869885ce6622309029de1fa, 'Common Comic 19 1-19 Bazooka Joe 2021 NFT', 'BZK-C-19C'), + (0xeac7da2ecea0a88eb4937bd1b143b96fc8c47aac, 'Angels® Mike Trout Facsimile Signature Slab Gold 3002 Epic', 'MLB-22PRI-E-FS34-M-GLD'), + (0xeaca081bba46dea92aeef05c7f420119e2e42660, 'Mainnet Stage', 'gLW'), + (0xeacd2415542780a0e788562826d868659ce644fd, 'Cleveland Indians® Jose Ramirez 3B Base Static White 360 Common', 'MLB-S221-C-B360-WHI'), + (0xead672fc309ce08b2d6a5d1bd12ce88883193789, 'New York Mets® Tylor Megill Base Vintage Stock 134 Super Rare', 'MLB-22S1-S-B133-M-VS'), + (0xeade6f402854bec9c439769448f4f722887dc648, 'Chikn Beauty Pageant', 'CBP'), + (0xeaede3eec3cb93e603e3facf69bbc7c7749a2e36, 'Anguirus and Godzilla Base Collectible Blue 3 Common', 'GDZ-RAT21-C-B3-S-BLU'), + (0xeaeedc25e1c023fbc3d94667d62ad820176fbde2, 'New York Yankees® Giancarlo Stanton American League Base Blue 16 Rare', 'MLB-22ASG-R-B16-M-BLU'), + (0xeaef74e1b8c71aa5ddaba720381f33163a7dcf52, 'AvaxOwls', 'owls'), + (0xeaf0357e30df736e792eb459d71e4d820435618b, 'Georginio Rutter TSG Ascendent Blue TK-43 Super Rare', 'BUND-22TK-S-ASCTK-43-S-BLU'), + (0xeaf72a6dc207a27f5ade172aa73897c65d6aa1df, 'Avax Dinos', 'AVXDNS'), + (0xeafa81d2af824a729a8642c1020c6e37d4316a3e, 'Tampa Bay Rays™ Austin Meadows Base White 152 Common', 'MLB-22S1-C-B151-S-WHI'), + (0xeb02991405fc0accc9ad00c161d146133d42cbf8, 'Hot Coin Summer Base Color 23 Common', 'GPK-NFT22-C-B23-S-COL'), + (0xeb05f640e5c0f011c8f3cae7d7de25f0d754cace, 'Kumonga and Godzilla Base Collectible Magenta 5 Common', 'GDZ-RAT21-C-B5-S-MAG'), + (0xeb0e44db9887cf9123c15549226744d2a94d1856, '2021 Topps MLB Postseason Premium Pack', 'MLB-21POST-PACK-P'), + (0xeb0feecc9b96313d3b88bf63a6a712af6a856b2c, 'New York Mets® Starling Marte National League Base Blue 16 Rare', 'MLB-22ASG-R-B16-M-BLU'), + (0xeb106349f7d696bea32e200495a98fda9a097ddf, 'Borussia Monchengladbach Nico Elvedi Base Players Team Color 19 Static Facsimile Signature Rare', 'BUND-SC21-R-BP19-SFS-TMC'), + (0xeb1853c7e92f41e1b9c3c780e4afcff374a4d73a, 'Boston Red Sox® Tanner Houck P Base Motion Platinum 635 Epic', 'MLB-S221-E-B635-PLA'), + (0xeb1cc8a04835b21af0db0eeee043828fbf55bf7d, 'Los Angeles Dodgers® Clayton Kershaw 1987 35th Anniversary Chrome T87C-78 Super Rare', 'MLB-22S1-S-1987AC60-M-CHR'), + (0xeb21df930c2e5ec0e18409f8712c7d243c158ef5, 'Rare Comic 91 2-43 Bazooka Joe 2021 NFT', 'BZK-R-91C'), + (0xeb244ba8385fd24e97bf476c7e09b3e55dca0d34, 'Miami Marlins® Brian Anderson 3B/OF Base Static Gold 439 Uncommon', 'MLB-S221-U-B439-GOL'), + (0xeb2997715eec2c4ffe829bd2b802b0c66ddfc456, 'Atlanta Braves™ Kyle Muller Base Glitch 30 Uncommon', 'MLB-22S1-U-B30-M-GLI'), + (0xeb2a19441d2d41ce8f289f847e8c605d9cdb6c8d, 'Toronto Blue Jays® Vladimir Guerrero Jr. Short Print White 300 Rare', 'MLB-22S1-R-SP62-M-WHI'), + (0xeb369585772e1ccb525abbeaa4307bd37ae61cd2, 'Hertha Berlin Nemanja Radonjic Base Players Team Color 48 Static Facsimile Signature Rare', 'BUND-SC21-R-BP48-SFS-TMC'), + (0xeb38c5e705301915aa4cfc699b9972445014d5d6, 'SV Werder Bremen Theodor Gebre Selassie Base Players Team Color 79 Uncommon', 'BUND-SC21-U-BP79-TMC'), + (0xeb4095fcadbcc06c94f82a34ac4ce380e6d06318, 'New York Yankees® Luke Voit 1B 1986 Anniversary Static Team Colors 86B-29 Super Rare', 'MLB-S221-S-1986A86B-29-TMC'), + (0xeb4a97626baac9008843fe31d890931f54e5ea99, 'ANUBIS ARMY', 'ANUBIS'), + (0xeb5200163cc348833e496bd3b324be7be692f5cc, 'St. Louis Cardinals® Dylan Carlson Base Blue 1185 Common', 'MLB-22PRI-C-B59-M-BLU'), + (0xeb52ac363db674881fbcc32f2ddde60ea5ef1827, 'NW Lazy Lions', 'NWLLIONS'), + (0xeb54bfed8a8d7b2c1ad9643117088d2534347348, 'Undead Citizens of Avax', 'UNDCOA'), + (0xeb55bee9cc03a6332f37b5017674434283388c10, 'Boston Red Sox® Matt Barnes P Base Motion Platinum 484 Epic', 'MLB-S221-E-B484-PLA'), + (0xeb57b6cb674da7fa40582341b29533720f9ec4ed, 'Chicago White Sox® Jose Abreu 1B Base Static Gold 331 Uncommon', 'MLB-S221-U-B331-GOL'), + (0xeb65816f4217e379ebbd4750c3b337d8d8e4b67a, 'Chicago White Sox® Dane Dunning Rookie and Future Phenoms Facsimile Signature White 16 Rare', 'MLB-INC21-R-RC16-WHT'), + (0xeb6a7fc5af81067ee9d84626b9b67188f24e738b, 'Tampa Bay Rays™ Vidal Brujan Fresh Faces White 2206 Rare', 'MLB-22PRI-R-FF3-M-WHI'), + (0xeb6d4a6447671ea4c25fe1676839b0f647d434c4, 'Milwaukee Brewers™ Keston Hiura 2B Base Motion Rainbow 521 Rare', 'MLB-S221-R-B521-RAI'), + (0xeb728db6ebbfd3e2a89172ca3dab38289b4dbe71, 'Nox Beyond', 'NOXB'), + (0xeb73d5cbb26536f714785b7864806542f41ab9e5, 'Float Capital Gems', 'FCG'), + (0xeb75f46bd84b2f70b24b683f3ffb7d74307d1001, 'Owloper', 'OWL'), + (0xeb79897b6a2ad959102d9c60bd938a7221bdf11f, 'Ridle Baku WOB Animation Black Refractor S2-12 Epic', 'BUND-21TS2-E-AS2-12-V-BLA'), + (0xeb834ae924a228b7dc00d6e975a1316db49717d3, 'Chicago White Sox® Luis Robert 1987 35th Anniversary Chrome T87C-9 Super Rare', 'MLB-22S1-S-1987AC7-M-CHR'), + (0xeb873fd25f1bccd129420b437434b10a47428f44, 'Smol World Cup - Hall of Fame', 'SMWCHOF'), + (0xeb8b9c6886786d61918f616e2191858d4842e0f9, 'Atlanta Braves™ Ozzie Albies Ultra Short Print White 401 Epic', 'MLB-22S1-E-USP4-M-WHI'), + (0xeb93fa3ed2d77d5bfd5e33bd0fd77d975420ea8d, 'Cleveland Indians® Francisco Lindor Inception Base White 20 Common', 'MLB-INC21-C-IB20-WHT'), + (0xeb95d905b839760fc2d54c7f31954bf0cd313467, 'Boston Red Sox® Rafael Devers Base Blue 1035 Common', 'MLB-22PRI-C-B5-M-BLU'), + (0xeba2ad9090bd3997aba33eea0fb142af7a2b5cb0, 'Smol Chikn', 'SmolChikn'), + (0xebb338d5de31e585698fe75543df8ec2b98f4dc5, 'Boston Red Sox® J.D. Martinez Base Pink 1177 Uncommon', 'MLB-22PRI-U-B106-M-PNK'), + (0xebb83b3b260fef90c5870a4a9c8bf2ad433d132d, 'Philadelphia Phillies® Alec Bohm Inception Base Blue 72 Uncommon', 'MLB-INC21-U-IB72-BLU'), + (0xebcd844dc93f8e7ee270e9cc0c43367fc6628ed3, 'Chicago White Sox® Jake Burger Short Print White 186 Rare', 'MLB-22S1-R-SP35-M-WHI'), + (0xebd0c74f5d3969492e1e9965a3b671d59c647dc3, 'Los Angeles Dodgers® Trea Turner Base Pink 1090 Uncommon', 'MLB-22PRI-U-B65-M-PNK'), + (0xebd468de87c001ad420b9a72e0076c921492f853, 'MysteryBox', 'MysteryBox'), + (0xebdcd3d6375d197c20088874a0b13fa9418427e8, 'Angels® Kurt Suzuki Base Vintage Stock 171 Super Rare', 'MLB-22S1-S-B170-M-VS'), + (0xebe36270197098f7cfaad882029da38c10782c95, 'Tampa Bay Rays™ Josh Fleming Regular Season Division Winners RWB 7 Rare', 'MLB-21POST-R-R7-M-RWB'), + (0xebec53312c109c6020fb07ab74085ad0dfdc8fba, 'BODY Social Club NY', 'BDNY'), + (0xebece543e102bb1d18afc67b79548df1cfd225ca, 'Toronto Blue Jays® Lourdes Gurriel Jr. American League Base White 17 Uncommon', 'MLB-22ASG-U-B17-M-WHI'), + (0xebf0187dafaeb2f1ce1cd423a2d5d4e5d01d53c1, 'Seattle Mariners™ Jarred Kelenic Base Glitch 235 Uncommon', 'MLB-22S1-U-B232-M-GLI'), + (0xebf8988f911c1de59dd0523d45cab12484360a23, 'Miami Marlins® Base Independence Day RWB 326 Rare', 'MLB-22S1-R-B322-M-RWB'), + (0xec0673a7cca7a48b9bac8984870cf1ba15e4a38c, 'Los Angeles Dodgers® Walker Buehler P Facsimile Signature Static Red 466 Epic', 'MLB-S221-E-FS466-RED'), + (0xec06fb88ab28099e456d5c100564dabf712269c5, 'Detroit Tigers® Zack Short Base Vintage Stock 148 Super Rare', 'MLB-22S1-S-B147-M-VS'), + (0xec0814822d525187e3db09e2f4b182453c867908, 'Boston Red Sox® Jonathan Arauz SS Base Static Gold 468 Uncommon', 'MLB-S221-U-B468-GOL'), + (0xec0c3a77be6365fff17e60d055718487af3014d6, 'Regan Charles-Cook RSC Base Purple SP-36 Super Rare', 'SPFL-21SPSS-S-BSP-36-A-PUR'), + (0xec0d3ff96d290100decb789b3f1cdd4f2a47e7c5, 'WizardOfMIM', 'WOM'), + (0xec0d405769c30cbb473f8da753de48d401db74dd, 'Peaches N Strawbs', 'PNS'), + (0xec2c2643e43a70df8f0857016f8f4016d0ae72d6, 'Takuma Asano BOC Top Players Black TK-36 Common', 'BUND-22TK-C-TPTK-36-S-BLA'), + (0xec2fd9caa942d8a8a852f6316aad24931c59930c, 'Miami Marlins® Bryan De La Cruz Base Glitch 22 Uncommon', 'MLB-22S1-U-B22-M-GLI'), + (0xec3210d76d574def09f7f0e791f40321271fd7a4, 'Boston Red Sox® Enrique Hernandez Base Blue 1093 Common', 'MLB-22PRI-C-B117-M-BLU'), + (0xec5038871bc22106f1593075a4b05a00b0268eef, 'San Diego Padres™ Manny Machado 2022 Definitive Gold 28 Legendary', 'MLB-22LEG-L-22DEF28-M-GLD'), + (0xec504ee93ccf8636b43fb417a78d814fe795e859, 'Toronto Blue Jays® Steven Matz Base Vintage Stock 276 Super Rare', 'MLB-22S1-S-B273-M-VS'), + (0xec53866d346be5e9c80a0a1b79797e18f056b20a, 'Avalanche Friends Collectible', 'AFC'), + (0xec55757de89c5779aab046926316919584cb7756, 'Tampa Bay Rays™ Randy Arozarena Facsimile Signature Slab Gold 3034 Epic', 'MLB-22PRI-E-FS40-M-GLD'), + (0xec65edeef420d79f4c8ee9ba505738f1c665e391, 'Konrad Laimer RBL Animation Gold Refractor S1-04 Legendary', 'BUND-21TS1-L-AS1-04-V-GOL'), + (0xec668f5205db2a57f2439eb456b234766a1f0fe0, 'Scott Tanser SMI Base White SP-19 Common', 'SPFL-21SPSS-C-BSP-19-A-WHI'), + (0xec6696002223f3c9da7603c9dd7a0505ff3cc50f, 'Christopher Trimmel FCU Top Players Black TK-28 Common', 'BUND-22TK-C-TPTK-28-S-BLA'), + (0xec6ae07382253d4aa9f20a57cbf34ade0d47aad0, 'anotherone', 'ANO'), + (0xec6e3ce94d4654f41f0f82d12edd68b5e64956af, 'Philadelphia Phillies® Bryce Harper Stars of MLB Chrome Night SMLBC-15 Legendary', 'MLB-22S1-L-SMLBC15-M-NIT'), + (0xec72dd9c9a651771de2d2d81f2e717c276219dca, 'San Francisco Giants® Evan Longoria Regular Season Division Winners RWB 45 Rare', 'MLB-21POST-R-R45-M-RWB'), + (0xec7bc676911f1c4306baf98043ed121686a6b2d3, 'Los Angeles Dodgers® Julio Urias Division Series Bronze 48 Super Rare', 'MLB-21POST-S-D48-M-BRO'), + (0xec7e37d22ba1be60c3eab37977649e944f937f10, 'Angels® Andrew Heaney P Base Motion Rainbow 387 Rare', 'MLB-S221-R-B387-RAI'), + (0xec7e52be37a0973b871399dc6971566ec5a96701, 'New York Mets® Marcus Stroman P Base Motion Vintage Stock 549 Super Rare', 'MLB-S221-S-B549-VS'), + (0xec854b80dcc7b79f034647b2225dc96915e5d486, 'Arizona Diamondbacks® Carson Kelly C Base Motion Platinum 447 Epic', 'MLB-S221-E-B447-PLA'), + (0xec8cb686280ae3550ff7de25f7745b7aaabd6ad5, 'Los Angeles Dodgers® Mookie Betts Stars of MLB Chrome Night SMLBC-9 Legendary', 'MLB-22S1-L-SMLBC9-M-NIT'), + (0xec8d2288f6622f947b03b48775fcfd0847f08131, 'Texas Rangers® Jonah Heim C Base Motion Rainbow 628 Rare', 'MLB-S221-R-B628-RAI'), + (0xec977283085916e966c540a1bbab0933142957e2, 'Borussia Dortmund Thorgan Hazard Base Players Team Color 10 Uncommon', 'BUND-SC21-U-BP10-TMC'), + (0xec9be4e2a00d660d52fd94411aa35ed6b996869a, 'Colorado Rockies™ Brendan Rodgers Base Vintage Stock 232 Super Rare', 'MLB-22S1-S-B229-M-VS'), + (0xecae79eb057142630a7dad40a994fa54aa3e61a5, 'Miloš Pantović BOC Animation Black Refractor S3-21 Epic', 'BUND-21TS3-E-AS3-21-V-BLA'), + (0xecb3fbe16c8dd3f9db4da9432c9711e7cfa309fb, 'Meta Graffiti', 'MGRA'), + (0xecbeb344291bb4f541b203b630d8a408df8ebc26, 'Chicago Cubs® Kyle Hendricks P Base Motion Platinum 503 Epic', 'MLB-S221-E-B503-PLA'), + (0xecc27b26a917295e39dc37d80d4f880d161805e8, 'Toronto Blue Jays® Nate Pearson Inception Base Red 94 Rare', 'MLB-INC21-R-IB94-RED'), + (0xecc2f546fda6776c5a1e8437a270f10999be9e8e, 'Gonzalo Castro DSC Animation Black Refractor S4-43 Epic', 'BUND-21TS4-E-AS4-43-V-BLA'), + (0xecd1b4c0227dc362cba2893d4ccb7f81973cffb1, 'Atlanta Braves™ Charlie Morton Base White 82 Common', 'MLB-22S1-C-B82-S-WHI'), + (0xecd35ef183a1fbf93c180d0617ecc07d863e99ad, 'Toronto Blue Jays® Danny Jansen Base Glitch 33 Uncommon', 'MLB-22S1-U-B33-M-GLI'), + (0xecd65ec765083d47fe7d207badc0e755b2f824b3, 'Sheraldo Becker FCU Top Players Facsimile Signature Team Color TK-27 Epic', 'BUND-22TK-E-TPTK-27-S-TMC'), + (0xecde9c03decc08ffadd5f1e7491b97436547d4d5, 'King Ghidorah Fly-by Traditional Art Black and White 7 Uncommon', 'GDZ-RAT21-U-TA7-S-BW'), + (0xece7eb515b14fcf8d69d05e9d2c49476aeb24dd4, 'Detroit Tigers® Miguel Cabrera 1987 35th Anniversary Chrome T87C-31 Super Rare', 'MLB-22S1-S-1987AC26-M-CHR'), + (0xece8fb702e912ef4d184b3d0bd832107f362c865, 'Danny Blum BOC Animation Black Refractor S2-20 Epic', 'BUND-21TS2-E-AS2-20-V-BLA'), + (0xece934db33816367a728d44a1983b7701acf5182, 'New York Mets® Michael Conforto OF Base Motion Rainbow 517 Rare', 'MLB-S221-R-B517-RAI'), + (0xecea9e040221ad8c406f948d716ae0abe5409224, 'Kansas City Royals® Salvador Perez Base Glitch 219 Uncommon', 'MLB-22S1-U-B216-M-GLI'), + (0xecf27f3a98d1b9450147cc24c58593eb24dde567, 'Cincinnati Reds® Wade Miley P Facsimile Signature Static Red 638 Epic', 'MLB-S221-E-FS638-RED'), + (0xecf5cef796b7ccf5da94c79e39c86cc828417f4d, 'NEIGHmeansNEIGH', 'NMN'), + (0xecf9d56e15c3b4257e66e7318d22d33df4d5ef67, '@omarturco Collection', 'NPC012'), + (0xecfc2ca798a0e453e9bc674aefbb761d3a19e88a, 'Holograph Collection', 'HLGRH'), + (0xed0c5e535a0494a7ca4975604c10c8e722d5ddb7, 'Beauty Pageant Postr', 'POSTR'), + (0xed0fc69f348b4c3c9d0067ced1a9bdbaa0e5ad65, 'Philadelphia Phillies® Rhys Hoskins Inception Base Red 75 Rare', 'MLB-INC21-R-IB75-RED'), + (0xed17b013f52dd1acc99a7383d0b42c4a1d3d0765, 'American League™ Vladimir Guerrero Jr. Base Pink 1262 Uncommon', 'MLB-22PRI-U-B205-M-PNK'), + (0xed21445d558d9b66174dc65a4d41cdc33a9edc20, 'Miami Marlins® Team Cube 2.0 Team Colors 2 Legendary', 'MLB-22S1-L-TC22-M-TMC'), + (0xed216bd81a633ad0482c59a8097d2d961989ebc2, 'GENGAR x ZARDA', 'GZAR'), + (0xed2b477c64e5ecada5a4ce2092717abfc24ac2bd, 'Lukas Nmecha WOB Club Phemons Team Color S4CPH-18 Epic', 'BUND-21TS4-E-CPHS4CPH-18-V-TMC'), + (0xed2becc93c9a274883c6b5e788e806c0d2d7114e, 'Nico Schlotterbeck SCF Base White S4-62 Common', 'BUND-21TS4-C-BS4-62-S-WHI'), + (0xed2e314d3a4e272da60cb81a8f83d32d14d0e61f, 'Epic Baseball Card 4 Jane Catcher Bazooka Joe 2021 NFT', 'BZK-E-4B'), + (0xed2eb083c8ee0ccb971e99284fe9e52cd664c08f, 'FC Schalke 04 Salif Sané Base Players Team Color 60 Static Facsimile Signature Rare', 'BUND-SC21-R-BP60-SFS-TMC'), + (0xed2ee1a12de1b50d51747e55cd8e60107c1a7bee, 'National League™ 2021 Strikeout Leaders Base Vintage Stock 127 Super Rare', 'MLB-22S1-S-B126-M-VS'), + (0xed3382f9e6de60181cf7a12936336e15bdfebfc8, 'San Diego Padres™ Slam Diego™ Returns Base Independence Day RWB 125 Rare', 'MLB-22S1-R-B124-M-RWB'), + (0xed36e773fe48b0d8c56923bca66a3e8851e38eaf, 'Washington Nationals® Patrick Corbin Facsimile Signature Slab Gold 3046 Epic', 'MLB-22PRI-E-FS38-M-GLD'), + (0xed3c149356fd7e55d85b85d2b2043e94d4d9359c, 'St. Louis Cardinals® Paul Goldschmidt Facsimile Signature Gold 3066 Super Rare', 'MLB-22PRI-S-FS39-M-GLD'), + (0xed3ff6eacab4fba553b380d0cb944af994b6821a, 'Uncommon Comic 3 1-3 Bazooka Joe 2021 NFT', 'BZK-U-3C'), + (0xed484f65d4999f92922366fae8045e6defa2a3cd, 'Detroit Tigers® Casey Mize Inception Base Red 30 Rare', 'MLB-INC21-R-IB30-RED'), + (0xed4b4e688d933c9c2dfdebbcb78431132542a07e, 'Houston Astros® Alex Bregman Postseason Base Navy 51 Uncommon', 'MLB-21POST-U-B51-M-NVY'), + (0xed5a0a3300757f4e9b0afc9f97d20815d4589d64, 'Kansas City Royals® Mike Minor Base Glitch 155 Uncommon', 'MLB-22S1-U-B154-M-GLI'), + (0xed766ddb846ba4a9615257ed959dbd510fa63e06, 'lexemes', 'LEX'), + (0xed7b5bbd54b30c490fdca1790da631fcf700723a, 'FC Schalke 04 Bastian Oczipka Base Players Team Color 56 Uncommon', 'BUND-SC21-U-BP56-TMC'), + (0xed7d0a991fdd0ca8c30e90dc5055f640c9852550, 'FC Schalke 04 Omar Mascarell Base Players Gold 58 Rare', 'BUND-SC21-R-BP58-GLD'), + (0xed7e82a1843462fd1d8e631a08d27179457893ff, 'NFT Art Greece Member Badge', 'NFTARTGR'), + (0xed8e101f3b020cb1611632afecb6079a1da723d6, 'A soldiers escort', 'SLDR'), + (0xed9411b20ea00f36f8f851aeef967f2579b0b8c6, 'San Diego Padres™ Jake Cronenworth 2B/1B Base Motion Rainbow 371 Rare', 'MLB-S221-R-B371-RAI'), + (0xed95d5c7c88132403561bb989791bdc4ec70504a, 'Uncommon Comic 31 1-31 Bazooka Joe 2021 NFT', 'BZK-U-31C'), + (0xed977597abf0ce544abcc8ee7fb5ebc229dbcd63, 'Mesks', 'MSKS'), + (0xed9cef263fc2584c56eedba0f796cb92c770182c, 'FC Koln Sebastian Andersson Base Players White 70 Common', 'BUND-SC21-C-BP70-WHT'), + (0xeda15906c9ddfe53e037a8f721d1e65b94da66b8, 'Boston Red Sox® Xander Bogaerts Facsimile Signature Gold 3020 Super Rare', 'MLB-22PRI-S-FS56-M-GLD'), + (0xedac08268b1f4671b8d872fafc0da02a9d8723ee, 'D4NCING-MECH4S', 'DANCINGMECHA'), + (0xedb8a630a7880c364a66a5bfafc065f5e646868a, 'Only One Free NFT', 'ONLY1'), + (0xedbfd1ac93161fe6a05799fc95a3034ec09500d9, 'Arizona Diamondbacks® Base Independence Day RWB 144 Rare', 'MLB-22S1-R-B143-M-RWB'), + (0xedc3c8dd3c170a9fdddab9616ab74e2a381f1748, 'New York Yankees® Clarke Schmidt P Base Static White 456 Common', 'MLB-S221-C-B456-WHI'), + (0xedcdb445fbf23720bc2103d619ba3253ac314792, 'Washington Nationals® Juan Soto 1987 35th Anniversary Chrome T87C-25 Super Rare', 'MLB-22S1-S-1987AC20-M-CHR'), + (0xedd07192d0045991218fd0ddbb0c9ffb3cbeb94b, 'Houston Astros® Jose Altuve Facsimile Signature Slab Gold 3011 Epic', 'MLB-22PRI-E-FS24-M-GLD'), + (0xedd99c332f7ffffe29b857c92a93d0b5f764ca56, 'Cincinnati Reds® Mike Moustakas Base White 60 Common', 'MLB-22S1-C-B60-S-WHI'), + (0xeddf652e61271e93db3297538784d5cec69d445b, 'Jack Fitzwater LFC Top Plays Purple SPTPL-15 Rare', 'SPFL-21SPSS-R-TPLSPTPL-15-V-PUR'), + (0xede0ea8d3d07cf80a41c97741f00badf19d83db6, 'VOID MoNKEY', 'Vm'), + (0xede13dfd97015955d911a7b68878e19145d0d74d, 'SmolCorn', 'SMCORN'), + (0xede4d3eef017cae19bdf5acb1cb7818d8ee5b272, 'the DAYDREAMER', 'DYDR'), + (0xededa253b573fbb333c2b4fe9ca39ed9419b0a8d, 'Connor Ronan SMI Base Purple SP-20 Super Rare', 'SPFL-21SPSS-S-BSP-20-A-PUR'), + (0xedefc5da05a4b449a3ef53e6c95abbf7dd21b588, 'FC Augsburg Reece Oxford Base Players Team Color 74 Uncommon', 'BUND-SC21-U-BP74-TMC'), + (0xedefeb6a11225e94a0f2a9d3e98aac98e4b95d90, 'Kings of the Jungle', 'Kings'), + (0xee0107a269b891d4835751b3c41a77ca9720550f, 'Vik''s collection', 'VIC'), + (0xee0fef0eba4216a93a2b43e4c192f53577f94449, 'v o i d', 'VOID'), + (0xee107926e8e03d08b8e9162b68531a769b4d3084, 'Godzilla Destroys the City Traditional Art Color 2 Epic', 'GDZ-RAT21-E-TA2-A-COL'), + (0xee10863e994ae6547dc4f27d17c17b343931429f, 'Ridle Baku WOB Base Red S2-12 Uncommon', 'BUND-21TS2-U-BS2-12-S-RED'), + (0xee14a41c6e04187b83649de18315889bc17031dc, 'Toronto Blue Jays® George Springer Popular Demand Facsimile Signature Slab Teal 3519 Legendary', 'MLB-22PRI-L-PDFS6-M-TEA'), + (0xee18dba45cb3ef6bd3211209efe997c5cb314193, 'Rat Catching Cats', 'KITTY'), + (0xee1e6168a27b5305532b9165684928b72403d8b1, 'New York Yankees® Luis Gil Facsimile Signature Slab Gold 3115 Epic', 'MLB-22PRI-E-FS27-M-GLD'), + (0xee20384f3969133659a5d43c3f8ba9adac029994, 'Boston Red Sox® Bobby Dalbec 1B/3B 1986 Anniversary Static Team Colors 86B-33 Super Rare', 'MLB-S221-S-1986A86B-33-TMC'), + (0xee21b2784a0deee0782205261b1fb476cdb82c1f, 'Miami Marlins® Jazz Chisholm SS Super Short Print Motion White 538 Epic', 'MLB-S221-E-SSP538-WHI'), + (0xee2995fc71b1ef2724a87ed36b9029f976d9f3dd, 'AVAX Potluck Realm Necromancers', 'PRNC'), + (0xee2c35f85fe69d4979af7449f020010683eb774a, 'Atlanta Braves™ Joc Pederson Championship Series Silver 21 Epic', 'MLB-21POST-E-CS21-M-SIL'), + (0xee2f33ad6e8511c6214ccfcdd812cc5943eb656d, 'Uncommon Comic 58 2-10 Bazooka Joe 2021 NFT', 'BZK-U-58C'), + (0xee344b38f13b47b0f559fcd91ea386a8e1b75d8b, 'Chicago Cubs® Ian Happ Base Vintage Stock 143 Super Rare', 'MLB-22S1-S-B142-M-VS'), + (0xee420b1ed0a2d83be1544e35adfe496aa87e7f09, 'Échappez de moi-même​', 'MAV1'), + (0xee42594ef4f0e5ef71ac04da7554dc88969276a2, 'Arizona Diamondbacks® Kole Calhoun OF Base Motion Platinum 512 Epic', 'MLB-S221-E-B512-PLA'), + (0xee490eef1f0edde2d4e782e237358fbda77c09bb, 'Jamal Musiala BAY Animation Gold Refractor S3-32 Legendary', 'BUND-21TS3-L-AS3-32-V-GOL'), + (0xee5368dc3bf1af3d2c055d9021e6c704f515f93e, 'Houston Astros® Jose Altuve World Series Gold 1 Epic', 'MLB-21POST-E-WS1-M-GOL'), + (0xee637717af7c2ef83847e13dac2381957d9da1b5, 'New York Mets® Jacob deGrom Base Glitch 330 Uncommon', 'MLB-22S1-U-B326-M-GLI'), + (0xee67b16068eecb4f6365fceb4f7ce89e6eca06b5, 'EVIL COYOTES', 'EVILCOYOTES'), + (0xee6fb6d6d0d25f368f966ad56a7c1bcc3df0c0ca, 'Soul Society', 'ssy'), + (0xee70cfdffcb2c5e1214b5cca6744793c5933082e, 'COCA-COLA COMBO', 'COCACOLACOMBO'), + (0xee7f9a2eec628bdfa64ca963d8f14518eadb1494, 'Seattle Mariners™ Mitch Haniger Base Glitch 80 Uncommon', 'MLB-22S1-U-B80-M-GLI'), + (0xee870581b291d9be55b69d247fe90b16587ade22, 'National League™ Jake Cronenworth Base Pink 1298 Uncommon', 'MLB-22PRI-U-B206-M-PNK'), + (0xee8755c500cb746b536e6d4d0fa6ea3f6eef358e, 'Milwaukee Brewers™ Willy Adames Regular Season Division Winners RWB 35 Rare', 'MLB-21POST-R-R35-M-RWB'), + (0xee89da0c0ac041a5bee2c06cd37bbe54f69a5082, 'Cartel Game Farmer Tools', 'COCAINE-GAME-FARMER-TOOL'), + (0xee925a747ec48193b46eea2ea459d8554e9943fb, 'Wataru Endō VFB Top Players Team Color TK-17 Rare', 'BUND-22TK-R-TPTK-17-S-TMC'), + (0xeea32d9eca82d03274c935667b1be48e9d9ca06a, 'blockhead', 'BLOCK'), + (0xeea91648bef36cf729140eb8e780edc7383d3565, 'Football World Cup', 'FWC'), + (0xeeab62e28a21e24d3542130fae0f62b6440a075c, 'Patrick Wimmer WOB Color Splash Team Color TK-59 Super Rare', 'BUND-22TK-S-CSTK-59-S-TMC'), + (0xeeb08e5cff4e56aba30561ac6dbc3f733277a814, 'Cincinnati Reds® Tejay Antone P Base Motion Platinum 333 Epic', 'MLB-S221-E-B333-PLA'), + (0xeeb4bbf77c244209b32aec3bc9289e1f4cce0559, 'Burning Bennie Golden Animation Color 6 Epic', 'GPK-NFT22-E-GA6-A-COL'), + (0xeeb62e55b339ad304efd4cb00b985e797b066e4f, 'Los Angeles Dodgers® Julio Urias Base Glitch 299 Uncommon', 'MLB-22S1-U-B295-M-GLI'), + (0xeeb6c299b68a4d566b0c86ab472485c622a0bacd, 'Cincinnati Reds® Dwight Smith Jr. OF Base Static White 582 Common', 'MLB-S221-C-B582-WHI'), + (0xeec84f1eb0766a133925a3c99312d1bb2f8da687, 'Cincinnati Reds® Wade Miley P Base Motion Vintage Stock 638 Super Rare', 'MLB-S221-S-B638-VS'), + (0xeec9d66f3c2a6100049b5aff97cc5d597c74ef2b, 'Pittsburgh Pirates® Ben Gamel Base Independence Day RWB 285 Rare', 'MLB-22S1-R-B282-M-RWB'), + (0xeecc841ba5bb7cd69e14b633d327d0ed6800a4f0, 'Philadelphia Phillies® Matt Vierling Base Vintage Stock 316 Super Rare', 'MLB-22S1-S-B312-M-VS'), + (0xeed4afc65020d05115056fbce588c1e2d27d813b, 'Los Angeles Dodgers® Corey Seager Short Print White 301 Rare', 'MLB-22S1-R-SP63-M-WHI'), + (0xeed9ca646491aac79abb6a74961f9d4d6dc7cf4e, 'ZOOGZ', 'ZOOGZ'), + (0xeedf3182be49760bf4e2c76b9a887235ed46650f, 'Oakland Athletics™ Team Cube 2.0 Team Colors 28 Legendary', 'MLB-22S1-L-TC228-M-TMC'), + (0xeeeac20af1d6bfa0e182ed1a9312293bac04b264, 'Eintracht Frankfurt Steven Zuber Base Players Team Color 45 Static Facsimile Signature Rare', 'BUND-SC21-R-BP45-SFS-TMC'), + (0xeef8abce8f41c1d4f74ca38e265131e03c40f05e, 'Milwaukee Brewers™ Josh Hader P Base Static White 596 Common', 'MLB-S221-C-B596-WHI'), + (0xeef93042ba8804790ac083ba7a6c82dad23b0dc3, 'Borussia Dortmund Emre Can Base Players Team Color 7 Static Facsimile Signature Rare', 'BUND-SC21-R-BP7-SFS-TMC'), + (0xef171568d37c122b48fc761a91a348b4d2dc0b64, 'Matthias Ginter SCF Color Splash Facsimile Signature Team Color TK-64 Legendary', 'BUND-22TK-L-CSTK-64-S-TMC'), + (0xef174a41569ca3149ce5ac43c341dfc096a6cfe3, 'Uncommon Comic 88 2-40 Bazooka Joe 2021 NFT', 'BZK-U-88C'), + (0xef1c76165e8f7f10574d8a695a2be90ed2f94b92, 'Kansas City Royals® Bubba Starling OF Base Static Gold 375 Uncommon', 'MLB-S221-U-B375-GOL'), + (0xef1e080d6482a8745c702006c0add5f96be0376c, 'New York Mets® Pete Alonso Inception Base Red 64 Rare', 'MLB-INC21-R-IB64-RED'), + (0xef2025b4ac8aa79118481703311da012c28296b1, 'Honorary Based Stats', 'HBASED'), + (0xef27a98b5cc69d155f5f1e5e075fbc2eac7a1e09, 'Tom Krauß S04 Ascendent Magenta TK-52 Uncommon', 'BUND-22TK-U-ASCTK-52-S-MAG'), + (0xef32be5801cf19f9162e99780f153b070043b0fb, 'SV Werder Bremen Ludwig Augustinsson Base Players White 77 Common', 'BUND-SC21-C-BP77-WHT'), + (0xef3d7a24cd2cbf3acef15b2c079a6b71d2cb77b4, 'Arizona Diamondbacks® Nick Ahmed SS Base Motion Platinum 618 Epic', 'MLB-S221-E-B618-PLA'), + (0xef6d86a51953486a4684fece599e84c1afda9508, 'Godzilla Offshore Traditional Art Black and White 1 Rare', 'GDZ-RAT21-R-TA1-A-BW'), + (0xef7c1f40724dfbf809a377fda2f60fa81d299681, 'Los Angeles Dodgers® Clayton Kershaw 1987 35th Anniversary Wood T87-38 Common', 'MLB-22S1-C-1987A29-M-WD'), + (0xef7c92acbd4b88082496f6d4af778dc27db6b0d6, 'Boston Red Sox® Christian Arroyo 2B Base Motion Rainbow 338 Rare', 'MLB-S221-R-B338-RAI'), + (0xef888d2f97af2feb6073872cdbf2b50127729c02, 'SplashKings', 'SPK'), + (0xef96950ec9c34518057795b5375af932e26cb61e, 'New York Mets® Jose Martinez 1B/OF Base Static White 625 Common', 'MLB-S221-C-B625-WHI'), + (0xef9f109a281d11cf1a7ef7727eeb031a995d837f, 'Los Angeles Dodgers® Justin Turner 3B Base Motion Rainbow 370 Rare', 'MLB-S221-R-B370-RAI'), + (0xefa23500d4d68c1d52aa8843ecba99b5ae0f47ee, 'Super Rare Baseball Card 1 Joe Profile Bazooka Joe 2021 NFT', 'BZK-S-1B'), + (0xefa5367955563bfd5dfcf38c094f5a7fa3d98567, 'RheaApp', 'RhApp'), + (0xefaaacea333b3be4d66910b3f18e3e50dd34fb64, 'Burning Bennie Animation Facsimile Signature Color 6 Super Rare', 'GPK-NFT22-S-AFS6-A-COL'), + (0xefb41d6ecab9e61c72c402bf67cabe8ab06b5933, 'Epic Baseball Card 10 Mort Pitcher Bazooka Joe 2021 NFT', 'BZK-E-10B'), + (0xefbdf308fdb3d6343422aab28454ef36068471d4, 'Texas Rangers® Nick Solak Base Pink 1088 Uncommon', 'MLB-22PRI-U-B107-M-PNK'), + (0xefc5ba8dfc8cbea30b4b079a0aac56a171b74888, 'Uncommon Comic 48 1-48 Bazooka Joe 2021 NFT', 'BZK-U-48C'), + (0xefca110060f5fe369e1621121e268a6c363cb8cd, 'Los Angeles Dodgers® Julio Urias Base Independence Day RWB 299 Rare', 'MLB-22S1-R-B295-M-RWB'), + (0xefce42ebed56457c8999e49f3cd8db5539a5ce79, 'Embr Private Round', 'EPR'), + (0xefce5345c480e6d1b28e5fc9733a9d29d9583fba, 'Philadelphia Phillies® Jean Segura Base Vintage Stock 178 Super Rare', 'MLB-22S1-S-B177-M-VS'), + (0xeff114c824de48ddc65b687c77306572bae317ab, 'Common Comic 81 2-33 Bazooka Joe 2021 NFT', 'BZK-C-81C'), + (0xeff46ed6d89cea2af0c2b1e1269289b47bb05ea7, 'Chicago White Sox® Nick Madrigal Inception Base White 28 Common', 'MLB-INC21-C-IB28-WHT'), + (0xf00a18c845f0b1f4e542375a2ca10e8cff3db8c4, 'Milwaukee Brewers™ Devin Williams Base Vintage Stock 26 Super Rare', 'MLB-22S1-S-B26-M-VS'), + (0xf020441aa43a32f43faee8ec46f6ed4bfd4a53fa, 'New York Mets® Jonathan Villar 2B/SS Base Motion Platinum 479 Epic', 'MLB-S221-E-B479-PLA'), + (0xf030cf03ec35a35ccd7f0d35ac3ba87d80e04af5, 'Angels® Alex Cobb P Base Static Gold 474 Uncommon', 'MLB-S221-U-B474-GOL'), + (0xf03e5e94a0ea67be9cf22b464223a02fd8c396eb, 'Rare Baseball Card 9 Joe Batter Bazooka Joe 2021 NFT', 'BZK-R-9B'), + (0xf046f2fc1fe8481d107b8b7fa61a37dd0402a7a8, 'Houston Astros® Jose Altuve Postseason Base Red 49 Rare', 'MLB-21POST-R-B49-M-RED'), + (0xf054b861f853b35324b6b51a45dde7576c4c94b0, 'Borussia Mönchengladbach BMG Insert Pennant Team Color S2P-06 Uncommon', 'BUND-21TS2-U-IS2P-06-A-TMC'), + (0xf055201a9e23a4bb83c2224e046ad8dbc9ba91c7, 'San Diego Padres™ Joe Musgrove Base White 266 Common', 'MLB-22S1-C-B263-S-WHI'), + (0xf0561ab4ff9bd550ea87e241003e06d3006738f4, 'Rare Comic 85 2-37 Bazooka Joe 2021 NFT', 'BZK-R-85C'), + (0xf059fef8cbc77a368956f34c68a0da9a124aa260, 'Eintracht Frankfurt Daichi Kamada Top Players Gold 116 Super Rare', 'BUND-SC21-S-TP116-GLD'), + (0xf05cfc733413d6f68726a8cbd0f60f27e68a5dec, 'Los Angeles Dodgers® Justin Turner Base White 257 Common', 'MLB-22S1-C-B254-S-WHI'), + (0xf06388a101ff3fc916f0ff122b80cad18984ed5e, 'Guitar Noodle 1/1', 'GNoodle'), + (0xf065c0e89830b020dbaa3b9c05156197e2785a04, 'Boston Red Sox® Rafael Devers American League Base White 8 Uncommon', 'MLB-22ASG-U-B8-M-WHI'), + (0xf06ae25c7ba9c9f4098fe4d4e20785964fc1956b, 'Baltimore Orioles® Pedro Severino Base White 72 Common', 'MLB-22S1-C-B72-S-WHI'), + (0xf06f3079bea9ca10cdbcdd3fce5e29cc6842fe4c, 'Tampa Bay Rays™ Brandon Lowe Base Blue 1057 Common', 'MLB-22PRI-C-B6-M-BLU'), + (0xf071345ccbe46c1399a6753a8dae97f20fb07235, 'St. Louis Cardinals® Base Motion Platinum 478 Epic', 'MLB-S221-E-B478-PLA'), + (0xf07263b69f11dd43355505a15412468c2719fa3d, 'Baltimore Orioles® Rio Ruiz 3B Base Motion Rainbow 369 Rare', 'MLB-S221-R-B369-RAI'), + (0xf0754c741fbf57603bdb1d24be3c71eaf938d13f, 'Chicago White Sox® Codi Heuer Rookie and Future Phenoms Facsimile Signature Blue 15 Super Rare', 'MLB-INC21-S-RC15-BLU'), + (0xf07eec345fcbcbcc4769e05695923e7dfa03c85d, 'Seattle Mariners™ Chris Flexen Base Glitch 311 Uncommon', 'MLB-22S1-U-B307-M-GLI'), + (0xf083f18bede637c408fe8f3a891a3a8e8fdefede, 'Philadelphia Phillies® Kyle Gibson Base White 57 Common', 'MLB-22S1-C-B57-S-WHI'), + (0xf097681658c6c0ea226bfd51274f6f86b3748918, 'Houston Astros® Yuli Gurriel Postseason Base Red 54 Rare', 'MLB-21POST-R-B54-M-RED'), + (0xf0aa0fee82da35980776f1f5b4a473d7cf153b2e, 'Houston Astros® Jeremy Peña World Series Broadcast RWB 1161 Rare', 'MLB-22TNP-R-WSB5-M-RWB'), + (0xf0aa392d5a3b16d5b2baea085d64096fd8fb70e4, 'Tampa Bay Rays™ Mike Brosseau Base Independence Day RWB 223 Rare', 'MLB-22S1-R-B220-M-RWB'), + (0xf0b58f4f559b6b7a53aed69bbb4092f3d7ec1f7a, 'Cleveland Guardians™ Amed Rosario Base Glitch 14 Uncommon', 'MLB-22S1-U-B14-M-GLI'), + (0xf0d35c2a6d6664a1a28b1fb33e80054ddb0f9cb2, 'GTB Items', 'GTBI'), + (0xf0d52815efcd19bfad111a6bb67e62bbb87520ce, 'Nils Petersen SCF Base White S4-64 Common', 'BUND-21TS4-C-BS4-64-S-WHI'), + (0xf0da38212c017edf38cb93201efc41f45a268e00, 'Angels® Shohei Ohtani Facsimile Signature Glitch 1 Epic', 'MLB-22S1-E-FS1-M-GLI'), + (0xf0da8315d30eb8cd461994ccf867141840686a05, 'Robert Lewandowski BAY Motion Aqua Refractor S4-36 Rare', 'BUND-21TS4-R-MS4-36-V-AQU'), + (0xf0e070f0af8457bb528da51ebd02d6dcf8ad880e, 'Seattle Mariners™ Jose Marmolejos OF Base Motion Platinum 516 Epic', 'MLB-S221-E-B516-PLA'), + (0xf0e6f4f71e09329575acfc0fbfb6581e1ad975fa, 'Colorado Rockies™ Ashton Goudeau Rookie and Future Phenoms Facsimile Signature Blue 14 Super Rare', 'MLB-INC21-S-RC14-BLU'), + (0xf0eb7c0dffa042e8b940255cd24080c2b5e95f4f, 'Günter-Höler SCF Animation Duos TSC-14 Epic', 'BUND-21TSC-E-RATSC-14-A-DUO'), + (0xf0ec5b630edbabd70baf4816c07e140a79037f52, 'DCG Key 3', 'DCGKEY3'), + (0xf0ef05949214ea3e22a37c9ae3e50dc45e07e305, 'Kansas City Royals® Edward Olivares Silver Signings Facsimile Signature Silver 18 Super Rare', 'MLB-INC21-S-SS18-SLV'), + (0xf0f1e2b7762800d115b8b60ad84496e7a81bb1c5, 'Tampa Bay Rays™ Mike Brosseau Base Glitch 223 Uncommon', 'MLB-22S1-U-B220-M-GLI'), + (0xf0f3a81f8114ddda2f93267561a881d8b722a5e7, 'FyRise', 'FR'), + (0xf0fce8ee21cef8203ca831ce689e8ae1eb1d2fd6, 'Meiirdo', 'SSMB'), + (0xf1028ad4cef8b928e1d8615a3a83ab6e9f23fb5c, 'Houston Astros® Justin Verlander Championship Series Broadcast RWB 1107 Rare', 'MLB-22TNP-R-CSB2-M-RWB'), + (0xf108879f56fd191bb14e3cdefb2418e0fb0ff73a, 'Super Rare Comic 84 2-36 Bazooka Joe 2021 NFT', 'BZK-S-84C'), + (0xf10f74709840e3640e72b8c8a43318b5cafaf504, 'You Tried Stars', 'YTS'), + (0xf111d1c46861668b22db1503c5863cdec8dec64f, 'Milwaukee Brewers™ Corbin Burnes Regular Season Division Winners RWB 38 Rare', 'MLB-21POST-R-R38-M-RWB'), + (0xf112808ec97ae5d3e7e539ff71fd5bb97622bf41, 'Detroit Tigers® C.J. Cron 1B Base Static White 504 Common', 'MLB-S221-C-B504-WHI'), + (0xf1159695a59024ee14ba9b00aa87d4ceb83725aa, 'Cincinnati Reds® Tejay Antone P Base Static Gold 333 Uncommon', 'MLB-S221-U-B333-GOL'), + (0xf119264dfd54e5c4c3ca70d6071a7888ab173266, 'APE PUNK EXPERIMENT - AVAX', 'ava_APE'), + (0xf11aa348bd9e0ea04c714bb321e03e498431394e, 'National League™ Nick Castellanos Base Pink 1289 Uncommon', 'MLB-22PRI-U-B222-M-PNK'), + (0xf11fd0dbf67aa7e64d4ae1abcb4b50886c1ccb0b, 'Bayer 04 Leverkusen Jonathan Tah Base Players Team Color 21 Static Facsimile Signature Rare', 'BUND-SC21-R-BP21-SFS-TMC'), + (0xf124b4adf6364ef3a274d799acf14ae88100aa70, 'Milwaukee Brewers™ Willy Adames Division Series Bronze 59 Super Rare', 'MLB-21POST-S-D59-M-BRO'), + (0xf12505e454dfda4e0ab837bb5466be8e738550c4, '3D Punks', '77PUNKS'), + (0xf129629c48801db3b660acbd42a7dc96dde47a0d, 'American League™ 2021 RBI Leaders Base Independence Day RWB 202 Rare', 'MLB-22S1-R-B201-M-RWB'), + (0xf130ab545d87c571d153663bc42094e3ab8831ef, 'Los Angeles Dodgers® Trea Turner First Place Skyline 12 Legendary', 'MLB-22ASG-L-FIR12-M-SKY'), + (0xf13263ed26a63e64f42a15eb6312ecba77f9000f, 'Philadelphia Phillies® J.T. Realmuto Base Vintage Stock 180 Super Rare', 'MLB-22S1-S-B179-M-VS'), + (0xf132baa1acf3eec54d6e4df38d6503bd27725e01, 'Looks', 'LOKS'), + (0xf137151c12a8dc5cd3abfbe5a7810d622b6e6c3b, 'Arizona Diamondbacks® Tyler Gilbert Base Independence Day RWB 130 Rare', 'MLB-22S1-R-B129-M-RWB'), + (0xf139404c7a5c042264cfbcd82432d60e0f6983ae, 'Super Rare Comic 25 1-25 Bazooka Joe 2021 NFT', 'BZK-S-25C'), + (0xf145b9231791c020600b2d6bb004240072e5366b, 'Atlanta Braves™ Cristian Pache Rookie and Future Phenoms Facsimile Signature Blue 1 Super Rare', 'MLB-INC21-S-RC1-BLU'), + (0xf148ad728139714f8158e4cdd445bfee27dd439d, 'Angels® Mike Trout 2022 Inception Gold 6 Legendary', 'MLB-22LEG-L-22INC6-M-GLD'), + (0xf155968e295764af3aef378d9102f3952dc66a66, '9dots', 'ND'), + (0xf15d5a2da76ff147384b5f7d08e09f605400dad3, 'Houston Astros® Enoli Paredes P Base Motion Platinum 569 Epic', 'MLB-S221-E-B569-PLA'), + (0xf15eeba90486357246ad3ee630f85cce113e7df8, 'Tampa Bay Rays™ Ji-Man Choi Base White 183 Common', 'MLB-22S1-C-B182-S-WHI'), + (0xf16813387ce48eb7d50c56b6b8a4c4e88c5d536e, 'Minnesota Twins® Luis Arraez Rookie and Future Phenoms Facsimile Signature Blue 50 Super Rare', 'MLB-INC21-S-RC50-BLU'), + (0xf16942d2ec6421f7f621bab9b91bf493cd38d7b1, 'San Francisco Giants® Alex Wood P Base Static White 643 Common', 'MLB-S221-C-B643-WHI'), + (0xf172bed240d76b0b135d2b9e43ed84479bd406f3, 'Panda & Shark', 'PeS'), + (0xf173fccecf3ad1e1ea0ada108d1203e0988d762e, 'Grandmas Gifts', 'GIFT'), + (0xf175a7c38c5effae2b08e87d6734d8b6e6ca211c, 'Detroit Tigers® Michael Fulmer P Base Motion Platinum 373 Epic', 'MLB-S221-E-B373-PLA'), + (0xf17b0283e0317daf57d9dc42c9f3b2a1c0d78a84, 'Milwaukee Brewers™ Omar Narvaez Base Glitch 139 Uncommon', 'MLB-22S1-U-B138-M-GLI'), + (0xf17efe9ef3b656f3f4f9c0388550636bb9ecee08, 'Common Comic 69 2-21 Bazooka Joe 2021 NFT', 'BZK-C-69C'), + (0xf188166145226d29e0f1f06880fff4a7195e632e, 'AvaGoats', 'GOATS'), + (0xf18ecd25a5e1d7ca5cc90298385c753a7b963c1d, 'Boston Red Sox® Michael Chavis 2B/1B Base Motion Rainbow 491 Rare', 'MLB-S221-R-B491-RAI'), + (0xf19638cd0858413d63331e6c71b3ac08297f1c3e, 'Bloody Clam', 'BLCM'), + (0xf1981b41f8340721a94f90d0bea581f4428c3003, 'Milwaukee Brewers™ Eduardo Escobar Base White 207 Common', 'MLB-22S1-C-B206-S-WHI'), + (0xf1a19ed0d59efca621420e7a2d414de7c6eba0c7, 'Atlanta Braves™ Ronald Acuña Jr. Facsimile Signature Glitch 200 Epic', 'MLB-22S1-E-FS11-M-GLI'), + (0xf1a4bf5dc44ef2cd667036fcf83ce215040d456a, 'Cutlery Cabinet', 'CC'), + (0xf1af4b0f2d289a2d300486a144f58aab4fe07e76, 'Houston Astros® Andre Scrubb P Base Motion Rainbow 384 Rare', 'MLB-S221-R-B384-RAI'), + (0xf1b6c055533d14501995b3c21c097204ba07f52a, 'Wataru Endō VFB Awards Red TSC-21 Legendary', 'BUND-21TSC-L-RAWTSC-21-A-RED'), + (0xf1b7fe92d0e72a1957b42f952287f04b758be1fa, 'Boston Red Sox® Kyle Schwarber Base Glitch 216 Uncommon', 'MLB-22S1-U-B213-M-GLI'), + (0xf1bc5b0c4922613faa00a4843d807ba20da63c59, 'Los Angeles Dodgers® Mookie Betts Postseason Base Navy 33 Uncommon', 'MLB-21POST-U-B33-M-NVY'), + (0xf1c189b5daaca94614f19fdd94c48ccbffa4821c, 'Detroit Tigers® Miguel Cabrera Facsimile Signature Red 194 Rare', 'MLB-22S1-R-FS9-S-RED'), + (0xf1c38431a859ad76ba11cf2ffa7ed7759b9970c3, 'Paper Hans Animation Facsimile Signature Color 18 Super Rare', 'GPK-NFT22-S-AFS18-A-COL'), + (0xf1c876538a22c90b3c0d1d6ca8908d28be065911, 'Minnesota Twins® Griffin Jax Base Pink 1309 Uncommon', 'MLB-22PRI-U-B132-M-PNK'), + (0xf1c9b78116ea0faabb61f9209a4c3cbd5af429d5, 'Philadelphia Phillies® Adonis Medina P Base Motion Vintage Stock 510 Super Rare', 'MLB-S221-S-B510-VS'), + (0xf1ceef599a0c80dfc225f6b3ac7560385102f147, 'patientscreening', 'PTSC'), + (0xf1dafe9a2b9b06ed3575aa0baeeb873af8cf5ca8, 'Kansas City Royals® Jackson Kowar Base Pink 1202 Uncommon', 'MLB-22PRI-U-B140-M-PNK'), + (0xf1f59446fb12f2cd4f3c75284af84d864f6e403a, 'Houston Astros® Carlos Correa Postseason Base Navy 50 Uncommon', 'MLB-21POST-U-B50-M-NVY'), + (0xf1f5dbd93770371838ea566d51aa5b1b080bed4e, 'Arizona Diamondbacks® Carson Kelly Base Vintage Stock 177 Super Rare', 'MLB-22S1-S-B176-M-VS'), + (0xf1feceafb6c775028351aede6c845e2d304f518e, 'Jeremy Dudziak SGF Base White S4-46 Common', 'BUND-21TS4-C-BS4-46-S-WHI'), + (0xf207ca75eab583641aef582b1da5e840b51b712e, 'Kansas City Royals® Brady Singer Gold Signings Facsimile Signature Gold 17 Epic', 'MLB-INC21-E-SS17-GLD'), + (0xf2113fea2d1cd79280ca6e43caeb897b69d53ff8, 'FC Augsburg Michael Gregoritsch Base Players Team Color 73 Static Facsimile Signature Rare', 'BUND-SC21-R-BP73-SFS-TMC'), + (0xf2181d9dd1343baa49abe87470ce8f2a0c0db915, 'Houston Astros® Andre Scrubb P Base Static White 384 Common', 'MLB-S221-C-B384-WHI'), + (0xf21ee4a80087c10df67a6b98f275d39dff3a928a, 'RUSTY GİMPS', 'RS'), + (0xf224f998c72b2080a6bc7096f07f23556e0019aa, 'Milwaukee Brewers™ Freddy Peralta Base Blue 1241 Common', 'MLB-22PRI-C-B168-M-BLU'), + (0xf228995cdae51704a6e963ed15d7ad1bc6859044, 'Joško Gvardiol RBL Motion Aqua Refractor S3-22 Rare', 'BUND-21TS3-R-MS3-22-V-AQU'), + (0xf22945b582041950e356f1530ffdd481c29593ac, 'Seattle Mariners™ Tom Murphy Base Glitch 262 Uncommon', 'MLB-22S1-U-B259-M-GLI'), + (0xf22a52f7286659021084b1451362b1e39f8f38c5, 'RB Leipzig Dayot Upamecano Top Players Gold 98 Super Rare', 'BUND-SC21-S-TP98-GLD'), + (0xf23b491c01601193f0a46e4e330a1a84c8b80a01, 'Miami Marlins® Jazz Chisholm Rookie and Future Phenoms Facsimile Signature White 40 Rare', 'MLB-INC21-R-RC40-WHT'), + (0xf23f19a21bae01a4e2db274d8c46d90fd1f9889c, 'Atlanta Braves™ Ronald Acuña Jr. 1987 35th Anniversary Wood T87-64 Common', 'MLB-22S1-C-1987A45-M-WD'), + (0xf24a5056c936417f5f4f6be478d2c7a84c73bd86, 'Haru fanart', 'Haru•^•'), + (0xf24ccbfe9c4f02f63eff3fefee59dff3f225f25b, 'The Acid Garden - Wildflowers!', 'ACDGRDN_WF'), + (0xf24e6dc83db9bc23f1965e15bb3163864cbbc18b, 'Houston Astros® Team Cube 2.0 Team Colors 26 Legendary', 'MLB-22S1-L-TC226-M-TMC'), + (0xf2515b127f295ae5a92fc8d1e7a0cdd928c6f438, 'San Diego Padres™ Yu Darvish P 1986 Anniversary Static Team Colors 86B-7 Super Rare', 'MLB-S221-S-1986A86B-7-TMC'), + (0xf2549764a481a5775807b7626ac17bfd28eab3e1, 'New York Mets® Pete Alonso Stars of MLB Chrome Night SMLBC-29 Legendary', 'MLB-22S1-L-SMLBC28-M-NIT'), + (0xf2579ed16d7db81a3e79dd4ac5d960a333c50998, 'MoonBuddies', 'MOOBS'), + (0xf25d5ad2ccc11ade2e97fc9bea79ac40610a7149, 'RheaPoly', 'RhePo'), + (0xf266f61816522ddeb8e5104dc0a53fe98ebf1b6f, 'San Francisco Giants® Kevin Gausman 1987 35th Anniversary Chrome T87C-52 Super Rare', 'MLB-22S1-S-1987AC39-M-CHR'), + (0xf26bdc5bff54b248f17dc047bb30f08cad48af5a, 'Seattle Mariners™ Chris Flexen Base Independence Day RWB 311 Rare', 'MLB-22S1-R-B307-M-RWB'), + (0xf26d7016f41acfea5dcb52b115fdaa9f8fbca2bf, 'Uncommon Baseball Card 4 Jane Catcher Bazooka Joe 2021 NFT', 'BZK-U-4B'), + (0xf2836ef7cceebcb6757a28a3f588a7c31d08ffc2, 'VaporNodes', 'VNODE'), + (0xf286c8a69b1b8dc9f31e1c1b38c3481d0deda515, 'Apes Land', 'Apesland'), + (0xf286d267a0d4e7e3822a5412fa4c868911f13ba1, 'New York Yankees® Aaron Judge Base Pink 1019 Uncommon', 'MLB-22PRI-U-B63-M-PNK'), + (0xf28d11994bfc0d55c04da3928aaae1fc2c0ec872, 'San Francisco Giants® Luis Alexander Basabe OF Base Static White 548 Common', 'MLB-S221-C-B548-WHI'), + (0xf291d3a74e466ff5a17d47f0df9403c66f0311ba, 'Boston Red Sox® Nathan Eovaldi Wild Card Contenders Blue 6 Common', 'MLB-21POST-C-W6-M-BLU'), + (0xf2939b5dd33abb0bafddebdd3814d808f15f1e9b, 'Colorado Rockies™ Dom Nunez Base Glitch 193 Uncommon', 'MLB-22S1-U-B192-M-GLI'), + (0xf2a21bc85aa9ac63a956041eba86841005989fc3, 'FC Bayern Munich Leon Goretzka Base Players Gold 3 Rare', 'BUND-SC21-R-BP3-GLD'), + (0xf2adce900007459de8ffac2a75bc7aaa879319ff, 'New York Yankees® Gerrit Cole Inception Base Blue 68 Uncommon', 'MLB-INC21-U-IB68-BLU'), + (0xf2afaa26ef498a1f31ad48bb45a3b1b33ba6183b, 'New York Mets® Carlos Carrasco P Base Static White 655 Common', 'MLB-S221-C-B655-WHI'), + (0xf2b00ba94f6ae389f82ec4d2fe49d1c5cab4a38d, 'Minnesota Twins® Joe Ryan Base Pink 1312 Uncommon', 'MLB-22PRI-U-B81-M-PNK'), + (0xf2b6f965298eae704644c2beaca25e63a42593ba, 'Epic Animated Comic 5 Rainy Day Bazooka Joe 2021 NFT', 'BZK-E-5A'), + (0xf2ba043cdad37129c162facddad57a7d9fe7b1d1, 'Godzilla Base Collectible Magenta 10 Common', 'GDZ-RAT21-C-B10-S-MAG'), + (0xf2bd7385412f9c8949ad821a663d5bda442932d5, 'TSG Hoffenheim Diadie Samassékou Base Players Gold 26 Rare', 'BUND-SC21-R-BP26-GLD'), + (0xf2c1f72c81892e8712659b4a9bfc2806e18ab04c, 'Los Angeles Dodgers® Cody Bellinger Generation NOW Team Colors GN-17 Epic', 'MLB-22S1-E-GN17-M-TMC'), + (0xf2c467098cadaf5b39691d3f78280a0f94a5881f, 'FC Schalke 04 Amine Harit Top Players Gold 124 Super Rare', 'BUND-SC21-S-TP124-GLD'), + (0xf2c638f5f6031a20382f63c5bef50006f3381f91, 'BunniesDAO', 'BDN'), + (0xf2c7e28c6bbe46b63684f3460681361a3ca48fc3, 'BB Whales', 'BBS'), + (0xf2c9ec4af91c8f9b8e2dd3dd748bedaf53015b6b, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Gigan Expert', 'GDZ-GVG22-PACK-R5'), + (0xf2d3208f2944a240415f81feb11d9d421f93abb1, 'Avalanche Guardians', 'AVAXG'), + (0xf2daf9ad644a528b553ede4447151fdb5e37b376, 'San Francisco Giants® Kevin Gausman Postseason Base Red 30 Rare', 'MLB-21POST-R-B30-M-RED'), + (0xf2ec634171a785b4c01b25dcb1c77e66e2d60193, 'Washington Nationals® Ryan Zimmerman 1B Base Motion Vintage Stock 461 Super Rare', 'MLB-S221-S-B461-VS'), + (0xf2ecf32e81a2c01ac4073a3149c72d7ddfd132bf, 'San Francisco Giants® Tony Watson P Base Motion Rainbow 589 Rare', 'MLB-S221-R-B589-RAI'), + (0xf2ee3c7541e79bfeed6d1df3fe779818fbaa8eae, 'The Pegasorium 22''', 'PGSRM'), + (0xf2f5626640814e7c6e31c5327f578831f29262ce, 'Bored Adam Yuck Club Animation Color 1 Rare', 'GPK-NFT22-R-A1-A-COL'), + (0xf2fb4025949e90902b51774b044cb93f1d72d739, 'Liquidity Book', 'LIquidityBook'), + (0xf2ff9b585a2141bb56eb8e2a49c272cb408412e3, 'Omni Penguins', 'OMNIPENGUINS'), + (0xf300735ae4ac004f8156150c154e264bf7bcd623, 'AVAWEABOOS', 'AVAWEABOOS'), + (0xf3094ca333de1b6305862609f9f05b9be8f50bf7, 'Philadelphia Phillies® Bryce Harper NL MVP Reward Gold Super Rare', 'MLB-21REWARD-S-NLMVP1-M-GOLD'), + (0xf30d169af85159af03c783e46f3027bfb51e5ddb, 'Los Angeles Dodgers® Austin Barnes C Base Static Gold 367 Uncommon', 'MLB-S221-U-B367-GOL'), + (0xf311911247bbdaf37b17b6f29a8a872ecb8ec536, 'Autumn party', 'CCCP'), + (0xf3137af521f71f257f5cdd16948ad3424638bbe3, 'Tampa Bay Rays™ Mike Zunino C Base Motion Platinum 430 Epic', 'MLB-S221-E-B430-PLA'), + (0xf3218083d3ed5da4fdbca80119c6fd89c60fe855, 'Christopher Trimmel FCU Motion Aqua Refractor S4-47 Rare', 'BUND-21TS4-R-MS4-47-V-AQU'), + (0xf33808dc2b708d99b8db1df5074c8cfe679239b7, 'Cincinnati Reds® Base Vintage Stock 96 Super Rare', 'MLB-22S1-S-B95-M-VS'), + (0xf34474f276d0327e2a31d22bb449d50a43ed78c9, 'RUG TICKET', 'REGT'), + (0xf34b8f5fa076c1ef9208c306ca0785547779e5bf, 'Baltimore Orioles® 2021 Topps Series 2 Baseball Set Completion Reward Team Colors 3 Legendary', 'MLB-21S2SC-L-21S2SCR3-M-TC'), + (0xf35610a6c529ef806c7eda1bc19f5d7c076b43ed, 'Godzilla Mountainscape Traditional Art Color 3 Rare', 'GDZ-RAT21-R-TA3-S-COL'), + (0xf359521bdeacdc4d21d014de5f127c2a1c3b1ffb, 'LUNA-Tic Animation Facsimile Signature Color 13 Super Rare', 'GPK-NFT22-S-AFS13-A-COL'), + (0xf36128dee390a3209d453c3020a91087216009dd, 'BITOPIA', 'BIT'), + (0xf362ebe5dee1814c39f2285fa028508a61213e78, 'King Ghidorah Mountainscape Traditional Art Black and White 10 Rare', 'GDZ-RAT21-R-TA10-A-BW'), + (0xf3665c9f2f9d8c9308a2562745c69fbb6b2fe7b3, 'Riceman', 'RICE'), + (0xf3687d655b1e2ec4a380897327947451c7b1c9bf, 'Borussia Monchengladbach Breel Embolo Base Players Team Color 16 Static Facsimile Signature Rare', 'BUND-SC21-R-BP16-SFS-TMC'), + (0xf3722f4efd4bce298dc79727c19dfa210b4dfed8, 'Patrik Schick B04 Animation Gold Refractor S1-05 Legendary', 'BUND-21TS1-L-AS1-05-V-GOL'), + (0xf37b8adfd0b3d26952bfd43c9bb17f189450d3b6, 'Seattle Mariners™ Kyle Lewis Base Independence Day RWB 206 Rare', 'MLB-22S1-R-B205-M-RWB'), + (0xf37f8873449c28de61816b1c576e32283e0ae293, 'First Avax Lock', 'KEY'), + (0xf38a98075f23daf1f2ff0e5346e4fb25bee4f02d, 'Stevan Jovetić BSC Base Red S3-30 Uncommon', 'BUND-21TS3-U-BS3-30-S-RED'), + (0xf3911915a10378892bfb981ce7a28f4beed6b231, 'Houston Astros® Carlos Correa Base Blue 1042 Common', 'MLB-22PRI-C-B74-M-BLU'), + (0xf3943eb875ba046b07a5a138cb13a9e5ced61e03, 'Ai Bulls', 'AiBulls'), + (0xf3970bfdd256dcb01d3c57b9b6ab5bc1ba2466e0, 'Miloš Pantović BOC Animation Gold Refractor S3-21 Legendary', 'BUND-21TS3-L-AS3-21-V-GOL'), + (0xf397faa036a45f1fbecb73d6e66202640cd23e7c, 'Rare Comic 79 2-31 Bazooka Joe 2021 NFT', 'BZK-R-79C'), + (0xf39bf84dedbeb22a9e6269e03ffa17df229944f4, 'Cincinnati Reds® Base Static White 587 Common', 'MLB-S221-C-B587-WHI'), + (0xf39f82992cdf45369bcf8fc1a1da2fed1d267664, 'VfL Wolfsburg Josip Brekalo Base Players Gold 31 Rare', 'BUND-SC21-R-BP31-GLD'), + (0xf3aa3b8c829db198c7b5fd637297a315b9c2e5f0, 'Cincinnati Reds® Eugenio Suarez 3B Base Motion Platinum 627 Epic', 'MLB-S221-E-B627-PLA'), + (0xf3ae5348858368f309c92da970fd1fc32e0453bc, 'Oakland Athletics™ Matt Olson Inception Base Red 71 Rare', 'MLB-INC21-R-IB71-RED'), + (0xf3b3d13fef2a924a5967ab9c882f2c91ada566c6, 'Milwaukee Brewers™ Christian Yelich Popular Demand Facsimile Signature Teal 3513 Legendary', 'MLB-22PRI-L-PDFS4-M-TEA'), + (0xf3b5903c277ef3d0c9679bae3a2bf05d2cba3441, 'BOARD ANIMAL - routine', 'BAR'), + (0xf3b87f59460786bd667fc84b79d5c09a5b743c8d, 'Tampa Bay Rays™ Ji-Man Choi 1B Base Motion Platinum 511 Epic', 'MLB-S221-E-B511-PLA'), + (0xf3be7a598e443104eb06d8aa0ed7b779f712d472, 'AvaxPASS', 'PASS'), + (0xf3c3c879b9f8d9d18bfd616bc8717eea7827125a, 'Houston Astros® Martin Maldonado Base White 224 Common', 'MLB-22S1-C-B221-S-WHI'), + (0xf3d2f324c4dff13a899a74f28690ed83d3b13d5b, 'Dundee F.C. DUD Club Crest Card Gold SPCCC-11 Epic', 'SPFL-21SPSS-E-CCCSPCCC-11-A-GOL'), + (0xf3d868c509c4e53df40559861ed8c9d0d89b9479, 'Seattle Mariners™ Kyle Lewis Inception Base White 83 Common', 'MLB-INC21-C-IB83-WHT'), + (0xf3ec626e5f2eee139734af39ed683983eb8eaa3e, 'Boston Red Sox® Kyle Schwarber Short Print White 216 Rare', 'MLB-22S1-R-SP44-M-WHI'), + (0xf3f081ad992ad711094a9f0eaf046b13ad439bea, 'Arizona Diamondbacks® Ketel Marte Base White 275 Common', 'MLB-22S1-C-B272-S-WHI'), + (0xf3f0907a1a0d501fac2dcdb8b008ecf0703c2281, 'Washington Nationals® Juan Soto Inception Base Blue 96 Uncommon', 'MLB-INC21-U-IB96-BLU'), + (0xf3fa2e3259985a9a1d6c14311991ba71111b7ad9, 'San Diego Padres™ Tommy Pham OF Base Motion Vintage Stock 399 Super Rare', 'MLB-S221-S-B399-VS'), + (0xf3fd34e498ce3b87a49de1d34f3b45a228e597c1, 'FC Augsburg Ruben Vargas Young Stars Team Color 173 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS173-SFS-TMC'), + (0xf40c2feacdb7589f11fd1c64d8347cb01b0d0bd5, 'Los Angeles Dodgers® Justin Turner 3B All-Star Motion Purple 10 Epic', 'MLB-S221-E-AS10-PUR'), + (0xf4169d2e9c49abfd5724fcb1b63d74df86f649bf, 'Philadelphia Phillies® City of Walk-Off Love Base Glitch 321 Uncommon', 'MLB-22S1-U-B317-M-GLI'), + (0xf424fa59791830148e46f79f93fa6dac7b3e7bc1, 'Los Angeles Dodgers® Mookie Betts Top 5 Cinema 3 Legendary', 'MLB-22ASG-L-T53-M-CIN'), + (0xf426bd83ddc047150f37f16b00942a05dd453aea, 'Boston Red Sox® Base Static Gold 401 Uncommon', 'MLB-S221-U-B401-GOL'), + (0xf42f9e949e7d68c73f0b0b5e1153c277045e8cba, 'Minnesota Twins® Taylor Rogers Base Independence Day RWB 32 Rare', 'MLB-22S1-R-B32-M-RWB'), + (0xf431a47d6d4e5889b5a9a25320d93b7ae3c874d7, 'Atlanta Braves™ Ozzie Albies 2B Base Static White 500 Common', 'MLB-S221-C-B500-WHI'), + (0xf434b2dd4fc5491a80b4987b470b48c83d557cbb, '2022 Topps Pristine Baseball NFT Collection Challenge Rewards 6-Pack', 'MLB-22PRI-REWARD-PACK'), + (0xf448211472b7ebbfe15482297aa7f96f31e98b7e, 'Milwaukee Brewers™ Jake Cousins Base Blue 1207 Common', 'MLB-22PRI-C-B141-M-BLU'), + (0xf44a99064ed3a2089812881104561c55571ef137, 'Houston Astros® Kyle Tucker Postseason Base White 53 Common', 'MLB-21POST-C-B53-S-WHI'), + (0xf44abd7c8a15990ef2924300c6670bcea5dadf5a, 'San Francisco Giants® Kris Bryant Base Blue 1006 Common', 'MLB-22PRI-C-B14-M-BLU'), + (0xf44be1ced0a8c7b07861d967989fe8377f19b1ad, 'Planetary Polaroids', 'PLAPOL'), + (0xf450126ec147fdd0d4882b6df6494f811890e299, 'ACID FACE', 'ACIDFACE'), + (0xf459ed03436194d4534abf1a76e93681cb059a75, 'Houston Astros® Enoli Paredes Rookie and Future Phenoms Facsimile Signature Red 29 Epic', 'MLB-INC21-E-RC29-RED'), + (0xf45d7f132e30fe02a5a9a10d8b14e6a1e09603d2, 'Smoel GUME', 'SMG'), + (0xf469b5e811cb034b54d05e4036767c8fca696e43, 'Chicago White Sox® 2021 Topps MLB Inception Set Completion Reward Team Colors 9 Epic', 'MLB-21INCSC-E-21INCSCR9-M-TC'), + (0xf46d7f2d4f32d3d60131e89efd2bd1ec81f07c26, 'Houston Astros® Alex Bregman 1987 35th Anniversary Chrome T87C-47 Super Rare', 'MLB-22S1-S-1987AC35-M-CHR'), + (0xf47253463ab917826752d7815c59f1b59c957f59, 'Rare Comic 12 1-12 Bazooka Joe 2021 NFT', 'BZK-R-12C'), + (0xf47c9cc136303a6f72c640d1a19c16f25b4e1a2b, 'Boston Red Sox® Matt Barnes Base Independence Day RWB 303 Rare', 'MLB-22S1-R-B299-M-RWB'), + (0xf48568d8b2084aefc7cd5b6df647abfae20af859, 'Avax Triangles', 'TRI'), + (0xf4872bec4818516c03fedfc72aa999dae5f8faf7, 'Dead Baby Owls', 'DEADBABYOWLS'), + (0xf4914496383f2f156b2090e9048fdd7a2c8eb1f2, 'Cincinnati Reds® Nick Castellanos OF Base Motion Vintage Stock 365 Super Rare', 'MLB-S221-S-B365-VS'), + (0xf496d4c2e4b523fd290a39f4a1f0f1e685f966da, 'Orderinbox', 'OIX'), + (0xf49acf4fec49091850583078395009a082aff09c, 'Tampa Bay Rays™ Randy Arozarena OF Facsimile Signature Static Red 600 Epic', 'MLB-S221-E-FS600-RED'), + (0xf49ca6362c2af1341351f3ffb296bc089d6ddbb6, 'Oakland Athletics™ Matt Chapman Base Blue 1020 Common', 'MLB-22PRI-C-B94-M-BLU'), + (0xf4b918197c2b040f4854c1171f4540ba70107fca, 'Houston Astros® Cristian Javier Inception Base Red 35 Rare', 'MLB-INC21-R-IB35-RED'), + (0xf4bab7ff96027d9e5b1be79887c38fa554d04613, 'Verses From The Heart', 'VFTH'), + (0xf4bfd09af50091345798bcc58839d29922b34f2c, 'New York Yankees® Jordan Montgomery P Base Motion Vintage Stock 630 Super Rare', 'MLB-S221-S-B630-VS'), + (0xf4c4c571cb9d0890d9c3f996f7ae02790c532118, 'Galix Land', 'LAND'), + (0xf4cb49f69fb5de3a0f515d6a4b0280db06277aa8, 'Chubby Bunnies', 'CBNNY'), + (0xf4cbc762847ad1519836877fac8c17f724d79cba, 'Cleveland Indians® Austin Hedges C Base Motion Vintage Stock 572 Super Rare', 'MLB-S221-S-B572-VS'), + (0xf4d21e53f5ea6dc95d0adcfaf1b70bb2357cb516, 'San Francisco Giants® Mauricio Dubon Base Independence Day RWB 246 Rare', 'MLB-22S1-R-B243-M-RWB'), + (0xf4d694ab349f15502d8d1efdc9a7d1afe6a37ed7, 'King Ghidorah Strikes Traditional Art Black and White 6 Uncommon', 'GDZ-RAT21-U-TA6-S-BW'), + (0xf4da7107567e9b589945e237a006aadc1e115560, 'Milwaukee Brewers™ Eduardo Escobar Base Blue 1181 Common', 'MLB-22PRI-C-B21-M-BLU'), + (0xf4e5aceb316637d447a0bb7dac56dc4d22d4de31, 'Atlanta Braves™ Jorge Soler Base Glitch 208 Uncommon', 'MLB-22S1-U-B207-M-GLI'), + (0xf4fd01ef4302a985aac2e5f18f091ed8a960e3d4, 'UninvitedElephant', 'UE'), + (0xf4fefcd5fe4d11b03623c086cb5a223484e1cf55, 'New York Yankees® Giancarlo Stanton DH/OF Base Static White 642 Common', 'MLB-S221-C-B642-WHI'), + (0xf50618ee17f445283d153d7a82632b3d36f26a76, 'ARTribute', 'ATT'), + (0xf5185488af84887704d83213166db228d52140da, 'Detroit Tigers® Miguel Cabrera Facsimile Signature Blue 194 Uncommon', 'MLB-22S1-U-FS9-S-BLU'), + (0xf51ff36fe220cc36f023dc30203b5f1d4dd950c4, 'ULTRA RARE', 'URR'), + (0xf5285e8e807fcd45e2df5caf280b1ae06adca3c3, 'Super Rare Comic 28 1-28 Bazooka Joe 2021 NFT', 'BZK-S-28C'), + (0xf529fa25bc46aca0f84dba618b5afc5855cd6ba2, 'woolies Honouraries', 'WOOL'), + (0xf52be47a075560f96aa081f891eb717f7b85ec00, 'New York Yankees® Kyle Higashioka Base White 292 Common', 'MLB-22S1-C-B289-S-WHI'), + (0xf5328386129fa5813be0a8575a02032fc232f7ae, 'Colorado Rockies™ Base Independence Day RWB 222 Rare', 'MLB-22S1-R-B219-M-RWB'), + (0xf534f36e4a81aa58ae8c7088263493c2ce33a9b6, 'Papilio Palatia Mint Pass', 'PPMP'), + (0xf53638d2386d55a1239f711bb212a7a89de64ef1, 'Detroit Tigers® Willi Castro SS Base Static White 339 Common', 'MLB-S221-C-B339-WHI'), + (0xf5380543488c17695721bc555d147d8c4c1f8883, 'Minnesota Twins® Josh Donaldson Base Pink 1077 Uncommon', 'MLB-22PRI-U-B43-M-PNK'), + (0xf53aae2e9145731d01a71a8d8d5c12cece0001ee, 'Minnesota Twins® Brent Rooker OF Base Motion Platinum 480 Epic', 'MLB-S221-E-B480-PLA'), + (0xf53b26c29f2719b24032d1de90627ad64189d57b, 'Milwaukee Brewers™ Lorenzo Cain Base Blue 1076 Common', 'MLB-22PRI-C-B48-M-BLU'), + (0xf544b0a16d8be2d74140897999733e894169b343, 'Digital Art Gallery', 'DigART'), + (0xf550da2a1ff87411952a051c2fc867530ce5c587, 'Kansas City Royals® Salvador Perez Base Vintage Stock 219 Super Rare', 'MLB-22S1-S-B216-M-VS'), + (0xf551ee2d08d1c88cb1b3bbf84497e1e7d8fa4116, 'FeRARI Frank Base Color 11 Common', 'GPK-NFT22-C-B11-S-COL'), + (0xf56c6aab6b32109a751c2df908cc1d046a4aaa42, 'VfB Stuttgart Sasa Kalajdzic Top Players Gold 143 Super Rare', 'BUND-SC21-S-TP143-GLD'), + (0xf56eef2443313697b47d2b4a87d97c6c0a798c36, 'White Noise', 'WNoise'), + (0xf56f38b5ee918aed0783c92760e323406345314b, 'New York Mets® Pete Alonso Rookie and Future Phenoms Facsimile Signature Blue 55 Super Rare', 'MLB-INC21-S-RC55-BLU'), + (0xf56f8919d1e9846f5d08fb8deaa6719ea113479a, 'Jak Alnwick SMI Base Aqua SP-21 Uncommon', 'SPFL-21SPSS-U-BSP-21-A-AQU'), + (0xf572254672e8074cc7c911690b5b26a0c517e5a9, 'Rare Comic 19 1-19 Bazooka Joe 2021 NFT', 'BZK-R-19C'), + (0xf574eebc232e6e34e154377f3a7dbfee8fe0f45c, 'Pittsburgh Pirates® Ke''Bryan Hayes 1987 35th Anniversary Wood T87-27 Common', 'MLB-22S1-C-1987A22-M-WD'), + (0xf57b4b3e68eb1ae38700a53e52c2834c4bdfeb3a, 'Void Vibrant Banner (Airdrop)', 'VVB'), + (0xf584c72dbf0687a0c62bbd707de7ba69cc712e78, 'Washington Nationals® Luis Garcia 2B 1986 Anniversary Static Team Colors 86B-40 Super Rare', 'MLB-S221-S-1986A86B-40-TMC'), + (0xf58a1feb55cecda9dc3877da1372527a299c5dc0, 'Oakland Athletics™ Matt Olson Inception Base White 71 Common', 'MLB-INC21-C-IB71-WHT'), + (0xf597a470c36df4dd406ae6b9825f116d16c8cc30, 'CyberHouses', 'CHouse'), + (0xf59fe0ac34c6ebcdc0e3b578a513bd08ff99d026, 'Chicago White Sox® Garrett Crochet P Base Motion Platinum 362 Epic', 'MLB-S221-E-B362-PLA'), + (0xf5a24b3d5857f219fbbfb9203ed0f716f24c74a6, 'catch them all', 'CPK'), + (0xf5a9b13318641bc9504c705317d762d7358ee5f2, 'Houston Astros® Martin Maldonado Base Glitch 224 Uncommon', 'MLB-22S1-U-B221-M-GLI'), + (0xf5ab94fe333edfe197baae3f8517cfdc50311564, 'nMOTION', 'GTCH'), + (0xf5adcba6504f7c62f8a3055b2ee06ce6acae93e2, 'Jamal Musiala BAY Base Red S3-32 Uncommon', 'BUND-21TS3-U-BS3-32-S-RED'), + (0xf5b3165ba62bd72bff5329896e134c92470dcfde, 'BabyMeerkats', 'BAMRK'), + (0xf5b34081adc1d90aa174474e46d650900402680b, 'Washington Nationals® Stephen Strasburg P Base Motion Vintage Stock 400 Super Rare', 'MLB-S221-S-B400-VS'), + (0xf5c4f34b275ef264a9317aecba9a1675b860fc49, 'Benjamin Siegrist DDU Base White SP-18 Common', 'SPFL-21SPSS-C-BSP-18-A-WHI'), + (0xf5ca8d699694dd5f2a98374560f86403f7dc9f0b, 'Atlanta Braves™ Austin Riley Topps NOW White 1020 Rare', 'MLB-21NOW-R-TN1020-WHI'), + (0xf5cb2b99907d1188a6e129a7e3e2c93128b050fe, 'Washington Nationals® Gerardo Parra Base Glitch 220 Uncommon', 'MLB-22S1-U-B217-M-GLI'), + (0xf5d3fae57f8e29f7e30a3b1b8f0fdcf4aa2602ae, 'Philadelphia Phillies® Bryce Harper Short Print White 250 Rare', 'MLB-22S1-R-SP51-M-WHI'), + (0xf5d571b9ddce6e818d675673d40ae33987c25ba2, 'Atlanta Braves™ Eddie Rosario Base Independence Day RWB 153 Rare', 'MLB-22S1-R-B152-M-RWB'), + (0xf5d5aa0bec8bbab2ef40590a02ff22afba61ed05, 'American League™ J.D. Martinez Base Blue 1277 Common', 'MLB-22PRI-C-B217-M-BLU'), + (0xf5e723f0fd54f8c75f0da8a8f9d68bf67b20b850, 'Brewery', 'BREWERY'), + (0xf5eb248cbe3f6d98eb82f1154fdaba26ff61a34c, 'Angels® Kurt Suzuki C Base Motion Vintage Stock 571 Super Rare', 'MLB-S221-S-B571-VS'), + (0xf5ef3d307205d191070c0f4c2704498b6e836eda, 'FC Augsburg Reece Oxford Base Players Gold 74 Rare', 'BUND-SC21-R-BP74-GLD'), + (0xf5f0fc0f099e510f07e7c3ae973c03fd9ce32236, 'Atlanta Braves™ Austin Riley Championship Series Silver 19 Epic', 'MLB-21POST-E-CS19-M-SIL'), + (0xf5f544b238bb75b8c815fc9ebd4252b0a492adc7, 'Washington Nationals® Base White 218 Common', 'MLB-22S1-C-B215-S-WHI'), + (0xf601b7a98b0540cffa85f9e74680286b7e31592c, 'Houston Astros® Yordan Alvarez Inception Base Red 38 Rare', 'MLB-INC21-R-IB38-RED'), + (0xf601e89d2ac877a3d27da2f668e42350bafa23c2, 'St. Louis Cardinals® Kwang-Hyun Kim Base Vintage Stock 151 Super Rare', 'MLB-22S1-S-B150-M-VS'), + (0xf609479b379c3d1bcad91a3f3d181e749ccf5f36, 'Cleveland Guardians™ Shane Bieber Base Pink 1039 Uncommon', 'MLB-22PRI-U-B127-M-PNK'), + (0xf60d6d3bd7fc55a7521142e1f9647056113ca586, 'WAGMI FC', 'WAGMI'), + (0xf614ee2d93f14116b956d19944326316a10feb7c, 'Boston Red Sox® Rafael Devers Postseason Base White 65 Common', 'MLB-21POST-C-B65-S-WHI'), + (0xf616b75dc5520c07b1e8d6d935a62843374c6071, 'Texas Rangers® Mike Foltynewicz Base Vintage Stock 293 Super Rare', 'MLB-22S1-S-B290-M-VS'), + (0xf61acbe2ec826f60687e1ba830d396709519acb5, '2022 Topps NOW Postseason Collection Pack: Championship Series and World Series', 'MLB-22NOW-POST-CS-WS-PACK'), + (0xf61f461c157cd74b82b2589fa10920d93fe71b83, 'Bazooki', 'BZK'), + (0xf6249366cef921f7756141dfbd2c0cfedf07acc6, 'journey', 'JRNY'), + (0xf62b5c9805a33ebe15a6fbc3d83ce50df8fd55c7, 'Jordan Siebatcheu FCU Color Splash White TK-68 Uncommon', 'BUND-22TK-U-CSTK-68-S-WHI'), + (0xf639c1ec6681b0ff3d46eab070d514f97e31f127, 'Rare Comic 89 2-41 Bazooka Joe 2021 NFT', 'BZK-R-89C'), + (0xf63c44f1b169731e1d1b27d00535c5034cb205be, 'Los Angeles Dodgers® Walker Buehler Postseason Base Red 39 Rare', 'MLB-21POST-R-B39-M-RED'), + (0xf642c131a0503c5c5cec64b55d1eb55d582d182b, 'Toronto Blue Jays® Alek Manoah Base White 248 Common', 'MLB-22S1-C-B245-S-WHI'), + (0xf64331282d5e858c9fa5c226ab1b860e8fc5ef38, 'Oakland Athletics™ A.J. Puk P Base Motion Platinum 636 Epic', 'MLB-S221-E-B636-PLA'), + (0xf6606ed5ff024ecbed108b7409150cb30fb5dbd4, 'VfB Stuttgart Pascal Stenzel Base Players Team Color 89 Static Facsimile Signature Rare', 'BUND-SC21-R-BP89-SFS-TMC'), + (0xf66565201f25c83720db7e36118c89ad0cd2eb3c, 'Valkyrie', 'Valkyrie'), + (0xf665eb56dd0689aee8c167c216dfa91986e3a7a0, 'St. Louis Cardinals® Tyler O''Neill OF Base Static White 477 Common', 'MLB-S221-C-B477-WHI'), + (0xf66db6f15440c951213ce2cf4ed0f139ea9db0ca, 'SCALES', 'SCLs'), + (0xf670603dfa45ce18ad68d7836186fbb0455f4ea1, 'Milwaukee Brewers™ Omar Narvaez Base Vintage Stock 139 Super Rare', 'MLB-22S1-S-B138-M-VS'), + (0xf67611aad0b9f2550e7c3b31358ecfcb77e725ee, 'BabyOwls', 'BBYO'), + (0xf6891b3690864f9f046e8c7a575535c0e47731d3, 'VfB Stuttgart Philipp Förster Base Players Team Color 90 Uncommon', 'BUND-SC21-U-BP90-TMC'), + (0xf68dcbf9e6232534db278774a7394c4be8a3f0a1, 'Seattle Mariners™ Rafael Montero P Base Motion Rainbow 637 Rare', 'MLB-S221-R-B637-RAI'), + (0xf68edd74e0be4beaac79da1bfd8f626f6d157ecb, 'Milwaukee Brewers™ Josh Hader Regular Season Division Winners RWB 40 Rare', 'MLB-21POST-R-R40-M-RWB'), + (0xf68fe10f02ece15fa8aabb202df3a72f450cfcc3, 'Milwaukee Brewers™ Corbin Burnes Base Pink 1046 Uncommon', 'MLB-22PRI-U-B31-M-PNK'), + (0xf6924836519e16a8af6ee7bf6c6c10ed51239534, 'Philadelphia Phillies® Rafael Marchan C Base Motion Vintage Stock 622 Super Rare', 'MLB-S221-S-B622-VS'), + (0xf69473818d8e54c5b35bf3f48023c2f64b9db0f0, 'New York Mets® Team Cube 2.0 Team Colors 3 Legendary', 'MLB-22S1-L-TC23-M-TMC'), + (0xf6a070618e890917972594e5580ffc66cabaff10, 'Junglee Gals', 'GALS'), + (0xf6a213158f4c9b2a1c0c7853834011fd9e8497c6, 'PrizeBond', 'PB'), + (0xf6a60f8fc1be6490d03adc74d7db059c2d8d1eb2, 'PandaX', 'Panda'), + (0xf6a8b30541825f867fe1bb8541f66c42c41a757b, 'Angels® Ty Buttrey P Base Static White 363 Common', 'MLB-S221-C-B363-WHI'), + (0xf6b8717289680d98cfdd9fb5e505045cd49cffd1, 'tbirdz', 'TBIRDZ'), + (0xf6b970ff4a431afa64985af173dbbfd95af9c1ff, 'Tampa Bay Rays™ Brandon Lowe 2B/OF Base Motion Platinum 334 Epic', 'MLB-S221-E-B334-PLA'), + (0xf6b9bdaa26f93633b9d730036d1247a9e0b51e6c, 'Jude Bellingham DOR Animation Gold Refractor S2-17 Legendary', 'BUND-21TS2-L-AS2-17-V-GOL'), + (0xf6cb7ff257b048b108576451dda42d9892635be8, 'My Pixel World', 'MPW'), + (0xf6cfa0ab634ca1427851494618e074274ab6e2ea, 'The Transformers', 'Transformers'), + (0xf6d0ba8a6ab857bae954d100fe18dca4c999cffa, 'Miami Marlins® Jesus Sanchez Silver Signings Facsimile Signature Silver 23 Super Rare', 'MLB-INC21-S-SS23-SLV'), + (0xf6d2ded5b32531c97c6d0ec4508efbf766c2e65c, 'St. Louis Cardinals® Lars Nootbaar Base White 58 Common', 'MLB-22S1-C-B58-S-WHI'), + (0xf6d6ee0af98711b980e566e139e287ada01a5cd9, 'Kansas City Royals® Bobby Witt Jr. Facsimile Signature Gold 3088 Super Rare', 'MLB-22PRI-S-FS5-M-GLD'), + (0xf6de780f6b57e28cb2836863c6f258e7b8e7b64b, 'Tampa Bay Rays™ Wander Franco Fresh Faces Facsimile Signature Reward White 3416 Legendary', 'MLB-22PRIASG-L-FFR8-M-WHI'), + (0xf6e4107d9f5ad3b946d5c43851017d71647bf5e4, 'Djibril Sow SGE Base White S3-34 Common', 'BUND-21TS3-C-BS3-34-S-WHI'), + (0xf6e4596da87d5663f38daea261b5637951a40d59, 'Omnimon Party', 'OP'), + (0xf6e5b92ab0510cdb0490147a0229a8ff2b65d528, 'FC Bayern Munich Leroy Sané Base Players White 4 Common', 'BUND-SC21-C-BP4-WHT'), + (0xf6e5e906e08c370186033e1b48fbf4e58b045eb4, 'Los Angeles Dodgers® Max Scherzer Division Series Bronze 46 Super Rare', 'MLB-21POST-S-D46-M-BRO'), + (0xf6e80e875b169edfae14a6125e02b4644adcb186, 'SV Werder Bremen Josh Sargent Young Stars Gold 175 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS175-AFS-GLD'), + (0xf6e86f6713d68d707b553417a91418352d1b7f83, 'Florian Wirtz B04 Motion Aqua Refractor S2-11 Rare', 'BUND-21TS2-R-MS2-11-V-AQU'), + (0xf6eaa04dab7bf3d4374499003f7d5dd3c2b7ff15, 'Houston Astros® Liftoff Base Glitch 110 Uncommon', 'MLB-22S1-U-B109-M-GLI'), + (0xf6f12cdeddf90f00e446bc402523e1f9da15a545, 'Holograph Collection', 'HLGRH'), + (0xf6f9400346a45c93269b5886469ca13a7299c9e8, 'Houston Astros® Framber Valdez Base Vintage Stock 261 Super Rare', 'MLB-22S1-S-B258-M-VS'), + (0xf70634e0b89fee01629aea8bba8d77e5265d2b58, 'Cleveland Indians® Jose Ramirez 3B 1986 Anniversary Facsimile Signature Motion Chrome 86TC-69 Legendary', 'MLB-S221-L-1986AFS86TC-69-CHR'), + (0xf70cd18875d000a50155c6055c60756bfd01f13c, 'American League™ Xander Bogaerts Base Pink 1265 Uncommon', 'MLB-22PRI-U-B224-M-PNK'), + (0xf70f471978c915aced7e16912b2b565fb5a4b5a7, 'Eintracht Frankfurt Evan Ndicka Young Stars Team Color 161 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS161-SFS-TMC'), + (0xf714f7dc5f5fe5a14fbf1a40d5de6fbb3de485f6, 'Houston Astros® Martin Maldonado Base Vintage Stock 224 Super Rare', 'MLB-22S1-S-B221-M-VS'), + (0xf71c99d3e0a352c90d97bfaca538efda3d7e4dae, 'New York Yankees® Luis Severino P Base Motion Platinum 577 Epic', 'MLB-S221-E-B577-PLA'), + (0xf72c0c743e3add0806dd212b3837fbf04b2b2aa9, 'Davie Selke BSC Animation Black Refractor S4-60 Epic', 'BUND-21TS4-E-AS4-60-V-BLA'), + (0xf72fd6b15ab9f6bf291b5394e5e2d6f523beda04, 'Milwaukee Brewers™ Aaron Ashby Base White 78 Common', 'MLB-22S1-C-B78-S-WHI'), + (0xf73455182247bbfd6756ac446efcee02820a9d8d, 'Uncommon Comic 78 2-30 Bazooka Joe 2021 NFT', 'BZK-U-78C'), + (0xf748a58427aa07a54508439318f1047adb471a81, 'Baltimore Orioles® Hold Me Back, Bro! Base Motion Rainbow 578 Rare', 'MLB-S221-R-B578-RAI'), + (0xf74f4b2a512d3e0c0116c2509343271519a22294, 'Epic Baseball Card 5 Herman Pitcher Bazooka Joe 2021 NFT', 'BZK-E-5B'), + (0xf754ddfed23222b3be04cdece824135d4ea65217, 'Someone around there', 'SAT'), + (0xf75b915dacbb7243333467280982ff0434bb8c16, 'Fox Kingdom', 'FK'), + (0xf76620e9413af300362fd7623ac92478c36bb183, 'SimSon Fa', 'SimSon'), + (0xf766224ac885d2246bb0221d41f8c1b43ee782cd, 'Houston Astros® Jose Altuve Inception Base Black 36 Legendary', 'MLB-INC21-L-IB36-BLK'), + (0xf769257b5c4560985ccce604d92ecc30fc1c9b8e, 'Cleveland Indians® Zach Plesac P Facsimile Signature Static Red 403 Epic', 'MLB-S221-E-FS403-RED'), + (0xf76b3b30d1fa8044acc39f3d0ee93ae93f9235aa, 'Baltimore Orioles® Keegan Akin P Base Static Gold 562 Uncommon', 'MLB-S221-U-B562-GOL'), + (0xf773e3ab36fb89049c32feff603cdb08e81fa6cd, 'Tampa Bay Rays™ Yonny Chirinos P Base Motion Vintage Stock 592 Super Rare', 'MLB-S221-S-B592-VS'), + (0xf77c0d47707037847d2c10ca6df2e8e615079a7e, 'St. Louis Cardinals® Nolan Arenado Base White 87 Common', 'MLB-22S1-C-B87-S-WHI'), + (0xf78a4c90ae31ee312ea14555eecbee0b9c55b092, 'Los Angeles Dodgers® Justin Turner Base Vintage Stock 257 Super Rare', 'MLB-22S1-S-B254-M-VS'), + (0xf78ac4fec782b8675e343f88d8105b2b54fe829e, 'Road To HELL !!!!', 'RTH'), + (0xf792234dd168101d1a0796fad093771b6013d38d, 'Cincinnati Reds® Base Motion Vintage Stock 587 Super Rare', 'MLB-S221-S-B587-VS'), + (0xf7938960f00def167a8ac043bb516ef1df8a9564, 'TSG Hoffenheim Chris Richards Young Stars Gold 156 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS156-AFS-GLD'), + (0xf7a25998ba2ceeacc476899979667d1405345dc2, 'Toronto Blue Jays® Tom Hatch Rookie and Future Phenoms Facsimile Signature Red 79 Epic', 'MLB-INC21-E-RC79-RED'), + (0xf7ad6771eb6d3a11cd23e10215f2894a642f72d4, 'ROTINHELL GENESIS BOX #1', 'G-BOX 1'), + (0xf7b9beb6a90aea5a4804286a60f2ca5d0fa47e6b, '@Sportsavaxtrated Collection', 'NPC017'), + (0xf7ba324fe9e5ab89691a88cd57d7f8603789f85e, 'Rare Comic 24 1-24 Bazooka Joe 2021 NFT', 'BZK-R-24C'), + (0xf7be8f88c2819c8bc6c988c6f4f9a29491a3420f, 'Chicago Cubs® Brailyn Marquez P Base Motion Platinum 404 Epic', 'MLB-S221-E-B404-PLA'), + (0xf7c77e524b3ddabc8b5acd11345ea283fb38209e, 'San Diego Padres™ Joe Musgrove P Base Motion Platinum 411 Epic', 'MLB-S221-E-B411-PLA'), + (0xf7d1684ec6390c7add2e56bef3ed4dfe3f76eafe, 'Daichi Kamada SGE Motion Rainbow Refractor S4-42 Super Rare', 'BUND-21TS4-S-MS4-42-V-RAI'), + (0xf7d1f03e79cdaee15680bf0efab0edc8ad06ad13, 'New York Yankees® Aaron Judge Stars of MLB Chrome Night SMLBC-14 Legendary', 'MLB-22S1-L-SMLBC14-M-NIT'), + (0xf7d31fb1783d245140a5425613d27868377781a0, 'Los Angeles Dodgers® Andre Jackson Base White 258 Common', 'MLB-22S1-C-B255-S-WHI'), + (0xf7d8f079a47849631ce1b5f766a247ff0bd9f85b, 'St. Louis Cardinals® Paul Goldschmidt Base Blue 1086 Common', 'MLB-22PRI-C-B17-M-BLU'), + (0xf7e8e58a68ae8d6867d74fe4dec1162d78cdd07d, 'King Ghidorah Mountainscape Traditional Art Color 10 Epic', 'GDZ-RAT21-E-TA10-A-COL'), + (0xf7ec2f13e241f9ba8a2274cefe7ec42e709b8d42, 'Tampa Bay Rays™ Brandon Lowe 2B/OF Base Motion Rainbow 334 Rare', 'MLB-S221-R-B334-RAI'), + (0xf7eccd9465f73a71156b0a5c71997fffd6eca93b, 'San Diego Padres™ Team Cube 2.0 Team Colors 14 Legendary', 'MLB-22S1-L-TC214-M-TMC'), + (0xf7ece699fb0a76d2dcb9b0f7ee795afb5f61dd7a, 'Tampa Bay Rays™ Yandy Diaz 3B/1B Base Static Gold 425 Uncommon', 'MLB-S221-U-B425-GOL'), + (0xf7ee72055251c237e28209ff4853f729f9c2eab7, 'Washington Nationals® Alex Avila C Base Static White 446 Common', 'MLB-S221-C-B446-WHI'), + (0xf7ef12bf193547bc55dfe58722952ed2c3fb2cde, 'New York Mets® Marcus Stroman P 70th Anniversary Facsimile Signature Motion Platinum 549 Legendary', 'MLB-S221-L-70AFS549-PLA'), + (0xf7f443c1355a834a52812d3a398a29ca8936fa05, 'Tampa Bay Rays™ Wander Franco Regular Season Division Winners RWB 4 Rare', 'MLB-21POST-R-R4-M-RWB'), + (0xf7f5429a31f806b4af6d9511646f00196fbdb5c8, 'Tampa Bay Rays™ Base Independence Day RWB 274 Rare', 'MLB-22S1-R-B271-M-RWB'), + (0xf7fa398153fc703facfbb6284f20a2131a8c6e36, 'Stay LowKey', 'STYLK'), + (0xf7faa28f8934d3dcaf571ef3dd0a41bd5604915c, 'Framed Wizards', 'FRAMEDWIZARD'), + (0xf81b3e9e05bfc4c605ce01ca8be12fa3446a2dfc, 'Boston Red Sox® Jarren Duran Base Blue 1213 Common', 'MLB-22PRI-C-B134-M-BLU'), + (0xf81be5af78fb9b96c5de0950768dbf247bfafef4, 'St. Louis Cardinals® Dylan Carlson Base Pink 1185 Uncommon', 'MLB-22PRI-U-B59-M-PNK'), + (0xf81c806f1775fe5bbf0cf30e94038547f5ddd53c, 'FC Koln Timo Horn Top Saves Team Color TS-14 Epic', 'BUND-SC21-E-TSTS-14-TMC'), + (0xf82219529b48c7173ae1c843b32a221d327636a0, 'PARIS ART', 'ARTP'), + (0xf8267002a32e1ebf36289df6ca1a43f04ca24aea, 'Pittsburgh Pirates® Jacob Stallings C Base Static Gold 505 Uncommon', 'MLB-S221-U-B505-GOL'), + (0xf8268b09be38d9c255505aae1e82e5247139be92, 'Love & Life', 'L & L'), + (0xf8277644bcdff34f3aa2914e2511a005b4a41435, 'Florian Wirtz B04 Ascendent Blue TK-40 Super Rare', 'BUND-22TK-S-ASCTK-40-S-BLU'), + (0xf827a8c44256d845ccd7700c33af9d2cda3410a8, 'Philadelphia Phillies® Ian Kennedy Base Independence Day RWB 102 Rare', 'MLB-22S1-R-B101-M-RWB'), + (0xf828ef84cfdea73cd3afd22524f84f6a2a096dc7, 'San Diego Padres™ Tommy Pham OF Base Static White 399 Common', 'MLB-S221-C-B399-WHI'), + (0xf82bbee0c5566465e7f1bb0a070ab0a40eff8ab5, 'Detroit Tigers® Matt Manning Base Independence Day RWB 31 Rare', 'MLB-22S1-R-B31-M-RWB'), + (0xf832239623f0aadf2a986326503a4119fa57a0bc, 'Tampa Bay Rays™ Austin Meadows Rookie and Future Phenoms Facsimile Signature White 72 Rare', 'MLB-INC21-R-RC72-WHT'), + (0xf836dbbde8e264a387bde30fb8edf15891ced80d, 'Minnesota Twins® Byron Buxton Popular Demand Facsimile Signature Teal 3501 Legendary', 'MLB-22PRI-L-PDFS3-M-TEA'), + (0xf8407b379f0ed46bd88e67de0b7f9a157589a6ee, 'Chicago Cubs® Craig Kimbrel P Base Static White 579 Common', 'MLB-S221-C-B579-WHI'), + (0xf841c4f0f0a847ad190acdbaabd585976024c0e3, 'Los Angeles Dodgers® Walker Buehler Championship Series Silver 31 Epic', 'MLB-21POST-E-CS31-M-SIL'), + (0xf841d808511e5887946c6dc466c9a8a49aafbc72, 'Avaware Allen Collectible', 'AAC'), + (0xf842d55c570ed4599e4d632f6d6c9c308a445c09, 'Cameron Devlin HEA Base White SP-14 Common', 'SPFL-21SPSS-C-BSP-14-A-WHI'), + (0xf842e55168f6580fec5efcbd9a3b76ae9b0ba500, 'Angels® Mike Trout Stars of MLB Chrome Night SMLBC-1 Legendary', 'MLB-22S1-L-SMLBC1-M-NIT'), + (0xf846f622c33519cb4e128a742b53873459beb13e, 'Toronto Blue Jays® Danny Jansen C Base Motion Platinum 597 Epic', 'MLB-S221-E-B597-PLA'), + (0xf848093ad3fca4df319d4ed1620480e1bbca9dbb, 'AiCapybaras', 'CBP'), + (0xf84851f3c3ac94e7428201f353c12471c87a83c8, 'Meta Cans', 'CANS'), + (0xf848df8100d965f801d9af24a70c5530e04f684c, 'Rare Comic 71 2-23 Bazooka Joe 2021 NFT', 'BZK-R-71C'), + (0xf85627e11643c1be754304a25bb74ddfdd8408bf, 'Yeahteez', 'Yeahteez'), + (0xf85a65a0b6321ea8da803b93969942002ad80b4e, 'Moussa Diaby B04 Motion Aqua Refractor S4-56 Rare', 'BUND-21TS4-R-MS4-56-V-AQU'), + (0xf86249ba79c3fdefbaba345ff59e7fd7f07cb1b9, 'Angels® Mike Trout Base White 27 Common', 'MLB-22S1-C-B27-S-WHI'), + (0xf878c5c0120f2bc30b75d1d9a547d54af9711283, 'Los Angeles Dodgers® Mookie Betts National League Base White 14 Uncommon', 'MLB-22ASG-U-B14-M-WHI'), + (0xf883ce002c2563ee504c3a17615ba17226c72f68, 'Uncommon Comic 95 2-47 Bazooka Joe 2021 NFT', 'BZK-U-95C'), + (0xf88cd84d14daf81ec1e97be70d79efb2490c3ee6, 'Super Rare Comic 70 2-22 Bazooka Joe 2021 NFT', 'BZK-S-70C'), + (0xf8a8e771aff5ea7c2fabd3953812368491e3ae99, 'NestedNFT', 'NESTED'), + (0xf8aece9c4ce25487c321810a65981838234fb953, 'Konstantinos Mavropanos VFB Base White S2-15 Common', 'BUND-21TS2-C-BS2-15-S-WHI'), + (0xf8b401151953b9eb0800a4b5db355ed6c1ae0331, 'Boston Red Sox® Base Static White 401 Common', 'MLB-S221-C-B401-WHI'), + (0xf8b6973c9ae2a741bde597da9d153701ca48eac8, 'Godzilla vs. Gigan Cross Collection Challenge Reward Pack - Epic Collector', 'GDZ-GVG22-PACK-R4'), + (0xf8b84d6eeb808478ae503e644f67fbc9c72736f0, 'Godzilla Storm Traditional Art Black and White 8 Rare', 'GDZ-RAT21-R-TA8-A-BW'), + (0xf8bb9f0b041a538ffda5e46fa7514a3b9aa5f537, 'Super Rare Comic 47 1-47 Bazooka Joe 2021 NFT', 'BZK-S-47C'), + (0xf8c8a3157069b21b2f19d0bbed06b3f973af3bf6, 'AvaxVoxelCars', 'AVC'), + (0xf8caf45bf6223910d0840c5173cbc1ea99bfe8b4, 'Georginio Rutter TSG Ascendent Facsimile Signature Blue TK-43 Legendary', 'BUND-22TK-L-ASCTK-43-S-BLU'), + (0xf8cb7b98642eea7a4d25536f5e196b40e9bf4a5a, 'Boston Red Sox® Michael Chavis 2B/1B Base Motion Platinum 491 Epic', 'MLB-S221-E-B491-PLA'), + (0xf8cf0c85ca09430709a51881affd817a4202af98, 'Arizona Diamondbacks® Josh Reddick Base Independence Day RWB 318 Rare', 'MLB-22S1-R-B314-M-RWB'), + (0xf8d1b34651f2c9230beb9b83b2260529769fdea4, 'DeltaPrimeBorrowAccess', 'DP-BA'), + (0xf8d54d607b6b646913b9b6bb548bfa0d9c0df372, 'NAME', 'SYMBOL'), + (0xf8d76c0cd8e7ea35513fdb85f8da580b934fa0c0, 'Philadelphia Phillies® J.T. Realmuto C Base Motion Platinum 611 Epic', 'MLB-S221-E-B611-PLA'), + (0xf8ddc88e9331d71a5df1b3597b049a0cec82df43, '@panzerkampfwagen Collection', 'NPC013'), + (0xf8e3899ef6163b0a459a6d7b9bec67142fc11ea5, 'New York Mets® Michael Conforto OF Base Motion Platinum 517 Epic', 'MLB-S221-E-B517-PLA'), + (0xf8e88f07bae177e274ee50081b00f05fc77d44aa, 'New York Yankees® Rougned Odor Base Vintage Stock 5 Super Rare', 'MLB-22S1-S-B5-M-VS'), + (0xf8eb72b223b2b8fbe55c4d9c7cc223cba507c481, 'Philadelphia Phillies® Kyle Gibson Base Glitch 57 Uncommon', 'MLB-22S1-U-B57-M-GLI'), + (0xf8ec41e47e6e61ef1c8a71763ce7878cec3400ad, 'St. Louis Cardinals® Paul Goldschmidt National League Base Golden 3 Super Rare', 'MLB-22ASG-S-B3-M-GLD'), + (0xf8f9903bb23f93ddc962a0da6ecf40d85d270cf3, 'National League™ German Marquez Base Blue 1282 Common', 'MLB-22PRI-C-B195-M-BLU'), + (0xf8fdb3b5c91e6a4c786c3696c22e0280a7de5025, 'New York Yankees® Clint Frazier OF Base Static White 429 Common', 'MLB-S221-C-B429-WHI'), + (0xf9028e6dc36b3a49b1064030b6bbe63af1048cac, 'BubbleCros', 'Cros'), + (0xf906fb554ff5fef57427aa49d60022bc14bd806b, 'ANUBIS ARMY', 'ANUBIS'), + (0xf90706c3c6b7d86f78e9fdb091a2e29838e2581e, 'Chicago White Sox® Andrew Vaughn Base Pink 1197 Uncommon', 'MLB-22PRI-U-B92-M-PNK'), + (0xf90b22e8be51bbeea891131e4bc1fd640f915505, 'National League™ Brandon Crawford Base Blue 1292 Common', 'MLB-22PRI-C-B197-M-BLU'), + (0xf90f082e63ac0275ae516ef434a0629c7a48d9c4, 'Atlanta Braves™ Ronald Acuña Jr. Base Pink 1003 Uncommon', 'MLB-22PRI-U-B93-M-PNK'), + (0xf912ad00cd1227e2bd476e6317013b9c0d9cfe03, 'Branimir Hrgota SGF Motion Rainbow Refractor S4-50 Super Rare', 'BUND-21TS4-S-MS4-50-V-RAI'), + (0xf923f09dd485fb79e4a62e81072da7889f529bf5, 'Houston Astros® Chas McCormick Short Print White 135 Rare', 'MLB-22S1-R-SP28-M-WHI'), + (0xf9263e7a0e044c652e3152976a5aa34eff5f0966, 'AVA Lamp Base Color 8 Common', 'GPK-NFT22-C-B8-S-COL'), + (0xf92ec691225bddbdb83a2c65d1d6bf3c04fd0574, 'Tampa Bay Rays™ Josh Fleming Postseason Base White 7 Common', 'MLB-21POST-C-B7-S-WHI'), + (0xf93517fa43a7740c9be5c0f397cabc0049cc3b39, 'NUNU', 'NUNU'), + (0xf936e3cd034c52ba8b18ea75037d2d369249f92a, 'Totally Normal Nate Nothing Ever Happens To Him While Moving', 'TNNNEHTHWM'), + (0xf93e512da3d310124681423d4c87262b58aec60a, 'Livingston F.C. LFC Club Crest Card Gold SPCCC-10 Epic', 'SPFL-21SPSS-E-CCCSPCCC-10-A-GOL'), + (0xf942aeb737d18991329ea6fe5ad8154c7cd31a5e, 'Tampa Bay Rays™ Wander Franco 2022 Inception Gold 14 Legendary', 'MLB-22LEG-L-22INC14-M-GLD'), + (0xf94aec47decd15655755b4feb0d7399b7fee3145, 'SpacePassNFT', 'PASS'), + (0xf94ce03563bcf0874b62958272f63742f5d2c3f6, 'Philadelphia Phillies® Aaron Nola P Facsimile Signature Static Red 537 Epic', 'MLB-S221-E-FS537-RED'), + (0xf9515a5dda2555d4987887e33c2db7f64e305813, 'San Francisco Giants® Brandon Crawford Postseason Base White 26 Common', 'MLB-21POST-C-B26-S-WHI'), + (0xf955410882db8cea6c9cd0cc4e362d666ec370f9, 'Oakland Athletics™ Matt Chapman Facsimile Signature Gold 3031 Super Rare', 'MLB-22PRI-S-FS28-M-GLD'), + (0xf95b272aadcb102992e101b619b23f40def9cae5, 'Bored Adam Yuck Club Base Color 1 Common', 'GPK-NFT22-C-B1-S-COL'), + (0xf95b6d0b767865ee1901e74789d4b844d6b49d18, 'Darkness Punks', 'DPS'), + (0xf95c44650c094f955657ba31b181627da0c397b5, 'Where are you looking at?', 'AYLM'), + (0xf95ef3af1e41c743b2d8e8817b83acccf7b0d171, 'Florian Wirtz B04 Animation Black Refractor S2-11 Epic', 'BUND-21TS2-E-AS2-11-V-BLA'), + (0xf9649d2659b8c546389fc755038e14ea0042346d, 'Airdrop Angel Facsimile Signature Color 14 Uncommon', 'GPK-NFT22-U-FS14-S-COL'), + (0xf964e18d2febf83356205ff0de47e72559362239, 'PsyberX', 'PSX'), + (0xf969e3cd56905ea4f6992db0f18fc04593e73924, 'Oakland Athletics™ Yan Gomes Base Vintage Stock 294 Super Rare', 'MLB-22S1-S-B291-M-VS'), + (0xf97fd767ba65a301adb2d370183b1c3154417f55, 'Chicago White Sox® Lance Lynn Regular Season Division Winners RWB 15 Rare', 'MLB-21POST-R-R15-M-RWB'), + (0xf981004ff9af5d9e485bf8228bc01d24588de5ea, 'Holograph Collection Brave 1', 'HLGRH'), + (0xf9845fadcc7d7eaad78f1b09bcf9009f6f8ceada, 'Minnesota Twins® Andrelton Simmons SS Base Static White 380 Common', 'MLB-S221-C-B380-WHI'), + (0xf98f7bc8b500c267288e1a2b293776daf3af1f81, 'Smolr Doomers', 'SMOLRDOOM'), + (0xf998f08d00dba8521279a78d7f63540c5aa3aeb1, 'Houston Astros® Enoli Paredes Rookie and Future Phenoms Facsimile Signature White 29 Rare', 'MLB-INC21-R-RC29-WHT'), + (0xf999bb3b6288f9df77d80f587e6ec39544c4658a, 'Zomboiz ava', 'Za'), + (0xf99bd163339b32ea1959c7fde2718577b93269aa, 'Detroit Tigers® Daniel Norris P Base Motion Platinum 558 Epic', 'MLB-S221-E-B558-PLA'), + (0xf99bec336575eeae0e6985b864821139de3ccb36, 'Kaiju Thunderstorm Event Exclusive Comic Cover Yellow 1 Epic', 'GDZ-RAT21-E-CCE1-A-YEL'), + (0xf99ca4afaead7bd3feb405e29dc1135e9c668ef5, 'Texas Rangers® Isiah Kiner-Falefa Base Independence Day RWB 93 Rare', 'MLB-22S1-R-B92-M-RWB'), + (0xf9a12a4759500df05983fd3ebd7f8a8f262a2967, 'Wolf of DeFi Winners', 'DP-WODW'), + (0xf9a36debd47ffd55a8d77170fa3a1b194d46c7c5, 'Angels® Mike Trout American League Base Golden 14 Super Rare', 'MLB-22ASG-S-B14-M-GLD'), + (0xf9a53279988dcf600c510af0bbf9e8dca7c14d57, 'Washington Nationals® Juan Soto Rookie and Future Phenoms Facsimile Signature White 81 Rare', 'MLB-INC21-R-RC81-WHT'), + (0xf9bd016faf05963efaca9627592b9df669840221, 'Suat Serdar BSC Base White S4-68 Common', 'BUND-21TS4-C-BS4-68-S-WHI'), + (0xf9befe072aebdbf57028bfbdeed2a969431c86db, 'Oakland Athletics™ Jordan Weems P Base Static Gold 570 Uncommon', 'MLB-S221-U-B570-GOL'), + (0xf9c605f7eab4dfe775a5340e274deb36194976cc, 'Sleepy Giraffe', 'GIRNFT'), + (0xf9c6e8f51bced44919e7309ae0dbb3aa274a29f2, 'Naughty Boys', 'NTBY'), + (0xf9c960e457f5d5f3c661c10091ca18b56e9e4944, 'Rat Traps', 'TRAP'), + (0xf9cbec818dae1f125ff8575fd749ed971aa7707c, 'Texas Rangers® Jeff Mathis C Base Motion Vintage Stock 348 Super Rare', 'MLB-S221-S-B348-VS'), + (0xf9d06409a83e41b1a8f3f18b580c96419424acf2, 'Los Angeles Dodgers® Julio Urias Base Pink 1245 Uncommon', 'MLB-22PRI-U-B178-M-PNK'), + (0xf9d5e2e61715adaeb1a48a20599a1ad94a66da23, 'Texas Rangers® Khris Davis DH Base Static Gold 584 Uncommon', 'MLB-S221-U-B584-GOL'), + (0xf9dea0aa6e00d11a2aaae27911955d6558692634, 'Kodama Spirits', 'KODAMA'), + (0xf9e58d8a192399d94a973b352c94cb68c1855821, 'New York Yankees® Jordan Montgomery P Base Static White 630 Common', 'MLB-S221-C-B630-WHI'), + (0xf9ec9582fc5519d7b3f91e1502edc153b975a051, 'Washington Nationals® Juan Soto 2022 Definitive Gold 33 Legendary', 'MLB-22LEG-L-22DEF33-M-GLD'), + (0xfa05a902ce34a319f2fbd186e9f85423b1c40929, 'Philipp Lienhart SCF Top Players Facsimile Signature Team Color TK-20 Epic', 'BUND-22TK-E-TPTK-20-S-TMC'), + (0xfa0dbfc6e80feca8dd7dc51a46806f5b55a63730, 'San Francisco Giants® Kevin Gausman Postseason Base White 30 Common', 'MLB-21POST-C-B30-S-WHI'), + (0xfa1380bae845fe8f7bbc2bdc480ec676169e639b, 'Toronto Blue Jays® Bo Bichette First Place Skyline 5 Legendary', 'MLB-22ASG-L-FIR5-M-SKY'), + (0xfa146a512dd93448725f16d70c1f830d50260f73, 'Common Comic 95 2-47 Bazooka Joe 2021 NFT', 'BZK-C-95C'), + (0xfa19c1d104f4aefb8d5564f02b3adca1b515da58, 'Moo Aave AVAX MAI Vault', 'moaAVXMVT'), + (0xfa1cd7783246853134573634c3171c24d13d9331, 'VfB Stuttgart Marc-Oliver Kempf Base Players White 87 Common', 'BUND-SC21-C-BP87-WHT'), + (0xfa1e0f64a23db675680659de707d4f4d3d5e42b3, '2022 Topps MLB All-Star Game NFT Event Exclusive Pack', 'MLB-22ASG-EVENT-PACK'), + (0xfa273bbc7265ab8ed595a10fb751a5bbc6a0ebff, 'ApeIn + Pangolin', 'APEPAN'), + (0xfa365cdc258e07b2e2ec9824d06ef823e344f579, 'KamiWorld', 'KAMI'), + (0xfa3732d5c172085fbb63d44c5c64c42f7f6b0de0, 'Chippers', 'CHIPPERS'), + (0xfa443b5c70f0a3a7412ef878b53ddd91758bcbc1, 'Beauty Pageant Postr', 'POSTR'), + (0xfa489f2886520c017d935a3977075a65287a0aba, 'Oakland Athletics™ Matt Chapman Popular Demand Facsimile Signature Slab Teal 3515 Legendary', 'MLB-22PRI-L-PDFS11-M-TEA'), + (0xfa5b27a9f9ef44ace8eaf4982091ac9a6cf9f3bc, 'San Francisco Giants® Joey Bart Inception Base Blue 85 Uncommon', 'MLB-INC21-U-IB85-BLU'), + (0xfa698b84cd04af6e6a3fd5676ec7768fbf7a7698, 'P🥒CKLE RICK', 'PCKLRCK'), + (0xfa69ab17fa76d07b820c8b5f76ca6a3b83027928, 'Vincenzo Grifo SCF Animation Gold Refractor S1-07 Legendary', 'BUND-21TS1-L-AS1-07-V-GOL'), + (0xfa6a9b689574523c795c7272baaf3612d1de2291, 'Pittsburgh Pirates® Ke''Bryan Hayes 3B 1986 Anniversary Static Team Colors 86B-34 Super Rare', 'MLB-S221-S-1986A86B-34-TMC'), + (0xfa6d9a0f441be75e46ffe53890ecf146a43c4a09, 'Oakland Athletics™ Starling Marte Base Vintage Stock 305 Super Rare', 'MLB-22S1-S-B301-M-VS'), + (0xfa7670ebd5e06bf7086820d2356906ef4f67229d, 'Atlanta Braves™ William Contreras Silver Signings Facsimile Signature Silver 2 Super Rare', 'MLB-INC21-S-SS2-SLV'), + (0xfa7cdc86b5d052b06759ad90e1fdb3f0970b91de, 'Avalanchers', 'AV'), + (0xfa82b903bd691df57eec1c748e80a41e34ee99e5, 'Army of Frogs', 'AoFs'), + (0xfa83eff85ede0945ae76ff94bb75cb87e7fedf75, 'Super Rare Comic 23 1-23 Bazooka Joe 2021 NFT', 'BZK-S-23C'), + (0xfa9299f421f0af712304b4dd41758a0a4735ea7e, 'Philadelphia Phillies® Bryce Harper 1987 35th Anniversary Chrome T87C-71 Super Rare', 'MLB-22S1-S-1987AC53-M-CHR'), + (0xfa962785991651ff2a3dcc01491c1363cea504e7, 'Boston Red Sox® J.D. Martinez Short Print White 182 Rare', 'MLB-22S1-R-SP34-M-WHI'), + (0xfa964bee00fcaf7d6f0b8c5bfc4ad6735e0a3e56, 'Smart Finance - Limited NFTs', 'SFLMTD'), + (0xfa97795a450e383f5a14a3310e339fda525b1fb1, 'Texas Rangers® Curtis Terry Base Independence Day RWB 97 Rare', 'MLB-22S1-R-B96-M-RWB'), + (0xfa9acbc61394eacd9a53438bfb64852b31f354f0, 'Sebastian Griesbeck SGF Animation Gold Refractor S4-59 Legendary', 'BUND-21TS4-L-AS4-59-V-GOL'), + (0xfa9ca5b85473bd1e077de96819b2e9d15dd192aa, 'St. Louis Cardinals® Nolan Arenado Popular Demand Facsimile Signature Teal 3523 Legendary', 'MLB-22PRI-L-PDFS12-M-TEA'), + (0xfaa4da81118a64268693d4cf97fb9765923daece, 'Chicago White Sox® Base Glitch 255 Uncommon', 'MLB-22S1-U-B252-M-GLI'), + (0xfaa82cf6cc4c0dbdd90ad6c2e6f4cc67dc4d4ad0, 'Arizona Diamondbacks® Andy Young 2B Base Motion Platinum 499 Epic', 'MLB-S221-E-B499-PLA'), + (0xfaabfd031263488fa4ea2984c833711ec85ce48f, 'Ouroboros World Cup', 'OUROBOROS-WORLD-CUP'), + (0xfab4f008a2e2c831faf378226783c0f155e3cf48, 'Philadelphia Phillies® Base Static White 428 Common', 'MLB-S221-C-B428-WHI'), + (0xfabcdfa57d1fe2d4ef707f50ce469b07f3ea3f01, 'VfL Wolfsburg Xaver Schlager Base Players Team Color 33 Uncommon', 'BUND-SC21-U-BP33-TMC'), + (0xfac444ecf6ffd3c7b29f05828c0f78c68f1b20f7, 'Colorado Rockies™ Ryan McMahon Base Glitch 132 Uncommon', 'MLB-22S1-U-B131-M-GLI'), + (0xfac7fe5e11fcbc837c2e115626324caaf3a56dd9, 'OmniForce', 'OF'), + (0xfacf1e56e0f1b9b028ad1b0393a236f6161fd3c5, 'Janni Serra DSC Animation Black Refractor S4-48 Epic', 'BUND-21TS4-E-AS4-48-V-BLA'), + (0xfad999eaf905ea7b73fed3a5e1b26b5f043c818e, 'Kansas City Royals® Salvador Perez 1987 35th Anniversary Chrome T87C-8 Super Rare', 'MLB-22S1-S-1987AC6-M-CHR'), + (0xfae1a9071f1dd11daa2803dfbef2bd0d1ebf0651, 'Cincinnati Reds® Jesse Winker Pure Power Facsimile Signature Reward White 3327 Legendary', 'MLB-22PRICR-L-PPR10-M-WHI'), + (0xfae468501fdce9469a4010896806aeec1d700f24, 'Kansas City Royals® Brady Singer Rookie and Future Phenoms Facsimile Signature Blue 31 Super Rare', 'MLB-INC21-S-RC31-BLU'), + (0xfae73069f415ed7056c3f1b32ec8a45487b26bf9, 'Milwaukee Brewers™ Willy Adames Postseason Base Navy 19 Uncommon', 'MLB-21POST-U-B19-M-NVY'), + (0xfaebb843556a549d9aa17d0f006e068a99439538, 'Chicago Cubs® Kyle Hendricks Inception Base Black 17 Legendary', 'MLB-INC21-L-IB17-BLK'), + (0xfaefbb000a880953b0a372ec296597a3a9ba76df, 'Alter Ego Hunters', 'AEH'), + (0xfb006018cff221b980c76b9b22701fb8cfc1ba4e, 'Atlanta Braves™ Ronald Acuña Jr. HRD Reward Red 8 Rare', 'MLB-22ASGR-R-R8-M-RED'), + (0xfb0b96c67abe1811679fc0f7e2ccf7bfcba8c8df, 'Destiny Calls', 'BlizDC'), + (0xfb0d9f55850e7b3e1f91054c3814af50c94eea19, 'FSV Mainz 05 Edimilson Fernandes Base Players Gold 61 Rare', 'BUND-SC21-R-BP61-GLD'), + (0xfb15c964b29a63b965b8c7a6142c139a639bd1b3, '3D Punks', '3DPUNKS'), + (0xfb166427ded0f02b2f319ca1768e984b1b6ce2b2, 'bCASH Butterflies', 'bCASHBUT'), + (0xfb1889110fdc5b1ccb304be08d678bad6aaaced2, 'The Dreamcatcher', 'TheDreamcatcher'), + (0xfb1a389a562e6a8c99e8ee1d77e6d5aa85f3a092, 'Atlanta Braves™ Ozzie Albies First Place Skyline 10 Legendary', 'MLB-22ASG-L-FIR10-M-SKY'), + (0xfb2ca65ccfe96996f9c3f4fe5685570c9e61db5a, 'FeRARI Frank Animation Facsimile Signature Color 11 Super Rare', 'GPK-NFT22-S-AFS11-A-COL'), + (0xfb3ff4cfb45b2c219ec76926ed314f13b10f2f6f, 'Kansas City Royals® Franchy Cordero OF Base Static Gold 648 Uncommon', 'MLB-S221-U-B648-GOL'), + (0xfb4af982a03e3d0086947fdd6f0e983f2633192b, 'garbage wallpapers', 'TGMWALLPAPERS'), + (0xfb616bb9d1ba7cc0196f2d064aaf448a1bfbfdf1, 'Miami Marlins® Jazz Chisholm Jr. Base Glitch 6 Uncommon', 'MLB-22S1-U-B6-M-GLI'), + (0xfb62f51062ffb75e3c9139b4f52705da8a811a75, 'Unicornos', 'Unicornos'), + (0xfb7c981abc3480abb077a4a2921ec5687efb6fe1, 'Vee Fiend Animation Color 5 Rare', 'GPK-NFT22-R-A5-A-COL'), + (0xfb7e3375233e4f2e5ba616ff345f86fb36c21bb1, 'FC Koln Florian Kainz Base Players Gold 67 Rare', 'BUND-SC21-R-BP67-GLD'), + (0xfb89b40b1c02da2ec7c50b566cfe9dc86ae750ba, 'Detroit Tigers® Casey Mize Rookie and Future Phenoms Facsimile Signature White 24 Rare', 'MLB-INC21-R-RC24-WHT'), + (0xfb937b39f358854cb56a4c78d8c38b386d22dea4, 'Common Comic 22 1-22 Bazooka Joe 2021 NFT', 'BZK-C-22C'), + (0xfb9febd92e9578fcd8376c1ab469195cb52ddd59, 'Milwaukee Brewers™ Christian Yelich Regular Season Division Winners RWB 34 Rare', 'MLB-21POST-R-R34-M-RWB'), + (0xfba0b9510e59817a99c7fd29c4bf86c3131076a7, 'Boston Red Sox® Jonathan Arauz SS Base Motion Vintage Stock 468 Super Rare', 'MLB-S221-S-B468-VS'), + (0xfbc72d9315db23d806a2e2fc4fabed70569798c8, 'MooBeanz', 'MOOBEANZ'), + (0xfbc77744fcdb70dfed1ff6f2c1c2f93387b9bdff, 'San Diego Padres™ Wil Myers OF Base Static Gold 332 Uncommon', 'MLB-S221-U-B332-GOL'), + (0xfbd08bd17fcec48b8a5a4e3e633ca493203afd55, 'PDIBusinessPages', 'PDI2022'), + (0xfbd2980ec9173aa179a3c5ed14f53dff3e3f3929, 'Chicago White Sox® Tim Anderson Base Vintage Stock 64 Super Rare', 'MLB-22S1-S-B64-M-VS'), + (0xfbdf34275834b78a9b0e4de033a813668a73013b, 'Avax Pills', 'AP'), + (0xfbe1621cb9060a4fcb37afb7ff9564fa68c70ebb, 'Kansas City Royals® Hunter Dozier 3B/OF Base Motion Rainbow 443 Rare', 'MLB-S221-R-B443-RAI'), + (0xfbe4c029a377d2d94dae81a335494d006efcfeec, 'National League™ 2021 ERA Leaders Base Glitch 204 Uncommon', 'MLB-22S1-U-B203-M-GLI'), + (0xfbf21f52cb0bdfb0d97f8317b437171e124591ad, 'Colorado Rockies™ German Marquez P Base Static Gold 424 Uncommon', 'MLB-S221-U-B424-GOL'), + (0xfbf54335b0c5353f48d48fb9685191e88635fffe, 'Jamal Musiala BAY Motion Rainbow Refractor S3-32 Super Rare', 'BUND-21TS3-S-MS3-32-V-RAI'), + (0xfc0939b6c81e6e87d0283a8966974954605997fe, 'VfB Stuttgart Darko Churlinov Base Players Gold 88 Rare', 'BUND-SC21-R-BP88-GLD'), + (0xfc12699c565214f09d257bf06c6c418a25d590d6, 'CryptoDate', 'CD'), + (0xfc16833445c0672a4fe6f9589124d3af0dd91153, 'Baltimore Orioles® Trey Mancini OF/1B Base Motion Rainbow 573 Rare', 'MLB-S221-R-B573-RAI'), + (0xfc227117d786431f3747a772cbb4162744965df9, 'Arizona Diamondbacks® David Peralta OF Base Motion Vintage Stock 640 Super Rare', 'MLB-S221-S-B640-VS'), + (0xfc24abc8320b12f399bf4825e6ea7f5f2e63c3d0, 'Los Angeles Dodgers® Walker Buehler P Base Motion Vintage Stock 466 Super Rare', 'MLB-S221-S-B466-VS'), + (0xfc4013710ea855775bd4654294b4c68b1735207a, 'NFT Energi Fosil', 'EF'), + (0xfc44a5559367d311cce3bc9ccf76395fb61afc3a, 'TSG Hoffenheim Chris Richards Young Stars Team Color 156 Static Facsimile Signature Super Rare', 'BUND-SC21-S-YS156-SFS-TMC'), + (0xfc4738d6c494a9977ae47f695959babd9d048a19, 'Seattle Mariners™ Julio Rodriguez HRD Reward Red 5 Rare', 'MLB-22ASGR-R-R5-M-RED'), + (0xfc5e26ed0c74bdda801e3bb515189f18ace3ef6b, 'Boston Red Sox® Chris Sale P Base Motion Rainbow 609 Rare', 'MLB-S221-R-B609-RAI'), + (0xfc6b9620f361de043b1efd7b47154120efc5fdbb, 'Punku shu', 'Punkushu'), + (0xfc75f8886b286fd55435be4e5e2eb16f28b8d51f, 'Seattle Mariners™ J.P. Crawford SS Base Motion Platinum 506 Epic', 'MLB-S221-E-B506-PLA'), + (0xfc781db4dca60c33407ab4f44903644a534d20e8, 'Kevin van Veen MOT Base Aqua SP-26 Uncommon', 'SPFL-21SPSS-U-BSP-26-A-AQU'), + (0xfc7f3d3470d22ce34b3a1e730c5bd3a8e028c51b, 'National League™ Zack Wheeler Base Blue 1283 Common', 'MLB-22PRI-C-B192-M-BLU'), + (0xfc83c01e59df83b07f4aeef6f6f35212cfeaefb4, 'Houston Astros® Framber Valdez Championship Series Silver 16 Epic', 'MLB-21POST-E-CS16-M-SIL'), + (0xfc8572f428271bea7465219bc8146ef4e2ee6760, 'MoonBunnyz', 'MNBNZ'), + (0xfc85eb738c07dab359246cb195dd1e31f8619222, 'Avax Expressionism', 'EXPRS'), + (0xfc86adf493da03f46f616a1b45feb1472bf418e3, 'Baltimore Orioles® John Means Base Glitch 253 Uncommon', 'MLB-22S1-U-B250-M-GLI'), + (0xfc8b40f9e7ac5edb78f36a7fd50772444b08756f, 'San Diego Padres™ Fernando Tatis Jr. 1987 35th Anniversary Wood T87-9 Common', 'MLB-22S1-C-1987A7-M-WD'), + (0xfca4928e8f90ed396879d8d8585c6713e2e8470e, 'Enfants de Dieu', 'EDD'), + (0xfca72682716ea83b5d5e7e8fc0c3546b99adbb76, 'Sebastian Griesbeck SGF Base White S4-59 Common', 'BUND-21TS4-C-BS4-59-S-WHI'), + (0xfca8ee7032f973db6ed5d34957fc318286236148, 'KODAMA', 'KODAMA'), + (0xfcaf45c5ec2026cfe19c96df1170cdcf8fbe5a0b, 'ADAM NFt', 'ADAM'), + (0xfcb68e2686218c0802f3f4d1a3edd8989a392298, 'Chicago White Sox® Tim Anderson American League Base Blue 10 Rare', 'MLB-22ASG-R-B10-M-BLU'), + (0xfcb7a7d19a6ee2c0d1cad96b60a544d8635911ae, 'Houston Astros® Yordan Alvarez World Series Gold 4 Epic', 'MLB-21POST-E-WS4-M-GOL'), + (0xfcbb15701caec5528fc27eadb6fec93f1f487ba5, 'story cat', 'STC'), + (0xfcc4e8876569d3ad0ebe8bff464c61765fc90015, 'Houston Astros® Cristian Javier World Series Newspaper BW 1149 Common', 'MLB-22TNP-C-WSN3-M-BW'), + (0xfcc811c6c1bdaaf62c977a32b0f9782228763e3c, 'Jeremie Frimpong B04 Club Phemons Team Color S4CPH-03 Epic', 'BUND-21TS4-E-CPHS4CPH-03-V-TMC'), + (0xfccae057242a33aca87ed44226d941b2ebce00ec, 'Los Angeles Dodgers® Walker Buehler P Facsimile Signature Static Blue 466 Super Rare', 'MLB-S221-S-FS466-BLU'), + (0xfcce2125459b4ff1c3a3de7b8b330f31070ec244, 'Smolr Doomers', 'SMOLRDOOM'), + (0xfcd02f3e9aad30f6385de45190d82eae55587d33, 'Toronto Blue Jays® Rowdy Tellez 1B/DH Base Motion Rainbow 493 Rare', 'MLB-S221-R-B493-RAI'), + (0xfcd7ce416637f032c2e631f661af655052be59c0, 'Farandole x Maison Bouey', 'FAR_COLLECTION'), + (0xfce2e1e21017283a6a13435a34ec30f3af95be77, 'Chicago White Sox® Lance Lynn Base Pink 1240 Uncommon', 'MLB-22PRI-U-B162-M-PNK'), + (0xfce40f104f1ed9e63e725aac11e5267277a223fe, 'Sheraldo Becker FCU Top Players Black TK-27 Common', 'BUND-22TK-C-TPTK-27-S-BLA'), + (0xfce474bbb89845a8d622a13317df6f4289b1bacb, 'Kansas City Royals® Whit Merrifield Base White 245 Common', 'MLB-22S1-C-B242-S-WHI'), + (0xfcf1bd76ddcb35c8c012ec3935efdfa4b616c86c, 'Washington Nationals® Juan Soto Pure Power White 2106 Rare', 'MLB-22PRI-R-PP3-M-WHI'), + (0xfcf5e74f16bfa1614c164c46b3499c1fcbcbcca4, 'VanGodz', 'VVG'), + (0xfcf9c27e7af60fdc1226b238d19a9257a578201d, 'New York Yankees® Aaron Judge Facsimile Signature Glitch 99 Epic', 'MLB-22S1-E-FS6-M-GLI'), + (0xfcfa69e82c9868b49dac71c1a7c3b6c1463d0d8f, 'Chicago White Sox® Luis Robert Rookie and Future Phenoms Facsimile Signature Blue 20 Super Rare', 'MLB-INC21-S-RC20-BLU'), + (0xfcfdd3c582e86e22075085b15c727270460cb2a9, 'New York Yankees® James Paxton P Base Static White 542 Common', 'MLB-S221-C-B542-WHI'), + (0xfd00351f79ea9d0d19d58c5b7c3401dc3fe22650, 'Paul Jaeckel FCU Limitless Gold Parallel TLC-02 Legendary', 'BUND-22TLC-L-RLSSTLC-02-A-GOL'), + (0xfd0124117eb60bb3f8a551a39931bea7a3207b8b, 'Day-to-day terror', 'DtDT'), + (0xfd062ad3ee6e5c1f0d11aee228ab44f58ab0ead3, 'Miami Marlins® Sixto Sanchez Silver Signings Facsimile Signature Silver 24 Super Rare', 'MLB-INC21-S-SS24-SLV'), + (0xfd0686a609b42fa85b95c3e07b216ad3a91788ef, 'Pittsburgh Pirates® Colin Moran Base Vintage Stock 317 Super Rare', 'MLB-22S1-S-B313-M-VS'), + (0xfd0f19e8f5411d48612359b8c33fb1644c1525e4, 'Sketchbook', 'SHIFTCTRLNAS'), + (0xfd10b46481865c2fca5b1cc7d24fa26f9557e814, 'Texas Rangers® Jonah Heim C Base Motion Platinum 628 Epic', 'MLB-S221-E-B628-PLA'), + (0xfd210225a1a2772d89afac7b6de228fd74d1c64a, 'dberkay', 'dberkay'), + (0xfd21be95370917158bcc739fa9172579f1db6e66, 'Pharaonique Soldier', 'PharaS'), + (0xfd255444b83a31b6b5e650b441ca5a31ea289e95, 'Cincinnati Reds® Jesse Winker Base Independence Day RWB 81 Rare', 'MLB-22S1-R-B81-M-RWB'), + (0xfd285891ee3b7c5956dd239df81094c82c4c6f64, 'Jan Thielmann KOE Motion Aqua Refractor S4-38 Rare', 'BUND-21TS4-R-MS4-38-V-AQU'), + (0xfd2e626d23091b51c0c21c53be064314142a6d55, 'Colorado Rockies™ Kyle Freeland Base Glitch 169 Uncommon', 'MLB-22S1-U-B168-M-GLI'), + (0xfd38009a99ad0e20563edf596933e81416465bc8, 'Thevert 1/1s', 'the'), + (0xfd38ae9ffb6de4880245b3b139b673bc5e844c5a, 'Toronto Blue Jays® Nate Pearson Base Independence Day RWB 289 Rare', 'MLB-22S1-R-B286-M-RWB'), + (0xfd3abb15f648ba4b2492a305e0297f0fdb6944bc, 'American League™ 2021 Wins Leaders Base White 270 Common', 'MLB-22S1-C-B267-S-WHI'), + (0xfd3be6e927fbc3719d0893b94ecaeadd526daa91, 'PrizeBondAvax', 'PBA'), + (0xfd40be71ba1dc78ef07c791470ee019566f9814d, 'San Francisco Giants® Evan Longoria Division Series Bronze 37 Super Rare', 'MLB-21POST-S-D37-M-BRO'), + (0xfd45633f84985fa6b0d8b05a746e7a625743aa4d, 'Ryan Porteous HIB Base White SP-07 Common', 'SPFL-21SPSS-C-BSP-07-A-WHI'), + (0xfd482d4a142bdd4c125623aa8655fbf2cf0d93af, 'Godzilla RAT Page 10 Comic Page Color 9 Super Rare', 'GDZ-RAT21-S-CP9-A-COL'), + (0xfd4c131b86d7b57ac25de9a4176a68952c5884cc, 'Milwaukee Brewers™ Ryan Braun OF Base Static Gold 497 Uncommon', 'MLB-S221-U-B497-GOL'), + (0xfd4c4e3e57dde23bd198e0ae5ecc6bf560d0d009, 'MONKEEZ CRATEZ', 'CRATEZ'), + (0xfd5bd7d8c6a4336017ea700593b879ebd6f5ae69, 'Baa Baa Bet Sheep', 'SHEEP'), + (0xfd79d461c6d653237589934b47a9d33db158efb0, 'San Francisco Giants® Mike Yastrzemski Base Blue 1084 Common', 'MLB-22PRI-C-B50-M-BLU'), + (0xfd81c1180ad7e166428f0ef9797762aaec07d591, 'Houston Astros® Yordan Alvarez Silver Signings Facsimile Signature Silver 16 Super Rare', 'MLB-INC21-S-SS16-SLV'), + (0xfd860370cefc5f73764e433f9fbccef51cbed605, 'St. Louis Cardinals® Tyler O''Neill OF Base Static Gold 477 Uncommon', 'MLB-S221-U-B477-GOL'), + (0xfd86fb1fb05bbd2cb49a23ce7421fc0a2b814a3d, 'WildFlowers Sunni', 'WFS'), + (0xfd94a455f55d711534aa5dc057926eef8828db77, 'Chicago Cubs® Billy Hamilton OF Base Motion Platinum 588 Epic', 'MLB-S221-E-B588-PLA'), + (0xfdab05b602fc0cba1bd2d62e2c8a3e7119808a53, 'FC Schalke 04 Suat Serdar Top Players Gold 125 Super Rare', 'BUND-SC21-S-TP125-GLD'), + (0xfdac9f09f8d4cc4c9d187c770ac77e96d8cc6938, 'Minnesota Twins® Alex Kirilloff Base Blue 1248 Common', 'MLB-22PRI-C-B142-M-BLU'), + (0xfdb6ef4d57e2dd62de57f81b54c896bf8076d559, 'Rodan Toppsicle Color 3 Legendary', 'GDZ-RAT21-L-TP3-A-COL'), + (0xfdb9566bbfcbd834564737259d7072487d36f61e, 'Tampa Bay Rays™ Brandon Lowe Postseason Base Red 1 Rare', 'MLB-21POST-R-B1-M-RED'), + (0xfdb969eddbf582e65ea46c37f249cb7768cabf5a, 'Baltimore Orioles® Cedric Mullins OF Base Static Gold 487 Uncommon', 'MLB-S221-U-B487-GOL'), + (0xfdbfbfdc72fd12efed8663ee6cb1543ec1312d11, 'Pittsburgh Pirates® Ke''Bryan Hayes 1987 35th Anniversary Chrome T87C-97 Super Rare', 'MLB-22S1-S-1987AC71-M-CHR'), + (0xfdc311e9e7af6e8a65094a28181fed70b6427576, 'Christopher Nkunku RBL Animation Black Refractor S4-41 Epic', 'BUND-21TS4-E-AS4-41-V-BLA'), + (0xfdc34b42d619129eea92d87cd7a81341548b678d, 'SV Werder Bremen Leonardo Bittencourt Base Players Team Color 76 Uncommon', 'BUND-SC21-U-BP76-TMC'), + (0xfdc91dac8a71a788a23746e1c7dfb27c8308ee59, 'DeadCloudz', 'DEADCLOUDZ'), + (0xfdd43284f1eec5af6fd0e7a685b7551e0703ec3c, 'Milwaukee Brewers™ Christian Yelich Facsimile Signature Red 288 Rare', 'MLB-22S1-R-FS20-S-RED'), + (0xfdd671ab2c8dccd83752ef79b5800c703f26c302, 'Chicago Cubs® Brailyn Marquez Inception Base White 14 Common', 'MLB-INC21-C-IB14-WHT'), + (0xfddaae09936a210ac6b3ed1c53cfb3d59cc44ca0, 'Luke McCowan DUD Base Purple SP-33 Super Rare', 'SPFL-21SPSS-S-BSP-33-A-PUR'), + (0xfdef57771388f9e4013500de4b3a16d698969f2b, 'Boston Red Sox® Xander Bogaerts Postseason Base White 68 Common', 'MLB-21POST-C-B68-S-WHI'), + (0xfdf37887588583336e382c5020fa37b7fbf207e3, 'Rare Comic 74 2-26 Bazooka Joe 2021 NFT', 'BZK-R-74C'), + (0xfdf73ff12e8e87ccda6ac0588da6374305781ef0, 'Seattle Mariners™ Kendall Graveman P Base Static Gold 340 Uncommon', 'MLB-S221-U-B340-GOL'), + (0xfdfa5736590e8c601fbddaafb13d491cfbfcdf97, 'Super Rare Comic 5 1-5 Bazooka Joe 2021 NFT', 'BZK-S-5C'), + (0xfdfbc97281f0ff8ee82da223761fbf1c4c3b6925, 'Milwaukee Brewers™ Christian Yelich Base Blue 1016 Common', 'MLB-22PRI-C-B98-M-BLU'), + (0xfdff7551dc83762801cf324b9df34390847d7b7d, 'Ready Multichain Traders - Avalanche', 'Ready Multichain Traders - Avalanc'), + (0xfe03daf2f63285d022db9f35c9aa9bfa6fe04374, 'Angels® Shohei Ohtani Inception Base White 45 Common', 'MLB-INC21-C-IB45-WHT'), + (0xfe1337ce3ae2ff5dfcdc52f72de0513fc558e49a, 'Rare Comic 46 1-46 Bazooka Joe 2021 NFT', 'BZK-R-46C'), + (0xfe18a1be99eac5652d8aaf97df2b25186fed948b, 'Cleveland Indians® Francisco Lindor Inception Base Black 20 Legendary', 'MLB-INC21-L-IB20-BLK'), + (0xfe26655749f2c7c40871665d0abbc7be502c4cd9, 'Cleveland Guardians™ Austin Hedges Base White 65 Common', 'MLB-22S1-C-B65-S-WHI'), + (0xfe296e76aad6e7f567eeb52bdf4c9fb02006aedf, 'PRINCESS', 'PRCSS'), + (0xfe2b3ef37dab459ea4a1ae4651fbd854e93642ad, 'Minnesota Twins® Michael Pineda Base Independence Day RWB 189 Rare', 'MLB-22S1-R-B188-M-RWB'), + (0xfe40930c588425ab5e9b6d4b078ad8088225e476, 'SNFT Collections', 'SCA'), + (0xfe46e92e25ade635a3410432447922cdfdf64d1a, 'Arizona Diamondbacks® Seth Beer Base Pink 1317 Uncommon', 'MLB-22PRI-U-B154-M-PNK'), + (0xfe481144cfefbaa2ae1862cd3b4da8a13f8b2c4a, 'Let''s Dance', 'LTSD'), + (0xfe48e7e9b86cac2f748669a8a413de4ac6a6572a, 'Metallic Invaders', 'Min'), + (0xfe56c23cae562ff86d11ddedc8efd3a149892163, 'St. Louis Cardinals® Dylan Carlson Facsimile Signature Gold 3028 Super Rare', 'MLB-22PRI-S-FS9-M-GLD'), + (0xfe5ace55c33e27118bbf6927398265136dee4783, 'Wataru Endō VFB Base White S1-09 Common', 'BUND-21TS1-C-BS1-09-S-WHI'), + (0xfe625f85d7d7d54d2347a6db61e6805530b2bdac, 'Tampa Bay Rays™ Vidal Brujan Base Pink 1212 Uncommon', 'MLB-22PRI-U-B180-M-PNK'), + (0xfe6d876e00d5727b18490d219c2babb0ad9b9ccc, 'Order', 'LP'), + (0xfe71002dcf261cb06109f683a316036f844cf3fb, 'San Diego Padres™ Fernando Tatis Jr. 1987 35th Anniversary Chrome T87C-100 Super Rare', 'MLB-22S1-S-1987AC73-M-CHR'), + (0xfe789622eb8b8edee40c17560d4e58e7646c0131, 'New York Yankees® Clint Frazier OF Base Motion Rainbow 429 Rare', 'MLB-S221-R-B429-RAI'), + (0xfe7a8e20273106794f683a41aebcb4063a064a64, 'Houston Astros® Cristian Javier Rookie and Future Phenoms Facsimile Signature Blue 28 Super Rare', 'MLB-INC21-S-RC28-BLU'), + (0xfe800e69f3d438f856e45cdeb59c6178b3c8f824, 'ThePassport', 'PASS'), + (0xfe8b12f0e6ceda6b059ae6c1aae6e5a7aa0aaa29, 'Simon Terodde S04 Top Players Black TK-32 Common', 'BUND-22TK-C-TPTK-32-S-BLA'), + (0xfe9980a00643faa6ca655b89295b90f6e7a083ae, 'The Dock', 'gLW'), + (0xfe9d7c74b38e69cfe2e7c3acdb3290116c50a4a7, 'RB Leipzig Emil Forsberg Base Players White 12 Common', 'BUND-SC21-C-BP12-WHT'), + (0xfe9e19199be81e622a514f7dda88cf0ef2122395, 'Chicago White Sox® Edwin Encarnacion DH Base Static White 559 Common', 'MLB-S221-C-B559-WHI'), + (0xfe9e47b451a3698b76e41bdd44ba5ddf25358c10, 'Pittsburgh Pirates® Ke''Bryan Hayes 3B Base Motion Rainbow 644 Rare', 'MLB-S221-R-B644-RAI'), + (0xfea1dd2512f3310e4dc0488a619e9afc78d324b0, 'St. Louis Cardinals® Nolan Arenado Postseason Base Red 42 Rare', 'MLB-21POST-R-B42-M-RED'), + (0xfea6984c89fddf84dcaf6b60e3efce537bd4a023, 'San Diego Padres™ Trent Grisham Divison Series Broadcast RWB 1076 Rare', 'MLB-22TNP-R-DSA6-M-RWB'), + (0xfea74e01157e96cadb1e6b50edafca3d6709c99a, 'Djibril Sow SGE Top Players Team Color TK-11 Rare', 'BUND-22TK-R-TPTK-11-S-TMC'), + (0xfeacc4f56e55c42a8985d0e90b9a86f77a3fa48b, 'as daso', 'asd'), + (0xfeadd0ea691d13cf3a1c0da6e647e09d4f664e16, 'Boston Red Sox® Nathan Eovaldi P Base Static Gold 623 Uncommon', 'MLB-S221-U-B623-GOL'), + (0xfeaf2395ce6ff8782271cc8236b50342f8fb492f, 'Eintracht Frankfurt Sebastian Rode Base Players Gold 43 Rare', 'BUND-SC21-R-BP43-GLD'), + (0xfebd7c4524a4c527037a0780c0483aed0149c005, 'Pittsburgh Pirates® Max Kranick Base Glitch 325 Uncommon', 'MLB-22S1-U-B321-M-GLI'), + (0xfecd31eba055b7fc4a04c8fbc7a5469cef0f2fb0, 'Minnesota Twins® Josh Donaldson 1987 35th Anniversary Chrome T87C-11 Super Rare', 'MLB-22S1-S-1987AC9-M-CHR'), + (0xfed36548b0aceb6eb3d666c6dea825f183ddd9b3, 'Crystal Butterflies', 'sd'), + (0xfed446ac3391844959a846c67cab34401c48af86, 'Atlanta Braves™ Ronald Acuña Jr. National League Base White 13 Uncommon', 'MLB-22ASG-U-B13-M-WHI'), + (0xfeda7cbeb1a78b08e4b8d9b3bc4028b663b97173, 'Hopeless Astronauts', 'ASTRO'), + (0xfedb314963920c639f80b80269aa793513378f35, 'Toronto Blue Jays® Bo Bichette Stars of MLB Chrome Night SMLBC-30 Legendary', 'MLB-22S1-L-SMLBC29-M-NIT'), + (0xfedbf3899fdaada996dcfc5ecb4733505cb2e1c3, 'Arizona Diamondbacks® Kole Calhoun OF Base Static Gold 512 Uncommon', 'MLB-S221-U-B512-GOL'), + (0xfeeba80cd3bffd5251fb346f791e71d7f207766b, 'Common Comic 55 2-7 Bazooka Joe 2021 NFT', 'BZK-C-55C'), + (0xfef1104ecc6c23d09e8959fc257a81b8db250f55, 'New York Mets® Edwin Diaz Base Glitch 267 Uncommon', 'MLB-22S1-U-B264-M-GLI'), + (0xfef529608c3fa89bf97d204d7d2ad7ad4c52af89, 'Boston Red Sox® Jarren Duran Facsimile Signature Gold 3107 Super Rare', 'MLB-22PRI-S-FS16-M-GLD'), + (0xfefd7cefa51282d0c9da3eea661e3e90ccbe7508, 'Pulsar', 'PULSAR'), + (0xff016fd1cd135c016b5fee2909a78832423e7db4, 'Houston Astros® Framber Valdez Postseason Base Red 56 Rare', 'MLB-21POST-R-B56-M-RED'), + (0xff0633f0830b380947cd59298dc4fa0027fe4641, 'Washington Nationals® Juan Soto Base Independence Day RWB 150 Rare', 'MLB-22S1-R-B149-M-RWB'), + (0xff0c6a08faca0aa05b7ac162257d7fb283155d80, 'Smol Joes', 'Joes'), + (0xff0d5459ac5e57dcc2086a9fd9fc0043c10d10dc, 'San Francisco Giants® Tommy La Stella Base Glitch 241 Uncommon', 'MLB-22S1-U-B238-M-GLI'), + (0xff147f9fe63ca071a9bc3fe7ea5b04ef5e8830c5, 'Philadelphia Phillies® Bryce Harper Pure Power Slab White 2119 Epic', 'MLB-22PRI-E-PP13-M-WHI'), + (0xff1a2dfa8ba86f73474868babb364caa7a2866d0, 'Rafael Borré SGE Top Players Facsimile Signature Team Color TK-12 Epic', 'BUND-22TK-E-TPTK-12-S-TMC'), + (0xff1f3392dee5efb602ff13a144a68957d5473339, 'St. Louis Cardinals® Jack Flaherty Facsimile Signature Slab Gold 3039 Epic', 'MLB-22PRI-E-FS17-M-GLD'), + (0xff1f7e1da312b9c27247f851e0001a6ea37e8718, 'San Francisco Giants® Brandon Crawford Postseason Base Navy 26 Uncommon', 'MLB-21POST-U-B26-M-NVY'), + (0xff26e1cf7de7e986fcef73ed87cbe96abe41b1c0, 'Bored Adam Yuck Club Animation Facsimile Signature Color 1 Super Rare', 'GPK-NFT22-S-AFS1-A-COL'), + (0xff2b0a3f32060f0c1f8ff1ce7f23730825a84b86, 'Cleveland Indians® Francisco Lindor Inception Base Red 20 Rare', 'MLB-INC21-R-IB20-RED'), + (0xff2b49b5d66f23e06ccf0d43681f27e452b9545c, 'Topicals Insider Charm Bracelet', 'TCB'), + (0xff322080a122fdb6ca6ffd5de99fbf0550f0285f, 'Common Comic 46 1-46 Bazooka Joe 2021 NFT', 'BZK-C-46C'), + (0xff43cf9425d4e16eda13c57c3c8949efcd675664, 'St. Louis Cardinals® Kwang-Hyun Kim Base Glitch 151 Uncommon', 'MLB-22S1-U-B150-M-GLI'), + (0xff49868b7a384d155a538eeb39319fd60acc13e1, 'Anaesthesia', 'ALPHA'), + (0xff55b344e0ae2ac7ba095ca5e0d6af2e940c8350, 'AvaxLoot', 'AVAXLOOT'), + (0xff61abbcc6f055367621599ad9baa4df7f8279ae, 'Rare Comic 2 1-2 Bazooka Joe 2021 NFT', 'BZK-R-2C'), + (0xff6284fc8a7c30ba84a6df615f23e0226d424545, 'Detroit Tigers® Matt Manning Base Blue 1205 Common', 'MLB-22PRI-C-B163-M-BLU'), + (0xff630c31d8396ca3149e94de18c3fecba75afe6e, 'Diamond Hans Facsimile Signature Color 19 Uncommon', 'GPK-NFT22-U-FS19-S-COL'), + (0xff6d7b1f2770473316dd9fab9fa3af5e17153354, 'TAG YOU''RE IT!', 'TAG'), + (0xff710ef347fb5e45e5429d8cd9bfba451be76fbd, 'Milwaukee Brewers™ Ben Gamel OF Base Motion Vintage Stock 458 Super Rare', 'MLB-S221-S-B458-VS'), + (0xff7b13f7948a037bbece19b4e002a580fe825b54, 'Funny Little Fellas', 'FELLAS'), + (0xff7b94843804a9d207a54f62cbf7a5267a7c052b, 'FC Bayern Munich Kingsley Coman Base Players White 2 Common', 'BUND-SC21-C-BP2-WHT'), + (0xff8199bfc4ebe6d7359b0791f8bc5e150e16114e, 'My nft wallet', 'MYNF'), + (0xff88a0059487d168dca7b0a5f3ecd493ce8d1a6f, 'Atlanta Braves™ Freddie Freeman Champs Gold 1 Legendary', 'MLB-21POST-L-C1-M-GOL'), + (0xff8d2f14db1c70e6f7de5ea5a3d70587b6a5c489, 'VfL Wolfsburg Maximilian Arnold Top Players Gold 110 Super Rare', 'BUND-SC21-S-TP110-GLD'), + (0xff8da499112319ad3680c1b701ef3d62a62285e8, 'Houston Astros® World Series Broadcast RWB 1150 Rare', 'MLB-22TNP-R-WSB4-M-RWB'), + (0xff8fa5848cbe39a2d7df3a159af0401a0c3dc06a, 'Houston Astros® Yordan Alvarez First Place Skyline 6 Legendary', 'MLB-22ASG-L-FIR6-M-SKY'), + (0xff931890135b18dc538315dc5d2efeb053276402, 'San Diego Padres™ Yu Darvish Base Independence Day RWB 309 Rare', 'MLB-22S1-R-B305-M-RWB'), + (0xff995523195a404ef4fbb37811326ada20995404, 'Chicago White Sox® Jake Burger Base Glitch 186 Uncommon', 'MLB-22S1-U-B185-M-GLI'), + (0xffa11f0dce04a83f97c13c76446f4a512b36a004, 'Arizona Diamondbacks® Kole Calhoun OF Base Static White 512 Common', 'MLB-S221-C-B512-WHI'), + (0xffa1cb35495475a09dc5ac6682c28ee47351c02c, 'kongorlanes', 'KONGRLS'), + (0xffa21381fdd062368a8871cd9dbbe15c3a357f5c, 'Common Comic 56 2-8 Bazooka Joe 2021 NFT', 'BZK-C-56C'), + (0xffac6845b6c0f9349c6e49822894386612ce9c98, 'FC Schalke 04 Sead Kolašinac Top Players Gold 126 Super Rare', 'BUND-SC21-S-TP126-GLD'), + (0xffb137a90fa6bb621baadb140740bbba732df314, 'Arizona Diamondbacks® Team Cube 2.0 Team Colors 11 Legendary', 'MLB-22S1-L-TC211-M-TMC'), + (0xffb7a3b7daf3b573b5195611f3435b51b9647fea, 'St. Louis Cardinals® Andrew Miller P Base Motion Vintage Stock 437 Super Rare', 'MLB-S221-S-B437-VS'), + (0xffb876bd5bee99e992cac826a04396002f5f4a65, 'ZooNFT', 'ZooNFT'), + (0xffc83e07ec579c5fb1a59600c6712008244ac3e5, 'DSC Arminia Bielefeld Amos Pieper Young Stars Gold 178 Animated Facsimile Signature Epic', 'BUND-SC21-E-YS178-AFS-GLD'), + (0xffcac09569a33730e4d98669164ff62585d6cded, 'Texas Rangers® Dane Dunning P 1986 Anniversary Static Team Colors 86B-21 Super Rare', 'MLB-S221-S-1986A86B-21-TMC'), + (0xffce283dba19b78ea7ae9fcfcaf68531c2cd914c, 'New York Yankees® Gerrit Cole Base White 35 Common', 'MLB-22S1-C-B35-S-WHI'), + (0xffd2a1cf6dbb896c4db0df992e68e99e329f7a52, 'Angels® Mike Trout 1987 35th Anniversary Chrome T87C-50 Super Rare', 'MLB-22S1-S-1987AC37-M-CHR'), + (0xffddfe5194e693c8954ddd9fa9bfb54625bf434c, 'Arne Maier FCA Color Splash Facsimile Signature Team Color TK-67 Legendary', 'BUND-22TK-L-CSTK-67-S-TMC'), + (0xffe416277c4a301d3525bacaba00bc4f2000c29e, 'Miami Marlins® Bryan De La Cruz Base Independence Day RWB 22 Rare', 'MLB-22S1-R-B22-M-RWB'), + (0xfff6fa52337d60dbbd222671c0397d5908e5e31d, 'Lil Walter Drip', 'LWD') ) AS temp_table (contract_address, name, symbol) diff --git a/models/tokens/avalanche_c/tokens_avalanche_c_schema.yml b/models/tokens/avalanche_c/tokens_avalanche_c_schema.yml index 24015bb2b10..8bca04a7a18 100644 --- a/models/tokens/avalanche_c/tokens_avalanche_c_schema.yml +++ b/models/tokens/avalanche_c/tokens_avalanche_c_schema.yml @@ -62,7 +62,7 @@ models: - accepted_values: values: [ 'erc721', 'erc1155'] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. If you are adding a token with a new standard, remember to add it the accepted values list. @@ -84,4 +84,4 @@ models: description: "The NFT standard erc721/erc1155/..." tests: - accepted_values: - values: [ 'erc721', 'erc1155'] + values: [ 'erc721', 'erc1155'] \ No newline at end of file diff --git a/models/tokens/base/tokens_base_erc20.sql b/models/tokens/base/tokens_base_erc20.sql index a3546216f5e..e910cc2d53e 100644 --- a/models/tokens/base/tokens_base_erc20.sql +++ b/models/tokens/base/tokens_base_erc20.sql @@ -798,5 +798,38 @@ FROM (VALUES (0x23ee2343b892b1bb63503a4fabc840e0e2c6810f,'AXL',6), (0x1a49655a4AFca3D004E058ef0ea0D45eC158ae80,'AERO',18), (0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913,'USDC',6), - (0x940181a94A35A4569E4529A3CDfB74e38FD98631,'AERO',18) + (0x940181a94A35A4569E4529A3CDfB74e38FD98631,'AERO',18), + (0xeB585163DEbB1E637c6D617de3bEF99347cd75c8, 'cbXEN', 18), + (0xFF0C532FDB8Cd566Ae169C1CB157ff2Bdc83E105, 'Fren Pet', 18), + (0xf3F4aA6B2D396eE1656F5fd177F441bE822FFfBb, 'FRIEND', 8), + (0xd5046B976188EB40f6DE40fB527F89c05b323385, 'BaseX', 18), + (0xC1985d7a3429cDC85E59E2E4Fcc805b857e6Ee2E, 'hETH', 18), + (0xE3B53AF74a4BF62Ae5511055290838050bf764Df, 'STG', 18), + (0x6944C9F9997fB1ccf8191300F104cd11636623D9, 'GROK', 8), + (0x417Ac0e078398C154EdFadD9Ef675d30Be60Af93, 'crvUSD', 18), + (0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4, 'ALB', 18), + (0x54016a4848a38f257B6E96331F7404073Fd9c32C, 'SCALE', 18), + (0x4A0a76645941d8C7ba059940B3446228F0DB8972, 'CAROL', 18), + (0x071267674754F086DC6fDf5cb03288db4074F434, 'BDRIP', 18), + (0xc1CBa3fCea344f92D9239c08C0568f6F2F0ee452, 'wstETH', 18), + (0xCfA3Ef56d303AE4fAabA0592388F19d7C3399FB4, 'eUSD', 18), + (0x7905EA12CC81a215A5F1D0F46DF73a53E19E9264, 'TAG', 18), + (0x9483ab65847A447e36d21af1CaB8C87e9712ff93, 'wUSDR', 9), + (0x64b88c73A5DfA78D1713fE1b4c69a22d7E0faAa7, 'MAV', 18), + (0xbf1aeA8670D2528E08334083616dD9C5F3B087aE, 'MAI', 18), + (0xFF8adeC2221f9f4D8dfbAFa6B9a297d17603493D, 'WELL', 18), + (0x5607718c64334eb5174CB2226af891a6ED82c7C6, 'OG Points', 18), + (0x4c5d8A75F3762c1561D96f177694f67378705E98, 'PYTH', 6), + (0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921, 'BTRST', 18), + (0x28fe69Ff6864C1C218878BDCA01482D36B9D57b1, 'KNC', 18), + (0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f, 'SDEX', 18), + (0x703D57164CA270b0B330A87FD159CfEF1490c0a5, 'SOFI', 18), + (0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44, 'DEUS', 18), + (0x434769c82fB928150B87C4Ae6320Bf71F92dCCa5, 'ECO', 18), + (0x4E0dA40b9063dC48364C1C0fFB4AE9d091fc2270, 'EDG', 18), + (0xaFB2820316e7Bc5Ef78d295AB9b8Bb2257534576, 'R', 18) + + + + ) AS temp_table (contract_address, symbol, decimals) diff --git a/models/tokens/base/tokens_base_nft_curated.sql b/models/tokens/base/tokens_base_nft_curated.sql index 8d2b3c509e0..55ac1cbb34c 100644 --- a/models/tokens/base/tokens_base_nft_curated.sql +++ b/models/tokens/base/tokens_base_nft_curated.sql @@ -4,6 +4,11 @@ SELECT contract_address, name, symbol FROM (VALUES - (0x1FC10ef15E041C5D3C54042e52EB0C54CB9b710c, 'Base is for Builders', 'BASEBUILDERS') + (0x1FC10ef15E041C5D3C54042e52EB0C54CB9b710c, 'Base is for Builders', 'BASEBUILDERS') + ,(0x061A883E8c2FEFFB4F3eA42046ABD4bE88E1333f, 'Omnichain Adventures (Part 2)', 'OMNIA2') + ,(0x5b51Cf49Cb48617084eF35e7c7d7A21914769ff1, 'Frenpet NFT', 'Frenpet') + ,(0xF882c982a95F4D3e8187eFE12713835406d11840, 'Merkly ONFT', 'MERK') + ,(0x36a358b3Ba1FB368E35b71ea40c7f4Ab89bFd8e1, 'l2telegraph.xyz', 'l2t') + ,(0x29D24B2AC84E51F842fb8c1533CD972eb83c65Ce, 'L2Marathon', 'MarathonRunner') ) as temp_table (contract_address, name, symbol) diff --git a/models/tokens/base/tokens_base_schema.yml b/models/tokens/base/tokens_base_schema.yml index 8072486f00e..c8fdb630495 100644 --- a/models/tokens/base/tokens_base_schema.yml +++ b/models/tokens/base/tokens_base_schema.yml @@ -58,9 +58,9 @@ models: - accepted_values: values: [ 'erc721', 'erc1155'] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. - If you are adding a token with a new standard, remember to add it the accepted values list. + If you are adding a token with a new standard, remember to add it the accepted values list. - name: tokens_base_nft_standards meta: @@ -80,5 +80,4 @@ models: description: "The NFT standard erc721/erc1155/..." tests: - accepted_values: - values: [ 'erc721', 'erc1155' ] - + values: [ 'erc721', 'erc1155' ] \ No newline at end of file diff --git a/models/tokens/bnb/tokens_bnb_bep20.sql b/models/tokens/bnb/tokens_bnb_bep20.sql index 0cc68f61503..ffc24b7bdce 100644 --- a/models/tokens/bnb/tokens_bnb_bep20.sql +++ b/models/tokens/bnb/tokens_bnb_bep20.sql @@ -1,4 +1,11 @@ -{{ config( alias = 'bep20', tags=['static'])}} +{{ + config( + schema = 'tokens_bnb', + alias = 'bep20', + tags = ['static'], + materialized = 'table' + ) +}} SELECT contract_address, symbol, decimals FROM (VALUES diff --git a/models/tokens/bnb/tokens_bnb_schema.yml b/models/tokens/bnb/tokens_bnb_schema.yml index 59bfc0276c9..db810f014b0 100644 --- a/models/tokens/bnb/tokens_bnb_schema.yml +++ b/models/tokens/bnb/tokens_bnb_schema.yml @@ -58,7 +58,7 @@ models: - accepted_values: values: [ 'bep721', 'bep1155'] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. If you are adding a token with a new standard, remember to add it the accepted values list. @@ -80,4 +80,4 @@ models: description: "The NFT standard erc721/erc1155/..." tests: - accepted_values: - values: [ 'bep721', 'bep1155' ] + values: [ 'bep721', 'bep1155' ] \ No newline at end of file diff --git a/models/tokens/celo/tokens_celo_erc20.sql b/models/tokens/celo/tokens_celo_erc20.sql index 691a2d478a3..b78e9794402 100644 --- a/models/tokens/celo/tokens_celo_erc20.sql +++ b/models/tokens/celo/tokens_celo_erc20.sql @@ -1,12 +1,10 @@ -{{ config( - alias = 'erc20' - , tags=['static'] - , materialized = 'table' - , post_hook='{{ expose_spells(\'["celo"]\', - "sector", - "tokens", - \'["hosuke", "tomfutago"]\') }}' - ) +{{ + config( + schema = 'tokens_celo', + alias = 'erc20', + tags = ['static'], + materialized = 'table' + ) }} SELECT diff --git a/models/tokens/celo/tokens_celo_schema.yml b/models/tokens/celo/tokens_celo_schema.yml index 36a2c6bc91e..200a1d05001 100644 --- a/models/tokens/celo/tokens_celo_schema.yml +++ b/models/tokens/celo/tokens_celo_schema.yml @@ -58,9 +58,9 @@ models: - accepted_values: values: [ 'erc721', 'erc1155'] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. - If you are adding a token with a new standard, remember to add it the accepted values list. + If you are adding a token with a new standard, remember to add it the accepted values list. - name: tokens_celo_nft_standards meta: @@ -80,4 +80,4 @@ models: description: "The NFT standard erc721/erc1155/..." tests: - accepted_values: - values: [ 'erc721', 'erc1155' ] + values: [ 'erc721', 'erc1155' ] \ No newline at end of file diff --git a/models/tokens/ethereum/tokens_ethereum_erc20.sql b/models/tokens/ethereum/tokens_ethereum_erc20.sql index dfba4ccaf37..7cb4362f08e 100644 --- a/models/tokens/ethereum/tokens_ethereum_erc20.sql +++ b/models/tokens/ethereum/tokens_ethereum_erc20.sql @@ -1,8 +1,12 @@ -{{ config( - alias = 'erc20' - , tags=['static'] - ) +{{ + config( + schema = 'tokens_ethereum', + alias = 'erc20', + tags = ['static'], + materialized = 'table' + ) }} + SELECT contract_address as contract_address , trim(symbol) as symbol @@ -36022,5 +36026,622 @@ FROM (VALUES ,(0x4f42e8c0f3b0ebd39beeee85d5020866c4fd2413, 'HIM', 18) ,(0x56832edb945004b3c6e6f7ca4e7249f79a1164c7, 'TTB', 9) ,(0x9313d161cf9495b70339ae66f13e58c6922c53f6, 'BGROK', 18) + ,(0x49de625dc74bd10231d25140ed3a22d678a370c8, 'XENO', 9) + ,(0xc434268603ca8854e0be1a3ff15cad73bd6ec49a, 'ZAPI', 9) + ,(0x0b3ddf435d7e0a3cad97d85f94633a0e3a69fc01, '559Q-RXGN4-JZPP', 9) + ,(0x371b2b15f7aba44f1666cac3726ca3d9fe24ecf3, 'MOONF', 9) + ,(0xacc0c618d5c056d92def792b632d360dd4d2c07f, 'BTCM', 8) + ,(0xa1e836d08afa10f3366dc48e6fba4c2c45491111, 'FUD', 9) + ,(0x3b4062f06699edaec09e5736e23e0c6efe31cb7b, 'BASE', 9) + ,(0x38e382f74dfb84608f3c1f10187f6bef5951de93, 'MUBI', 18) + ,(0x54d1c019c53501f76361bb656542fec427bf13aa, 'P2P', 18) + ,(0x3c4be45a749727d3b737246a6d89823bd9c19246, 'UCS', 9) + ,(0x4b42b2ee6072b04d465c72a8234ab52b8801abc4, 'Q', 18) + ,(0xcae0dd4bda7ff3e700355c7629b24d5d728bd2ce, 'BOWIE', 18) + ,(0xb091e74e1dba43ca65d494d090eb435b8ca136d4, 'Potato', 9) + ,(0x6a5bdf38717b782ddff57f9bb0f6ae00d97a3aa3, 'ELEP', 9) + ,(0x319bcf115e35c18035bf1a405fe3c40c8b24533e, 'STARSHIP', 9) + ,(0xda169ce4c000ec32d13fd78b504940c605645c43, 'MOONDOGE', 9) + ,(0xc761537d433e552ca6b731154b8c0d3724cf5a09, 'GROKDANOFF', 18) + ,(0x6d63262f2d54fd888cecb1365ee8ed9bea3f5251, 'XAI', 18) + ,(0xd9ee2fdd741f10576fdfca745d4d71f06d525bf6, 'Opium Bird', 18) + ,(0xb0f92f94d02a4d634fd394c1889fe3cab1fcffc7, 'DOGB', 18) + ,(0x5fb52f1689da8f6de0ee1a6a01cbe31b3fc4dc89, 'ETHB', 9) + ,(0x4ddc682809db17e880186524cb7b6c2ee52bb8b0, 'ONRAMP', 18) + ,(0x79808db78a1d5d9f5505842f7f690cdd37488c6b, 'PEPPLE', 9) + ,(0xaf3d4d240d625878f9ec1312ecdf609c226c50b9, 'Helth', 18) + ,(0x5516ac1aaca7bb2fd5b7bdde1549ef1ea242953d, 'DETF', 18) + ,(0x838c75c564390bfcf7b2995fa36c52b9fff1db48, 'STARRY', 18) + ,(0xfdcd6010bd8b0da3568c9f466e5e0acdd2963cb0, 'IDE', 9) + ,(0xb60abfa73b5e6825b02271f5a21ef86b276ebfc7, 'SQUID', 9) + ,(0xc6c9448a86882d73164a984fa52285ab51c823bc, 'RPILL', 18) + ,(0x31adda225642a8f4d7e90d4152be6661ab22a5a2, 'HYPR', 18) + ,(0x6f7397580a10b261dbd34fee09f23c97c30bc6bb, 'SOS', 9) + ,(0x639d827674d5b8bd25ecc3335e01897b7068c825, 'CUZ', 18) + ,(0x26cd72892df77b8b2a7ecd8733f6f4176930ed30, '$SHEBA', 9) + ,(0x5e9047969c35e867f0ab39fc4ca0ce2769ea4514, 'SC', 18) + ,(0x9df17a7a07feb3aaff1eaf21a04ed7443ea578c7, 'PIKA', 9) + ,(0xe2353069f71a27bbbe66eeabff05de109c7d5e19, 'SEED', 18) + ,(0x62463b3d03eefae68948ec5099b904eec8d9d3f2, 'FNY', 8) + ,(0x57fa4f057cbac96c8fa97b811720fd4ecafe5f77, 'SquidC', 9) + ,(0x7340ea46360576dc46ef49bce99bc5072c32421d, 'DSQ', 18) + ,(0x903a35d9a3cb0531726252b418ebe3db1f74a774, 'moyU', 9) + ,(0xd429f3caa8288419f8bb461fc65fd6ae9ef4fc10, 'SQUIDPEPE', 9) + ,(0x72b09a4193744a5f5a07b79c10641d17e199c038, 'SPORT', 9) + ,(0x9cf0ed013e67db12ca3af8e7506fe401aa14dad6, 'SPECTRE', 18) + ,(0xa7ecc6b917c631819d7e42c427f9649104d44ea5, 'PRATEK', 9) + ,(0xdd8e1ea1bc9fa5625fc7171a03504f728f0ca5dc, 'POPOY', 18) + ,(0x4a334c8bb7d4c1289a0df80875cbd00840d30495, 'GROKE', 18) + ,(0xfa4e955b48a310fa276fccbc0367b84a3552d9c8, 'GIRO', 8) + ,(0xcac174c63528271f168be1a497645fece254d6b5, 'FINU', 18) + ,(0x3160e9e5a293d1888ffe799d0022f1ba34632f2c, 'BAI', 18) + ,(0x3bb66e14e024108dcc0bed662190dbe1706f171d, 'DB', 18) + ,(0x7fef073cd67b25b60981d12d404e9e9a8aeef80e, 'GROK', 9) + ,(0xc8db455496457e5525c511a33f61215a1d714698, 'Wokipedia', 9) + ,(0x30e7415cc89256abcde8e19fc206d8a4b96dec4b, '0XLP', 18) + ,(0xaf5792a4e15d10a98a41723f84af33aabb537f2e, 'SPACEXAI', 9) + ,(0xdbd8edfe2a52dcb6ae7a1788e34e72a638f4289a, 'DEEP', 9) + ,(0xada894b6fee4d164010c683b2358588f3ef338df, 'GROKBABY', 18) + ,(0x22d96bfbb9e9334d3ffab6b2fadf5a00ddfe9fff, 'GOAT', 10) + ,(0x5c389e2416af7e6860e557e93f6c0fb0f8f9da63, 'CONAIHA', 18) + ,(0x43d28216843a6710f4307045bdaf9d4e513d9031, 'SQDT', 18) + ,(0x51d2fed4f25b0350414f498fdb68d1388096a88b, 'GROKAI', 18) + ,(0xe30b3fd129f8e90a425a2d2e0027df160130b00a, 'YILONG', 8) + ,(0x90b07b2ad96eb39653d776fba703602c8b15730a, 'GrokCoin', 9) + ,(0xde392c6b4d652d13502e0837ed9965a45673c468, 'OCEAN', 9) + ,(0x32a5fc22e20903e78171977359b500060b7316bf, 'PAG', 18) + ,(0xccb327c83ca107698503f161a86ab33dc8adc8eb, 'OMNI', 9) + ,(0x15a3a5baea3abf25be4f2b076f0e290c38197715, 'DEV', 9) + ,(0xb720191c34048f0afb3cdf48757899528a0d2a59, 'Tigris', 9) + ,(0x3e11b1bb310b910721dde0ab174b3a659d7ffc24, 'GROKU', 9) + ,(0xe00a4cdc4790701e6f725ef56a39ceb6556bfe13, 'KABO', 18) + ,(0x2334393a02b3c9812712f0e35c28f22ae652858b, 'NOKIA', 8) + ,(0x068693929b9b6a8444671b4280cc79350d38244d, 'DOJ', 9) + ,(0x4950d98023c30b1ca9021c9d8182d75017af209d, 'CZM', 9) + ,(0xbd617a1359086e33ff339ea0b9c6de479a3f5943, 'ide', 9) + ,(0x53805a76e1f5ebbfe7115f16f9c87c2f7e633726, 'fETH', 18) + ,(0x13b0738a79f04681b3bb295ec815fe787958c220, 'O''PEPE', 9) + ,(0xcdd0d090ad8e7b1a0b6b48e02a0182ab22da1916, 'RFKJR', 9) + ,(0xc31358520052eb010d5c3502640d87d71bed68dc, 'TRIP', 18) + ,(0x3d05a25ce244af92f883e79175682d5060ed4128, 'GROKAI', 9) + ,(0xe54463c9d067453f7a3cf9409b1b051a5a7722e6, 'BOB', 9) + ,(0x3a8993a46a74063aee523531a031007a175b06d5, 'AIBO', 9) + ,(0xf36d5777aa19b27fbd45498520417c587a38565b, 'QUAD', 9) + ,(0xe2b1cdbb4dbc342a4f7d1e0e7beb74c7d91773e7, 'MEME', 9) + ,(0x7a8f883f5f469aeab646ceacb4ba4df9256578a6, 'ARTHUR', 18) + ,(0x749177e9599105f47f0ea384e3a91ab3fc59b618, 'HAL 9000', 9) + ,(0x8aa44efcab997b1cb39baba7cdf50706f930a56a, 'OIL', 18) + ,(0x8bd1390c2f6447f24afe4083561e0c13238faa2a, 'neineinei', 9) + ,(0xd1b2522d3762eb0fd2c841482ec450bfb2d4d9fd, 'APAI', 18) + ,(0x8cb61bdc183910c72358bd0664f7c4f639cac01f, '42', 9) + ,(0x590f820444fa3638e022776752c5eef34e2f89a6, 'ALPH', 18) + ,(0xfb71acc360f5c47418be2ce299593b49bfbdb50a, 'x.ai', 9) + ,(0x06b1bc76676eb7a83fe2d76baa3d78cd455988f5, 'GrokAi', 9) + ,(0x8effc226579bc4b688681bfdd544e4266624de12, 'SNAKE', 18) + ,(0x3ba2100a682189de63280f9fb02a192bb2523e2a, 'TICKER', 18) + ,(0xab85fc558d722a2b7c040ffb77db676bd9e7d322, 'MOROS', 18) + ,(0x451fd37983d494bce294295f78a426832376b7df, 'Xeno', 9) + ,(0xe3fc34acfc6a27c9600ef3860ac4454cad5e4ccf, 'HOPPY', 18) + ,(0x6892a014f5438563da2c13745371f5b7ee287e84, 'STST', 18) + ,(0x56d50fe110a90beda2ebcf9a9ccc6b0d98c5aa5d, '3AC', 18) + ,(0xe2c2080c56870ded2d5d6792b23d41cc85892c7e, 'MUSK', 9) + ,(0xf994cb77f2bdb632384195afc016e6f2fac53e57, '.Kr', 18) + ,(0xf3eea3b94314338e456a8836073885c9d887582f, 'EMOJ', 9) + ,(0x33214365164ef8025b448d44c6ddf82d34ae7b24, 'BTC Halving Countdown: 157D -- 02H -- 25M', 18) + ,(0xd951d97ff7c56770333a88a58177cf46741064d4, 'PEPE', 9) + ,(0x6494089bdf8aefb745b4b9c4c8e637ad4c4ced55, 'CATGPT', 9) + ,(0x4c753ba11af7562d464b4587d63195b998075f18, 'CZU', 9) + ,(0x1794def9e8eb55fe9433057dd6ad4c7f4fe29df6, '$Milliways', 18) + ,(0x0cebb41f7c3810bf8190996fe34354ca05230511, 'THANKSGIVING', 9) + ,(0x96781b9be757481a4b6623a302a5afa9b33d4f4a, 'SPACEX', 9) + ,(0xd3fa57f357729dc8c0994fa64a6d0c9d319fb8bf, 'PRIME', 9) + ,(0xeb55ad3f84c75960aba35143bc7128f0bcdfc0ef, 'rats', 18) + ,(0xc3960227e41c3f54e9b399ce216149dea5315c34, 'CZ', 9) + ,(0x786cf55c6305d969592c15119efb0c6977597f79, 'CatGPT', 9) + ,(0x94dd3247a6936d2552ce1eedbaf6890575c2bd0d, 'MAJIK', 18) + ,(0x76d096cb6a51907348924c89737ecb1ebe658813, 'HASH', 18) + ,(0xa585dfaf7fb31d007b1b0db4a33fc5dff0222d12, '$DAWG', 18) + ,(0x34bc13de8e5124a7c47d4b7ff7c5ade6ee34faba, 'DOJO', 18) + ,(0x180f406c2fd5e63dd9a24dc1258a1253408e9325, 'NLINK', 18) + ,(0xfe4ef573ece6ec3fb402f3cf820f29765fac9daf, 'GROQ', 9) + ,(0xd31e53966bf212e860d48a3a8651a23d09a7fdc3, 'DOGEAI', 18) + ,(0x454c18b1a336ef3e9f49e1ada04d69506f97af73, 'FBOX', 18) + ,(0x13a483ab7045741cad4fc09c83ab082882f3ca5b, 'CYBERTRUCK', 9) + ,(0x883f5df5f8785d9c54b927b1362332b06b69bb56, 'INSTABILITY.AI', 9) + ,(0x861e2abae63b621602956caf1fb684a2cb9f1072, 'SCHMIDHUBER', 9) + ,(0x5df8aaa5ee4ec452f335e5ab12c50f3a2a6ee887, 'HULLO', 9) + ,(0x561cf9121e89926c27fa1cfc78dfcc4c422937a4, 'SQUID', 18) + ,(0x15fbd4533618971063ff246e261e6ed66de0baf8, 'SIM', 8) + ,(0x1111111becab3c8866712ebf23fc4741010b8dce, 'X1', 18) + ,(0xf4eeccc5660718290abe5e941d5e6454765c95ac, 'STORE', 9) + ,(0xc4684717cf8b6a41c876ffaf880435c0360a8e88, 'HAVA', 9) + ,(0x143a4ebe29ed12ee2b49b676063836754adcebd9, 'SHIP', 18) + ,(0x9dd5f5dae94633760b3125a7490ecb4571d09a42, 'BEEF', 18) + ,(0xea41e063cfc3c13209d5ae8495f2df7545cf9648, '$whisp', 9) + ,(0xf563ea3f3074af1b5a0f43860e419588b7cc2c92, 'ELY', 18) + ,(0x0e7c33a9a2864a5c199e3dd1ae4551dc2a6eab6e, 'PAYPAL', 9) + ,(0xd89587bd0de492b166d4899c835c471d74bc8d83, '$GDCD', 18) + ,(0x126ebf7dbe45d353f80f9a4c04ea260df26a505b, 'PERL', 18) + ,(0x676840280746095f632915f287ee599cad4996bf, 'PIZZAGATE', 9) + ,(0xf61451d72b18deca6e6a502bffdbb2d76e87a0ea, 'ZACH', 9) + ,(0x614528a8d8e5f81e1f945c694602f7f5848e68ae, 'BLASTARX', 9) + ,(0x8692a4091ec7fa7c08f579590ab1942ecc5c1480, 'BABYSQUID', 18) + ,(0x292fe9d6adc882ae2cbd7b5dbf4576dee08a7751, 'XCORP', 9) + ,(0x0f9170d261cd27492d2d8364a9b840751b1c6c98, 'GROKR', 18) + ,(0x05c0ebe208f6bda5f1ee7731d34062d488ffabde, 'AB', 18) + ,(0xec349734c664bf36b46e85a40c0d4484ab88788b, 'LIFTOFF', 9) + ,(0x5a583ddaf37b56585bd30a5900fe4596ecc7838d, 'MAI', 9) + ,(0xec09333069a1ebee9ee9fa9ab445e8c77f3cbaae, 'MU', 18) + ,(0x88fb8b89734777c97ada8e584f37a5fbe2e00297, 'HAL', 18) + ,(0xa7329a0c4ae7a94c165a2d89850b14119816d35f, 'XAI', 9) + ,(0x4b01ba2eda035c22f1c3e215d9486f2fa0a46941, 'BARKSALOT', 9) + ,(0xdeadface8503399df4b083ef42fa8e02fd39dead, 'TRIBE', 18) + ,(0x75cc9a6d42a1b34046420f5300cf2d1c1d5d7f1b, 'GORILLAZ', 9) + ,(0xf43211935c781d5ca1a41d2041f397b8a7366c7a, 'frxETHCRV', 18) + ,(0x83c9ac886889f08118a2cb8d524191908d090e40, 'ETHEREUM', 9) + ,(0xccdae12162566e3f29fefa7bf7f5b24c644493b5, 'icRETH', 18) + ,(0xd52dd1ea3983ef72454a7cb60c41eae13b301d48, 'GROKBOY', 8) + ,(0x55a8f6c6b3aa58ad6d1f26f6afeded78f32e19f4, 'AEGIS', 9) + ,(0x2b7b3ee07bf35bfd99634c8481931b2c1d2ab7fc, 'VIRALX', 18) + ,(0xf0167f001dbc5c9f3164aa9aaee240c4db988f5d, 'BURGER', 18) + ,(0x9516ecf214a04631c5eca6af64764c407b59adb8, 'OB', 9) + ,(0xc63232cfccfc7b2f5246e515f256c974a70f886e, 'DogeAI', 8) + ,(0x553d68f6c5ef1412a93c1074dc0890aba8ff3a33, 'SQUID2.0', 9) + ,(0x0aa8a7d1fb4c64b3b1dcea9a7ade81c59c25b95b, 'ASTRA', 18) + ,(0xf042dbd2968ea07c3273426f9c83a45367fbabb7, 'ELONETF', 18) + ,(0x87ba7970925482ea42f90d3695b49d9ce5a90e14, 'SHARE', 9) + ,(0x1b180026d239ed8ca6e5e34ae929538a4bf1ce81, 'MOGA', 9) + ,(0xc439b3704ed3bf24bcc765f4ff6ad12aff4e707c, 'HOLD', 9) + ,(0x82ffd834a9ae36fc6a085f3af3e69b4dff64deea, 'GRONK', 9) + ,(0xdb5562cab8024d62699ae83ea3872ae0de1fddcf, 'ZUZU', 9) + ,(0xecec0c664007eec080be373b1b71492acb41ea6c, 'DEVAI', 9) + ,(0xc704ffa9d5a7dc6b2fa36faf4bc0335fda01e35c, 'NUTinu', 18) + ,(0x0dbbb2c1998a233d1846e098293034e57e958e03, 'TC', 18) + ,(0xb4915ec97de5551821a5b5d0ee223fa540694306, 'ZHAO', 18) + ,(0x4e9fcd48af4738e3bf1382009dc1e93ebfce698f, 'TAONU', 18) + ,(0x07f1f0dcded2ec17815524cb16a82f25a78c9f6c, 'BORGOBOT', 9) + ,(0x8b17f620ca072ec95d4d1c85eca11a65282b4104, 'CAI', 18) + ,(0xb281d84989c06e2a6ccdc5ea7bf1663c79a1c31a, 'ZETA', 18) + ,(0x03fde55b1004d64f78cc5aca9fbb906b2258b880, 'SHIBAI', 9) + ,(0xf4c1b0b64a35d6641b2444a940b0a69d694d0073, 'X', 9) + ,(0x93bc70718a692ddb89b8f609b24ae393000b0a26, 'SQUID', 9) + ,(0xae9d553c85eef99c0ef9169f0d49ef33f5275f94, 'DS', 9) + ,(0x0799de3f4e111b70e845edb7a8646d934a51e210, '50CAL', 9) + ,(0xd91d88b337522e1698729299f6e7351b2307d964, 'PIRATE', 18) + ,(0x8a332da1f6a623ac57dfd0dcef67a98b31599f40, 'HHB', 18) + ,(0xa704662ecb62be83f88ca1a3b5277a381cb32dce, 'BUZZ', 18) + ,(0x0041383b9b15c3902fd7ee1911fe216d7e5bedfe, 'SPLT', 18) + ,(0x2b81945875f892aff04af0a298d35fb2cf848c7b, 'WEB', 9) + ,(0x24f7a0ab7c598936013f21aaa124bb060cbdedb0, 'AI', 9) + ,(0xac3cdc738a794c84a4164907f3c5c27567e37095, 'HE', 9) + ,(0xc5190e7fec4d97a3a3b1ab42dfedac608e2d0793, 'FXI', 18) + ,(0xbd708bb84a6cd17528ee31d1ef9f812c2188a747, 'MINIGROK', 9) + ,(0xab97bf5fb097e503bba2c86b7c56c0059ac0dc06, 'CHAN', 18) + ,(0x559f65883aaf6c3f289cc657ccd9fc08eb4d5a69, 'GROK', 8) + ,(0x0540ea73d5f59b2b8f318d1843efdfba4f8a259d, 'BBETS', 9) + ,(0x15652fc187f213271483ed1d29b0be0d03498a1e, 'AURO', 9) + ,(0x44082cdcd06e2cb8ae08dcc99eca337a59cc3c7e, 'CrzayFrog', 9) + ,(0x6460cc0c8c2aad067af2923ad0f614f69bce80b8, 'EMO', 8) + ,(0x0d958d12c2054926f5e6840776f2abc062ab50db, '0xELON', 9) + ,(0xa7a8fffac841fcc98c0039af1d916a31e75d8823, 'GG', 9) + ,(0x7f42ca651f300099f2d73f64017781a4d92d4733, 'CALD', 18) + ,(0x1a3f4ef1a61e5aa47e526c8a396bd1f9577c1982, 'FOMO', 18) + ,(0x0800394f6e23dd539929c8b77a3d45c96f76aefc, 'TURT', 18) + ,(0x921c91fe10dc5718b74b9371755b91caa49fcc48, 'OIL', 18) + ,(0x05e56c2d052a0fdbb9d4befb315029909db7ecd0, 'HUMAN', 9) + ,(0x89c75c7caefe916b8ef68a38c514b5bd296af301, 'FORGE', 18) + ,(0xbb3712f6be7aff9396250b1fafc201c2ac0c05ec, 'N1', 9) + ,(0x59ec6c1bd5fb2bc5657121edf57bf07c4ae71c86, 'SQUID', 9) + ,(0x2c7507d6b628caaa9e7cc9f9633ac2f688e43ac5, 'GROKX', 18) + ,(0x287259b2079cf3c480742cc3b3c096a65db78058, 'BCE', 9) + ,(0x5733f9e6e0bf5458ed0ef5fe56578b621e4bdd2c, 'GEM', 9) + ,(0x54ae2153cd6ae29b536cd8bd6bf143dc25cb1956, 'BlueSHIB', 18) + ,(0xad15a4148382d484a8366b7263279bc50cdeb0a8, 'XENO', 8) + ,(0x10066d59cb69f4e69aa45e9d97b8cb1832639864, 'TREND', 18) + ,(0xe626d4265f5bbdc14d11116249283f2d7d1bfb03, 'BSHARK', 18) + ,(0xb1bd0ea9375d5a1ffc6a77e74890e3b647d0b6d1, 'Splash', 9) + ,(0x4f15ccd4a877a817ffcf7bd3d6a221ec4663daba, 'OPENAI', 9) + ,(0x36a17b52b5322846fcf894ee1535c8aa23df6765, 'μPotatoz', 18) + ,(0xdf22f1d1fc6f73dc86dbe5da1ee01c04c6e9484f, 'PEPEAI', 9) + ,(0xa1a8caf4df46242a647150fe9eb70c8a83dc1788, 'GPTs', 9) + ,(0xc14b5c20df98a8e63820dd83c1e3a49c7ffa1b8a, 'GN', 18) + ,(0xd78ce104f41cd8ee3e2381b22479a8c6ea27a039, 'DOGE2', 18) + ,(0x1a11ea9d61588d756d9f1014c3cf0d226aedd279, 'MILEI', 18) + ,(0x6992efa26f7617dda2f436d13a03af168c86fe39, 'KABO', 9) + ,(0x6c3d78e55fc939da4ca94760f6b27c3425a7a865, 'MEGADETH', 9) + ,(0x938ef9caa5ef6445302bfb1f34c26dca8525c4bc, 'Bonk', 9) + ,(0xcf4608974ab3176650e12c1d4c9326820e60f8f5, 'SQUID AI', 9) + ,(0xe72f7a81eca77c906162ce02b35fde03f034cbd0, 'FLMTHR', 9) + ,(0x340d622e48ff76a027c425993b861e4167e6d2cf, 'GROK3.0', 9) + ,(0xe83528186f6743573737b0e8bc756ace2ab88df8, 'METAAI', 9) + ,(0x36de545a738294b49523fe94747842cf9fa2daa7, 'FUCK', 9) + ,(0x742c7f256e03bee4014c09aaca6e697e04e3277e, 'SHIBFI', 18) + ,(0xade6eadee4245ae27df410d777f2631c9c84452a, 'T1', 9) + ,(0x3f33e66caaebb67e93f2aa6e6567f35127d1502b, 'SQUID2.0', 8) + ,(0xe625c4dc78fa796cddef6f3b2a18174b27f008be, 'EMI', 9) + ,(0x680d4d2779f3d4ff903db1d4698b1f8b0ec0a9ab, 'ELON', 9) + ,(0xcbcfeecb839bd1049018ba185b5e77d7e6221dba, 'PARTYP', 18) + ,(0x4f646bdc4c49ed7ee998b4b503730921a591fe99, 'WEB2.0', 9) + ,(0x06bf69f9170684d5661f461cef59312883d23851, 'CO', 18) + ,(0x0e573ce2736dd9637a0b21058352e1667925c7a8, 'USDV', 6) + ,(0x26efc25bfabb431349a764c96c96c4925dacc6d3, 'AI', 9) + ,(0x2857231e90bc1028fd8edd300e108f764410faea, 'GCS', 9) + ,(0x1a35b55381705f73e121cee6625366e686cb2a12, 'CGB', 18) + ,(0xd9dcd611bed2be9a4700c725a3810870b9bff094, 'WPWR', 18) + ,(0x8d450eda0051b712e305f62e77231c5efbd57c4c, 'GROKSHIP', 9) + ,(0x2b7f74ace4eacb0f79dd59276406fc8a477f7205, 'WTF', 18) + ,(0x291d8dddfa983c0f85c7f033c593da77a032e78c, 'BLACK', 18) + ,(0xc706ef3c72935469bbb72f4d38a836c19ddf681e, 'VPN', 9) + ,(0x816d50a91fe6c4b226bdce5691e054458d2382bd, 'DT42', 8) + ,(0x1eca6f227e42f12883350f8841463cc073f4c4a6, 'dogecoin', 18) + ,(0x273dc2f630c3c88269dce6ef9ec97b0263d4a969, 'CRYPTO', 9) + ,(0x799242d3bed7ad80313d228deea71722647e77ef, 'ORION', 9) + ,(0x2f2a69f5aabd026bd3c2a026c155d472c3c0400e, 'OAIC', 9) + ,(0xbb3a8fd6ec4bf0fdc6cd2739b1e41192d12b1873, 'OBI', 18) + ,(0xd0e3466d6d0f54855112ba96f79bf275b0dbfaca, 'META', 9) + ,(0x8da07804f1cbcd6151d114b2f7957a3f33ce24af, 'StandWithX', 18) + ,(0xad78d154baec2e9b4e78182d02388981b5093f80, 'SOY', 18) + ,(0xb73ccc01636821180b4b246fcc3c1ea2d643b8a4, 'PEPEAI', 18) + ,(0x9a5f912d30910ec5c5a1d189439b97e2013a5b43, 'MYRO', 9) + ,(0x7d8d0dafe93141af83fde0168c566f2da64808ff, 'SquidGrok', 18) + ,(0xd68012580e6a1a0f9c9321a729df7288ee85d121, 'MAGIC', 18) + ,(0xa66cd3978140846d598692ca8569ef7a3ca45715, 'ALTMAN', 8) + ,(0x999c578a56ed25d040d55e88b2d70d6e59b798b8, 'TURKEY', 8) + ,(0xbc0e2969d23a084a0bb65a2b9a4242e7f9ea65b6, 'CLIPPY', 18) + ,(0xad7eb8af08487c6b1a2187d056b5c719b872cda5, 'ASTRA', 9) + ,(0xbc55cb1217b214e8bfd17449ba371cd1fddf5f7a, 'Instability', 9) + ,(0x69ed14a78ba4798e61914bd454e43d8eab6025c7, 'PPRFFF', 18) + ,(0xc573dc2e1a3bdd9375004f1011b99b2fc749204b, 'SEAL', 9) + ,(0x3aaee9963fc6b2fe485246bd6e3e77ef488a9f96, 'NFX', 18) + ,(0xe55a0073e0ae0f625f20371727a70ea866ceaafa, 'KAI', 9) + ,(0xf491e85acb6413fc8c1a0fc6eda594463ca04c0c, 'SQUID2', 9) + ,(0x8e7c1d829b9cfe983a4b4adfa0e3a4355ccc6244, 'SATOSHI', 9) + ,(0x55844e7cc4b4a4cb183a0e2c611e558801fcc2f5, 'DILBERT', 9) + ,(0x31878782eda21dfe1937e45af1996a512313d74a, 'MORTENSEN', 9) + ,(0xf950f9d9d3269a7e3929ef0a76e17a16b67a735d, 'KITTEN', 18) + ,(0x544d77e5b6f381fbc773a3f6d79e5af661de2cdc, 'SANTA', 18) + ,(0x345a2661f3e659d6300cb4a0f749811cf9d12e2b, 'Cyberbeer', 9) + ,(0x015cb712391bea42ec2147e668812391563611af, 'SFY', 9) + ,(0x31d3bb633b67549305d64ac348e296541eacc832, 'CR', 9) + ,(0x5c5e3b74a485ba280918b4e30690342b94b254f7, 'BNB', 9) + ,(0x9a4a1fbe8d82af756f07c23436fb0114e6dff818, 'SAYLOR', 9) + ,(0x443f9ff91a72f1482d13dfd40eec107bb84ca1e5, 'FARM', 18) + ,(0x2ed918534345278508cf488630c348b848d757b5, 'FROGE', 9) + ,(0xa673ae7f0ca5082ab5cd750056d98e70ffd3cab8, 'TROLLS', 9) + ,(0xc1e4189f7120b460d3522abd1bf81bceb3d44219, 'GROK', 9) + ,(0xbc3c0d6508d669543c339efc029cbfcc1c052750, 'RBET', 18) + ,(0x4281bda7823152e0e07658a50b4ed4f1a03ef9b3, 'DEDE', 9) + ,(0x1db3a9a5c90f8cee5996b46379e3db59ecb4e9aa, 'SOCKY', 18) + ,(0x490bd60a5d3e1207fba9b699017561434cc8c675, 'BUGS', 18) + ,(0xb9ad18f9f688e303cdcf5795355d5c735e061878, 'RESHIB', 18) + ,(0x13afd0e226a80937f9237b60f44eeaf1d87e65e1, '0xSquidAI', 9) + ,(0xa10d77a8b4fb0b3cd229ef485ffe2b86e65ae5a6, '$SILK', 9) + ,(0x1741378351101adee582f880468e2e02d8e9bd3b, 'PAPER', 18) + ,(0x0aded2ad5b34ae4daf757ebae618a8582984ae39, 'MEMEAI', 9) + ,(0x75f9442f91393701ce86df503c4baee63955d1bb, 'BEBE', 9) + ,(0x7da2641000cbb407c329310c461b2cb9c70c3046, 'AGI', 18) + ,(0x013062189dc3dcc99e9cee714c513033b8d99e3c, 'INFRA', 18) + ,(0xb912cfd8cd814988b794b5301785c12c71b51651, 'ONB', 9) + ,(0xf3e7c664d42cae17df2db2aab97382bb581ddcdb, 'BEFE', 8) + ,(0x5f093c9b779c6d6245eb55a0a66b69e6538c333f, 'CZ', 18) + ,(0xb92e4645850cd82cd6ae5851f3db025ed70871ae, 'Simpson', 9) + ,(0x503b5a92e0f24be60402ff6ae2dbff745607b346, 'ROBOT', 18) + ,(0x168e209d7b2f58f1f24b8ae7b7d35e662bbf11cc, 'LAI', 18) + ,(0xb7d4bb03ff4109c7ee2295ad581d33273a565d8c, 'ABUTIU', 9) + ,(0xdeb16e728a5593256eae0917efdf792ccbab0bdb, 'froge', 9) + ,(0xbe8af1f667eeafd39228ec4d55e697713ed202f1, 'HDOG', 9) + ,(0xc5f0f7b66764f6ec8c8dff7ba683102295e16409, 'FDUSD', 18) + ,(0x9e42900af9a7d0a67ad0f2295051f6011e63b6b8, 'S', 18) + ,(0x75d43d86cfb54b4bb2490bccb80d766d06b7273e, 'PYRO', 9) + ,(0xacf60e7476c039722bfd69a808f6b2bb5e0248cb, 'DOGEMEME', 9) + ,(0x077c12bedb54cb11417913bb65ba6e5b97089c82, 'Q*', 9) + ,(0xdf24e97a20b64b028e0dd4e8aa5ac672cf25dde9, 'BTC', 9) + ,(0xd0d1c35083cd2d888c411c0da9eac82623473e9d, 'TESLAi', 9) + ,(0x0f9decd99f455b898e0f159f67edf209cbd5d065, 'CTC', 9) + ,(0x45dbd7da05875563b16ea170037df14b466d56fa, 'GROKE', 18) + ,(0xa3c519683010d59fa54a4a6c4cac0f55cb20bb3f, 'BETIT', 18) + ,(0x62738964242d84173340a1e6d8e87780d52797e3, 'TORNAI', 18) + ,(0x1a3a8cf347b2bf5890d3d6a1b981c4f4432c8661, 'FAC', 18) + ,(0x217105d08984066ea1f60adbb7c744c570453324, 'DROCKET', 9) + ,(0xe1ac12f1a45b34493efd9879435fe0bf193dba1b, 'CHRIS', 18) + ,(0xcd68acc0e6c94c0226b0d760d19951143ee7aa44, 'TIA', 18) + ,(0xaa694c9e20d88b9380f2b23aa39a4ac5fb528cb9, 'YFC', 9) + ,(0x356b008f30081ae1ed6c4763643412467ad3f52c, 'ROAD', 18) + ,(0x95b7fe34cd661daeb6b9a0a8b60251c85fe341c6, 'ELNCO', 18) + ,(0x9009bf358b29ec7091e6d9ade917a680df9c35f4, 'ELONKID', 9) + ,(0x808632424440f6483d9be7509812b53ed0f00344, 'MECHA', 18) + ,(0x98c1be5e17b57fe6822dc7956d96ba6a2831f6d2, 'MIRA', 8) + ,(0x817d88bb33c41f4d9b6c47069b49799cf6258b79, 'dhhdhhddhdhhxhdjdbdhxeuhehwgsbzzjsnbsbzjzieibshdjsizhzbsjwuwjxhhsuwshhxusus', 9) + ,(0x26132b6866f7071ff3a38d143d7d7080c7029daf, 'Gary', 9) + ,(0x97d0cfeb4fde54b430307c9482d6f79c761fe9b6, 'EPOCH', 18) + ,(0x331b964d72d625d9d67f08ba2c94b76a54c55d51, 'SEAL', 9) + ,(0xcb69b067d9d8d6dd1209fe4557c43586e54f9045, 'PSM', 18) + ,(0x28d6cefdc7a57cb3e2958f61c95b20c76103fd79, 'SLOPY', 18) + ,(0x6ba192d4d9cfdbcddc98cbbb6faadf38123ef26c, 'MUSK', 9) + ,(0x526a0f2cbf159cb0d009709d04b048cef65b3ff7, 'BA', 9) + ,(0x7679b30546fa62882ba9ff081b7e6e10943f344d, 'GROOVE', 18) + ,(0xa15b4a687a04a309acc3456090266068af921ad6, 'CNXAI', 18) + ,(0x5957c351946d45f74d1a6f034cd9b6ac6654e0d7, 'CR', 18) + ,(0x6179f71799f5cd0d6003babcdf36a4693d3e0ffe, '赵长鹏', 9) + ,(0x888935a9be4fb6a6bf8e1d3872aff0dd234da909, 'AF', 18) + ,(0xf79cd4af73545c58b896b1b492599c7eaca4b0db, 'GROKC', 9) + ,(0x2b87d5d3a7ebbc34615869b9ab7d6e9321df75a3, 'SQUATCH', 9) + ,(0x2435ea5de0a86978a9fc40314e5e58017fb5eb0d, '$BITE', 9) + ,(0xb622907fbff6cbf7c3ce355173251e3edb13a606, 'FRT', 18) + ,(0x2960c7d910cc89edaa97f1b7b3437777c26764de, 'GROKBURN', 9) + ,(0x27445e0433bc36770d521281f472946be7b2fca9, 'GROK0.5', 9) + ,(0x442a0a20baf2ecf2645926008efd4a712b85c8a0, 'Cz2.0', 9) + ,(0x31e4efe290973ebe91b3a875a7994f650942d28f, 'SHRAP', 18) + ,(0x2d3590fac07b91c9451e8d16c372ece9758f040f, 'rat', 18) + ,(0x6db02207e7f5b69366299ae6b13ceb2c093729dd, 'PEPEAI', 9) + ,(0x544a6c0fa9fe5f34ba410a4d5d7165a733b6e971, 'FUSION', 8) + ,(0xf952b95ab7b5805cd109b4e50d2273fdf4818b22, 'GRIBA', 18) + ,(0x1ae21d57afc033a556ef63daa216046321b3d391, 'SQUID2', 9) + ,(0xe93fb694d4c9c812507516838321c94c7454d7f2, 'AthenaMIND', 9) + ,(0x6f0b68cb320c4285ae059dc1cd3d5454ab0380f6, 'WSA', 9) + ,(0x404d6383948b59aab5b5fb20a1f58eb3d5f95705, '559Q-RXGN4-JZPP', 9) + ,(0x56d070ef68432bf70583e6c18b2c8c0f3fc1d598, 'GROKA', 8) + ,(0x468e66532bc9faa8adeddfba9e865b82b494fbac, '456', 9) + ,(0x4864f098aadf40665e9ea6c79d33b9918721af0d, 'MISSGROK', 9) + ,(0xf13daedc357627bec59bee39c9316475f1300187, 'CGX', 9) + ,(0x2b1cdecc1ebcb32b2e1c8b78d767bd3da628e692, 'VB', 9) + ,(0x407a12cf3f2f1a449cb0e1b91aba9a7478bbcf56, 'FSD12', 10) + ,(0x265ffbd49dd4daae3226e2325dd04c15245a1e33, 'STEALTH', 9) + ,(0x2948732ac1385563aeedc0379969449622cf0aa3, '𝕏', 9) + ,(0x8662b153fb2ca76b29814c64bd883ab7482e094b, 'TAO', 18) + ,(0x69987dc5ae5468828691ca8f060492f89da1561d, '$GROX', 18) + ,(0xdb8ad3c6d7f9f364d59af9a62c3139cf5c6be88e, 'XNOVA', 18) + ,(0x6046d75dfd36e9c108356f9b98ea267c4485f8a4, 'GROOOOOK', 9) + ,(0xa06eb3e52dabf9aa7ff8ad1428b548c9a420aa20, 'STARBASE', 9) + ,(0xfffb3adcf82f6d282a6378bb6767d06e286844c1, 'SAGE', 18) + ,(0xb1c41d76937060d0782f106076776761b3bf46d4, 'SQUID', 18) + ,(0xc3bba536616c13121b0feff70ea887eb218ef080, 'TYRONE', 18) + ,(0x3bd36af8e0df9b8552c96379e4de0d92fab05b86, 'sata', 18) + ,(0x826180541412d574cf1336d22c0c0a287822678a, 'FLIP', 18) + ,(0x8bf30e9f44e5d068a9d0c20da22660997a532e33, 'GDAG', 18) + ,(0x58fcd580ad87ef746f8298fe49b0634cbed6d066, 'BNB2.0', 9) + ,(0xf920e4f3fbef5b3ad0a25017514b769bdc4ac135, 'BAX', 18) + ,(0xc64d298ba9a09d3882ed03f7c2e897b08c3d7a38, 'AVOCATO', 9) + ,(0xdc7da87115d4464e8aac99920a533d401bf72a50, 'ICE', 18) + ,(0xbfcd8e23703dd8a60219b3c40d8fbd7d7c1029b7, 'DOZZ', 18) + ,(0xddada03731da4a9b69ee88a7eb81f51fcb5728c5, 'CCCC', 18) + ,(0x64b650d7985daf8550393f9712efead3028b8dab, 'E-Musk', 9) + ,(0xb4656b811b716c3ebf429aa66ccfc2dcf6a94cfe, 'HEYI', 9) + ,(0x6ca84eb00fb13f5648fa6ddcd8b19a68557922d4, 'ESTATE', 9) + ,(0x5fdff34e4065ca84d4998913c2adeb9b407f30c5, 'YEP', 18) + ,(0xa3fc9872cbd2544ce734213c8afad8de9297485f, 'NOTAPE', 18) + ,(0x9729ad68958437f072996857b1d4503453f96cda, 'GOOD', 9) + ,(0x6c4c6448d2f4125ca95ae8199846f4cab8c1c37f, 'ZHYX', 18) + ,(0xc635b34b4e51e94d81bf967169ef9fa0adb1acf1, 'Nothing', 18) + ,(0x9a1d1b20866f792f516a4b9197ba7e0eef12a374, 'FIDO', 18) + ,(0x045ceed260c39b410a4c42d0977b1e868c29a142, 'Shrek', 8) + ,(0x8941131b1c7e5e08e8beeb058c04d65e333c6b56, 'LTN', 9) + ,(0x2481a5c73e06bffcb94f9279c062da39a209a824, 'Safemoon', 18) + ,(0xc297f0eeace5afdaf4e39f7fd1f82c0335d05deb, 'GROKAI', 9) + ,(0xeb70ea12af72fb82ca15d71c276ff1c5e2889ff6, 'FOUR', 9) + ,(0x7eb1710578012f86ecba1aefed03f0e1a9b4b4aa, 'SHAKEY', 9) + ,(0x6abcd16d472b5ca0e26e8bc7a7b73a9aefda8c03, 'MoonBox', 9) + ,(0x4697e219c867aa0c24358972b94b3bedf97545ac, 'RB', 18) + ,(0x2a1a7e491d1ade3db779b17e0164ff079886d7ec, 'PUMP', 18) + ,(0x33828e67522325083e73db3f5a79f68c8b237b33, 'BLITZ', 18) + ,(0x3b78b969f6aef8bcf5eac301271e94a02fb47420, 'CZ6900', 9) + ,(0xfe168bf19da9f206b7e3720109e5df747f6d3e13, 'PLASMA', 9) + ,(0x94694176ccde656b004dcd2ae68bc8a971279465, 'HIRING', 9) + ,(0x2c177ca5b58ab4537ce7862c3d062bacc91d4c13, 'TSUKI', 9) + ,(0x7866465296b2f887f2a50b84c23985dafcc77d42, 'QQC', 18) + ,(0xd01d133166820557db7138963bcd9009c54e4c33, 'CEX', 18) + ,(0x4056546c04abb5aed708a53e4feebfcf7950ee57, 'AICEO', 18) + ,(0x9d1a74967eca155782edf8e84782c74db33fc499, 'AI.COM', 9) + ,(0xc1a7c409af467aabb00202e5697bd8f8d5c9a696, 'GUROKU', 9) + ,(0x093e585eebe6fa8d20105fe74d3721a56ba223de, 'WWW', 10) + ,(0x52871b77cd51c26e64ea3f34b9ecc05864cd2e5a, 'SAM', 9) + ,(0x161a95ae00e89e047dbb9b02a8e3085122a64bcd, 'Ad Astra', 9) + ,(0x473f4068073cd5b2ab0e4cc8e146f9edc6fb52cc, 'NUT', 18) + ,(0x7727c50f2d565616eaca7e554abbe78cc527e1a7, 'XP+', 9) + ,(0x0b7e7898b6a2557d66bd3288a8abcf236979fa1a, 'Buddy', 8) + ,(0xccc149851a1f3c82f310b4f70440269784c86818, 'FIGHTCLUB', 8) + ,(0xd3205bda5a395812874e50ca9bef07dfd9cdba68, 'SIN', 9) + ,(0xd5b339247fab86c87030c2ade30e3504adcde38c, 'IXRP', 9) + ,(0x91be752d438d5f804345b5acb18de0c431ad470f, 'ETHETF', 18) + ,(0x7ad0a0130c21fff8611841b581cddb10426a65dc, 'FlokiAi', 9) + ,(0x9f8ae89b695fd1773175ccb9106a90ce868acab0, 'ALT', 18) + ,(0x39d5313c3750140e5042887413ba8aa6145a9bd2, 'EMP', 18) + ,(0xd90fb12baa85f230bf06a26d3fc75f3bf97e4a98, '0xAI', 9) + ,(0x9f5bc9363dcfc36dfc6c08543e425901ddaa0c9e, 'SQUID', 9) + ,(0x53acff79af0468eed5fc277ed89c74ad21357b64, 'GROK', 18) + ,(0x27d9abe1996a195196cf3b7d583682c1e98c8430, 'KMS', 9) + ,(0x40966822498ab0a5883ed19ebeeb52f9e112cf75, 'RIC', 9) + ,(0x3aec5ee25f73ac04c006b8a62081d0c2c76df278, 'Quell', 18) + ,(0xf327c89bf0769f0f2e99e50232557f03aad6cc17, 'PEIPEI', 18) + ,(0x7affc1b0c127dddcbeb4619d2a91b1578858a1f3, 'MOLY', 18) + ,(0xe884271731b21237d77b866c19474f47354ddcd5, 'MEMES', 18) + ,(0x89f8777f2965f84effa97c49e9d60bf428b53c8e, 'TRACKIFY', 9) + ,(0x77a839f906403c0ddd2f39a6c8d65c5cdcc1cbd2, 'ACAI', 9) + ,(0x143d7a700a533b4baf6d693449b278a8a2f5927d, 'sats', 18) + ,(0xf59e158bea04cb0237c92178cad7b2b80d5b0cab, 'Instability.AI', 9) + ,(0x11a839c6650a0e4fd6808e2eb0ce65f2f6494359, 'GROJAK', 9) + ,(0x1c693a6d675f8defb1b3930d0d5f91225bdeefaf, '$MXAI', 9) + ,(0xaea17c97311061504f3d58026decf0fb7320afc9, 'BOJACK', 18) + ,(0x39e02ba00b07c82b23c1c1b470e607477bb60fc2, 'SFD', 9) + ,(0xf9705abf4cfe973abd4fd0517de68d7983e67ab0, 'NWO', 18) + ,(0x77105901d23433db753387567097b584fd5e5d10, 'TEA', 9) + ,(0x385c88aa77781c11a7f145255b9738a2449521cd, 'BluePEPE', 18) + ,(0x7c748ec82920f6987b9ab0d3a708e7bb78c3dfe4, 'GROKDOGE', 9) + ,(0x9526dc16023d1b72bc4d1f235951b9a4ffac8d33, 'JEET', 9) + ,(0x920326351806213791654b5a7f349da81adbed98, 'TAO', 9) + ,(0x78c74ae66308fe9be6838359c6f8392afbe8c06b, 'Vanguard', 9) + ,(0x6fda684244aad88b4b4689edf30789a8dffac393, 'VERT', 18) + ,(0x742b9ab6760d867b6666cba0fafb30b758c9bc5a, 'POWER', 9) + ,(0x9c2dd3fa4dbf7dd501fc049fbd80d69a51426b8f, 'RYOSHI', 9) + ,(0x8f602ee5b1f8de67120c427717cbe2770f3cf320, 'STARRY', 18) + ,(0x892367625303e8535756081a322b00f7f1ac655d, 'MOCK', 18) + ,(0x5772dab8bd4e85319daa8851d97211f6e7c1b61e, 'AGI', 9) + ,(0xea258c3ece66e1523ca4ae29175cb7096059005d, 'Non-Meta', 9) + ,(0xacdbfcbd4d6d4e9fe72c3ba4280d728ab2ace30f, 'TWB', 18) + ,(0x1945e1245e66c3eae3e5799099cf2ea97c66a379, 'BBUD', 9) + ,(0x44538078134a0c40a0da9ac98742d445fa9bacd2, 'CATGPT', 9) + ,(0xa4bc2b90743294e5e6fd3321a9a131947f7785db, 'JEST', 9) + ,(0x3e316791842a271ab1e138ff7408c015efd9c6be, 'VXAI', 18) + ,(0x79c9f114ecbaaf9b06cec1d40b63a530b6eb3d50, 'MONKEYS', 9) + ,(0xb29afa1e62cfca6729cff27518a6697583d041d7, 'RNG', 9) + ,(0x7189a0dbbbc5401db2b9ce8e18aa08966a6479ba, 'PLAY', 9) + ,(0x224da25c58574b852876a1c4e289be9eb7345322, 'PEPE', 9) + ,(0x572a06bffb798ae9af967ff04e1fcfedd55bb687, 'VB', 9) + ,(0x6c1b25990f095524d0b1f3f80046f801bc1b65d3, 'CATGPT', 9) + ,(0x3e76990ef2b7b3c96a0852877364bdaba9ad3e70, 'LSD', 9) + ,(0x7ce0210131c45aae775f61edc04f0c277470cd7b, 'WEB4', 9) + ,(0x6931fc92708adfe273b82fddd18e2c68916ea703, '$MYRO', 18) + ,(0x998c8832aed6d26a7bd77ba421ab9298d98f3963, 'ide', 9) + ,(0x41b6cec530119cbe8815f17bd1160198d8b85477, 'BabyCZ', 18) + ,(0xc08e31eb3ab0c460e43bf746be25f78088d749d8, 'PEPE', 18) + ,(0x86734d3819db5525f0bc25e3593a9f3cfc3bb0d5, 'UPAI', 9) + ,(0x23a2164d482fd2fec9c2d0b66528d42fee7b8817, 'metameme', 9) + ,(0xa65688d89466bf22e7b2e2333487fc87445723d4, 'FOUR', 18) + ,(0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee, 'weETH', 18) + ,(0x4b408c8a690937c6df9e6af1f86d90f67ddcfce6, 'REAL', 18) + ,(0x1ac2befc3727dfc1504c14b62dc21a11d02258dd, 'TSR', 9) + ,(0x352b04740adaa8373421ac61a1e263a414371d2f, 'MARS', 8) + ,(0xbee8185a816898e7e797ebef53151b91e8dbda8b, 'DEATHC', 9) + ,(0xba657b8e06cabac778ee29ab6716b60ae63d063c, 'cbay', 9) + ,(0x9bf3a5ba31c5629e9b08a14cf9dc21897bfd3ec1, 'BENANCE', 18) + ,(0x4530261474d2980f46bd74ab2f0d088c853c0088, 'GROK', 18) + ,(0x86f6d4bd0c76b20a20438222f20fbf0c9b931cc3, 'iETH', 9) + ,(0xfe9ee61e2e612e2b337a5a3d4f655fb009631ce4, 'CRAB', 9) + ,(0x2d29c4130b818d5deb5ba15d2ad528f4e7bc4be3, 'CCC', 18) + ,(0x10872b118c1d5abadfe7cdffe15fe6ef4b877e52, 'X FREE SPEECH', 9) + ,(0x6ad252cb62f2c1fd589e37f6c07abf0cf3b81cd9, 'LIVE', 9) + ,(0xc8d2f14c33064c810efa29ee7648ccca0cd1f772, 'SPACECRAFT', 18) + ,(0xa1f410f13b6007fca76833ee7eb58478d47bc5ef, 'RJV', 6) + ,(0x655dd9db68bc8a03a6abe9d70af6222d623439fb, 'Hodl', 18) + ,(0x27ca762c6b0e63ad841a261c42615ad9f5bbe03c, '𝕏Corp', 9) + ,(0x33cb2ae1f37a347154237fedf89d528b503fa881, 'FRAUD', 9) + ,(0x9490d566eb4484856d01e7ba2e9a047b8fa7594b, 'BONK', 9) + ,(0x5b5e123bc328495cccb05b5de1c6ab2dbcb6249f, 'TX', 9) + ,(0xc916788b65b24869a858ec447a6df64023e35dc8, 'GROK2', 18) + ,(0xa67bc4edf257abd5b295a782dfea8ef935c89371, 'ROCKY', 9) + ,(0x9af237207fc72154f90568c65ad1dea5781cffa9, 'SQUID', 9) + ,(0x1e99077bdcc6c425c9143b78c496520a327162de, 'PEPA', 9) + ,(0xda0e01df73685568857d978ce573bd8b0ca18bbd, 'KAS', 18) + ,(0xbb0056cb580e525684cad742a5ec95d87f66a87e, 'GROK', 18) + ,(0x2115651d2ad8f71da2609dc9955c2889bba16a56, 'LARRY', 9) + ,(0xaec13e00b06b127fd57c13bbb6cec8a86cc852b6, 'SQUID2', 18) + ,(0xa3d4bee77b05d4a0c943877558ce21a763c4fa29, 'ROOT', 6) + ,(0x9774a890a8f0c68f4fef8871fba9eb0373973902, 'ZachXBT', 9) + ,(0x5c1a467e12150864ea15bd394dac3801c2ca3cb0, 'GAMMA', 9) + ,(0xa338b5a4bbd8053994bb6c55d770fc2447d66b88, 'EAG', 18) + ,(0xedfa7da5fd522e16c73aff0c9bc67df9750d94d1, 'AGATE', 9) + ,(0xb843c0c620c4f87dc6409e57ec5a4b2c6e461539, 'Y2K', 9) + ,(0x4469f9cdd223e7556b40832bef1b3bde78dd886e, 'SNARC', 9) + ,(0x230f5bb3b8c2d279237622d5d8f61359ae4a7abd, 'SATOSHI', 9) + ,(0xd3131fb503e9a20261402aec98caf0603cb913f5, 'CALIC', 18) + ,(0x271b26481350ee5b1e263a2fb3113d2481244ab4, 'REMIX', 9) + ,(0x259186e64e35ce5df3ca31364bd521f665bee73d, 'GTAVI', 18) + ,(0x8f05ecff88543c2572849a6ae8b3dbae0b9af984, 'BABYFROGE', 9) + ,(0xae05559e5bc86ecca132956fa0482dd7d4b2d76d, 'μCloneX', 18) + ,(0xa2e8b27500d3bae6daad122bdd8f405b65752175, 'JWL', 18) + ,(0x27caac143480dd3ab4a3327307f64bdb6d635634, 'MYRO', 9) + ,(0xcc773cf577355de994e2c8605fdba15f6b289e5a, 'GME', 18) + ,(0xe6fedae67aac3e9782272f3c2257cb59ae0511ca, 'BLURBOT', 18) + ,(0x22112bbfc05d56bf9a4af69335e2d7acf06d5e0f, 'MRBOT', 18) + ,(0xb31924bae2551f76ca9bdeea5946540c2df4f5e1, 'W3GPT', 9) + ,(0x4dcda2274899d9bba3bb6f5a852c107dd6e4fe1c, 'XONE', 18) + ,(0x86a6d3aff8b1236a70f2ad2a08af00eaa46804a2, 'BabyPEPE', 18) + ,(0x6cc5ac84f3bcb9b88a3458ed27ff7bc7b01cdd72, 'ADA', 6) + ,(0x1396f243d41f5af099b206db0304374b6814385f, 'XJOB', 9) + ,(0xb7af9cc1bd73ad8e599cb8c6f2c91eebd75b2c9a, 'SONNY', 18) + ,(0x33cc73aa8a22a2f2645148aab654f9fba9795ac5, 'PM1', 9) + ,(0x4c0dc4ee7599153258d03a8e4b52af4b87a2765a, 'MASYA', 9) + ,(0x4779e178fe5e759566041105ce24b9cabcd8f798, 'TrustCafeO', 18) + ,(0x8e529f5c059ad68157c113b646adf7a12ecda47e, 'RAREPEPE', 18) + ,(0xcae9a3a71678feb5c228e96fae94dd92a06d5687, 'XONE', 18) + ,(0x5314b3014e886a4fd4f9cdce68d02a8c94d26b63, 'WZAP', 18) + ,(0x3b4b8dcada5ec0b5af17bb36d2779a0847ef9f5b, 'GROKTG', 18) + ,(0xe87a8a1dcf63e717e0848d396c5f9ca00498d4bb, 'SpikeToken', 18) + ,(0x263b6b028f3e4ed8c4329eb2b5f409ee38d97296, 'WMT', 6) + ,(0x6dda263994aab33f5ed612294e26f2a13df0da05, 'IQT', 18) + ,(0xc94fa0d2ebe019f4e1b7bdd043a2a7406660eb02, 'Bonk', 8) + ,(0x0bd81882a1cc001189cd82a4dc041e08277db57f, 'WHEAT', 18) + ,(0x8aa19ce2249d5ffa926dc7a638bff9da08071ab8, 'HE', 9) + ,(0xca0253a98d16e9c1e3614cafda19318ee69772d0, 'sdCRVlp-f', 18) + ,(0x93727227809c9e437ca178d5b44de396c42f7ec5, 'META', 9) + ,(0xf436e04e6164b3a6bf07f7989018305b8d136dfd, 'grok', 9) + ,(0x883dff67b8b447610c1567447f9d1beed513bb33, 'COKE', 9) + ,(0x3121d56e3015b8196d05bb6ea89a2962c230b94d, 'CAP', 18) + ,(0xdaa6d10feb24752c43d510455f6c5b17be12bd82, 'ROAD', 9) + ,(0x952f9e9c69bd9f325a7f11106cde2e150b75b2fe, 'UP', 18) + ,(0xd098a30ae6c4a202dad8155dc68e2494ebac871c, 'XZO', 18) + ,(0x560363bda52bc6a44ca6c8c9b4a5fadbda32fa60, 'SFUND', 18) + ,(0x3a535286ca743d32c9e9061231460ed4a6cdcd91, 'BABYSQUID', 9) + ,(0xdd24e2b46d7a3477e8dae8167e37ce4ff5636f6a, 'KITTY', 18) + ,(0x96e62454e99f1069a44cb34d4962e9d6fce19a74, 'FROGE2', 9) + ,(0x1f0f2daf3a001ec18e4706e207078b326f0f88e6, 'XIAI', 8) + ,(0x1c993b93ed3189170a34f9d4e0d6de9a1f2de64b, 'AD ASTRA', 18) + ,(0x8cc379a292a47cb8406fb1bd8a6d98f442275f0e, 'U', 18) + ,(0x5db35fdbe32e2b85093afdc4511dc365b8843ae6, 'BitcoinETF', 18) + ,(0x77f5bf17e77a5d1d0ad0aa1a12d5ef537e9e8f37, 'SQUIDGROW', 9) + ,(0xc59e18d208fc9de263a01c6983fb32052fe21c47, 'HUNEE', 9) + ,(0x5116ab7a5166fd4019933bf139195f24e183846e, 'GPU', 18) + ,(0x3e3764f501f25b3ee12e260fee2a712dba52cb8f, '0X0000AI', 18) + ,(0xe0974d6a1b930bf3029d08c324b0fea6d73f0297, 'CMB', 18) + ,(0xde0a3fdad3573fe9a4af8f91b1530b39f3a18beb, 'Bender', 9) + ,(0x4816802249e6e4f6a3a5c9425c7e23c813a57002, 'FREECZ', 9) + ,(0x193714e4aec01932adf241677f084ffcb1caf16e, 'MAIL', 8) + ,(0xaeae882c4ebc5dee91da1b7f37f573528ece4c20, 'TPANDA', 18) + ,(0xf20aff3f28ca8fc18912aa8230cd46f7f3589559, 'AIGCFI', 9) + ,(0xb70eaf5d316192881aac8786c90b7907b83f02e8, 'RESET', 18) + ,(0x4981816b0c2eef52473b708f914242a5e84a58a5, 'ACC', 9) + ,(0x96d87dbf70afb049581495960cb1b046c146483b, 'idc', 18) + ,(0x2d5d639b042ab5ed69a343c753757f376d4e05f6, 'NUT', 9) + ,(0x5f4fcdf64c7d990f5249176e0048e36e9ba5e687, 'WASH', 9) + ,(0x8ea36810f49f9ea30efca6f8173eb330b8c17c4d, '$MIXED', 9) + ,(0x10017343b0d90c8a56e31dec55d9d7cd684cbe99, 'RIBBIT', 9) + ,(0x9bcda9bd845e4bfa7e6a4c012b93f8ba821ac618, 'DOGEFATHER', 9) + ,(0x621bcf6878910d1e2c7c49e89b3c0c0fb02ec7e9, 'EVILDOGE', 18) + ,(0x53020f42f6da51b50cf6e23e45266ef223122376, 'SPOT', 18) + ,(0xac7e657ae2ca0082fce142f425ac460fe04ecf60, 'API', 9) + ,(0x1d32a2274b662b0b1413b4ff83fabeb3e3f0289f, 'wGROK', 9) + ,(0xd8cdd3526b15141a77d928957483ad5b9d0bcc7d, 'SQUID', 8) + ,(0x8d66f64000847641caed006b056b725a29be9e7f, 'SQUID', 9) + ,(0x8cd4afc093972e4b1991a8900787df0148f19f59, 'xAI', 9) + ,(0x36f13af3ff505c8f00a43000838cd98d6fa36232, 'PKC', 18) + ,(0x27cb9ea4a6068370fee1ed509fc98da6c30adab9, 'BRAD', 18) + ,(0x241add131b9aaa7527132b752252b99420937adc, 'yvCurve-USDT-crvUSD-f', 18) + ,(0x1d4b3c8da7957086439bf691ba91ba988b9a1131, 'BONK', 9) + ,(0x75633d501672dc0a5017404afa1eac5f3016fcfc, 'QSTAR', 9) + ,(0x0cb7d2677277b18f080fc2ad97f5fa9f3d7a3232, 'BETS', 18) + ,(0xb30ff8473d3c25554a44213f7c0715085e35d0a0, 'HEL', 18) + ,(0x40f9ac716367b46f895f007af2c8b24374794b09, 'REFUN', 18) + ,(0xb1aa0c1a0dae0b0a41f87caa3ae886e5e69661b7, 'GRUG', 18) + ,(0xb0207dc3fa5f0aa52f5fc9e43a93e3f0c201b442, 'DROK', 9) + ,(0xe73d028e3365fa1e52416786a16ddb3f9c9f7855, 'FURBY', 8) + ,(0x96214bc31ac01da1b778e0d908b36703c374e113, 'CB', 9) + ,(0xbbb94ee83456934c864211929c3646e697973ef9, '$AERO', 9) + ,(0x65c89e7fea260a55a3799025056b86e7a3dbfbd6, 'NWO', 18) + ,(0x28aefa23142a05401782f503c6a680eada432712, 'HOPPY', 9) + ,(0x5ba95a08b76d4d512795734683f430f81d6dfb3b, 'TENG', 9) + ,(0xacdd363b37e476839c6c3d99944059d3b44232bd, 'human.x.ai', 9) + ,(0x629755771750041f4cc7fb469534cec5b1b6e2fc, 'REE', 9) + ,(0x0eb1e72204c42de2263d37db606fb25c21d649b8, 'ASTROX', 9) + ,(0xea54abc471c1b3e9c9c02078e044604310a5e3f3, 'PIKEMAN', 8) + ,(0x16ead9a10b1a77007e6e329b076ad1fe97a6f7c0, 'xETHETH-f', 18) + ,(0x7bd3a0d1626310dd9e7a55b653046909e28fd249, 'Shaggy', 9) + ,(0x4eea762311be76f9071aa01058c047ad12a017a1, 'GBURN', 18) + ,(0x5c050f01db04c98206eb55a6ca4dc3287c69abff, 'AA', 18) + ,(0xbf7201a850e539a9878dbaab21e2d087f6bc9241, 'GIA', 9) + ,(0x21e27a5e5513d6e65c4f830167390997aa84843a, 'stETH-ng-f', 18) + ,(0x9c05e150e1b01945986d7419564313949d743b44, ' ACADE ', 9) + ,(0x3e6fc0ed4dc471ca2c68ef8ab5d366934474ab68, 'Xeno', 9) + ,(0x1df0fafb6bae95d4b09c3d6126cc767f28bae53d, 'CEX', 18) + ,(0xc8c3ae87afaa5d00b453f942ed025a1d4049f76a, 'BLAKGROK', 18) + ,(0xb572290698da7380eaa6368102cc74c324d5e003, 'MACK', 8) + ,(0xa51f139722e05e225a1df65ea60b600b9e642331, 'GrokINU', 18) + ,(0xc52d791fc3bccf56268a450590552f70a27c325a, 'Alpha CZ', 18) + ,(0x239354efb40ce8e843e2609ec7cccda7e2881808, 'VAULT', 18) + ,(0x85bdebd8db75d4a2b6d0f24a8edb4937e8ef4c01, 'VEIL', 18) + ,(0x3ac81633a291f342b62e7de5d00eb02924032e06, 'FANX', 18) + ,(0x14813107d18542efb20b2e1a79d841313692ab27, 'CZ', 9) + ,(0x9abfc0f085c82ec1be31d30843965fcc63053ffe, 'Q*', 9) + ,(0x250f02a3ae700835892535eb6f9d0af96e2c0643, 'SHARE', 18) + ,(0x5b71c444538cc0c8be0b0c909b07139b78839320, 'STILTON', 18) + ,(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A, 'GYD', 18) ) AS temp_table (contract_address, symbol, decimals) - diff --git a/models/tokens/ethereum/tokens_ethereum_erc20_stablecoins.sql b/models/tokens/ethereum/tokens_ethereum_erc20_stablecoins.sql index bf1cd59483a..2fdc644a473 100644 --- a/models/tokens/ethereum/tokens_ethereum_erc20_stablecoins.sql +++ b/models/tokens/ethereum/tokens_ethereum_erc20_stablecoins.sql @@ -32,5 +32,6 @@ FROM (VALUES (0x1456688345527bE1f37E9e627DA0837D6f08C925, 'USDP', 18, 'Pax Dollar'), (0xdac17f958d2ee523a2206206994597c13d831ec7, 'USDT', 6, 'Tether'), (0xa47c8bf37f92abed4a126bda807a7b7498661acd, 'UST', 18, 'Wrapped UST Token'), - (0xa693b19d2931d498c5b318df961919bb4aee87a5, 'UST', 6, 'UST (Wormhole)') + (0xa693b19d2931d498c5b318df961919bb4aee87a5, 'UST', 6, 'UST (Wormhole)'), + (0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A, 'GYD', 18, 'Gyro Dollar') ) AS temp_table (contract_address, symbol, decimals, name) diff --git a/models/tokens/fantom/tokens_fantom_erc20.sql b/models/tokens/fantom/tokens_fantom_erc20.sql index 598f9491b91..c07ebaf3364 100644 --- a/models/tokens/fantom/tokens_fantom_erc20.sql +++ b/models/tokens/fantom/tokens_fantom_erc20.sql @@ -1,4 +1,11 @@ -{{ config( alias = 'erc20', tags=['static'])}} +{{ + config( + schema = 'tokens_fantom', + alias = 'erc20', + tags = ['static'], + materialized = 'table' + ) +}} SELECT contract_address, symbol, decimals FROM (VALUES diff --git a/models/tokens/fantom/tokens_fantom_nft_curated.sql b/models/tokens/fantom/tokens_fantom_nft_curated.sql index 809ea6ee24a..f5e645c3424 100644 --- a/models/tokens/fantom/tokens_fantom_nft_curated.sql +++ b/models/tokens/fantom/tokens_fantom_nft_curated.sql @@ -1,4 +1,11 @@ -{{ config( alias = 'nft_curated', tags=['static']) }} +{{ + config( + schema = 'tokens_fantom', + alias = 'nft_curated', + tags = ['static'], + materialized = 'table' + ) +}} SELECT contract_address, name, symbol FROM (VALUES @@ -62,5 +69,958 @@ FROM (VALUES (0x8d9Ab6Aa28720a28D75CA157F7E16E9109520bAd, 'Afterlife Black Market', 'Afterlife Black Market'), (0x3B65eeC5FAFf50EAA34c66734F62A6825BB37879, 'depegMIM_975*RISK', 'rDEPEG'), (0x6269709A9CF20b9531B6c5b3197F4Ee2503ce427, 'depegUSDC_997*RISK', 'rDEPEG'), - (0x6db9Ff140b68AD2a8D6af64b5384446ad03487Ab, 'Gold', 'Gold') + (0x6db9Ff140b68AD2a8D6af64b5384446ad03487Ab, 'Gold', 'Gold'), + (0x00000000007d1996ae28eab84c973e5e558eec4f, 'Summit DeFi Soon Collection', 'SOON'), + (0x00087c2aeeaeb1458a6e6ed5d7e23bc735a29f74, 'E6LBEARD', 'E6LBRD'), + (0x00fb3a558297a8db1676813616a278f1bd49b3c4, 'Dungeons of Fantom', 'DOF'), + (0x01108176b1392c05fbca9bb703d53e2bdba96e04, 'LIH:Avatars', 'LIHA'), + (0x01f86021378730b72ca4467a3a385d84c781187b, 'GIMPIESGEN2', 'GIMP2'), + (0x01fca0f6da283287addbb4f978b0fb596799d058, 'TelegrafNFT', 'TNFT'), + (0x0226bfe7d0f7547d0f6ca1ba31fc3d274c5bfb3d, 'DaemonDualities', 'DMNDUALITY'), + (0x0260b50e6b8b010eb40a09a5e00d1dd5c54d9b4c, 'Pony Eggs', 'PNG'), + (0x0329af552a7541616e4f238d9697adc5b5fe2d06, 'THEORY Unlocker Gen 1', 'TUG1'), + (0x0358382ca3455f7c9cd9b0524c9ccf7abc4a7350, 'FantomSquad Minting Pass', 'FSMP'), + (0x04193d7c9017d7df6461ea80d54cb427b9229627, 'Hamsteria Specialized Collection', 'HSC'), + (0x04b6b2b8de001ca8acd9f75e50551a99722fd6b1, 'DoodleLanterns', 'DODLTN'), + (0x05c59236d4f0eeb315ed96ee7b411fe5a6f9de13, 'Bot Kid Llamas', 'BKLA'), + (0x06ce27d5cf877a23ddd2cdbd8c58d517ccc83fcb, 'Uniswap V3 Positions NFT-V1', 'UNI-V3-POS'), + (0x0710f5ed23c01b33d972beacf85a6a5d68ca6287, 'Elementals', 'ELMNTL'), + (0x0721536ff310ae10439d7b734178e4405a47bb66, 'SquirtleFrogGang', 'SFG'), + (0x0754655d0f1733771c9169da666c289eeee4b938, 'FTMElves', 'ELF'), + (0x07fe1b2242d376234c46648a1a5df3795cd81ea3, 'Partner Ludwigs', 'PRTNRLUDWIG'), + (0x0834295976a2210338bb3eabc645dbbf2cc6cdf9, 'Mr. Crowley - Stars Fall Single', 'starsfall'), + (0x0854ebb93ce00c0fd3697e0ca85b8ec36e986f7c, 'ThugSkullz', 'TSK'), + (0x08e58324cb31238ca9bdeeac4052932305431953, 'Degen Haus Dope Millionaire Ticket', 'DGN'), + (0x0981c70ec2f8b2a3e8acd28cc6710e44e1ad8859, 'Ghosty', 'GHOST'), + (0x098ab05dc406a6b171c7b295152aeb34afec9c34, 'FantomSquad Christmas 2021', 'FSX21'), + (0x09a250b2158658864b38995f577bb9dfe336788e, 'Buried Skellies', 'BS'), + (0x09b62a821d821df165c95a6d059b4d51fc9668f5, 'MangaMon Egglets Nft', 'Egglets'), + (0x0a165a62928b4c81f93dda7c9794b8e105fb35fa, 'Dream Galz', 'DGALZ'), + (0x0a6529d0cf2b0c65bdfbdb73ecadda7c1afc360b, 'Fantom Necromancers', 'FTMN'), + (0x0b22cde07716501c12aad55833629b624360cd31, 'FantomFlowers', 'FLOWER'), + (0x0b896c9c8d12d0d4cd39d716b84cdde22ad2c3ea, 'MowsePack', 'MOWSE'), + (0x0ba97462e86af0f87dd15e1e14fceb687026e0c6, 'BITGoblinsFTM', 'BITGOBBIES'), + (0x0be5a61c5d04edca7f3a39ce0860febef72ccd35, 'Buried Skellies', 'BS'), + (0x0c1c2b2c472bbbb1d9c5ff1f73567d5378cfe752, 'Non-Binary Punks', 'NBP'), + (0x0c448d0ea6ef8ccda75ad4bba4a7ea59ebbeac66, 'Bot Squad Llama', 'BSLA'), + (0x0c5c08cf15fe85141450a93fb1745197418864bb, 'Smoking Fox Club Exclusive Gifts', 'SFCEG'), + (0x0c60c064fd949e6ceaa0ef9f7e4511fe70eb4189, 'NekroDemonz', 'NKDZ'), + (0x0c8763ac45fb87caf89c736fd7efe11627d33622, 'Spectaculars', 'SPEC'), + (0x0d25b84119c7355746d0bad2ccb44dae129b9f6f, 'sweetango', 'swt'), + (0x0d2abb37f93edb2ceea223d69454921ce357a2b1, 'RiotSkullys', 'GP2022'), + (0x0d9eaaa9f27f5914c5e1c2d9a84b63c5d23bc166, '5percentroyalty', '5pc'), + (0x0dc238932032de4ac7de445b533be2a205892984, 'Skellies', 'SKLI'), + (0x0e242d036862c9444615d8becd7e13e60ed85e87, 'Tiny Turtles', 'TinyT'), + (0x0e33bbde219f28300ff9b418db31a5d0b09b4332, 'Baby Pixel Doodled Punks', 'bPDP'), + (0x0ee23f8d8404309f8944ecce1ccf25988b075170, 'Colorful Introvert', 'COLOR'), + (0x0ef9d39bbbed9c4983ddc4a1e189ee4938d837b3, 'Hamsteria', 'HAM'), + (0x0f1a03bfeec7a84e3c1e7f04c8b4d9d28e004436, 'Smoking Fox Club NFT', 'SFCN'), + (0x0f84696cf7ff3a32ba48b9bd326aca64fadcf456, 'PocketPals Custom Skins', 'PAL SKIN'), + (0x0f99f616a7fbc1cd41438e7e54d36df5c766040b, 'The Lost Kingdom', 'TLK'), + (0x0fb9d7cc9a3fbfc62a71182552a576859ae0c758, 'WitchesOracle', 'WO'), + (0x0fc3e24f627692c42006a7036579bc6b040ec37e, 'Crypto Budz', 'CBUDZ'), + (0x10476afcb828fc2320c5b4af83c56e068f4d0286, 'Fantom Drugz', 'FDR'), + (0x1066b8fc999c1ee94241344818486d5f944331a0, 'Fantom MAI Vault', 'FTMVT'), + (0x1069ad7cdc0d24922f7fdf91e2c7d89ad01105fc, 'MiniFrens Generations', 'MFG'), + (0x109ae99e032fa0187f1d489496eb260435b8edb3, 'Powerful Dragons', 'DRAGON'), + (0x10fa5f0de00c788c11489308f67922022862b698, 'BoxedGenerals', 'BG'), + (0x11020ca3c1547a3332a2386dbf0a6d63dd1173ee, 'Meta Sharks FTM', 'SHARK'), + (0x11c7f7c8262a2691e100bce0c9eeba191ee449b3, 'PFPonies', 'PFPNY'), + (0x11d9da53721f8dde10d2d13016d69c51efe27978, 'SeniorageMechas', 'SMECHA'), + (0x12094ae07817a2630f9f12fbaa4fb81d93adba2c, 'CryptoWeeds', 'WEEDS'), + (0x12165f9d483ae57c89962b71c111729a59e3ce4f, 'LostFantomDisciples', 'LFD'), + (0x1233779c74b26e1a651d6ed785ba41ad66293387, 'New World Order', 'Illuminati'), + (0x12acd3e7c1a58794bfad2b6cfdb766da6462687a, 'FantomMunks SWORDS - Golden Scarlet', 'SWORDSGS'), + (0x12f0cf6a2e79c5bb00fc4174edde898643ca0bd4, 'HamStory', 'HAMSTORY'), + (0x130710b4fd678ede793423374041de1052c724cf, 'SlothAvatar', 'SlothAvatars'), + (0x13542a8b1116d13798a1461b6ace3f4ff583fc70, 'Nowheres Arc', 'NOAR'), + (0x136532c7cdc19ebf9013e6d1c1efd9ad98794411, 'EvilBeardZ', 'EVBDZ'), + (0x13adfa22bdff32de53cb5d09dcac60cdc3288157, 'BodhiBlasterz', 'BODHiBZ'), + (0x13b72982f8d47806ef7d1354e85bb28f8a8a2db4, 'Lost Island Legends', 'LILS'), + (0x13f9fb4f7bf1a8e965b92f7f23706cadd528e3e5, 'ChickGang NFT', 'ChickNFT'), + (0x1464c6715f3e460c1c4560bb0c12fa5b35ff26bc, 'Rich City Game', 'RCG'), + (0x14a86f97efa1c3cf45a8eaa5d51b2fc04048c08f, 'FCINFT721', 'FCI'), + (0x155f04b731c0160ddd178d18b68301841acf76c5, 'SGX Art Gen 0', 'SGXAG0'), + (0x165865de32ba3d9552ff814c2f283964c2b61a7d, 'Gregs (FTM)', 'GREG'), + (0x168708c1210d81cf37a20032b1f31197a58d8c81, 'DexSocialProfile', 'SP'), + (0x16a5a7f243530284976d11f9199312809530893f, 'LogoTechProd', 'LOGO'), + (0x17a3eb6b9f4890e00d251cddecbc97f2c595b322, 'Squaddies - Male', 'SQUADM'), + (0x17b28274f8c1d64b683ad097988fa5707b228f80, 'PepeTarot Cards', 'PTC'), + (0x17e61744ac202f3b2a0f5b8d18e17a25c9cb2dec, 'Fainting Goats', 'FGOAT'), + (0x181009495c50a2482536e3f3ae87bdd01cbc03fa, 'WyldeDalas', 'DALA'), + (0x182bb65f3d3787e2c6fccfb98d051a21ab1d85cc, 'FuckingFruits', 'FF'), + (0x18660c2dbd897a616dc42d5be3112872d387552c, 'DevilBlobs', 'DEVILBLOBS'), + (0x18c50e5a312ac80f3e25908ad3450bbf00395559, 'Hashy Jim', 'HSJM'), + (0x18fa0975ba03c631f79cfc419112b00bedd55335, 'WAR BOATS', 'WB'), + (0x1917217e3eade8d05e45db3827b9645f99e630bf, 'People Of Fantown', 'PoF'), + (0x19a16f3ccb469b69c5379130d8cbbf2fcf3de365, 'Fantom Ferrets', 'FFT'), + (0x19c1bf20b5a83bc703461b4e7f6c72317955816d, 'WaifuFaucet', 'WAIFU'), + (0x1a09c1edfe0212b7a78a3073aefb4f0a95f901c0, 'BOOhoo Ghosts', 'BOO'), + (0x1a0a9864e6607e163bb41f831a81d518dfe1cdce, 'OmniChicks', 'OCC'), + (0x1a253153188564e9b1d4070a9a42c595bef60631, 'SBRW Logo samjeen1', 'SBRW samjeen1'), + (0x1aaba787d52401f3a670923840952e0ec1fa6027, 'FuckMikeEther', 'FME'), + (0x1ac92647da673621ec66bf76f0bb112a9a3d8f64, 'RogueCrocs', 'RC'), + (0x1acfc8fe8f06c32942ebe7db444012568126bc54, 'Buried Skellies', 'BS'), + (0x1adbeb67d9986ba12cbd41076a03c64f573435a4, 'SpecialBeastBull', 'SBB'), + (0x1ae2b7535b4c262f34ea0e4d840737bb1c50ee66, 'FedInu Nodes', 'FedInuNode'), + (0x1b60b6daa371f5066bd8c1dc032627bf1f4e95df, 'PopSkullys', 'POPS'), + (0x1b749174e1465b2407d4fb92e6d0212b825f6529, 'Staked SpookySwap MAI Vault', 'SMVT'), + (0x1b7cf0279f47d973fd870d295f32e4b6a10f8958, 'BCGHeroes-Tickets2', 'BCGH-T2'), + (0x1befd0c0856f828bd6a489eda18c1ef648e0e499, 'Pizzacoin Collective', 'PZC'), + (0x1bf6356f86c1e7198bcea302f1bad98198894fda, 'FantomChaos', 'FC'), + (0x1c1d30ade8aae6348e45f8695654837431cb5b66, 'Tots with Mustache', 'TwM'), + (0x1c293a873ad5ac4dce051c038eddb0ece1e1f801, 'Friendly Boos', 'BOO'), + (0x1c3e92b4e9dccb4cd1c94dd0ba6eb93835fc8a45, 'SUPACell', 'SUPACELL'), + (0x1c9cd00ec96a161b77ee7cd066f3a72c3d3afe95, 'Fantom Zombies: Leaders', 'LEADERZ'), + (0x1c9d0b3eb50bf51a9723e2dcca679242b2747f03, 'Fantomgochi', 'GOCHI'), + (0x1cc3f82a1181a6082a63a8e04a0618caecfd880a, 'Cyber Huntresses NFT', 'CHN'), + (0x1d1acbc92410296ba64ea3525c16a8e924fca45a, 'NFTMember', 'MeDMD'), + (0x1d29c6c3caf6580e000a3a1c00f8033be43e8504, 'MiniVIP Pass', 'mVIP'), + (0x1d3a859b2371d99e28c3d4b1372fc839dfc39e6d, 'Fantomized', 'FTZD'), + (0x1d5d587b921050cfe96d2f7e89e9869dcdec9b89, 'Fantom Zombie', 'FTZO'), + (0x1d7f0349cefd67b1dd0136789d414db18282d48d, 'Mega Boo', 'MEGABOO'), + (0x1d9a51413994b8f5fb5c7ab3c43d66d7e58b52db, 'PotluckUltimatePass', 'PUP'), + (0x1dadaa7e55b2c7238ed04891ac182ea1468b79b9, 'SpookySkeletoons', 'SPSK'), + (0x1df7f0d82adfd56dcdc3a5fc8943df37289b4f2f, 'Portalvault', 'PV'), + (0x1efee6840a803a3c5520b61ddc73c37b13c4111d, 'Degenerabbits Contraband', 'CONTRABAND'), + (0x1f3235b5c9acf2734ac10842abad85ab56c00e2c, 'EggsMare', 'EGM'), + (0x1f62b08488c48c355b2463a6b20e773f8ce98e1a, 'Enter The Labyrinth', 'LABZ'), + (0x1fec97fff53d0826004e615336ad21f581d865de, 'FC Makkan', 'MAKKAN'), + (0x20374451d407dbbc1f0f0516b76d56141ecce2f3, 'Fantom Felines', 'FF'), + (0x20514229941171a8d058a08f8b42185574c9b159, 'Pixel BOOhoos', 'pBOO'), + (0x20524979212021e4be429811e58bcbac7625a0e4, 'Gorgon Medusa', 'GMED'), + (0x207a1521aa373a9bd44c17faf9e77397195b77f9, 'BabyChimpGangXmas', 'BCGX'), + (0x20d85b415faf90f17477205691212b4b9f4642cb, 'Evil Twinz', 'EVIL'), + (0x21d0d1907504455c4addde756e7af308d546b5a0, 'ZodiApes', 'ZAPE'), + (0x227e86ea0f8ec323c892d6148b205285edddd030, 'Fetters', 'Fetters'), + (0x2290ef7b9446b54577f57d4442951dc8fb6d5e91, 'Tar And Sugar', 'TAS'), + (0x22dea64a0e9ecbb13d2b0dd2d95a91a06dacb23b, 'DaemonPunks', 'DMNPUNK'), + (0x23767e07dd081e2723964d8abd65e425791155c5, 'Kool Kids FTM', 'KOOL KIDS'), + (0x23febac82fe117d146c8125b0be6499797ec71ff, 'MARS NFT', 'MARSNFT'), + (0x24017c94108cefcd88ee4150ef31713b3e4b06e6, 'Mars Wasteland', 'MarsWasteland'), + (0x245c236ce2be6f7e92254bb7c55b9ad3ee563df4, 'Hamsteria V2', 'HAM'), + (0x24fcb3532a45702ba2ee9c58524b279810aad9bd, 'ChonkyPotions', 'PTNS'), + (0x2538b1acf723deef69f794080db0cb99270500a2, 'FantomSurvivor', 'FTMS'), + (0x255b3778536c6d8f454917f280d9a77777b2d093, 'WolvesCrew', 'WC'), + (0x255f82563b5973264e89526345ecea766db3bab2, 'Ice Cream NFT', 'LICK'), + (0x25d8a8797b2d6da5bab5457fbd1b9949edb977ed, 'FTM Masks', 'FMASK'), + (0x25ff0d27395a7aad578569f83e30c82a07b4ee7d, 'Skullys... Join the cult.', 'SKULLY'), + (0x262a42db316eb70ce316c1086598c41ffe5c7be2, 'Fangen Freaks', 'FANGEN FREAKS'), + (0x2650b24edaf512cdfc7ba0d077b0467e1dc53d16, 'ReGuitarGirlz', 'REGG'), + (0x267bdd1c19c932ce03c7a62bbe5b95375f9160a6, 'Sushi MAI Vault', 'SHMVT'), + (0x271b9235a1c9369393ac7a0e844ed74e01abee54, 'Omni Charlies', 'OC'), + (0x27413f713600f9e159fe7a0c158ba2a78778f37e, 'Paint Huffing Degenerates', 'PHD'), + (0x2741a61fa5ff46288ffccfd0c33891251a2657e2, 'FHFC | Boo Lifetime Mint Pass', 'BOO'), + (0x27585cc9ab825d3f3245878e5fba4ec17f1b05f1, 'Imaginary Space', 'MOMO'), + (0x28580def96ff9d180e33460278aad219ab842a0d, 'Secret Society: Skulls', 'Skull'), + (0x28908d5795b4d8f4cc175c63523f974412f2a5b1, 'ShibaPunks', 'SHIBAPUNK'), + (0x28b11838e369ed603425681effe717c3ecbc637d, 'DegenDroids OG', 'DGNDRDS'), + (0x28de30951eb0cd0a54b15ce7a92afea9fb5d6eac, 'Fantom Kites', 'KITE'), + (0x29172f4bc45b07651a22347ebaeb4a82abf52b98, 'YellowHearts', 'HEART'), + (0x29324964c8de551c767f6b4267a67a3c30bc2240, 'Evil Beanz', 'EVBZ'), + (0x297691a805fa89909f0ef7f6fd4b602ba869abfe, 'FTM Cigars', 'CIGAR'), + (0x29a8bebedb437c6611fd33bc8b85b126024a8a9c, 'Gooolmon', 'GLMON'), + (0x2a095803863749447515e7fd23dcc368e459246e, 'Ned Peppermint Banner', 'NPMB'), + (0x2aa5d15eb36e5960d056e8fea6e7bb3e2a06a351, 'Hedgeys', 'HDGY'), + (0x2ab38f84a5d458dc76a0608db8519d19cfe6dd60, 'fantom_lucky_cards', 'FCARD'), + (0x2b4b968f07000276c80a854b9c62b33be12b71f8, 'Rich City Gang', 'RCG'), + (0x2b9123da69e740aa69b54dfe02fe2fac33cebf97, 'Feeple Worlds', 'FW'), + (0x2b92d51a9be5fc8bc38ace7f9888fafbde67fddc, 'GraffGrems-E1', 'GRF-E1'), + (0x2bb70b039b6516ac754ea1de7a0f75c92069d74f, 'Pixel Cats', 'PIXELCATS'), + (0x2bba27fabc4f009eb7f62d19022a7216166ca69f, 'CoolPenguinIglooClubv2', 'CPICv2'), + (0x2cafbab3458df208ba25180bda7f899b4b078e77, 'Netizen Wings', 'WINGS'), + (0x2cb89968225986fad8542dac01c88b462d2b3d4b, 'The Fat Birds 2', 'FB2'), + (0x2cc26c49caf8be88ad87a3ac3ffd6a053c33ce75, 'Kay Wren Singulars', 'KWSI'), + (0x2d199fc9c2075843d00de33b2cd279c821ddce76, 'Cyber Huntresses NFT', 'CHN'), + (0x2d21b401e0ab6347165113dcf29997630163e59d, '69420 Frogs', 'Frogs'), + (0x2df7e6537befb7730e790143e2558945e9538fc2, 'GeneralsDarkMatter', 'GEN'), + (0x2ee705b8502ee3a63463c8086a897b0ae9dba019, 'Fantom Doodled Llama', 'FDL'), + (0x2f14c76b8793f775d37d45bee5ed6336471805c4, 'Cyber Skellies', 'CYBERSKEL'), + (0x2f604079aff2a11883736d189ef823e39abd6316, 'The Stonk Society', 'STONK'), + (0x3100248698bc5910a04da9705e3f3a9647d90581, 'Fantom Ice', 'FICE'), + (0x318c33e57adde894f30afa60d6beb0c74202db55, 'Alchemiss Rose Originals', 'ALCHOG'), + (0x31911223bb3ff5b773af3e677fc0ac5760215e4e, 'Paintswap Beardies', 'BEARDIES'), + (0x3192f48983a52450db53e9671ec409e4d6b6d622, 'FantomPaper', 'PAPER'), + (0x32225dd6f88f2e2b890b55be5ee8e4b67ec635bc, 'OmniChicks', 'OCC'), + (0x32a67bb3de61422a16f0d05f280778fb69452d59, 'Animal NZs Long Drops', 'ANZLD'), + (0x32e13161e30acd5cee7919ba8b07c2543f50f936, 'Roompixes', 'ROOM'), + (0x337d54327a75d39109d046f35c76960e6cd6099b, 'BCGHeroes-Tickets5', 'BCGH-T5'), + (0x33b63e71811338491bee49f8969d308c972c043d, 'Netizen Wings', 'WINGS'), + (0x34028c80cabbcf6124f97c9aa20370b741c5bc7f, 'Rekt By Exod', 'RBX'), + (0x3418e14abf7f6539c9bd70958f8fd7adb63b0f27, 'Kane''s Komodos', 'KOMODO'), + (0x341aebdd1eecd33766eb0bf749d82f1e2133ea32, 'FantomSteins', 'FSTEINS'), + (0x342de9295f3bede535f570677bca3fa0c0f0082d, 'Demi Gods', 'DG'), + (0x356ea75cce3114ae0d418478c77db49366178c92, 'Fantom Frenchies Box', 'FFB'), + (0x35835b5d816d7c71d46a8fdf37f250aac76fd5cb, 'Doggie Style', 'Doggi'), + (0x35b228ecb46dbb3af0bc3a3e0f34d9857dbec549, 'GodNFT', 'BNFT'), + (0x35b9b8c91387d1d68dce049dd37a115f0b299598, 'I Love You More Kittens', '143Kittens'), + (0x3609a304c6a41d87e895b9c1fd18c02ba989ba90, 'Moo Scream FTM MAI Vault', 'mScFTMMVT'), + (0x371daea140efda27e6246fd1423c722741bad3f9, 'Degenfrogs FTM', 'DGN'), + (0x373559e2c2d6898af6c4e3c1b93789ca4cb06074, 'Wrapped Cyber Fantoms', 'wCYBER'), + (0x373d262dbbc2cc3a004eba61f16f0d1198e1a5d3, 'BatasmOGCollection', 'BOG'), + (0x37883240f5ffcd9fcbbe5c121d2b7977fb47db18, 'LIH Gold Bars', 'LIHGB'), + (0x37ca384bc7dcf7aa2b71d30af2b6f09e5746d2ac, 'Bit Killas', 'BTKZ'), + (0x37d9d73cf662e43a7b60ed42fe2148d307b07d9a, 'geblens', 'geblen'), + (0x37df02315fdbc8704b1add839b34597cd538f64a, 'Metamorph', 'MTMRPH'), + (0x382fcd2979f6494ed147c42643eac8c660a1b280, 'Stoned Sea Turtles', 'SST'), + (0x38a4127c449ee3611bcce2b7b678eac6da97be4d, 'DegenDroid', 'DRD'), + (0x38b0d08f0061b6c1ebff0c4c092bb25473f436fd, 'abcd', 'abcde'), + (0x38c3f04424a252e0f627677240146c20279d5a26, 'Pepe Knights', 'PepeKnights'), + (0x390394f4003261c7ce8918a5329bb015f405760f, 'SassySnakeEggs', 'SSEGGS'), + (0x39156f48ebf6f6ed8b8cf52ece9c7438778d07d6, 'Revenant OATH NFT', 'RVNT-OATH'), + (0x394c04a3226dd6890a0da96f1b0e7ab859cd0279, 'Colorful Pixel Bunnies', 'CPB'), + (0x395730cd5a168b73a80cf73cccd52682129818dc, 'Fantom Wolf Game Reborn: Land Certificate', 'CLAND'), + (0x39d7fc71dafbb9bbaabce2fb6347d33ae6dd920b, 'ChainGang', 'GANG'), + (0x39ef35fa3de4b402184181323887c420541f8229, 'DegenerApe SE', 'DA-SE'), + (0x3a25327f2b258b8f79b567437fb3ac12aef868be, 'Degen Droidz', 'DGNDRDZ'), + (0x3a39ee4c50d9e9e44396f187fdd74a95c3fe3a7a, 'Phantom Bunch Descendants', 'BUNCHDESC'), + (0x3b060b93459553b52639ef26eb4024d8491f5608, 'Human Palm', 'PALM'), + (0x3b181992ca90cc00865345384120b6fc4e0ae1ca, 'beansies', 'BEAN'), + (0x3b32294bc575b5c4c1e86a04b67d33b3f100fc4c, 'Rarity 2 Adventurers', 'R2A'), + (0x3b3d588a88b95fb5553acc2533cfc9deff1d96b6, 'NekoXmasCollection', 'NEKO-XMAS'), + (0x3b9852c9733b1e06e5bd4841d8a0a37f54e65832, 'CRAZYWOLFS', 'CWS'), + (0x3bcd321933c240ef823c2026e20f7cfd53e98263, 'SlothArt', 'SlothArt'), + (0x3bdf5b254de4def8291c276cb8bed5f5f499caef, 'NekoButt', 'Neko Butt'), + (0x3be56560253f3183bde11c29c1751c7f8345b9e1, 'Void Armada Presale Passes', 'VAPP'), + (0x3c301c85b191b3edada11198ef1f5277c1ee1f87, 'CursedTransistor', 'CURTRX'), + (0x3c869af1dd2fa2ee3a6c7b3a6ad7f4350fc5f413, 'ERNESTO', 'NESTO'), + (0x3c997415d8b8fadf919ea6d5acc089ad59a6b2e2, 'FantomFrogs', 'FTMFROGS'), + (0x3c99e4aa75aac5592715afb60834e89a04f157b2, 'E6LEYEZ', 'E6LEYEZ'), + (0x3d0feb13142fab9be63276f658c2a1f5ab2e1b5d, 'Ned Peppermint', 'NDPM'), + (0x3d1034e6732bfd40e2102146a3cd7d0b2d717eca, 'SaturdayMorningPaintHuffingSessions', 'SMPHS'), + (0x3d41cf7df8cb8ff3ce51254f59b0cf41849ca69d, 'Amicable Koala', 'NFT5'), + (0x3d7071e5647251035271aeb780d832b381fa730f, 'Gantom Stone', 'GS'), + (0x3d7e7157459a352ada13ed8da1ba54a08a883965, 'Astro Kid', 'ASTRO'), + (0x3da5be5c8d4ce2dce583ac741f97a79b30a37c05, 'TLK Male', 'TLK Male'), + (0x3ddbc6d8646c5bb0a17c1bf3f97c88261c0d860b, 'deathtrips', 'DETH'), + (0x3e06eb29ee3461f5d19476623ecbf6982eca897b, 'raffle_prueba', 'PRUEBA'), + (0x3ea81551d668473e973f8f56034e4d8bc5642969, 'DagNodeFinance NFT', 'DNFNFT'), + (0x3eb5a9a82f486dda7bb7f0172b18bd2ebb129b49, 'TarAndSugar', 'TAS'), + (0x3ed17cf5b5c7e75e078251b8b8e07968b93c5c3a, 'Fantom Land', 'LAND'), + (0x3f5f45138a988f1b32b0f6bcd1cbaa7bcd3c5c0f, 'SLOTHTOPIA', 'SLOTH'), + (0x3f6cf10e85e9c0630856599fab8d8bfcd9c0e7d4, 'Staked SpookySwap MAI Vault', 'SMVT'), + (0x3fb9db410034ee46f531dd802c94215a29e5f0e4, 'Shamanic Tribe', 'STRB'), + (0x3fc62f3ccd9adbb6a45a2c91cf89d9fabde20168, 'CosmicFortune', 'CSMC'), + (0x406349e0bcdf323526c11b4e987a699471142b84, '8-bit Nostalgia', '8BIT'), + (0x408eaa0421c49d2efa93a5a0697361c1ce41cbe7, 'Mocket Monsters s1', 'MMs1'), + (0x40f38095b4e5b14f0115c47f695b10eee59621ee, 'NFU', 'NFU'), + (0x4151bdb49c7a357f40d459af8fd833c107011355, 'WitchesOracleRituals', 'WORI'), + (0x4162977558eb5830e6fc5adeb67bf6625f458929, 'Spiritopoly', 'SPIRITOPOLY'), + (0x41eceedd88262aaa479dbb5ebc7869bf09448c08, 'Lil Dino Gang', 'LDG'), + (0x41f3532b4667b3a4a526eea0c4103e486c5053e7, 'FAM Apprentice', 'FAMA'), + (0x4231b1781407c52cad238d8746453d0c726a6f70, 'Fantom Shrooms', 'FTM.Shrooms'), + (0x429201af4ac3756673a4f6f5452d7cd32f1e8bd4, 'Silhouette Smokers', 'SIL'), + (0x43007cc8854b64ef9ad76a3fdcab0467e9044235, 'Mongers', 'MNGS'), + (0x4360025dffd59c5191e0967e6fa36b8ede232828, 'The Ultimate Fantoms', 'ULFTM'), + (0x4374bc3708bab98c51cff9eef1ca4365e3245b8f, 'Patronus', 'PATR'), + (0x437b7b4c18236a02520a2b26026f994d6a6b333c, 'Fantom Zombies: Leaders', 'LEADERZ'), + (0x44656b5f0454b3ddbc03471dc391056331f19476, 'DEI Bond Redeem NFT', 'DEI-BOND-NFT'), + (0x44dea70be365f616f1b47346005045374e827b83, 'Nightmare On Fantom St', 'NOFS'), + (0x44f9977240aede3c78da59accbe828697dd005be, 'UnidentifiedFlyingObjects', 'UFO'), + (0x452c1249a4492c613046612cff73dcb781ebb99b, 'FantoPops', 'FPOPS'), + (0x4572d66de56d3ef2c0171910006f16c5c900dd52, 'Mega Boo Ring', 'BOORING'), + (0x45c0b51d9d75a890e8130dbd6da6daf0280abf12, 'Paranodes Grim Reapers', 'GRIM'), + (0x460566ddbcc5466e18baa0b91d1efca77f3b24ae, 'Tombheads', 'THS'), + (0x46327fd53e6e1e7c2b341589bbb8b94f7f65902c, 'fantompunks', 'fantompunks'), + (0x46350eda48b3aafc4c403ff02c024e76ae22e803, 'FantomChess', 'CHESS'), + (0x46923d2bf75a42f4f88e79bca51a8f7d533d9b7d, 'Potluck Platinum Pass', 'PLPP'), + (0x46ac8b46981239de59df4224f65de43fc1f0cb13, 'Bored Grapes', 'GRAPES'), + (0x46adfa609dd5a076499d4c2b3e7076f8762780a0, 'FAM Reward Card', 'FAMRC'), + (0x46df5672a9ba6dd5a87c5f1224263f06392861f9, 'TheCursedCircus', 'TCC'), + (0x4717cecb543052cd2feb527636498454fe9968a6, 'Rugscreen Certificate', 'RugscreenCertified'), + (0x475631dbd805f46be62d8f87a4f07ca8afaf7e45, 'Pierre Gasly', 'GASLY'), + (0x47931e0d42b254dc17871ce74b1d9a37a5a36d67, 'BeastBullClub', 'BBC'), + (0x479d46afa4abd15f0eaa1bfd695dd09425bcbf49, 'Vitalik Buterin Goblin', 'VBG'), + (0x47b1fb88f294dc2dcecef1062ef018a98083859a, 'Revenant OATH NFT', 'RVNT-OATH'), + (0x47c414909f0c8c663da2bf8b96592c1c6b8c4215, 'Netizens', 'NTZN'), + (0x480a7d75d74b6c16390d5caf1118ec51aa0f494a, 'TombRock', 'TROCK'), + (0x487d4ff88a126d55a68ca99b58908176591a4f1a, 'Potluck Community Collection V1', 'PCMC'), + (0x48e665db09a904f2ae75ce45cda7bfb2f161b506, 'Radiant Sun', 'Sun'), + (0x490340c839de853008d46326baac8c097a2819ad, 'FTMBLOCPARTY', 'FBP'), + (0x497bb2008dfb351bb4370207e857831272659bec, 'Hawaii 2.0', 'HAW2'), + (0x499a066bc4b8d028759f9482d65b771f4c26b84c, 'APEX ORCAS', 'ORCA'), + (0x4a0fbe0af74cf38bcd5c68f1d6bf2cc0899cc0ff, 'BitKittens', 'BK'), + (0x4a3f63cc412d8b5cdc1da5a4f1b1eeda2a7fcfe6, 'CHICKENNFT', 'CHICKENNFT'), + (0x4a71c8f4cb0d724751d2293431f8b81207875e3e, 'Fantom Sneakers', 'SNEAKERS'), + (0x4af7ad773e67ecf00299f7585cacc8ddbb62dc5c, 'Arcturians', 'ARCTURIAN'), + (0x4b128fcea7f8fe4ea7591584554adeb309ba0a77, 'FantomSquad Gold Minting Pass', 'FSGMP'), + (0x4bc491db292d8a49de2e9980bcd739f2a0f3fb5f, 'Yearn USDC MAI Vault', 'YVUMVT'), + (0x4c6039adc6db4ea6b33ac71055acf0da3c9167c6, 'Buried Skellies', 'BS'), + (0x4c6dcdd6d6c6432ed02b468501c019fca1fe17e2, 'NovaChimpGang', 'NCG'), + (0x4cf41aec5d0f01a74d27e07dd5a53e1b51e59d47, 'EccentricVibe', 'EVR'), + (0x4d490c2031964c495bfd50d5bc988516764b314e, 'the 1% nodes project', 'OPN'), + (0x4d7531a9ab03454e2812ce78872e011ccc49cba9, 'Air-Nef-Tee', 'ANT'), + (0x4d9cb04c20a36d3297a509ccf1644b1d5cd93f89, 'Squiddies!', 'SQUIDD'), + (0x4db3d9eda9cf981fe72c655a28cc84005d42b9ca, 'SpaceCows', 'SPCOW'), + (0x4db7c74799411e38bb24585e5085b3198bccc1fe, 'NFCiTy', 'NFCT'), + (0x4e48e5e23dc2e3fef1ff4eeb5b680c9c1f60ed1c, 'Check Out My Raccoon', 'COMR'), + (0x4e5ef3103e56d229ae51b0d3fddcba97b7359eaf, 'Alpaca Finance NFT', 'ALPACANFT'), + (0x4eab37d5c62fa3bff8f7a5ffce6a88cfc098749c, 'Ghostlys... Enter the summoning circle.', 'GHOSTLY'), + (0x4f229e3679bc3b74fc03e2e20c9587feecc43d68, 'Fantom Soup Cans', 'SOUP'), + (0x4f504ab2e7b196a4165ab3db71e75cb2b37070e0, 'Riot Goools', 'GOOOL'), + (0x4f89c90e64ae57eaf805ff2abf868fe2ad6c55f3, 'Honour Nodes', 'HONOUR'), + (0x501ace47c5b0c2099c4464f681c3fa2ecd3146c1, 'xsolace lock', 'xsLOCK'), + (0x501ace7e977e06a3cb55f9c28d5654c9d74d5ca9, 'Solace USDC Bond', 'SBT'), + (0x501aceb72d62c9875825b71d9f78a27780b5624d, 'Solace Portfolio Insurance', 'SPI'), + (0x50f8e308beaf99ab754b0b416f63d7fdd31a2e00, 'FractalFelines', 'FF'), + (0x513268366106e4b191b9c6ec72247a76bb145cb1, 'TheFantoms', 'FTMS'), + (0x5159fbf09878928d4e3b6514bc46f4cc99caca20, 'Kingdoms', 'KNGDM'), + (0x51892366b05f71ae17a61e66149d819e5091d976, 'IX32PE Virus', 'IX32PE'), + (0x521d12239bd7e3f6ccb4daef3415fe74f19d52db, 'Spirits of the Underworld', '$SODU'), + (0x52a3b40d56bdb64788b521a3a3cea4cbd02599b1, 'Unreality - Froyd Origin', 'UFO'), + (0x52e591d87d295f6d8aaa5da23acb4e1a105e48d0, 'Fantom Underground', 'FUGLY'), + (0x53377f0429d92b5d52bc878ea745c067ce99024f, 'Pizzacoin Collective', 'PZCC'), + (0x53b5084a0b865c8dc06a45daec055e25eb651552, 'SphinxterNFT', 'SphinxterNFT'), + (0x53c89ab028f0b5433c0805747ca3c8d4158f3149, 'Unreality - Froyd Origins', 'UFO'), + (0x5434ba8b4a37755cb3867c9fde39342c0d382857, 'Emblem Vault V2', 'Emblem.pro'), + (0x5439232d0f01f53bdeabe3a8f19588efdfbf9c64, 'Potluck Pigs', 'PLPG'), + (0x551bd8ef8e85560a0b91765e052e17d91e0f1de0, 'FantomWizards', 'FTMW'), + (0x5552346df85464a014b0ff2925c4ea7f1ad9855a, 'WOLFSAW # of 69', 'WLF'), + (0x5612f86d1c0cf420b8217f08d55db209311a7948, 'Black Cat Dead', 'BLCD'), + (0x56146e1fff20d2cdec97faae6e382c993ea53e95, 'Casual Demons', 'DEMONS'), + (0x56189aadd49e87fdcb546f44f0c5038f93048eb3, 'SnowPocong', 'SNOWP'), + (0x56ab21f58e06da7218f29104c9e134b4eacba640, 'Buried Skellies', 'BS'), + (0x56adbc1c628a50ca3fdce74625754909a44559c8, 'RiceBols', 'RB'), + (0x571f42886c31f9b769ad243e81d06d0d144be7b4, 'yvBTC MAI Vault', 'yvBTCMVT'), + (0x5721e2e794c6718f08e998bb3430a0d997bdfa13, 'LIL NESTO', 'LILNESTO'), + (0x576e4ff60a6d66350749b7afd0eec7155fd3af66, 'Station: Callisto-6', 'CAL6'), + (0x583e63b50488bab3f259f7b14515e3b3a8e91f67, 'Fear The Future NFTs on FTM', 'FTFMP'), + (0x590e13984295df26c68f8c89f32fcf3a9f08177f, 'PocketPals', 'PAL'), + (0x5997a2982eacf47c9db7d6d0b22ca0be414ba4f9, 'Bomber Punks GEN Alpha', 'BOMB-A'), + (0x59c7b16369422959eeb218c7270e3b5132cb1f28, 'YokaiChain', 'YOKAI'), + (0x59cfc47472b5f8971ff7814dfa539295d2950e0c, 'Stripes', 'STRPS'), + (0x59dadd4f175071f323618387d851a7bbb7f56af8, 'One Off', 'OneOFF'), + (0x5a675abe0e9448ca737b5df4351f81b72b79eabf, 'Afterskool Special Paint Huffing Sessions', 'ASPHS'), + (0x5a74c6fb576fbd87ce241eaf3ddb3f5afeda1e13, 'NFTDegens', 'NDs'), + (0x5abfd034e536b65a1cecda29c04f101d61bf2f1b, 'Mythical Beings', 'BEINGS'), + (0x5afddaf5463256fd01a92919555148b51e8f1ae2, 'DegenDroid', 'DGNDroid'), + (0x5b0b061709c1cdfbf83b720d70b336319adc750c, 'Fantom Fortunate Fox', 'FTMFFF'), + (0x5b7dc7f4caf0bc87f9144825f85453f76473b8b2, 'Miryoku Bits', 'MIRYOKU'), + (0x5ba5168a88b4f1c41fe71f59ddfa2305e0dbda8c, 'PopPussiesPoppedOff', 'PPPO'), + (0x5c12cbe28d90b59422d9eb8057b2c73d8cc2b906, 'Fantomville Eggs 2022', 'FTME2022'), + (0x5cc44084e3bc0d4eb6bde5eb4292fa444b9fe211, 'WING NFT', 'LNFT'), + (0x5d2316d65c19bb97bc3ac43e44d6e4ce6f8b74f5, 'Staked SpookySwap MAI Vault', 'SMVT'), + (0x5d6d49608dac1947ab6645f846ad64989a539b01, 'SpookyChestClub', 'SSC'), + (0x5d6f546f2357e84720371a0510f64dbc3fbace33, 'The Easy Club', 'EASY'), + (0x5d99996b4db79ace59e20b594a21feb1f5ae3cf2, 'Hector FNFT', 'HFNFT'), + (0x5dbc2a8b01b7e37dfd7850237a3330c9939d6457, 'Ancestral Umans', 'AUMAN'), + (0x5df8cb2f14d4299775cfdab934cc25e9e6592be1, 'Fantasy World', 'FTSY'), + (0x5dfcb78ba7ee1428a94ca1f18c57b76793a11f4f, 'Turtle Punks', 'TRTLP'), + (0x5e32b8e824f8a18f5d340554034549e8ccc82c57, 'Influencer Voodoo', 'IFVD'), + (0x5e54a885f3b4c39cfe7936533f20f0352b510857, 'lucky_jack', 'LUCKY'), + (0x5e69983293abacf8be3cd8a63201e5b238584d9d, 'Little Clay Cloud Pre Collection', 'LCC'), + (0x5ed7893b8cf0f9199aa2760648779cb5d96716ae, 'Pink Flamingo Social Club - PASSPORT', 'PFSCP'), + (0x5f02fc5a3800591352db13038e0ae7adaae8d9e9, '8BIT Wings', '8WINGS'), + (0x5f11a52d0e8239f81984b55a39f92599254e4a92, 'Goblin', 'GBLN'), + (0x5f4a33b1fada0d2ce3caa9c862ea6dd9c0199154, 'r0cket flippers', 'r0cket'), + (0x5ffa60ef5790dc4c01113d24449ff445d97f22db, 'Mutant Skellies', 'MSKEL'), + (0x600ea64f353085a0df6fba7335086951ee90f36f, 'NatureOracle', 'NATO'), + (0x60208c88d6e61305726697b4e3a7c7a5c615d011, 'SCREAMO', 'SCREAMO'), + (0x604042aec0be77bf5d64e3707e143eb845fb953c, 'Radiant Nebula', 'Nebula'), + (0x605684a99c512e51145e0ad8866a13e8e4547e41, 'Summer Cats Gang', 'SCG'), + (0x60627e4e8c923ded441ac44c78b1c7f22bca4f08, 'Zombie Nation | FHFC X Laser Powers', 'ZNation'), + (0x60a19c72f967f6b3a2540cfbd1f5da5f14ec5913, 'FantomChessPieces', 'CHESSp'), + (0x6104abcec7d50196b43d437d2d3efaa600a0feca, 'Creaticles NFT', 'CNFT'), + (0x61072ca922f013173ee37fdf3ff64ecd0a28d0d8, 'BEERMONEY Logo xyarlothetep1', 'BEERMONEY xyarlothetep1'), + (0x612dd7b8793949bb7539f7226ef68dc9dd6a5646, 'SlothtopiaOG', 'SlothOG'), + (0x61379a8c7de18cf32e2ffc1bfe4377be0adf709a, 'E6LDEMONS', 'DE6L'), + (0x6139b9c548fbd1c50d2768f3464d89c8744ab5f2, 'Ascended Lords', 'XFTL'), + (0x6151eb96e6376c1dbff3126c24f57cd140cda499, 'UninvitedElephant', 'UE'), + (0x61a70c3185dc4a2756b13d570d2e04b3c3583061, 'DEEMSTERZ', 'DMT'), + (0x61af4d29f672e27a097291f72fc571304bc93521, 'Artion', 'ART'), + (0x61b7170fb8324309250f2e61b99ef500f985cb9c, 'Dead Heads', 'DHEAD'), + (0x61c785ca1422678e4586731c48f5809fd9294ef8, 'CRAWL', 'CRAWL'), + (0x6212dff2981eec5dd9104b00b1552f6640ba6315, 'FantomWitchez', 'FTMWZ'), + (0x6284acfd145c8e03e9ec8ccac238d2f57fc7125b, 'DegenDroids', 'DGNDRD'), + (0x62dd99fa95065672a6c961142f6f464e33ab4fb4, 'Not Another Ghost Collection', 'NAGC'), + (0x633763d9174d6b772676920b2309b39ee3a92a8a, 'OfficialNFTees CommuniTee Collection', 'TEESCC'), + (0x6345b73f285937997c173a109fb8f14d3cf2118f, 'MontiCarloCard', 'MCC'), + (0x6348a5c6aa7ca5315a48b910b084a19cf5f1d443, 'Engraved Spirits Banner', 'ESB'), + (0x6355e47d71b870b1ee9cf528fe3ce37336468be5, 'THE FANTOMITES: THE HIGHER ORDER', 'THO'), + (0x6430a5411fa7e84dd9c39eb7e0d4e22ea47c5207, 'DegenerApe', 'DA-NFT'), + (0x64b216b5896cff02263891799a46213bcaede577, 'Bunny Mercenary Infantry', 'BMI'), + (0x64b375f7c8f74e00dbc46e8497ae6dc90e3f3a01, 'BCGHeroes-Tickets1', 'BCGH-T1'), + (0x64b38cc012d21dbb58e21f0d2885e7509cdd4e99, 'FantomPocong', 'POCONG'), + (0x64c8c3443cf9acbb12aa0968337c4806ba1ef2c0, 'ZombieNation', 'COUNCIL'), + (0x64c913e8edbd7c95e38a808891f05cc32feecb1f, 'Ouch', 'OOOO'), + (0x64d69aee7ea2335b87224ae4b038063a6f7311e1, 'WEIRDOS', 'WEIRDOS'), + (0x650b3e8f9952370d349974773677022eb40704f8, 'NFT Adam', 'FTM'), + (0x65240a2bdb03a1552aa37345a832b4b797dbfe3c, 'PixelGators', 'PXG'), + (0x657aa32e1e270e62eb32471c80df091e855ac362, 'FAFz Special Edition: Across the Multiverse', 'FAFZSE'), + (0x65a9dace872170b86fdde97b4fc8081e84688c56, 'xyncG1lponcS1', 'xyncG1lponcS1'), + (0x65c4f2619bfe75215459d7e1f351833e7511290c, 'Raiders NFT', 'RDRS'), + (0x65d493416c04ccaff84a6f64df3ea7199b907349, 'Staked SpookySwap MAI Vault', 'SMVT'), + (0x65f9e5a3b4c53478fc4c2b7a1e3de0cc2474d71f, 'Sassy Snakelings', 'SNKLING'), + (0x665eda494ccd6245a8d5dc51a8a2902d47679a2d, 'SphinxterNFT', 'SphinxterNFT'), + (0x66ffe24d0b983a5f0aa4a2b1d44da47380754125, 'Berzerkers', 'BRZK'), + (0x670e10a852196773ffee9f04fc4ec722993886da, 'WikedWitches', 'WKDW'), + (0x673ce61e0ec7fad6c6fe689193a0adef38567965, 'Magical Goools', 'mGOOOL'), + (0x6762f9e5e8371ada7c7bf94974819100132efb3e, 'Tombheads Auction House: Themed pieces', 'THEMED'), + (0x67807b9f5b9757c0c79347f0b3f360c15c5e6aff, 'Coin98 NFT Mint', 'C98NFTMint'), + (0x6793f160420289533cc6734c060c199ff1a4b5e7, 'Diamond Hands', 'DMND'), + (0x6799c6414adb340b2b7264f3a55077e17f71870a, 'SpacePepeFTM', 'SPFTM'), + (0x67be56c53d1b0f3d3590e71186b3ba6124229e66, 'MAGA Frens', 'FRENS'), + (0x680151265141ad05c474fe279848ca2bdaebbb92, 'DAFF nft', 'DAFF'), + (0x681535b766ce7e8aa9b274aee791ba0217c67096, 'Fantom Felines', 'FF'), + (0x681c726973439ea359be630018a8e9c3620e1df2, 'BITGOBLINSFTM', 'BITGOBLINSFTM'), + (0x682e473fca490b0adfa7efe94083c1e63f28f034, 'yvDAI MAI Vault', 'yvDAIMVT'), + (0x686d7ae81635f8c2b86addeee5dfc7f5f95971fa, '69 Pandas', 'PANDA'), + (0x68874c562efbbc6e2487fa77b7700064d209d4ca, 'Cosmic Horrors', 'CH'), + (0x68bf55f586e8329716cbff7ef9704e915f96a3ed, 'Heartbreakersftm', 'HEART'), + (0x69523872b174a1f35c2b47e287800dceda87be39, 'Protectors Of Edo', 'POE'), + (0x69af94cde2c832bbfee7d5bb2c9a045c2bbca1df, 'Unreality', 'UFF'), + (0x6a403ffbbf8545ee0d99a63a72e5f335dfcae2bd, 'fantoms.art Basic Fantom Name System', 'FNS'), + (0x6a54c056e3760c38dbc6f9ae3e9ee7c2f92645f6, 'Off The Wall', 'OFTW'), + (0x6b09bb72bd6c287757ad4110005d186275bb61e7, 'FTMPonies', 'PONY'), + (0x6b4af3fb911c8c9e7dd53d818000517d89b55a34, 'BitEggs', 'BEGGS'), + (0x6b7767a448f7d87f434e96d9da7d08398a1c39c4, 'Boxer', 'Boxer'), + (0x6b7e7d2f3f65b33ac527e985496ce8426696b491, 'Nuke Kids', 'NKOTB'), + (0x6b7eca8c9d87fa5e9f4b050b8f8b7028294e3aea, 'Edbangerz', 'EDB'), + (0x6b8b1cd941920bf08297a29d0a93bd05315ecd63, 'DAFF nft drop', 'DAFF'), + (0x6bab89fc4379f55a97154c39966fd63ab53d5d51, 'SXSW Punks Vs Apes', 'PVSA'), + (0x6bef38fde965b19170561a44764ee60727aa04ae, 'Visionarium Premier', 'VP'), + (0x6c375585a31718c38d4e3eb3eddbfb203f142834, 'DuelistKingItem', 'DKI'), + (0x6d0bc09a2634f857410d702a6f32b8e09d4c7d51, 'CamTheCactus', 'CTCS'), + (0x6d312e9b304d05da5cac459b2fcc2ccabbaee757, 'Goddess Of The Cave', 'GCOTC'), + (0x6d6029557a06961acc5f81e1fff5a474c54e32fd, 'yvYFI MAI Vault', 'yYFIMVT'), + (0x6db42efdb380a80f57201b732a7aa5a14ec8c414, 'NekoNewYearCollection', 'NEKO-LUNAR'), + (0x6e4170203ba85e729325b7ae3ce4c21115c82e49, 'Astral Walkers', 'ASTRL'), + (0x6e61144e7123f5936b1f299553f2c4c4ff3e2ace, 'Psychedelic R-Evolution', 'FACE'), + (0x6e85f63449f090856ca5850d19611c50488bd7fd, 'Fantoms on Opera', 'FTMOPR'), + (0x6ea23f00380629e06355c609e3aca3e15ac5174f, 'AMindOfMyOwn', 'AMOMO'), + (0x6f0f3a583d525129b2fe2f6b7610d516f2d6abb5, 'DarkMatterAliens', 'DMA'), + (0x6f5c6a314498fa23b7d72072b57b23daa025889a, 'CreepyFrogs', 'CFROGS'), + (0x6f7f48315fbb93614545b9f03f3ecb18a2fd90cd, 'FantomMoons', 'MOON'), + (0x6fbd35811b67c4ecfbf13a28882ba471c412dcd3, 'FantoFreidos', 'FREIDO'), + (0x6fc58849071e9b3d176ddde0b2b8887f3ca0f656, 'WING NFT', 'WING NFT'), + (0x6fed400da17f2678c450aa1d35e909653b3b482a, 'Summoner Rare Skins', 'RARE SKINS'), + (0x6ffc7e19a8e004a3a32b3cff04834fdb03ee19db, 'bitZombies', 'bitZombie'), + (0x70717920fdedf182bec80d0b316c8d7557381b96, 'Frens of Frens Community Collection One', 'CFRENS'), + (0x70d618d8d71ebe79fe8215887a3c5afeee31eeda, 'LCECHAMPION', 'LCEGC'), + (0x70e6d946bbd73531cea997c28d41de9ba52ac905, 'BannerBuddies', 'BB'), + (0x71909a03f9076c6330eed80d34196e6498d2c921, 'MagePunks', 'MAGEPUNK'), + (0x7281f454e1631e0ed7e1ed509fbeff87d0ae9b0f, 'FantomQuestWeapons', 'FQ'), + (0x72dafe08f228aaa3177932b50232fd092478b473, 'Helping Ludwig', 'HELPNLUDWIG'), + (0x72e3b5a8f6298df4e86d5a5bf7742115adf1a76d, 'Rarity Homestead Tent', 'RHT'), + (0x72f38b2330cd187c13553dc92a0be6334005eeba, 'Strange Pigs', 'SOPP'), + (0x7311e135f259d2f758057bcf7bf3ed1844e987ad, 'Fantom Hamster Heroes Interpretations', 'FHHI'), + (0x7387b71d022acace5be926beecbb6444fb383464, 'ERNESTA', 'NESTA'), + (0x73aae2f4eaf4a0be591daae8caf0e1aeaa3dffb8, 'OrangBunian', 'BUNIAN'), + (0x73b05aa29eebb3e958d3d7f350d758f325842a85, 'Skullybois Rising', 'SKBOIS'), + (0x73eada4d74d8bb4113f172bc3b9e83614e5943bc, 'Stone Gods', 'SG'), + (0x743fabea249c431f85f5f5c7a9de9543c2e96c8f, 'Love My NFT in FTM', 'LUV'), + (0x746761cce7ff578f2dc1ca78dd2f52a33173d6bf, 'Fantom Zombies', 'ZOMBIES'), + (0x749e21c6877cc6bd09f9840d9312295e70a3d3fe, 'NeonGhosts', 'NGHOSTS'), + (0x7587bb0af97fb6ede8a96cd3c1b1aa9f6be9a7c0, 'STAR BIZARRES', 'STAR'), + (0x7591d8f0687304ab0631d3181672747dde6bebf6, 'QuantumPrinters', 'QPt'), + (0x75981e077a300bc44b9dfb9edbbee65560652738, 'ARIAKAS', 'AR'), + (0x75d4ab6843593c111eeb02ff07055009c836a1ef, 'Moo BIFI MAI Vault', 'mBIFIMVT'), + (0x75e6839deeca9bc1409f73f0ff7566a376d23bb2, 'Las Vegas', 'LSV'), + (0x75f93b47719ab5270d27cf28a74eea247d5dfeff, 'XPNFT', 'XPNFT'), + (0x760f695487f39a3ce0b1d748ec09b35ffa03446c, 'PeakyPandas', 'PYPS'), + (0x7639edfe5fb0ed31b8cfe9da2e07acab9aa8d9e5, 'SassySnakes', 'SASS'), + (0x76607a8dfa0599bb0a0359305f110012fc32f2be, 'PotluckInvaders', 'PLIV'), + (0x76e95bf2916b088ac98e0efb19d49fb2558158bc, 'FantomizedArt', 'FTZA'), + (0x76fcb91686e7ce1cce98eab71a1c9a7b7094b2c8, 'WEIRD_CITIZENS', 'WEIRD_CITIZENS'), + (0x7752b4106e101a7728f749103e5a8356af0e74db, 'Creepy Goools', 'cGOOOL'), + (0x775bdf8eddb1515e1d15578ef6bbe8355bee0d3b, 'Fantom Diamond', 'DIAMOND'), + (0x77f796d80c8c3d4911661ae178f9cf1e1a8cf34a, 'Fantom ChainArt', 'FTM'), + (0x781e2998fd2e4f99367c26111a928f55fedef668, 'LilDinoGang', 'LDG'), + (0x78867ad9f6a5eea5c6eae790781aaf0aef0c0a24, 'ALLYOURFUCKINGBASEAREBELONGTOUS', 'AYB'), + (0x789db87308172a5b4cb3af7ee05ad94240c68f79, 'FTM Capys', 'FC'), + (0x79129b18ec39a996e96aa406ffcc4a453f229f6e, 'King Lauter', 'DSB'), + (0x792892c3a9a3d39fe785f39bfc0beb30e40375d1, 'Hector FNFT', 'HFNFT'), + (0x798dad3c004291f72c8cb5f39abeb68fe5ce8908, 'GodNFT', 'BNFT'), + (0x79def0b813944986629d4bedc895b67aca5b6f70, 'FantomKnights', 'FTMK'), + (0x7a79625b9d70a0034d83fa1617b505b3d91cec55, 'Miph''s fantom NFTs', 'miph'), + (0x7a9717c9392e95eee25c12a0976f39950110ee09, 'Fantom Lions', 'FTMLions'), + (0x7ae52477783c4e3e5c1476bbb29a8d029c920676, 'yvETH MAI Vault', 'yvETHMVT'), + (0x7b436025ef51dca712036ce40f4ca28d6906adf3, 'Fantom NFT for full ownership', 'FAN'), + (0x7b617ac9f26855745408c1b14e71b5abd83468fa, 'I Do Dirt', 'IDD'), + (0x7bbdc002ca2633dedeb0466b7947d4e5951085c4, 'Little Clay Cloud', 'lcc'), + (0x7bc39773fa29b86e7a337a7aaf7c55395dff2277, 'Fantom Wheelz', 'FNTMWHLZ'), + (0x7be34f631564ceefdd9b724c56591e6863dc0206, 'FantomApes', 'Fape'), + (0x7bfb32c38ce25ff4cfb99e39db0500d336161c60, 'Protectors Of Edo', 'POE'), + (0x7c90796a1953661518c7bc618e258cc21af54844, 'FTM Ghosts', 'GHOST'), + (0x7cb50e1b945505350c2531122248a1d30fafee66, 'GigaFantom', 'GFTM'), + (0x7cbf23e3e78610e50e3c8a4c2e7d01ef09f1f6bc, 'FantomCoins', 'FCS'), + (0x7cca36b5f8fc47d8ba4cec8c4004bd0d7518b3fb, 'Potluck Elves', 'PLEV'), + (0x7cfdbbf84f6af62d055f7e09a08c4a29e62cd7bf, 'ProyekEdisi', 'Edisi'), + (0x7d1ddd438625a62ca966b0e6c9196377e51e54c8, 'outlandish kids', 'OK'), + (0x7da3a4375acb48b2476cbf668772f5a6d70adffc, 'BigGameRectangles2', 'BGR2'), + (0x7e427486b779f36e85ced4e83c3ffb0e1bf5a01a, 'FantomSanta', 'FTMS'), + (0x7e72f05b8cd0860a83a6b27d3d80bd3b3e440c27, 'FantomMunks', 'MNK'), + (0x7e797a82de0c182efe8b89e04aba0426f657b774, 'Fantom Shroomies', 'Shroomies'), + (0x7eb605e32aa833dff55df3bae51afb82ec61e372, 'Fantolanterns Customs', 'FANCU'), + (0x7efb260662a6fa95c1ce1092c53ca23733202798, 'yvWFTM MAI Vault', 'yvWFTMMVT'), + (0x7f9893ef9726d23e249518eaa1424677b7fed6a9, 'BabyChimpGang', 'BCG'), + (0x7febf8cdf58261d929e31796689aee37a2f62c33, 'MexiTails', 'MXT'), + (0x802adb97e196f5d4662b5ade5e5520051863e272, 'SocialApp', 'SA'), + (0x80637f1644e860f6c3a8ad208a4ce40a839ba475, 'Time Wizards NFT', 'TWZRD'), + (0x80be04d1abd0592184b204a584efa061dedaf088, 'THE FANTOMITES: THE ZENITH', 'TZ'), + (0x81951c24708355d1be9ba4ff0f8237fbf8951356, 'FantoDroidz', 'DROID'), + (0x81daed3dc132cf9c0abfeeab959d1d824fd64730, 'DEMON LORDS', 'DL'), + (0x821d269cedfdca82ec831445b76b329b5eaf18e0, 'FantomPandas', 'FPDS'), + (0x823a1efe83cac1e105a43e6ad31de509d5799424, 'NeonPortals', 'NP'), + (0x82672f07f4a93ca4b4511994155129f5697d2154, 'TinyDaemonTravellers', 'TDMNTRVLR'), + (0x82a0ac751c118c7d4dee71fbb7436862d339e550, 'TurtleTurtle.club: The Timmy Collection', 'TIMMY'), + (0x8401db1befacdc581c8d72b84b0c3ee08a22a5ea, 'degenlife', 'dgn'), + (0x845ee887166f97fde2b20fbd688e994682412550, 'NFTotems', 'TOTEM'), + (0x846a150274e252392c4b6dabe19c6d28d8ca7865, 'FantomChess3D', 'CHESS3D'), + (0x84a106afddefd79c5be976e93773b07c299b9be0, 'Dead Family', 'DEAD'), + (0x84b1fd5d4e0afe446407fd27ee90c964f2f12875, 'xZEROs', 'xZEROs'), + (0x84ee4aab969e38732bce4cee789357d4503afb27, 'Catto Katsu', 'CTK'), + (0x8519a2644c7e54f6c9bb8a519c3fad6fa40f408e, 'Impostor Cat 2', 'Impostor Cat 2'), + (0x85237cdeaafcf1e70b7ab955aae8ccae0d135da7, 'astrokidse', 'AKSE'), + (0x85f9ea6eb26878ec3276efeb393144766ae16c7a, 'PonyPost', 'PPOST'), + (0x8603788835030948a316888152dccd4fe97a8ed5, 'Fantom Fireworks', 'FF'), + (0x862a074e03caf14f4474af486fa5e4dc9c8dfd97, 'RarityPlanets', 'RP'), + (0x864532e088f24f7ee463704b0e8b8348b3db6322, 'WigoSwap Wiggies', 'WIGGY'), + (0x86645fe4975b03c7653eb3010ff78a02acc7acdc, 'BabyChimpgGangEvo', 'BCGE'), + (0x8667ff46ec5e393ee4e3b8f7992798d051a5ad52, 'PonyPost', 'PPOST'), + (0x86c4764a936b0277877cb83abf1ad79ce35c754c, 'Opera House Marketplace', 'OH NFT'), + (0x86fdeb7ebd411129086599a92bf6da71543353a5, 'Glowing Shadows By Mr.Wonderland', 'GWS'), + (0x881452e8d70916adb79a5d847cf6215dae3bcbed, 'SpiritSwap NFTs', 'SpiritSwap'), + (0x88f319c65bfed6233def0d6d4caae18b12a8efc7, 'Contagions', 'CONTAGIONS'), + (0x8952e0aa0b6318193e1436bb1b595e7032f2f48b, 'Fantom Raccoon Federation', 'FRF'), + (0x896d8347652e190f3cdb909938a0e7447aba8bb5, 'SamuraiKittens', 'SK'), + (0x8979a76c26e14c78bf6f819ccdc1decefe9bd5b6, 'NuttyBuddies', 'NB'), + (0x89e4cf0dd24bce6a4610e2bbf14aa849a4358780, 'THELADS', 'TL'), + (0x89eb5473b1e3c4c66844c0c7d3e66990ea249b14, 'Woke Kids', 'WOKE'), + (0x89ffa545347a6905adfa9fe4ba03ce30ed2319db, 'Fantom Native Warriors', 'Warriors'), + (0x8a16ef05428644b1185760fc519ccc861b7e4452, 'Pinche Pinchos', 'PINCHOS'), + (0x8a639253496b9511fadee50cc79a2c4a2ea0d570, 'Xploit', 'XPLOIT'), + (0x8a7df7fea7fa82a67c77ef4ba45b1d7ed0580233, 'HalfDead Zoo', 'HDZ'), + (0x8a89c505d174b056a35faf5d6c712ced921e7b48, 'BobbleHeads', 'BH'), + (0x8ac28989c385d83e1a70071e78e78e46897c536e, 'Fantom Citadel', 'CITADEL'), + (0x8ad42c5bb61a44ea86bcf3b277c85ff68bd4f3aa, 'BrokeApeSociety', 'BAS'), + (0x8ae8467e72b3b68b108a4312b89f46184c754722, 'PodCommunityCollection', 'PodCommunity'), + (0x8b0c4959d3424dc8b054f37d6846056b6a83df98, 'E6LDoggZ', 'E6LDGZ'), + (0x8c2fcd5d857ee9aa19d1a27ae81ab1129385e3ac, 'BitUmans', 'BUMAN'), + (0x8c8bc693dd3df93b74a00941c90a0fa30ac86eeb, 'BadTripBears', 'BTB'), + (0x8ce68dc7dcbfa35d89ed8374b3ebaa4cc820ec54, 'Egglets Nft', 'Egglets'), + (0x8ceca92d2b62b94b662a13229b64916154d3b4c8, 'Flickets', 'FLICKET'), + (0x8d53fd121198d0982f8e19286e924c78ed5a6a7a, 'HedgeyHoglets', 'HDHG'), + (0x8d7ab302ca8784210ac62e5d679f7e9c350cae40, 'HectorAroundTheWorld', 'HATW'), + (0x8dc04e8303568ef18288beb91dbbabdb9fcdfac9, 'FantomOctopups', 'OCTO'), + (0x8e00e810e824c3cbe8face698202555fa719c05d, 'Fantomycologist', 'MYCO'), + (0x8e33b7a56989775d302b5e49f5b4f2f1e8550a3d, 'FantomQuestHelms', 'FQH'), + (0x8e3d2ad79c147b71211946a7ad6ffb4d3a8a3154, 'Omni Charlies', 'OC'), + (0x8e511aefa68af20634a19577d40ccf3c6504eaa3, 'Phantom Bunch', 'BUNCH'), + (0x8e59eba6cfce3d41355494d4279bce92417cef68, 'Mazochist_LAF', 'LAF'), + (0x8e5e4d08485673770ab372c05f95081be0636fa2, 'Moo Scream LINK MAI Vault', 'mScLINKMVT'), + (0x8e7c434b248d49d873d0f8448e0fcec895b1b92d, 'DegenerabBits', 'DegenerabBits'), + (0x8f4cabcd3d3eb5e04c793076f1b72da1f4751d31, 'Fantom Animals', 'FANTAM'), + (0x8f4dc1d7139f87ee7602b331de556a1dbd4db27c, 'EarlyRareBearz', 'ERAREBEARZ'), + (0x8f59cd1dfd7f02df4ab89539ad7c6a626c9c6c95, 'FantomInvaders', 'INVF'), + (0x8f77400a76b38e9a359b60c4cc3c295d80c60a6f, 'Fantom Boy by Visionary Boy', 'FTMBVB'), + (0x8fda051db7ff7c0ee5a6ce07ed6defffe6a6c2d0, 'Rivals: Aliens vs Astronauts', 'RVL1'), + (0x903efda32f6d85ae074c1948c8d6b54f2421949f, 'OfficialNFTees', 'TEES'), + (0x9044948e1a934340766c16f094cc32205d60d1b2, 'StrangeBrew', 'SBREW'), + (0x90aa737cfb8d8fb0b610c500bd494178654ffc8e, 'Locked Elys', 'LELYS'), + (0x90de496c15e2434c5799038b528b927e4036cf4b, 'FTM CyberPunks', 'PUNK'), + (0x90fec9587624dc4437833ef3c34c218996b8ab98, 'Reliquary Deposit', 'RELIC'), + (0x9126f98a31899b3f4029994a58fa1fd3f61759d9, 'Worlds Beyond', 'WRLDSB'), + (0x9155af8bec02e5c744e2bdc9d0cd31ca384f410b, 'Llama Special Edition', 'LSE'), + (0x916320bba0c956181b7caca0fe01ef7635efd411, 'Big Cat Klub', 'BCKLUB'), + (0x916321a3b7bed51f0a03eae7ce632da29f29a917, 'Fmyco_pfp', 'MYCOP'), + (0x919658e34ace6e033b10387eb9942630b07d67a3, 'Mochiu Moshi', 'MOCHIU'), + (0x91b4b3e41c755ffb4656799f41bf7bc98e84dbf7, 'BCGHeroes-Tickets4', 'BCGH-T4'), + (0x92029e3cef6ea4593ebc3f14ef7f840deffc6278, 'VotersBeer', 'VB'), + (0x921b6764ebcf64cf5bc24283015a34592cc254fc, 'Golden Cat Statue', 'GCS'), + (0x92d0ca35e9e82a4b81e298fd3cccdc49b32cc1a3, 'Nomo Universe', 'Neonate'), + (0x92d822978872f12a5d381bd7089461e7ad3634bc, 'Fantom Waifus', 'WAIFU'), + (0x93c7b19df2dea70c7fa3f355f079d6ed077998a7, 'Foxes Of The Opera', 'FOTO'), + (0x93eff20a37783a7909a2b2ed5662be420fde2e79, 'AI Genesis', 'GENESIS'), + (0x9494d42b83e886edbf0d4fe85c433afffd6e7974, 'Twisted Pickles', 'TP'), + (0x94e22c14118353651636f9af43cd0a5a08b93da3, 'AirNFTs', 'AIRT'), + (0x9522ea3113005dabc504ea3e3648f16552feac79, 'Egg Emporium Traditional Living', 'EETL'), + (0x954d9ec10bb19b64ef07603c102f5bbd75216276, 'Syfin_NFT', 'SYFNFT'), + (0x954dbf7f372c12283f5c5feae11ea3652eb73352, 'Strange Ones', 'TSOA'), + (0x959ce21bca24de6ae331c95f6a9b459173cb69f4, 'Dark Planet', 'DP'), + (0x95efc8a681ad177a0095b8a430fff00be94c7fc5, 'HiveWar', 'BEE'), + (0x96862bd2f2e8963e3800819668b6802c91fd9541, 'Okay Runner', 'OKR'), + (0x969b2bda44a8a6be009bf264fcf62e079f581b97, 'Creatures Of The Cave SS', 'COTCSS'), + (0x96ae96b5f9068dcb6a532018ee60ffcdd4f33085, 'Obsession', 'OBSS'), + (0x96d9e2f9415d145ffc30a8a78ff7653f4bbc34aa, 'Portalpassenger', 'PP'), + (0x96eff7cdbca8fd690226cd67eed1ef65272e672b, 'Froyd Art Originals', 'FAO'), + (0x9752740c32565489282197acfdc8f611254569e2, 'Teen Chimps Empire', 'TCE'), + (0x976b0bf353df1c0e5773862841cc5d226b847906, 'Froqorion Dao', 'FDAO'), + (0x97fba89cbf08d1bfeedf9bd561ff464a0a9b8038, 'PepeTarot Cards: Edition 1', 'PTC1'), + (0x97fe96bdc8521ac774dad8af04149e715680faeb, 'Sasquatch', 'SQCH'), + (0x980c39133a1a4e83e41d652619adf8aa18b95c8b, 'DEUS voucher', 'vDEUS'), + (0x98abb0aa746a1e35fe54b522a12164ea1e034e96, 'Power Goools', 'pGOOOL'), + (0x98dea78a781203c59e06b84203fdc89a60bd26ba, 'The Asylum', 'ASYL'), + (0x99264dd841c352fb6255150e9303af4f88680dbf, 'Sellek Originals', 'SELLEK'), + (0x99342c8cfa578297c0c9c1681295cf0cfddb31d0, 'GodNFT', 'BNFT'), + (0x99571da737e351396df2d389ceaab13486a387ba, 'ZombieSociety', 'Zombie'), + (0x9962b12ec74fd71d0803c22ca94e2db64fcfaea5, 'Cyber Huntresses NFT', 'CHN'), + (0x99e11e171ee086b756716aaeaec25d6e8b335224, 'OGWizards', 'OGWiz'), + (0x9a079923062e068944f70592223693a94a90b9c6, 'Halloween ShibaPunk', 'SPOOKYSHIBA'), + (0x9aa0bcb62cb3c339e163a675db501da6a440a174, 'WWRItems', 'WWRII'), + (0x9aad7f0d8331165e06d7a2341adb510bd189e5f2, 'FantomQuestPotatoes', 'FQPOTATO'), + (0x9ace949a1839e5e560b664b89d9445847cd03d84, 'PonyPost', 'PPOST'), + (0x9b1372e4a65d914d670f061913ad746250533b49, 'Bubonic Bastards', 'BUBO'), + (0x9b29cf1dee033845ff4382c7592d2620b610829f, 'GRAPEN INVEST UNIQUE COLLECTION', 'GRPNUNIQUE'), + (0x9ba01b1279b1f7152b42aca69faf756029a9abde, 'Moo Boo ETH-FTM MAI Vault', 'mooBoo-ETHFTMMVT'), + (0x9be6efffccb1a1069f2fb0708a016fc714c8ec72, 'GIMPtoonz', 'GIMP3'), + (0x9c26e24ac6f0ea783ff9ca2bf81543c67cf446d2, 'Banksy Factory NFT', 'BanksyFactoryNFT'), + (0x9cd07f9bfb36c74e0f04a0f7e6dbeabb2ad0dca8, 'RWWR', 'BERKANA'), + (0x9cd6da216a1357976dbd09827337bba93f8f3741, 'MIRTHQUAKE OG COLLECTION', 'M-OG'), + (0x9d12edd4a590aee205cb205aa0906035d56a4fde, 'GodNFT', 'BNFT'), + (0x9d23e7c3fd4394ffd542b8271d618b7d2c0dde05, 'Unreality - Froyd Origins', 'UFO'), + (0x9d378b3bc0f1e0b0141b001a1f5418e0cc6bd3e7, 'EmojiPortrait', 'EM'), + (0x9d632cf43a2c75e1d938b3f71397cc59e63fb2fb, 'Fantom Terraformers', 'fterra'), + (0x9d7e1f98d1b55eb73b1617674b94bbe98c0f74dc, 'QuantumPrinters', 'QP'), + (0x9d8db7271df3e1006b3f1a22fbc7b40306f93f04, 'Fainting Goats', 'FGOAT'), + (0x9d9525017df9ff8ed84dd1beccb272912b42e1c5, 'TurtleCoin Challenge Coin', 'TRTLCoin'), + (0x9eacda6d743a3950854727203fe20914e0819e2f, 'Helping Arthurrt that was drawn today to help Arthur, he asked f', 'HEAR'), + (0x9ee3479f88431040f96266c73c6949f4b694e97e, 'Raccoon Platoon', 'Raccoon Platoon'), + (0x9effec742fd061bef3ff55f00a0be53c29a3e712, 'FantomValkyries', 'VALK'), + (0x9f3c8ccec67f06a62affa17019493956422d879c, 'GOLDEN TIKETS', 'GT'), + (0x9faa278cb088294ea00be2895f5fab8d091bb946, 'Pixel Doodled Punks', 'PDP'), + (0x9fc4e390395177d6d5f1ed013c24f260df301cff, 'SimpleFellas', 'sfellas'), + (0xa0115dddeccfd4532edf8640f4c36349b02fc804, 'Astro Kid', 'ASTRO'), + (0xa03c5a2e339c8c28fe1a69aec528ee2f25fa12cc, 'Fugly Fantom Frogs', 'FROG'), + (0xa09aad4e21fa4d5da6cee77c38cdcb96ab7ff420, 'Goated Asshole', 'GOAT'), + (0xa17cce73e11400623c900eb18e294dc0318b86cf, 'Lolas Girls', 'LOLASGIRLS'), + (0xa1c7b73ffb6abb589088e3e116a64a0eda3ff481, 'Frengroup Prelude Collection', 'PFRENS'), + (0xa1e3095116c1d79c0e4f236b2e0a6f9513a17828, 'FantomPunks', 'FantomPunks'), + (0xa20e5236b810790f87382d29f11c86c6b68c9b06, 'AUTOCOLOR_Technica', 'ATOCLR'), + (0xa279cae29f9013f7e62a3003066085cd1047e04d, 'RareBearz', 'RAREBEARZ'), + (0xa2ed7b7b54302cf3d1689cfb4177b4b7eaa50b37, 'WhatTheFish', 'WTF'), + (0xa3034dbebb9826f6390fa4418417fca43a3b9a87, 'Funky Tiger Mob', 'FTM (NFT)'), + (0xa3873a7a7af655746ecec810fe39fabb22b7e5e4, 'Soully World', 'SOULLYWORLD'), + (0xa3b311f758657518d4754b73129019d228147d2d, 'Stoned Giraffe Club', 'SGC'), + (0xa3c816375a06353442c31d80c9c34bf932145fce, '10percentroyalty', '10p'), + (0xa425176d5b0916cee86b8311ad2af2a0580491d7, 'Bit Umans x NFTees', 'BUMANTEE'), + (0xa42ca3a939913f941066a064963d13a7805146d2, 'banasparty', 'BNSPT'), + (0xa4792c47e98422430be6971869fe0003eb7c3b08, 'Moon Shadow', 'MNSH'), + (0xa49ce3e1451a855bf9671763761c9303440c2a71, 'HeadCryptoMonkey', 'HCM'), + (0xa525733ca5cf14e596ff7a4f69a1e47faf8c0f2d, 'Turnt Turtles', 'TurntTurtle'), + (0xa578d7f04ea7129f0ef81827846156438da65025, 'The Gauganians', 'GGN'), + (0xa5d8d022bea0f8834c8956d7b9c6c1e0207cf132, 'LuvPugsNFT', 'LuvPugs'), + (0xa6377c4dd8d6758a7062130099e2c989a32dc657, 'Dgnz Addictions', 'DEGN'), + (0xa65f9b290423c667094fe2e0f7f58f2dfd867c4d, 'RookiePenguins', 'PENGUINS'), + (0xa6ed77a27355d04ba480c0896e8bce4ce0c23bed, 'GOING SOUTH', 'GS'), + (0xa6f44e21c31a1e474d74cd8c06282b21d5a2e721, 'FD: Dealerz', 'FDD'), + (0xa6f9af0a5baafe0d90e5164784501e8c769500ad, 'Los Honey', 'LSHNY'), + (0xa6fc08dec31354af767ba75dfb682654c0bd9177, 'WikedVampires', 'WV'), + (0xa70aa1f9da387b815facd5b823f284f15ec73884, 'FantomFrogFamily', 'FFF'), + (0xa732854253100331eebef1d3a2ace0430cd7b0cc, 'Punk Duckz', 'PDZ'), + (0xa7357e38eb3fc28ea4ef6e1fc7b79f46b2c4f88e, 'FantomMonkey', 'FTMM'), + (0xa7bd4e956dc1ce793476618993ba648d059f6531, 'Tale Of Tombs', 'TOT'), + (0xa7c6f112b19277b02c55bd52a76d7af2fb36f9f1, 'RookieBears', 'BEARS'), + (0xa7e58276a4f9bf54a880925f075d481d5a8162db, 'PINKY COLLABS', 'PNKCLB'), + (0xa81c9d00d29afdc83b7e788a29ec96a5bd81a8ea, 'Acid Cats', 'ACDC'), + (0xa86dc83de3d1345ed566a62fec5fe503a987fb89, 'SpookyBears', 'SBEARS'), + (0xa8a1775b9729cb6c047df243650a092ca5e7682c, 'EvilGuy', 'EG'), + (0xa8c3e7dc41ad9029df70b7ba5633412215346ad3, 'Moose V1', 'MOOSE'), + (0xa8cfa4f0a588ef547789910369e87e5b9958b173, 'ChubbyCat', 'CHUB'), + (0xa923bbfb33bbb1fb7306b2781336f75dacb1a62f, 'Arbiters Of The Deep', 'AOTD'), + (0xa9345034b871a1741ffa49145d51f22dfef5b3c7, '8BitBall', '8BB'), + (0xa9745fbc14f2be23f97607c512f8a613de459996, 'OmniMfers', 'OMFERS'), + (0xa9775de41b6971f4c0446a8546e6bdb0434ef026, 'FantomVampire', 'FTMVV'), + (0xa9a4e753d744bd400b72b1dfd0a97760d7b46803, 'Squaddies - Female', 'SQUADF'), + (0xa9f9e124df7c78b205a4f6d43c652c91a0fa59d4, 'BakedBunnies', 'BB'), + (0xaa3fb78edb853182271941d71ede54d304fc380c, 'ChonkyCats', 'CC'), + (0xaa57efda5070f114f5ed45f463ac6073a668e5dd, 'poppussiespoppop', 'PPPP'), + (0xaa594d4801892fca25c0a6f8752a30c35c1770f0, 'Summoner Common Skins', 'COMMON SKINS'), + (0xaa5f0f2f15e8eadd83ed34490cd0757455a573f3, 'Fantom Llamas', 'LlamaNFT'), + (0xab00af3cb05e3acd9e6a32783b583507b7634e00, '8bitcats.com - Stone Statue', '8BitStoneStatue'), + (0xab496610a72e96794a47146c809902df339978a9, 'PopPussiesALilBitHairy', 'PPLBH'), + (0xaba906ec84ce4cb8a7c4bcedcb1dbe66161bd439, 'Boohoo Ghosts', 'BOO'), + (0xabc9bfdd0ce69443843d1d7a878b0977ef20fcbc, 'RuckyDraw', 'RD'), + (0xabcb8255094f9d2341e6181aafd21743bd173d21, 'Polyguys', 'Poly'), + (0xabfe2ed8c292c2be56362aed5cc60e9174704023, 'Impostors', 'IMPOSTORS'), + (0xac08b7a44678242ae183ea3dd4c13c4bb323ea91, 'Gasly NFT', 'GAS10'), + (0xac1c9e4033a6fa42ab4f86b7bf8a6580f8756a30, 'Roboto', 'RBTO'), + (0xac387c08ca418c7182f17cca957b863679ea3373, 'BCGHeroes-Tickets3', 'BCGH-T3'), + (0xac396a641e7edb386d7d779b438e04287233b00a, 'Degen Droids OG', 'DGNDRDZ'), + (0xac7d8ac1a50f1696871fe77dc50aa8b36279dec6, 'Raid Relics', 'RLCS'), + (0xac98aa504d1dda83cec366d92e3cec12beecb0f3, 'FROM THE SHADOWZ VOL.1', 'SZMXTAPEV1'), + (0xad956df38d04a9a555e079cf5f3fa59cb0a25dc9, 'KittensHD', 'KITTENHD'), + (0xae17c53d7603ac458776edf4075019717586bce9, 'BitGoblinsFTM', 'BITGOBBLEZ'), + (0xae2da11c656a93528970ef460c57bd9cd2636de5, 'Big Ol Collection', 'BOC'), + (0xae6423e136e63585e3cf9fba4247ee168ce6808d, 'LazyButtz', 'BUTT'), + (0xae7359655f68873cfe67ceff239157540a9bf4e1, 'Food Farmer Finance OATH Allocation', 'OATH'), + (0xae84001ad422c494ee80630a6c03d7a12935610a, 'Strange Monsters', 'STM'), + (0xaee90816d6496d84880611af417802ce855c7949, 'Toonworld Traits', 'TWT'), + (0xaf01bddd8199c0a1248bb24a7f14045e5ef3e0a8, 'GraffGrems-E2', 'GRF-E2'), + (0xaf01edc305a11e6a765765b3e2c3d16f9466c10a, 'Ghoulish Divas', 'GSDV'), + (0xafcad3f0ec5cee5d56f660cac999bf93a12442b8, 'Knoble Knight', 'KKNFT'), + (0xafe638357bfcaf0b63df5508428d46a70390a207, 'Elon Musk Goblins', 'EMG'), + (0xaff9c238fa63d710f53df266d881d14d816e9694, 'Hamid''s 1/1s', 'Hamid'), + (0xb0186b14a3739a4e3f81b4e513f8edb1adc0118e, 'Fly Boyz', 'FLYBOY'), + (0xb033ad743cd8a24dfdf2c9336950e7ae713c8a29, 'Degen Droids OG', 'DGNDRDS'), + (0xb054ee017f7df541b7dad6bc223f78280bde1cf8, 'geblens', 'geblen'), + (0xb183341a1fc7c851df05e01bf98ee683080b7e8c, 'FTM Alpha Fiendz', 'FAFZ'), + (0xb27d70b8972c0e6924fc40b36c688313e1512d9b, 'FantomJoglo', 'JOGLO'), + (0xb2dc7e0f10c1b134c90acd1f9364a1fe5933556a, 'VOTERS', 'VOTERS'), + (0xb2df07def47fbbb3609ba3fa71de64544816dd73, 'Fantom Seahorses', 'SEA'), + (0xb3503c21dea9a0ee77f13cf537f2a67a1db26013, 'SomethingDifferent', 'ABITZ'), + (0xb3629177f46686106c8b83d03613041d805ccdcd, 'Fantom MoonCats', 'MCAT'), + (0xb36949c92d84dfba03115a388e59fd881d0a9735, 'SUPA Organism', 'SUPAORGANISM'), + (0xb379268b57c85a4d8bf6bd22a7488d6c8464cd67, 'Rich City Land', 'RCL'), + (0xb3bd794bd00e1711c55ceb5c452d74c0d8be292d, 'Fallacy', 'FALLACY'), + (0xb3fec31a45a76a88b76fe4aec57c0a75565e0581, 'Lazy Turtle Society', 'LTS'), + (0xb46886646d267dc2f23b2e76fc010fd88b6d8c4b, 'PunchNPie', 'PNP'), + (0xb4b564d13ac7cde29d4631ab7e3c44689320bf03, 'Rugged Clowns', 'RUG'), + (0xb5f87c400fdc64345bfa447cc18d09fae94972d5, 'Phantom Wave', 'PW'), + (0xb6460f26f1d189372c72c026390fdc90af24980a, 'Frog Cult Keycard', 'KEY'), + (0xb680b9861f73b30d86bdc248376d9566ade3fd35, 'FantomSquad Main Collection', 'FSMC'), + (0xb6902d67e75932a2d353c43490623d6b246f93aa, 'Fantom Frenchies', 'frenchies'), + (0xb6b0fc8db9420c45fcf01065bad1d35edcc0dd5b, 'ghostcorp', 'gsc'), + (0xb78d6fe453c335a3dccf054ee76a436a09cc1873, 'Fantom Wolf Game Reborn: Land', 'LAND'), + (0xb8626f00e3d42ec786dfd43f981598ca6d12d873, 'Ghost Kittens', 'GK'), + (0xb87532648cd6ffbdd09430d1e2b4907dfbde17f7, 'Candy Robbers', 'CR'), + (0xb88e709fbb4376b379035e67daa5a1a8736a3bf1, 'Buried Skellies', 'BS'), + (0xb8a871e723ef8c554950b73b189c966e6fdff9bd, 'PLUGEM', 'PLUG'), + (0xb8c3bdc19f0f47da5fb562f6772e20ed2883e6fc, '8-Bit Cats', 'CAT'), + (0xb8ea48fc8d5d6a8010d3e9a33955069152c9f28a, 'Weird Goools', 'wGOOOL'), + (0xb9118fc6b03bc4345ab78b787fddda181522d4f3, 'Alchemists', 'ALCH'), + (0xb926ad1b2a331049a0f19ddd2f19e82988e4b854, 'BabyChimpGangHeroes', 'BCGH'), + (0xb989b7be2cb17bebc684f489d299a7c7703c22d2, 'RogueCrocsAnimatedSeries', 'RCAS'), + (0xb9f211a9e73509f0bd5fc69ba5cf2f5d6dca49f8, 'ForgottenSkulls', 'FGS'), + (0xba3f1a217aa54a2c7db522d9359e737ee45ad59b, 'KungFuu NFT', 'KFFNFT'), + (0xba9cbc553073aff8d9e9dfaad42022cf794ae6b0, 'PlantEm', 'SEEDS'), + (0xbb447b20b6f14affd95dc7eb2347f187d0ee536e, 'NFT Duelz', 'DUELZ'), + (0xbb84ce8423b99c70312234b5b9da56311af0ad9a, 'Pop Up NFTs - Bunnies', 'POP'), + (0xbbeb7c2a6c70c57e5f35d58c18333c5a023c9dec, 'RektChimpGang', 'BCGR'), + (0xbbf352cea87a49aef9d5a5dda16de2240814732a, 'Potluck Labs Super Serums', 'PLSS'), + (0xbc83cae02389fe6a719c49bbea5f8bec795c1147, 'Feeple', 'FPPL'), + (0xbcc0fbcc982ab58dabd0e0ca8fb8d1a08410ce7c, 'r0cket flippers', 'r0cket'), + (0xbcce549b7c216b98ce68801bfe4e30dc4e64b4e3, 'PixlBros', 'PixlBros'), + (0xbce99353b44a2fb02418b3b892e6dc2d3260c723, 'Geisha Tea House', 'GTH'), + (0xbd18a7eacbb2e50b5bb9cdbda48c485b752cc1a2, 'Geblens', 'geblen'), + (0xbd905a2c22b83f4299b6c4779ca4344fff25f136, 'Fanties', 'FANT'), + (0xbe33065ba8420014b49a46b22dfc93874a44c25b, 'Rarity 2 LaunchParty Ticket', 'RLPT'), + (0xbe33ad085e4a5559e964fa8790ceb83905062065, 'veIB', 'veIB'), + (0xbea7c3f2d91a9c6fd7f5aa9c803d4c31c1db8db9, 'BitDaemons', 'BDMN'), + (0xbf0ff8ac03f3e0dd7d8faa9b571eba999a854146, 'Moo Scream DAI MAI Vault', 'mScDAIMVT'), + (0xbf218c76f2e6a4f4a6e20b6d10d1e922d7d9daf1, 'Miryoku Sigils', 'MIRYOKU'), + (0xbf2b77b4b3fbbfe1f7a757d1cab4d294fc027ae8, 'SlurpiesByZaq', 'SLAQ'), + (0xbf4b97478383d425adbdfed424084b7b93d53982, 'Hero Blocks Mint Ticket: https://cryptoblocksmmo.com', 'HeroBlockMintTicket'), + (0xbf53c1e2f41b824a1a3ef8c827e75ab0ed4f4b69, 'DEMON CATS', 'DC'), + (0xbf73c78d6df63941d29593916ddf11a62b7b02f3, 'Champion Skellies', 'CSKEL'), + (0xbf8710b6da9e775dfc8ccac3418169c78d9d5390, 'luisruiz.nft', 'rui'), + (0xbfbab65708eaeb43390477a61ed72cc44a788081, 'Ultimate Doodled Punks', 'UDP'), + (0xc021315e4af3c6cbd2c96e5f7c67d0a4c2f8fe11, 'FTL Artifacts', 'ARTIFACT'), + (0xc031b7793f17100e9b7ad369ca05e5ec8a0f5b5c, 'WeaponizedCountries', 'WC'), + (0xc03540499b54441a75d02684090159b6d94d3c76, 'HyperMayo', 'HM'), + (0xc0fa7b5debf99b529d39d22cc01594ace3d6fb30, 'Fruity Frens', 'FF'), + (0xc0fcaa2965bde5531c685c2b96e8b3f01f36abe5, 'TitBits', 'TBIT'), + (0xc1795980224230dbe0f040328422a54a1e3d8fbe, 'Empireland Limited Heroes', 'EPLH'), + (0xc1b637e298ae4ca2dbbe77b56c8230d866b3ea26, 'Phantom Werewolf', 'PHTM'), + (0xc1c7ef18abc94013f6c58c6cdf9e829a48075b4e, 'Moo Scream WETH MAI Vault', 'mScWETHMVT'), + (0xc1e87be1055509081ea73a0fd5d3d70f6573dc99, 'MiniLand', 'MLand'), + (0xc22b3312fdd50e3dee7a12fbd0fd0a92d726a4de, 'Degeneros', 'ISLA'), + (0xc2512bea9fd2cc83322063abfef8c778499a5465, 'Phantom In A Box', 'PIBOX'), + (0xc2750650cae36385e791bb0f32e9ce568a0c66bd, 'MiniChillas', 'MC'), + (0xc2e847b01260f2c816501b4a6f2efb25eeb0982f, 'Runic Runes', 'RUNES'), + (0xc369d0c7f27c51176dcb01802d6bca2b3eb0b8dc, 'BannersOracle', 'BWBO'), + (0xc3c545fbe817c8f56762482cd04fc89cf314df7d, 'TankWarsZone NFT', 'TANK'), + (0xc433d9d147bec9a0bea63c8dc8a07b52faa3b038, 'Blast - Steven Vinyl', 'BLAST'), + (0xc44b1022f4895f3c04e965f8a82437a8b5cebb70, 'DuelistKingCard', 'DKC'), + (0xc46cf2d62eb6302d588a725871eee4cb9684ac73, 'FantomBlobs', 'FB'), + (0xc4b79afcf656b98ce530c50af8d3fac6fa945fbe, 'Stick Warriors', 'stick'), + (0xc4c9e7ba54229531bd1a7ee91a223a8f26460239, 'FantomMutants', 'MUTANT'), + (0xc4f89dfb7cec4d3500b8785a1573327eabd389b2, 'Metti Team Six', 'MT6'), + (0xc50dbb6f0baab19c6d0473b225f7f58e4a2d440b, 'Ultimate Doodled Punks', 'UDP'), + (0xc541aff15d84da3066b2be85c072fae592ff989d, 'Goool Bands', 'GLBND'), + (0xc56b7205ac5d8699a81ca508ce7403adf43492e3, 'Fantomville Grills', 'GRILL'), + (0xc5777ad2250d7b12a3f2383afb4464b9e49be297, 'GodNFT', 'BNFT'), + (0xc5fa69f0d478923af8c798cd770f2eed4e40eb99, 'FantomRock', 'ROCK'), + (0xc5fe2a948d438f269f2e94cf1cc42a937bc0e3dc, 'The Shill of HORD', 'TSOH'), + (0xc65c5b97aacbd7fbbc87b93bb992c4693a70f822, 'eYe token 721', 'eYe721'), + (0xc6630c2807948b7c5475d089849ae55f635b9f80, 'Persona Blocks | Concept Series', 'PERS'), + (0xc6c91e1813210a1d9489f6ca54c6790c17bb841b, 'Rugs', 'RUGZ'), + (0xc70aae0bd664255236143cc1b92a7bd9b2ef019e, 'Bruce the Goose', 'BTG'), + (0xc718742209efc9b79ceb477a9ba5fa44adb7a66c, 'SwolChads', 'SWCH'), + (0xc73e1237a5a9ba5b0f790b6580f32d04a727dc19, 'Rarity Names', 'names'), + (0xc78524c7aabbd8c3695b5b630d7ce2160b8b0551, 'LbhG3czvuS1', 'LbhG3czvuS1'), + (0xc7ac1dfafd242f9d916826c340f6d87fd9bd1559, 'Spook The Goose', 'STG'), + (0xc8034b3df18ea4d607e86d6b6bf23e2a8ed70f89, 'vedcMST', 'vedcMST'), + (0xc83baee99305a23078148ec201bffaeb556c0867, 'Aesthetic Diversity', 'AD'), + (0xc846da37d2e0ed947a764c2b41d96d6523143403, 'Alien Heads', 'AlienHeads'), + (0xc85ac0d5692077b02530a4b0f74143065a993d82, 'Enso', 'ENSO'), + (0xc872531fc415e957d8e8c174c1f3e57cc11eeb73, 'Homeless CASUAL shoot', '666'), + (0xc88bebd7c4b947a6973398391190b3fcfb46e334, 'FCANCERNFT', 'FCANCER'), + (0xc9b205c2da5f83ed5919cf90be9458a5a55897d9, 'Surveyors', 'SURVEYORS'), + (0xc9cbb0cdfe8dfae1dcb633bf6fdfb1ad4582307c, 'E6LSKULLS', 'E6L'), + (0xc9d1e4b68d22b470fd9d163805c3038bcfb40961, 'MajesticChestClub', 'MCC'), + (0xca1f673fc9dd06525b86df7bdada501bcfd709ac, 'CryptoMage', 'MAGE'), + (0xca34f649b2b11b7e01c48eb3b5a8a9a97083b0f9, 'Los Bears', 'BEAR'), + (0xcab4413c559543498c7ec993ef83104a93388949, 'Fantom WolfAngers', 'fWOFA'), + (0xcae5bac6b16eb7d339459ec0482b7235ce2ca90b, 'Ovre NFT', 'OVRE'), + (0xcb0ff14cac96add86223c8c7e8a6129cd92919ab, 'Cyber Fantoms', 'CYBER'), + (0xcbcfccc5c6f5e23449f563acb3600bc82a1f4a17, 'Christmas ShibaPunk', 'XMASSHIBA'), + (0xcbd8fea77c2452255f59743f55a3ea9d83b3c72b, 'veNFT', 'veNFT'), + (0xcbdb8c0e510d495aed91b321812ab0c9006cb80f, 'DoodledPunkFam', 'DPFam'), + (0xcd05e23d508cf053513475277eb4de9f55f75f35, 'Old Blood of the Cave', 'OLDBLOOD'), + (0xcdd5e3e6e4ae3057732ef4777f599d0e6ca8253d, 'QuantumPrinters', 'QP'), + (0xce2cea0447a4715c3f166802c2a67191d200923f, 'Fantohmies', 'FHMI'), + (0xce7ad29cf8d5e93aa7dd1e98089fd07fe09c102c, 'FantoPepes', 'FANTOPEPE'), + (0xceaf55e9e6af1d0922135bdc64b6c4c7f07e4636, 'SomethingDifferent', 'ABITZ'), + (0xcedeab32b1d72bd6d0c853bc1a36ed81d42eafc6, 'Turtle Ganja', 'GANJA'), + (0xcf72a2d4f4ccb58c1b983a10986a4bf8a97bc311, 'Snow Penguin', 'Penguin'), + (0xcf9058857de3e723116939fa51654b7f3920fe8a, 'TLK Female', 'TLK Female'), + (0xcfa4d04d1ccbe4dda0635dedb61601b50b13ad8e, 'FantomRunner', 'FR'), + (0xd02610927a139ccbb6ae2a9e852ac556585ebac6, 'Fantomville Cabins', 'CABINS'), + (0xd02e21b143df16058b9d65d47546a33d1b312b90, 'FantomPills', 'fpills'), + (0xd04f2119b174c14210e74e0ebb4a63a1b36ad409, 'Wolf Game', 'WGAME'), + (0xd0885885f066597e0c4f45ebdb56a9b08b22a9a1, 'Toonworld Skeletoons', 'TWSK'), + (0xd0a23cd0d71bd29dc243d5581a0a0738749f3499, 'Ava War Fesperians', 'AWTF'), + (0xd0c7fdb0b9d9f54f41df4d44959fff479172781e, 'Engraved Spirits', 'ENGS'), + (0xd0ebcd6b6f44207a32796d5c4a22dbd2e60b311d, 'ShamanForest', 'ShFt'), + (0xd205984ea683ba5aefcd65e276af4a8780f399d6, 'Warp Starships', 'WShips'), + (0xd29ce66c111d54182d431ee897e72e194776bf02, 'CTZombies', 'CTZombie'), + (0xd307ee784b004d59592c8f036c0fb0cc7fd37378, 'DARK300', 'DARK300'), + (0xd35223c143c83939a0bc67bc8ccda9f628755b8f, 'Fantom Fortunes Deck', 'FFD'), + (0xd360709d94e959afa5c233a6cae777e80a88e61f, 'AnimatedAlienBoys', 'AAB'), + (0xd3a23803ad952851bdc95b6bbba83ff5f4fff775, 'FantomQuestWeaponsElite', 'FQWE'), + (0xd4c74925149b8cd0aefd29c7735a87cbe5839bd0, 'ThirdEye', '3EYE'), + (0xd54b6fc9f1b1b241230449601c920338d206c5b8, 'PixelAlienBoys', 'PAB'), + (0xd5ac7253180f8175e747d444008d01f9b162847f, 'Johnny Depp Goblins', 'JDG'), + (0xd5eb80f437c318b3bf8b3af985224966a3054f76, 'Binary Punks', 'PUNKS'), + (0xd606543c1c7607bf02b9536e9b31cdc1cf564c1e, 'ZooCoin Community NFT', 'ZFTC'), + (0xd6488d586e8fcd53220e4804d767f19f5c846086, 'Link MAI Vault', 'LNKMVT'), + (0xd6d899e767e9828491c94e75928f94949637a444, 'the koolest mfers', 'fmfers'), + (0xd6de5d6c5b1e50ed186686e60ce68aba64745e19, 'Son Light', 'Son'), + (0xd761db316b5b9c9c51f7f80127497bc618e2b422, 'Pink Flamingo Social Club', 'PFSC'), + (0xd813da9995c753145927e25b8ecc18e6bf2b6ae0, 'Hunters Of Evil', 'HOE'), + (0xd81d78f9d6eb3efab060aa213f686f02d1705553, 'Chunk NFT', 'CHUNK'), + (0xd87f6424e3f2972a481c861b5cbd9bd98a60e3c5, 'Wolf Game L2', 'WGAMEL2'), + (0xd8af8dfd62cc4e01875d3ac4b67d399ffc8040ef, 'MetaFoxes', 'MF'), + (0xd8c1af0a1e464a8c30d1a4311096eb6d085e2f8a, 'Code7nfts', 'CD7'), + (0xd939c268c49c442f037e968f045ba02f499562d4, 'ETH MAI Vault', 'FEMVT'), + (0xd9731e9196808315784a7ecaafa5b678f0dee510, 'Frog Vegas', 'FV'), + (0xd9c20261b7704a0c54825de5d7ca9d3692891495, 'vitreous', 'VITR'), + (0xdac2031173c07bd622759051df373b708a1acbce, 'Creatures Of The Cave', 'COTC'), + (0xdb09908b82499cadb9e6108444d5042f81569bd9, 'Aave MAI Vault', 'AVMVT'), + (0xdb1abde48b9c7261396ef35845dbe4d30466229c, 'Angry Roos', 'ANGRYROO'), + (0xdb8f58ab15e967b7dcc82d8907c2ed59d2ea9686, 'FantomBabyPunks', 'FTBS'), + (0xdc15210ed67d7f427f722802f074d17f1b1f6082, 'Moodiez', 'MOOD'), + (0xdc2bc583f45450e6ae271c48c941b10e073380b5, 'Potluck Realm Orcs', 'PLRO'), + (0xdc3621b54aabae6acb5d466eea738bf74a9d5588, 'FANTOM KOALA WORLD', 'FKW'), + (0xdc50cbe355c39c0619df2060a05de111c8a77f39, 'SpaceLegends', 'SL'), + (0xdc51d47b36777d99546dcc4841bc2e3e0bbc1f42, 'Moon Masters Artist Renditions', 'MMAR'), + (0xdc6e0b63e26ed8e177d2a81266a752102cc9f282, 'Bohemian Spirits', 'BS'), + (0xdccad7c7e777c85459434555fa4077d6699b2472, 'SphinxterNFT', 'SphinxterNFT'), + (0xdcd75728136282bc3b23df6917169386d26eca82, 'BCK Lion Factory', 'BCKLionFactory'), + (0xdd96d56944693c5f9cc36cbf942f00e773951859, 'FantomBoysClub', 'FTBC'), + (0xddb3bf71556a5a111d2dba6831876b1055a06080, 'Music for Peace and Love', 'PEACENLOVE'), + (0xde3f032bda82b667fdc923428ff65fff6e8ab8aa, 'PonyPost', 'PPOST'), + (0xde50249778684c9a34bf80ac20cb4bbc9ae952d5, 'Neon Shadow Oaths', 'OATH'), + (0xde5c2ba8686c8981307e3068f0544fd6c61ab67d, 'Pinky Art Attack', 'PAA'), + (0xdecd74dcdcef1bd623fb8da5e4491167ed6f0e21, 'WolfAngers FTM', 'WOFA'), + (0xdf619176953e4ae0319514fe5c01404bbcd82d54, 'FantomNumbers', 'FN'), + (0xdf9bd262970bfed00fbc83d2687a57303fb716de, 'BakedBunnies2', 'BB2'), + (0xdfc29436808784c1875d18ee1c7d47d4261eb6eb, 'SlimeBallZ', 'SLMBZ'), + (0xe05b6019679eaf71d02e036cc93aeb40f0c945bd, 'Mr. Gingy', 'Gingy'), + (0xe06e5b820af3f147b1b4e526f17323062c8282dc, 'BitReapers', 'REAP'), + (0xe07894ffae94d6e563d967aebfb5e10094b475b6, 'BitVoids', 'BitVoid'), + (0xe0d2bbfc7b7fc1a8bca7ed2b14f297e2cd8e946b, 'BeerPizzaAndWings', 'BPW'), + (0xe0f2708af27f2d0e013553fe5e3734361eace315, 'FTM TYPE', 'FTMTYPE'), + (0xe12e130fa7836b870c63d6b7d511a1c4fdc4c8ca, 'Eldritch Rising Sprites', 'ERS'), + (0xe16f0a0e6c03cbf786718d8f684f6e3a2c7c4a4e, 'BitCreatures', 'BITC'), + (0xe186a363691fda04423d84689ae44995070c9b6e, 'SUPACell', 'SUPACELL'), + (0xe1c373b39e40fa95eac912306855960a9851ea81, 'OmniTrolls', 'Troll'), + (0xe260bed39020f969bd66b4e2ffcc3c5a34b46a41, 'HamsterHeroes', 'HAMSTER'), + (0xe2a102ff779f81ad3ba2b5d2577672d77550ef47, 'BitSnails', 'BS'), + (0xe2b8a9f4d1417acd4a696fa9580a393ef703a619, 'MAGIK NFT', 'MNFT'), + (0xe2edf3326b4c1738204b93503772a3da9c8f6d7e, 'HalfDEADS', 'HALFDEADS'), + (0xe37169cabdcb03a178fe3e65d9b1fb8b3c5a5420, 'Donk Poets Society', 'DPS'), + (0xe3763f557933b3396795ad3920dd7d191359ccef, 'Revolutionary Apes', 'RVAP'), + (0xe3b0bd1ccedebc91bd3c0a1c86efd38890f9c89a, 'Little Clay Cloud Pre Collection', 'LCC'), + (0xe3fda3e1e79c81ca0d0b4338a9eac108a0b6c1bc, 'Boo Pass Ring', 'RING'), + (0xe40c9c5ae44f193c948f916c59fd002f930d68ad, 'ExpansionSetASpookyBears', 'esaSBEARS'), + (0xe45d614902749772e34ce054df46a5dd7f02ef20, '4 FLOWERS', '4FLO'), + (0xe547b2ff35910e56a4edc8b32647bdc1a4fe5646, 'Guild of Llamas', 'LLAMA'), + (0xe58543f7ee7db07b61c6a0b29919ce2cfddc0770, 'KingPass', 'KING'), + (0xe5996a2cb60ea57f03bf332b5adc517035d8d094, 'Bitcoin MAI Vault', 'BTCMVT'), + (0xe5fa7f426baa3ae07fb67b969933debda28a6667, 'Roosterz', 'RSTZ'), + (0xe65469083b4f50d1ecd089584c671bb1d23f9ac7, 'HonoraryKittens', 'HKITTENS'), + (0xe6f6ddf1edc571664b64ba3326c420b806fece2c, 'sdf', 'sdf'), + (0xe70eaa7c1804920513bdf8fdccce04179d1a55b5, 'Supernova', 'SNOVA'), + (0xe728643bd000c6833467e85eeda9bb0b5e300c0b, 'World Art Collection', 'WAC'), + (0xe74b987ee386c98bdaf1f9e32aef27f23f5df8a2, 'PaintSwap Official NFTs', 'PNFT'), + (0xe786aab7b220c1f9184ad406406806034785fc5c, 'BitVoyagers', 'VOYAGER'), + (0xe84ebad6fc852ba2be5a6d737cdff6e4b44c73a7, 'Fins Playhouse Punks: Vol 2', 'PHP2'), + (0xe871400cd619b3ee99a68287d68e5cb0827db49d, 'FTM Gnarwhals', 'GNAR'), + (0xe92752c25111db288665766ad8adb624ccf91045, 'BITSHADOWZ', 'BSZ'), + (0xe93582d5ab201a85ff2324a96ba83bd18f6f5f6d, 'iGain IRS (FTM)', 'HAKKA'), + (0xe971f6041a090252ba10a4f36e4b625a5670699a, 'SBRW Logo SYNXERO 1', 'SBRW SYNXERO1'), + (0xe9fe0037d822ec4a7442be6b377b5addc04857ea, 'Emoki', 'Emoki'), + (0xea2899af2ac6afc20b7a65ce64b5af4efd568b13, 'TankWarsZone Mystery Box', 'TBOX'), + (0xea5951da1790536aa8dec1dc6a1ef75ccf98eab8, 'CryptoWormzBanners', 'CWB'), + (0xebb82f250554bf445a4c0e52e367167430b297aa, 'Mega Boo Ring', 'MEGABOO RING'), + (0xec24694ff3785e6ebf2754479dab383940cc220e, 'The Yamaloka Warriors', 'YMLK'), + (0xec2e4e100b26015dc7dee337b4dc5decfe28db58, 'MiniG', 'MG'), + (0xecd7fbc93c1ce552a4bb05866ae948258f820223, 'Brew Crew', 'BREW'), + (0xece4ae21d82d7c9281d8f5ab9552b123905d1206, 'Los Cubs', 'CUBS'), + (0xed329600ba1c1f5fe7db20cb4e3748666c23782c, 'FHFC: Creatures of The Night', 'CREATURES'), + (0xed5e91eb173b7b673f87bee2fa2e86a13d02c661, 'RVNT <==> OATH', 'RVNT // OATH'), + (0xedda20f13b58819975da7fe18151e961d712d0d1, 'Memento NFT', 'MENENTO'), + (0xedfb4e2bdebeec2862edd5182eb4c63044400d99, 'FantomMunks SWORDS - Golden Scarlet', 'SWORDSGS'), + (0xedfc7ea2523a4f7075254ea1b88bbcd309d2bb8e, 'Shaman Tribe Chant', 'STRBC'), + (0xee140ea260c6772cf291ea9d6128b12e2479ec7b, 'Shrines', 'SHRINES'), + (0xee2213d5431023223c6f5b7fb1ffa9f06e7398a9, 'Shamanic Tribe', 'STRB'), + (0xee53ae25688e23cc07faf925bb444ace388f9198, 'LuxuryLiving', 'SlothCondo'), + (0xef65ade2ab9cf0f556b219543f4343e9936ac4fd, 'Prismatico_Rethinking', 'PRTHKG'), + (0xf0584f0d0ff6297701879e20d0493740d2b6691f, 'THE FANTOMITES: THE FIRST SYNDICATE', 'TFS'), + (0xf0c5e0c6b049e7749e53d50bd545e6f6190fe3fc, 'fOracle Collector''s Card', 'fOCC'), + (0xf0cf8d5f45b9b09645c88ee9147ef72c633ac744, 'Alien Chonky Cats', 'ACC'), + (0xf0f8f779f2510ed7f6869dc811d6fbd84b1d1045, 'BearishHives', 'BHIVE'), + (0xf115d1bf7e9ac1e5a6679322aabc0cbbdc370237, 'Cursed Egg', 'CURSEDEGG'), + (0xf11cd86667a5a16e1a9d4971c9a518f3d447b8f3, 'FounderToken', 'FT_NFT'), + (0xf12d1009ef495eb1bda669ce42c5dbc09fc61410, 'DegenDorms', 'DGN'), + (0xf140d682b9493b6bb4f8ec7abbd76aa0a555099c, 'ZooCoin NFT', 'ZFT'), + (0xf14cfa4ada3e328bfb0ee7823b3dd419779c4511, 'Rich City Game', 'RCG'), + (0xf185cf59c710a0e83362fb7b8813b633ba073600, 'Pumpkittens', 'PK'), + (0xf1bc3bf75a6a91832bfdfe2dcd4bf9a73bc06ce7, 'TheGimpies', 'GIMP'), + (0xf1dd513016c17b181c1272dcda5dfd7a4ec75abb, 'ABitCreations', 'BITCREATIONS'), + (0xf1ed7b3a6d712456eb86f6b72f4dee8bbc162c22, 'Muke:UFO', 'M:UFO'), + (0xf1edd11df477d5d3bf335c8b1b1b15177cb405b2, 'Fin''s Play House Punks', 'PHP'), + (0xf2333584fc5fb17e6b2e9416ad4b3f5e94afd467, 'Gokudo Paradise (FTM)', 'GokudoParadise'), + (0xf23fae0785c0353001eb7eeb7afb0a76eef8d35a, 'HamsterLore', 'HAMSTERLORE'), + (0xf2558d6a252c1041a3902870b1fdb0b7524b3098, 'Early Ludwig', 'EARLYLUDWIG'), + (0xf2781c06c07421e770a1f6b00415829c3c98a1b8, 'TUNE Musical Christmas Cards', 'TUNE'), + (0xf27c9d56ed9f6f9a5f4a645193f7bd8a98751886, 'Night Hallu', 'NIGHT'), + (0xf2ac73507e76dff8d6467cc555ef63d957ca0937, 'MERA', 'MERA'), + (0xf33925c8f4c13ae138c8e7d159e950824990ea36, 'IceBearSociety', 'ICY'), + (0xf34e271312e41bbd7c451b76af2af8339d6f16ed, 'Moo Boo BTC-FTM MAI Vault', 'mooBoo-BTCFTMMVT'), + (0xf35f4f0fb969acc3615ef0e954b8d912d1420778, 'Strange Gods', 'SGPP'), + (0xf41270836df4db1d28f7fd0935270e3a603e78cc, 'Rarity Crafting (I)', 'RC(I)'), + (0xf45439a5f85a41fc2d626e80fa44fb5a2dd4ff6b, 'Barrel', 'BARL'), + (0xf49a2a81c201809efe99e01d3302fbdd51bb6671, 'FantomGates', 'FGATE'), + (0xf51639d93963cdd0caac89c1161f00651e1e0f3e, 'FantomMules', 'MLS'), + (0xf540085e599ffb19a927a0473c08e26200d15353, 'FantomQuestHelmsElite', 'FQHE'), + (0xf56eeba232d26e19f0318cafacf73be6f154403a, 'Love Skelly Loves FTM', 'LSLF'), + (0xf6252ea3f2ca5d0a30cdc2106682870fde533cb4, 'BookOfGorr', 'GORR'), + (0xf6532b614dafd25d02f6f0f4e587ebeb6622ba21, 'wbpG2iufkS1', 'wbpG2iufkS1'), + (0xf6a4dc2c70e45a43c85151c4afa89f3ea9c463fd, 'BabyBoo Kitten Crew', 'BBKC'), + (0xf7902425bcb99e8df607f9a1eb5009768dfc3308, 'sfda', 'sfda'), + (0xf79da28b4694eaecbfaae3af92782fbb52a460cc, 'Alien Heads 2D', 'AH2D'), + (0xf7c2bcd69004c34e1302e1a5397ea8ae858ab385, 'FantoLanterns', 'FOL'), + (0xf7f500593bb8888f2b19ddc95515f9968acdc62f, 'GigaChad', 'GICH'), + (0xf88b3020ae6c58b4382e01955f7e5c5c3dd192fc, 'Bot Squad Chickens', 'BSCS'), + (0xf8b2dd8265e3479b960c17c08ed059d5cc45bdab, 'SpookyVerse Ecosystem', 'SERVANT'), + (0xf9071ee8c1d53915b00da2c2dcbe80fd721d6513, 'QMT1', 'QMT1'), + (0xf9cf8123b15eaa0ec46c4abb00ef155e11952f8f, 'Runic Blocks', 'RUNIC BLOCKS'), + (0xfa2e7dbd305a140700c6124ad46195fffbc62648, 'BeardZ Of E6L', 'BOE6L'), + (0xfa440bb8adaad422137d7e0113eda2136b83dc3b, 'Shaman Tribe Chant', 'STRBC'), + (0xfa4a104ed83eba2bf8f5e1add94af796de33e073, 'Super Happy Fun Bears', 'SHFB'), + (0xfbdb4e2e7271f37714c4000814ce2487da57f925, 'PaintSwap Colorful Coal', 'COAL'), + (0xfc05aaf03453c4f1b0c28d29a0baa6c991aa1804, 'Santas Slaves', 'SANTASSLAVES'), + (0xfcc623d35fdbc20f41583176b8cd9c20e988eea6, 'MoonMastersNFT', 'MOONMASTERS'), + (0xfd11640951d66efc77acba80e9f5ccbfb7b5e9d1, 'Custom Full Demon Mode Boy', 'cFDMB'), + (0xfd211f3b016a75bc8d73550ac5adc2f1cae780c0, 'FantomKittens', 'KITTEN'), + (0xfd2b5b4335fed7338e1c3f5e4be32f914d5562fd, 'Rivals: Knights vs Vikings', 'RVL2'), + (0xfdb85ca5436e8dcfd3a637564e010bc5dff21acc, 'Fantom De-Fi Verse (By Cyberstoned)', 'FDV'), + (0xfe544f2fe9dc410a2f0f3ab5320ba261d2cb32d9, 'Fantom Heroes', 'HEROES'), + (0xfe8713e9bac0851a5fe238ab9e9fbaa66cc37fa5, 'SlimeBallZ', 'SLMBZZ'), + (0xfe9f8c2b135012184d41dedae0c3f7ee8ef5eb0a, 'Hamsters & Owls Game', 'HnO'), + (0xfee8077c909d956e9036c2d2999723931cefe548, 'Fantom Lords', 'FTL'), + (0xff4d58b20792f6aff5a2fe50d2db3440808a84d5, 'TheWolvesCrew', 'TWC') ) AS temp_table (contract_address, name, symbol) diff --git a/models/tokens/fantom/tokens_fantom_schema.yml b/models/tokens/fantom/tokens_fantom_schema.yml index 274f6876a56..78c46926cae 100644 --- a/models/tokens/fantom/tokens_fantom_schema.yml +++ b/models/tokens/fantom/tokens_fantom_schema.yml @@ -29,7 +29,7 @@ models: config: tags: ['table', 'erc20', 'rebase'] description: > - fantom Rebase Token Addresses and Symbols. + fantom Rebase Token Addresses and Symbols. A Rebase Token is a cryptocurrency with an algorithmically adjusted supply that controls its price. columns: - name: contract_address @@ -81,7 +81,7 @@ models: - accepted_values: values: [ 'erc721', 'erc1155'] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. If you are adding a token with a new standard, remember to add it the accepted values list. @@ -124,4 +124,4 @@ models: description: "The NFT standard erc721/erc1155/..." tests: - accepted_values: - values: [ 'erc721', 'erc1155'] + values: [ 'erc721', 'erc1155'] \ No newline at end of file diff --git a/models/tokens/gnosis/tokens_gnosis_schema.yml b/models/tokens/gnosis/tokens_gnosis_schema.yml index c97ce4a9cf6..725d892bdf3 100644 --- a/models/tokens/gnosis/tokens_gnosis_schema.yml +++ b/models/tokens/gnosis/tokens_gnosis_schema.yml @@ -62,10 +62,10 @@ models: - accepted_values: values: [ 'erc721', 'erc1155'] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. - If you are adding a token with a new standard, remember to add it the accepted values list. - + If you are adding a token with a new standard, remember to add it the accepted values list. + - name: tokens_gnosis_nft_standards meta: @@ -85,4 +85,4 @@ models: description: "The NFT standard erc721/erc1155/..." tests: - accepted_values: - values: [ 'erc721', 'erc1155'] + values: [ 'erc721', 'erc1155'] \ No newline at end of file diff --git a/models/tokens/optimism/tokens_optimism_erc20_curated.sql b/models/tokens/optimism/tokens_optimism_erc20_curated.sql index 6c5a33a600c..f92bb9c7a80 100644 --- a/models/tokens/optimism/tokens_optimism_erc20_curated.sql +++ b/models/tokens/optimism/tokens_optimism_erc20_curated.sql @@ -422,6 +422,13 @@ WITH raw_token_list AS ( ,(0xc5d43a94e26fca47a9b21cf547ae4aa0268670e1, 'FPI', 18, 'underlying') ,(0xc871cCf95024eFa2CbcE69B5B775D2a1DcF49c1B, 'GROW', 18, 'underlying') ,(0x9046D36440290FfDE54FE0DD84Db8b1CfEE9107B, 'YFI', 18, 'underlying') + ,(0xeB585163DEbB1E637c6D617de3bEF99347cd75c8, 'opXEN', 18, 'underlying') + ,(0xdbc3a41578bBfA47837a9cD8196a5Bc7F44c8041, 'BULL', 18, 'underlying') + ,(0x323665443CEf804A3b5206103304BD4872EA4253, 'USDV', 6, 'underlying') + ,(0x61445Ca401051c86848ea6b1fAd79c5527116AA1, 'MO', 4, 'underlying') + ,(0x20279b6d57Ba6D3eF852f34800e43e39d46d6487, 'MERK', 18, 'underlying') + ,(0x9cfB13E6c11054ac9fcB92BA89644F30775436e4, 'axl-wstETH', 18, 'underlying') + ,(0xc55E93C62874D8100dBd2DfE307EDc1036ad5434, 'mooBIFI', 18, 'receipt') ) AS temp_table (contract_address, symbol, decimals, token_type) ) diff --git a/models/tokens/optimism/tokens_optimism_nft_curated.sql b/models/tokens/optimism/tokens_optimism_nft_curated.sql index 4c26642e0f4..9efeb9ab218 100644 --- a/models/tokens/optimism/tokens_optimism_nft_curated.sql +++ b/models/tokens/optimism/tokens_optimism_nft_curated.sql @@ -302,5 +302,11 @@ FROM ,(0x11e76ab2e2c48e4a561ac96935399c8595619fa4, 'Optimism Superchain Builder NFT') ,(0x71c16e76756fdb527386291886fcd5495fd2b691, 'Xgirl') ,(0xAF18644083151cf57F914CCCc23c42A1892C218e, 'XEN Torrent') +,(0xD12999440402d30F69E282d45081999412013844, 'Omnichain Adventures') +,(0xA2962687e7b4A7610E84E857959FE559239FdFCF, 'Forget About Time (2023)') +,(0x7d213E53953a8dDe1dD08413699fEaC0292685E6, 'Dream Travel') +,(0x0fc96CBf26e631005CCa26903aE57e7cF8eccAf2, 'Mercy ROguE') +,(0xd9CAEe4e97035d0d6FC789e46E4ebfAB14b79340, 'Embrace the Chaos') +,(0x012cAEb558DfFc053a6A092835a1e7F5c8EeBA8b, 'Omni Ax Adventures') ) as temp_table (contract_address, name) diff --git a/models/tokens/optimism/tokens_optimism_schema.yml b/models/tokens/optimism/tokens_optimism_schema.yml index 0d621e2ca52..464a54f7a60 100644 --- a/models/tokens/optimism/tokens_optimism_schema.yml +++ b/models/tokens/optimism/tokens_optimism_schema.yml @@ -47,7 +47,7 @@ models: - *decimals - *token_type - *token_mapping_source - + - name: tokens_optimism_erc20_generated meta: blockchain: optimism @@ -63,7 +63,7 @@ models: - *decimals - *token_type - *token_mapping_source - + - name: tokens_optimism_erc20_transfer_source meta: blockchain: optimism @@ -116,9 +116,9 @@ models: - accepted_values: values: [ 'erc721', 'erc1155'] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. - If you are adding a token with a new standard, remember to add it the accepted values list. + If you are adding a token with a new standard, remember to add it the accepted values list. - name: tokens_optimism_nft_bridged_mapping meta: @@ -218,7 +218,7 @@ models: tests: - accepted_values: values: [ 'erc721', 'erc1155' ] - + - name: tokens_optimism_nft_generated meta: blockchain: optimism diff --git a/models/tokens/polygon/tokens_polygon_erc20.sql b/models/tokens/polygon/tokens_polygon_erc20.sql index a2ac829e621..cf96b5da0c0 100644 --- a/models/tokens/polygon/tokens_polygon_erc20.sql +++ b/models/tokens/polygon/tokens_polygon_erc20.sql @@ -1,4 +1,11 @@ -{{ config( alias = 'erc20', tags=['static'])}} +{{ + config( + schema = 'tokens_polygon', + alias = 'erc20', + tags = ['static'], + materialized = 'table' + ) +}} SELECT contract_address, symbol, decimals FROM (VALUES diff --git a/models/tokens/polygon/tokens_polygon_nft_curated.sql b/models/tokens/polygon/tokens_polygon_nft_curated.sql index ea0bd79ad9a..903718afc0f 100644 --- a/models/tokens/polygon/tokens_polygon_nft_curated.sql +++ b/models/tokens/polygon/tokens_polygon_nft_curated.sql @@ -1,11 +1,11083 @@ -{{ config(alias = 'nft_curated', tags=['static']) }} +{{ + config( + schema = 'tokens_polygon', + alias = 'nft_curated', + tags = ['static'], + materialized = 'table' + ) +}} -SELECT - contract_address, name, '' as symbol -FROM - (VALUES - (0xdb46d1dc155634fbc732f92e853b10b288ad5a1d, 'Lens Protocol Profiles') -,(0x9d305a42a3975ee4c1c57555bed5919889dce63f, 'Sandboxs LANDs') - - -) as temp_table (contract_address, name) +SELECT contract_address, name, symbol +FROM (VALUES + (0xdb46d1dc155634fbc732f92e853b10b288ad5a1d, 'Lens Protocol Profiles', 'LPP'), + (0x9d305a42a3975ee4c1c57555bed5919889dce63f, 'Sandboxs LANDs', 'LAND'), + (0x0012e289800910aa542bcdcea72e62154025b2c0, 'MasterBuZPassTeam2', 'MBuZ'), + (0x001ad206dbd46fcac49aceabf8906f66681c9523, 'Metalabel Member', 'KEY'), + (0x00231c00cbc4353c75183caeea8d31392b998fbd, 'Sneaker Heads Deployer Mint', 'sneaker heads'), + (0x002fb67bce600f807baa5d1bd696927a39955b5f, 'Captured Moment. The Master’s Process.', 'MASTER'), + (0x0031117212a5849c87efc4fc32b91ba6a02fdbc0, 'Shroom Trip', 'DCL-SHRMTRP'), + (0x003abf0977cf4d6eef26abfbd196562c56a4d00c, 'HelpfulBabyClub', 'HBC'), + (0x003bfa4212677840828299a7ab4e3b16d274106d, 'Alphadogs Gold Jacket', 'ADRGJ'), + (0x0041d815f1898c72e107421e0b8cb7063e0a6a76, 'CRYPTOCATSCLUB', 'CCC'), + (0x004ad13abfd1e856bd58a9f9670b33b15cdb9ce7, 'Crypto Animal Farmer''s Club', 'CAFC'), + (0x004e171dbc151d00f02821908eaf2641a054540e, 'PLANDEMIC19', 'PLAND19'), + (0x0051f234f90c97f54976953c16340bc319403fcf, 'Hugtus', 'HS'), + (0x0054ef36214005b3f3878536b07900002eb7f46c, 'Flash NFTs', 'FLSH'), + (0x0068f4b8e5d23f317151328bc0d9a82454ab29bc, 'Big Bad Smoke Shop', 'DCL-BGBDSMKSHP'), + (0x006de6cd90f03d4b0a68f0288ba16992b006556c, 'i luv snow', 'DCL-LVSNW'), + (0x006fda22c97d039c6fa0934dfa32de39b417674e, 'GEN-T39', 'GEN-T39'), + (0x007a4677e38579e869bc29bdf07b36e3d217449f, 'BetNFT', 'BetNFT'), + (0x008166158b2bed15ca9b2eb080e74a77b965e9b2, 'countingstar', 'er 721'), + (0x00925b9b061b314d5fd2b35b1720c932d03ee132, 'JTV Designs', 'DCL-JTVDSGNS'), + (0x0092d5fcfe931bc999769dcc4a7c2b283ce0aef8, 'Stubborn Ape Polygon Club', 'SAPC'), + (0x0094a090b7f424490d0b71f8b196e7e2fd0f3257, 'My Crazy Tanks', 'MCT'), + (0x0095150e7f9b927c8232409c7f2a2930f8395f3b, 'TheBeast', 'BEAST'), + (0x00992b610a1d20d0169fd604c8eb2f40fee2c391, 'Pepper Attack', 'PEPPER'), + (0x009fd13637e47f74a6d500c6527cd5f615fcf41c, 'DugoutPunks', 'DoP'), + (0x00a02d9676dc8730914a20c9a44ef9e38a2127be, 'Crypto Rabbit World', 'CRW'), + (0x00a5bc5f91eb440072bce4c584bc021cb7346753, 'Mango DCL Fashion Week 2022', 'DCL-MNGDCLFSHNWK2022'), + (0x00a5d5020d291d25c811ae3b799ef32e494a701c, '[DEVELOPMENT] Be Le 066610', '[DEVELOPMENT] Be Le - Ed 214335'), + (0x00a815162564d416520ad4d1a415e1c50ba4d944, 'OnEarth Collection', 'DCL-ONERTHCLLCTN'), + (0x00bc5145521b28380e8e60361d20d71c84140780, 'PlanetWomen', 'PoW'), + (0x00bc68963df26cd34b2623f4fc6a89d0db55e00d, 'Usignoli Liberi', 'UL'), + (0x00c65ce603ae07fe0a735c4f55b7cc5f0e7061bb, 'Proudly Vikings NFT', 'PV'), + (0x00c83abe06bbe5b4051195479f3b0f005085278f, 'Cryptology 101', 'C101'), + (0x00ccc904ff7d4d35662d5795361dfcebd1ffed64, 'Adonis Premium Exclusivo', 'ADO'), + (0x00d77af8dfc0637871c26c5f89914ba2a5bafc97, 'Women World Space : Part 1', 'WWSONE'), + (0x00e0efaec8a56918104e88c4839c1d7a656a4355, 'PEA COLLECTION', 'DCL-PEACOLLECTION'), + (0x00e220229f2e3ecfa5a0ec7db3c138f1da567742, 'Poly Zebra', 'ZEBRANFT'), + (0x00f4aaae34b33ea25abf42b0b65ac1f8629acd18, 'PikaMoon', 'PKM'), + (0x011276d94a09d9d6855ef260b6fec4050f37940d, 'WagmiPet', 'PET'), + (0x0113b245dd99d32ac205b2e9c8b481f3bb29b118, 'Meta Lines', 'C'), + (0x01145bc3ccb0b9b5225bfb029db89cdcc7b8c00c, 'TheCityTomcats', 'TCT'), + (0x011c2d0409c44609afc3f9e9102d7342b4df09b5, 'Doodles Ape Dubai', 'DAD'), + (0x0125ab31f620ebc4bdb7c9746b89932e97a71194, 'LittleTeddy', 'LittleTeddy'), + (0x012e0d21a8beb03f725a2b5f77c2bea0beb87af9, 'NonameNerdCommunity', 'NNN'), + (0x012e8c9fd500db161d69d0cddb17360d9b706be7, 'Boogs Mushies', 'MUSHIES'), + (0x0132021add1124ea02dcf8e8d8a1824c1b2578d8, 'Meridium Zone', 'NFT'), + (0x0136daf36ad436783d9dabd5e2b67a3edc9c4307, 'St. Louis, MO Pop Art Edition', 'SWEDC'), + (0x01453c73aec9cb46d616f09a099e5d64c45f7ce2, 'UndercoverRobotSociety', 'URS'), + (0x01479049946bc86426bc6c6b6c587fa3db313ba7, 'The Fingeralds of the Fifths', 'FNGRLD'), + (0x01528460d25d0339da2f5fad7ad472a7f5e50ab2, 'Ruggles', 'RUG'), + (0x015fe95411e5927b34bec706f95cd05d52099cab, 'Teeny Ape', 'TEENAPE'), + (0x017a1653c0cb7b561c50717336c1f7fd912ed310, 'Posts', 'POST'), + (0x01807085ed22e5a6937d93a2d32fb5fe4e45e236, 'BUTANTBIRDSVERS', 'BBV'), + (0x01837c075f69990a4b9eda0e779faa51d142b338, 'NFT-CARDS', 'NFTCARDS'), + (0x018785f9859f755c027d1642c410657f5ffbb8c1, 'Blazed Kennel Club Official', 'BKCNFTS'), + (0x018b5cb58f1c9ac683965a40860562bb409c8589, 'Boob Girls', 'BOOBG'), + (0x018c16366d25e4cb282618e57731e3cc19f318fb, 'Face_Crypto_NFT', 'Face_Crypto_NFT'), + (0x018decd2f731f79c710cc0cd26c631342bbd6808, 'BigTed', 'BT'), + (0x018f7c4c471c00546a1846eca557caac1ae6ff12, 'BigBPunks', 'BigBPunks'), + (0x0190d6f945ec2aeaac858ae9f4d49f53f5055424, 'Metaverse Bullies', 'MB'), + (0x0191ee4873658155974dc6d24876ddc63eec3a71, 'LILNFTs', 'LILNFTs'), + (0x019cbce573858be7aa77794aa9945169b52874e0, 'It’s Only Ketchup', 'SWEDC'), + (0x019de2534d6b5aa5fa86e69285e5f5f1cf7d5fae, 'First Shirokuma Hero', '1SH'), + (0x01b09fa9516a3cf8eae05fc57818bf15fc67e256, 'Hog Mob Society', 'HMS'), + (0x01b35f5ed8a2d01d5746ec691165eceb64517202, 'Cloudy City #1', 'DCL-CLDYCTY#1'), + (0x01b4053dbd82c800c514061336fddb7d38c47d31, 'Dumpster Dorks', 'Dorks'), + (0x01b6dc2afde8ddc8ea610030153b65cdfa126556, 'The Cause Wax Sealer: Decentralize', 'TCWSDC'), + (0x01b994a1f31fb811fe41e3e4cdb11ccbf6a66554, 'Ape Poo Club Retards', 'APCR'), + (0x01c28297f5c42d535f7c96cc69ca7d0a1239c294, 'VeggieverseXbeans', 'VXB'), + (0x01c52cfa1ceede94c3aef8203d772882ceefd9b5, 'Warp Bond Token', 'WBT'), + (0x01ccf60e2ab8177b0ee704263878a6fa789e8e68, 'glia.icu', 'GLIA'), + (0x01d2e8924bdd6596917c84ab6ae97c7a9bfa48a4, 'REFERRALS', 'R'), + (0x01e2ae47222b23ee1887c5b863fa36af580e8a5c, 'SoundchainCollectible', 'SC'), + (0x01f1a881fef401cc702db49895ce4e71e80b72cf, 'Beta Puppy Night', 'DCL-BTPPPYNGHT'), + (0x01f1f8287282a13b9e24e49dd5976a525008f530, 'hiroXmack', 'DCL-HRXMCK'), + (0x01f6215666fafa2d92c51ef32437359186a25972, 'Krista Kim x Outliers', 'KMO'), + (0x01f892a0b3eff3584d083afe4ef66a40a1f9091d, 'Rashi', 'RASHI'), + (0x01f94759a66305d548c7c8b36559cd1fef45bfbf, 'Poly Orgonite', 'PORG'), + (0x01faf48102294706a4de7eadf491b16308f22646, 'GEN-L07', 'GEN-L07'), + (0x02012d86c13c9146fc5b4b9b63079cf30cb67f70, 'CrazyThumbzz Collection', 'CTbzz'), + (0x02022719259473d1ced40e62bd4a77d012b7e251, 'RENEWAL FAN TOKEN', 'RENEWAL'), + (0x02048643e32f893406dc2012a2f48a3023645612, 'Wealth Hat by Only 90s Kids Know', 'DCL-WLTHHTBYONLY90SKDSKNW'), + (0x020734344a67452b342bebaa837d70af86078ae0, 'NftFarming', 'NFTFARMING'), + (0x020a10823cc824481025a055a97f9aa8a24da585, 'Baby Metaverse Official', 'BBM'), + (0x020bf15ba3b275ad7ae1f63c5eba1d6981666377, 'Vertual King Mask', 'DCL-VRTLKNGMSK'), + (0x021159005cda2bbaf591c061a69d890725804855, 'Space Jockey', 'DCL-SPCJCKY'), + (0x0212a0830763db1e97a4f6cdaf02431bfb51977a, 'Dope Cats', 'DC'), + (0x0215c3221deeafd81dfbde4ab5b32c45712450bb, 'Bobby Jeffrey Hill', 'BJH'), + (0x021bdcfd3e210f54276417d1c3ab0df9a458144f, 'Spaz Gang "OG" Trousers', 'DCL-SPZGNG"OG"TRSRS'), + (0x021d563b3afc0f0b5df860d3f7b0199bd75cfb58, 'TheSaka', 'saka'), + (0x021dd39affe8753305d607f30054bc9a55211a27, 'Dead Icon Painter', 'SWEDC'), + (0x02205a2238b8aa0218b6a6bb2376bdfe5b1cc3c6, 'DCL Cowboy Hats', 'DCL-DCLCWBYHTS'), + (0x02208d69f5af3cb3d4b1cf6f57abd53558b0c739, 'hello', 'C'), + (0x0230ca425cd975e1f94fba2d3a3b84285a6c1bd3, 'Dizzy Dragons Letterman Jacket', 'DCL-DZZYDRGNSLTTRMNJCKT'), + (0x023792cf335da5f5f45a010d13c45a065326723d, 'TGNFT6', 'TGNFT6'), + (0x023a3cd99b4f921926b836505fa869f2886d0e33, 'meta-matic', 'METAMATIC'), + (0x0247560545bb4a0030a0ce9f8e39bc92ece52e01, 'Generation #23 part 2', 'G#P2'), + (0x024eeb0be8589651415caf87a603a4f815d58138, 'Studs', 'STUD'), + (0x02501e4758bd558dccac77fb8791d544fed33240, 'Cthulhu Rising', 'CR'), + (0x02519d7fe8bc6dd344f75b3522e8a087909386a5, 'Hearts For Ukraine', 'HFU'), + (0x0251f09bbbce272d4025b320fc670231035e8522, 'Eutheria Base', 'C'), + (0x02631f387b639ef90655f98d988d1a8a861673a6, 'Froggers NFTs', 'FRGGRS'), + (0x0271c3175249786e9bd64575fcbb194cac84ff51, 'Digital Arts', 'DA'), + (0x028010eb191dcdf5959d630f3593d7163d871226, 'Meta Phanter Club NFT', 'PANTHER'), + (0x028639d5eedd099136baed686fe5b580bab082f7, 'MaddBonezElite', 'MBE'), + (0x02891ad7fe0115e3a7465e6a068da91b7fd540b2, 'CRYPTOSLAMA', 'CL'), + (0x028b59fee0a334700e2212ec3f39d9372fc87df2, 'Catbert AIrt', 'CAI'), + (0x028ea97dbcd48c3262bb96491eaf2b43d6db99c2, 'Bored Bull Crypto Club', 'BBCC'), + (0x029269b8cc6f75e920d72980c7f02f5c49069f80, 'Homeless Aliens', 'HANFT'), + (0x029c785ac4a123d60fa28a814d952b04ae8f6842, 'WAGMI WORLD', 'WW'), + (0x029dfd5b016ed918416cd1faf53d79a013b3065c, 'PixaBadges', 'PBDG'), + (0x02a20249ce3812aa4900c39d6a10a941541dede6, 'CrazyThumbzz', 'CTbzz'), + (0x02a6421ef01c200b985119b70d8bf0e2eb527b93, 'VaA4Pcontr', 'VaA4P'), + (0x02a6fccc6290201a923c8b6846ad5f63e1935566, 'Astagadragon', 'ADN'), + (0x02a75acb475653e5a7c7d3effec3bef14a74c634, 'Elves Baby', 'EAB'), + (0x02b9cb5e66f9ac49154d778f1b251e7589ef8947, 'Rare Shoe Fashion Week', 'DCL-RRSHFSHNWK'), + (0x02bf55e8df5b325d9690451b39556ed1b516295c, 'WonderPal', 'WonderPal'), + (0x02c4a4fc5033eeeef79f343168e12e0d74188419, 'aesthetes', 'aesthetes'), + (0x02c6b5cf3f2c7c31e41167779cd5c6656e3c0655, 'Autonomous Designs', 'ADN'), + (0x02c97fa4b804a0af6ff4331d49adbc3ddf918b82, 'Fight Club Golden Glove', 'FCGG'), + (0x02e1d9de6b3fe43a34c92bd88e4e333135b2a496, 'GIRA #1', 'DCL-GIRA#1'), + (0x02e2432c30cced082dd2a0785beb447f4dbc4d5c, 'Big Burgers', 'BB'), + (0x02e2c5825c1a3b69c0417706dbe1327c2af3e6c2, 'GFARM2 NFT 4', 'GFARM2NFT4'), + (0x02e8478e17f85bd89923d3f4900696fe3c464b37, 'Sleepy Sloth Society Outcasts: #1', 'SSCO'), + (0x02e96d573a8a0e53688264f8873edc4a6dd87c31, 'CryptoNinjasOfUzb', 'CNU'), + (0x02eadb5feae57e41b4f8d3e9c5ab1e3ea71eb90d, 'Spin n Win', 'SWEDC'), + (0x030715facd65e341fcd58aed693dd2bd987b8623, 'Neo & Tima', 'NETI'), + (0x030b6a66a0f5957366cc96af563e86c67e22af7e, 'ChrashlandsPotOfMatic1', 'CPOM1'), + (0x030f2bd40000a932a76a3c3580e212c52c61bcbe, 'tern.crypto / Community icons', 'TERN'), + (0x0313077fe067e72b4b9e793526ebeb66f0a07918, 'BoredParty - Apes', 'BPA'), + (0x031af3d8221121bda90ec7d2b1aa6416a046d7cb, 'StackOS NFT 4', 'NodeNFT'), + (0x031e91893fc7ae5ddb626a48830e6f11f546c079, '8bit parrots', 'BPnft'), + (0x0321d12a80453a8cc40591047b994a47ee86757b, 'Doodlugas', 'BBDOOD'), + (0x0323d52be57bb0d9f970023ddc6dcd50827dd5d2, 'BetNFT', 'BetNFT'), + (0x03243f7e26004fba4853666e3a20a602392ae0c3, 'crypto_masons', 'CMs'), + (0x03282225b1278d365801107a2532b8f6af66b77b, 'GEN-T48', 'GEN-T48'), + (0x0334fece1107e47d44fb1afeca694064d0580221, 'Art Punk Mfers', 'APMF'), + (0x03379a39db0a0ff431ac1ad8ae480b96fb078ce1, 'EMOJIS', 'EMO'), + (0x033c2f43412ecc029e9159a592cf184cddfcf773, 'MINIVERSE', 'MINIVERSE'), + (0x033d7b18b388a85bee9f4b3b85a564934132acf7, 'CryoPunks', 'CRYOPUNKS'), + (0x034277b3ec797789b71402f6b83971f74fbf4f80, 'DDays', 'DDay'), + (0x034297343d9a3988d498a63f9d62020b24a8cff9, 'Butt Baby Monkeys', 'BBMN'), + (0x03476c31752ce9afd5f89ac326422e9565feee61, 'Nonames', 'NONAME'), + (0x034d60eb07c5c312898918386def23eccdb91b85, 'LazyO''s X COPE', 'LAZYO'), + (0x0350e9b6c0d9fe0496a3dcc092abcd73e6b89138, 'МОЛКО', 'МОЛКО'), + (0x035359d6758befb9497887a4c990dbacea0b643e, 'punks11', 'pu11'), + (0x0356450b631b16c6e0afe5a5165c138e7bbb202f, 'BoredCartoonMouse', 'BCM'), + (0x0357d9c347ef19f0a76850715cbbdf753a0daaa8, 'ImKinky''s Fishes', 'IKF'), + (0x03582c4c2cc7fc8ded9377a3f8e94a4c9f72ecce, 'TATUM GENERAL NFT', 'TATUM_NFT'), + (0x035d0af79dc0bdfd35c435dff43cf1cefef0d4f1, 'Waifumons', 'WAIFU'), + (0x0361e309ae5a5d1ef6a63b822e85939111beff75, 'CrazyThumbzz', 'CTbzz'), + (0x036bc23833b2d46c2fce059859780c16a28964fd, 'MadmenHamsters', 'M'), + (0x03726d7a372644e4ed44a10236a6fc895c22a26b, 'The Silk Road Collection', 'SRC'), + (0x03792dd107f7e69ef5f549384ce8417cf2151167, 'Rich Ape Car Club', 'RACC'), + (0x03883df947af7c0be2ace9163489fa85a9947008, 'Safe-Hand 28-Day Note', 'SAFE28'), + (0x038dae453be62c27c7a2782dcdf1b0e81e5cdb6b, 'Holger Danske', 'HD'), + (0x038dee3bb8e59db70a287ed576b34577b5d3bec5, 'MetaDrip - Rebirth', 'DCL-MTDRP-RBRTH'), + (0x039222ab023e19434f5bfae3fe35885fd2b7bd7e, 'Colorful Halo', 'DCL-CLRFLHL'), + (0x03a350637b22d46e00aacb0edd8e70ab76862a12, 'Cryptic Aspins Club', 'CAC'), + (0x03a4765d0210830f281783353cd44da529594a02, 'Thug Pugs Christmas', 'THUGPUGSX'), + (0x03a4d4ff71c58b51aa9d719ddb9fe7897c9aeac2, 'KING2PAC', 'C'), + (0x03a8004976b74cc16517f9adf7249b39e88028bd, 'Fly High Reptile Club', 'FLY'), + (0x03b6664b0b792e5884b702666a68b5c03eabbad3, 'Austin, TX Pop Art Edition', 'SWEDC'), + (0x03ba3615d61ec8a010fb399cc96c20086c17764d, 'CryptoGods Anubis', 'CGA'), + (0x03bbeb4dcb672713521375eab3be06912c9e49e7, 'Invisible Neonz', 'IN'), + (0x03be65f27f93378af882e44a97eca5e6ed67be05, 'El Paso, TX Gold Edition', 'SWEDC'), + (0x03c993a0af31c953d98b22e2f1825a6ac191fcc1, 'JollyTeddyParty', 'JTP'), + (0x03cf9aca6235e5ce4fadb0ca94aba7d70e2ef07a, 'Warriors Eagles', 'WE'), + (0x03d39e1c45d6da0840de42843bdff3f35e904f7d, 'Hash Cows', 'Hash'), + (0x03d5ab30179abe491766452d611f37d77ed7ec91, 'Cyborg86 Collection Official', 'C86'), + (0x03d6f1a04ab5ca96180a44f3bd562132bcb8b578, 'Envelop simple NFT', 'ENVELOP'), + (0x03d8a1552e1308443784dbfee6f2b6fb011c59e9, 'Senior Ape Golf Club', 'SAGC'), + (0x03e4c6f1ac784358193b3d91c9a5fda02857898b, 'Pixel Puppy Shapes', 'PPS'), + (0x03e991f20dd923aa867eff56fb27ba08042ccc39, 'Lemon Rawars', 'LERS'), + (0x03ecf93f688de485470386a3bc6855cbc9d26877, 'serenade.co', 'serenadeco'), + (0x03fec6eba3ad32091288dc50bcc6db5ed8cfec3b, 'Edenhorde Polygon', 'EH'), + (0x0401d0b3840f9e45ade48c7c5b73b8c7c7f94b10, 'Bernoulli | Locke 10,450FT VIEW', 'BLVIEW'), + (0x04050eac81bb36103989ff08adcdc51717c97a1f, 'ChainArtefactArms', 'CAArms'), + (0x040c3d688eb88b2a2c09d097085a0d2a7916e3b7, 'We Are Ukraine', 'WRUA'), + (0x040f486533da0f9f43ed8f752b9786ca76cd1c91, 'Indianapolis, IN Pop Art Edition', 'SWEDC'), + (0x0411779846425ea5348cb7be0dc0906a149855b6, 'CipherPunks', 'CP'), + (0x041c2ee833cbefbb57e9970a1017a57941de958e, 'Kitsumon GEN PROMO EGGS', '$KMC GEN PROMO EGGS'), + (0x041de7fe42001d24738268dfc620c0c3c77b8240, 'Hungry BAABBoons', 'HB'), + (0x041fce4baa1cfdc8fa4984bd2d34afaf93ecf819, 'Naughty Saints Party', 'NSP'), + (0x0426592904f884d51db78e109504344513776a9a, 'CryptoCity', 'CC'), + (0x042841842502d3eaf1946f52e77cc5c48f40dff6, 'XcapitMX16921', 'XcapitMX16921'), + (0x0442ee2afe2e805694c5f2e52ac7236ec88015f5, 'BittyBots', 'BITTY'), + (0x0445aaa4a4752758d34e455c73e609ea91a2b3ba, 'CoolBeez', 'CoolBeez'), + (0x044c00210f642bcb783cab79c1e452fad0e6cf90, 'Bong Head by Only 90s Kids Know', 'DCL-BNGHDBYONLY90SKDSKNW'), + (0x0451a7a11c176c3558bdaaf99a3b4ddfb3c610ab, 'Boxing Boyz NFT (Polygon)', 'BOYZ'), + (0x045f1bc92feb05f3f9c81f327a19f0e7359a09fd, 'CryptoBulbz', 'CRBZ'), + (0x04628db1f07e2fdd4cb4a41e99a43c5ccf4514a2, 'Master Monk3y', 'MM3y'), + (0x0463ce0091808b70163ff3a999aec63acff09858, 'Lion Legends Gallery', 'LionLegends'), + (0x0468da5d0c4fb79a56ae5bd7e50c2a10df98c967, 'Brainbot #18 Upstunsor', 'SWEDC'), + (0x046906fefe76e2c020364476903bf3d6ad3db94a, 'Ape Kids Social Club', 'AKSC'), + (0x046976f19a14ee7d06cb9e983c8142fb2aac0e5e, 'Naga DAO', 'NG'), + (0x047b3bcbbf9fc72b16ff21a4fd1e1e66758f5c32, 'Pirate Warrior Skullz', 'C'), + (0x047c2fab5e150b5c47bf636fdd2f87e462f42d11, 'PLAYDAPP DRAGON', 'DRGNZ'), + (0x047e3447202fdd8a872a074ad354d84d8e15a815, 'DODO 饲养员', 'DODO 饲养员'), + (0x047e638bc2d69cedb1678ad84cee652c77210009, 'Midgard Rising Alpha 1', 'MRALPHA1'), + (0x04932f507be386d5bc8951f5187736aa259a36db, 'FATBOIS', 'FATBOIS'), + (0x0495f23e6efb6fa56755713dc7173af3f3622b24, 'Spud Studs', 'Spuds'), + (0x04a4d3e985cb270a1fd5be7650c1fd4ef128ab6d, 'The Sandbox Official', 'sand'), + (0x04aa0d4280438828f023cd8f5ac6ca5cc116a41b, 'Legends of Asians', 'NFTC'), + (0x04b20ed4a1ce21e8cf5f7a8ee1a5e4047c893a27, 'Humans', 'HMN'), + (0x04b51e7cd8db5d54234e3b43a7a8f64f1040ca46, 'Beach Ballin Bonobos', 'BBB'), + (0x04b58e915808df749ad578c0c0b89c5e043140f7, 'Shinfuru Collection', 'SC'), + (0x04bcc4813e9cdf71705e7192df65af29345989cf, 'VXLmasterpice', 'VXLMP'), + (0x04be169a43a98d0672cd1695cab114c7a8d8a7b9, 'JANSBOY', 'JB'), + (0x04c2a3d49285092bda8239cf23a9943dcf691640, 'GEN-T38', 'GEN-T38'), + (0x04c308297efb5dcb25bede34796d08b570297ea3, 'The Backpacker', 'TBP'), + (0x04c7150ab7189657dfd2d5d25bf0b78a630bbbeb, 'KoodleChicks', 'KC'), + (0x04c80d9289ef966e6ac3a185ac042a226ba51843, 'Dunhuang Grottoes Murals', 'DGM'), + (0x04d3c4053de26b784793e4a35838310373c69a1f, 'GEN-H34', 'GEN-H34'), + (0x04d7fec1f6cf89261fb062e8e09bb193e976163c, 'adsf', 'A'), + (0x04db744a56d4221a8ef71989054dc746a5fa3f49, 'Marspop', 'SWEDC'), + (0x04e2ef831254f970c2b8c4358ef6815695dfc199, 'Chief Green Thumb', 'CGT'), + (0x04ecabdf15dd5e1295b9971adcd35183d8f72b7c, 'GEN-H27', 'GEN-H27'), + (0x04fa99bdca3439388834039d79091b9e017996ee, 'PXMS', 'PXMS'), + (0x050b7f79f4cf3efa8111091348042cc6dea60165, 'Nyoki Club Ofifcial', 'Nyoki'), + (0x05157fe8fd08816bee803dee370df0b61d383dc0, 'JANBOYS', 'JB'), + (0x0516088744fb257b24d200775274911ca89c11c3, 'Death Row Records BODR', 'DRRBODR'), + (0x0516c812439af02d19f48515ee06137afb4762ff, 'NFTViruses', 'NFTV'), + (0x0521a2757914566b0b004524a572f0b707ae45f8, 'NinjaToniksujanaGakure', 'NTSG'), + (0x0538582a313b6fbb86df67a2904cca217ca7e88d, '2020s Court', 'SWEDC'), + (0x053b34755d9655fd1ca6169498813c0054dad417, 'PAMPILI NFT!', 'PAMPI'), + (0x0544fa824f12c21cc3f7dc699540214e30e4a2b0, '10,000 Punks', '10KP'), + (0x0545d0d77454b12c263af3a73f6ecca1bdd10984, 'CryptoPhallus', 'CryptoPhallus'), + (0x055c8e5538315c19ddf5592d5f22752ee8155be9, 'VrFrogz', 'VrFrogz'), + (0x055d6c21cac978087b1dac8e815cb9898e8a20ef, 'DMTNFT', 'DM-C-0'), + (0x0562f298fe5fe90739023bb8fe88d8d0c71a2a24, 'Chang Gang Legendary Suit', 'DCL-CHNGGNGLGNDRYST'), + (0x05669956fab3057431496886c03afd5c61f42d56, 'Bored Matic Fox Club', 'BMFC'), + (0x0568f55d5f6ded12f6b5ca43516e4a23cc860926, 'Shamanzs', 'Shamanzs'), + (0x056b95481c2f27924d512fc58328462fa4692e37, 'MGMNF19', 'MGMNF19'), + (0x056d2fd9118af249d968e2c3d6f0c347edbfb1c5, 'TGNFT4', 'TGNFT4'), + (0x0576a4c76c994d7e8f521b6171a3f625ff222617, 'Honolulu, HI Pop Art Edition', 'SWEDC'), + (0x05770985e77932a2c1b5e9cb6b75a3f5a68a0743, 'Kolkata Keoras', 'RAGEKOL'), + (0x05807721a5adf764797c8fd4395184b20a895475, 'PolkaFantasy', 'PF_NFT'), + (0x058485bdc223ab0bd8ca304430443908d30327c2, 'PRIME APES', 'PA'), + (0x058ad48d9a91ee95979b04fbaa7bbcbd9136f000, 'Sweetbot Cotton Candy', 'SWEDC'), + (0x059319d3ec832e0cf4d680115b97e34fe69b0b47, 'sbinft-dev-collection', 'sdc1'), + (0x0594fee490f57f4ed3bddda0c3372480aea6ad96, 'Citizens', 'CTZN'), + (0x059ce30f6389928df5d746e7314714bb4940f51f, 'Harrisburg, PA Silver Edition', 'SWEDC'), + (0x05a34454f037ad1097ff6f89042c0bc2abd0a4e1, 'Sobriety Squad Token for 30 DAYS SOBER', 'SOBER30Day'), + (0x05aa8edfed6307b4ce0cb3af6891e7596f0c28af, 'Autograph Username', 'AU'), + (0x05b7aea1a3903f9e9b99cd59b753335d2c622ca3, 'SADSAD', 'IMGNRYONS'), + (0x05bc83c257ad73da5f5f2560920796cf2534e9fc, 'GEN-L16', 'GEN-L16'), + (0x05bd984e0603f3763fc155cdf95de42f19e6444f, 'Punk Maverick', 'PM'), + (0x05bdbbcbeda6e6ca7e109a2438f305f028c016e0, 'SharingKala Fams', 'SharingKala Fams'), + (0x05bf200ce7c4d186fd01be606702f955b9b0940f, 'STIFFY FROM PRICKHEADS ART', 'STIFFY'), + (0x05c1abf349c48aa133886f81499fe7bffde58fee, 'Deus ETH Posters', 'DEUSP'), + (0x05c4684f1bdc557bd475a4dd3d13b74abccee09a, 'The Stubborn Ape Society OfficiaI', 'TH'), + (0x05c67bea23cc0879b07e2d74534395869f314013, 'Taiwan #1', 'DCL-TWN#1'), + (0x05c74e98a4c643807dc221a3d19753e942a4dbe5, 'Good Game Society', 'GGS'), + (0x05c9e1dbca1ada85e4b69ab862da3c4dc1329797, 'GEN-H30', 'GEN-H30'), + (0x05ceba05633d7f01f44173a7d006a001569e2b06, 'GEN-T13', 'GEN-T13'), + (0x05d1d5f41af193758147cc3582672995b79d4d72, 'Kimbo Skull', 'KS'), + (0x05dc205893dd68489d01b4680841db5b8917ee11, 'Polygon Warrior', 'PW'), + (0x05df72d911e52ab122f7d9955728bc96a718782c, 'Cyberkongz VX', 'KONGZ VX'), + (0x05e4a4f220674c441682a2a9d1975544d181083c, 'Inferno Room Grand Opening', 'DCL-INFRNRMGRNDOPNNG'), + (0x05ea0dc7bc6119e944c33439927da2e2c5aac0af, 'BitShakes', 'BTS'), + (0x05f20b5a9f675af1732626af4cc9e837542e433f, '8Bit parrots', '8bpnft'), + (0x05f93b4e1bb2eaa4dbb82f7597309d9ba35dfc24, 'Tiny Power Robots', 'TPRS'), + (0x0608f090be0b2369731336b6b1ae17bdd423bfa3, 'Pirate Ape Crew', 'PAC'), + (0x06155ae5ff4f1d146f39999ef7c4cad84ec8b137, 'CrazyThumbzz', 'CTbzz'), + (0x061e9137353b1f8baca5c0165af241281e41d00d, 'LOTTREE', 'LOT'), + (0x061fcfe59ad17927cfbd8331d4cd6f199ed3e0e5, 'Easter 2022', 'DCL-ESTR2022'), + (0x06350901317394fa9d581d10b4f72910020f337e, 'TRIUMPH Dusk Wings', 'DCL-TRIUMPHDSKWNGS'), + (0x063669598215a296577b01f6ed0236b666c980cf, 'Poly Art', 'poly-art'), + (0x06392188d39efb1a15c178846122f18140e8945d, 'METATIGER DCL', 'DCL-METATIGERDCL'), + (0x063a90de486d3d925654355bed00f788ea7e1847, 'TPGC Launching Special', 'TPGC_LS'), + (0x063b92a40e7d35d7a2671db2dee7e10cbd014bcd, 'Metaverse Villa Island', 'MVI'), + (0x063fb6908ce6728c091a13607f18fd2cfa46bd05, 'Frogman_Imposter', 'FRGMN'), + (0x06555c884ee36c189ff09412ef3cbcfe202cdc77, 'Mushrooms Club NFT', 'MCN'), + (0x06580ec96787a053167252aff4637ba5e68f88ff, 'Octo Finissimo Ultra - Bvlgari Singvlarity', 'OCTO_FINISSIMO_ULTRA_BVLGARI_SINGV'), + (0x06589e78601636f5952ddc28317ec1713d8b5496, '2022 Year of Tiger', 'YT'), + (0x065ad73019fd97a8a907a30f459ebd43161eb70d, 'RoyalBunnyClub', 'RBC'), + (0x066331402ac45f0d1da48dae0bdc062529e179af, 'TG 787 Dreamliner', 'tg-787-dreamliner-85018'), + (0x06648393cacb665611db139cc43db9a1b226724f, 'MetaVerseFashionWeek ''22', 'DCL-MTVRSFSHNWK''22'), + (0x0665ca013f4a37b1a81d6ee506bec72feae2ef5c, 'Nelly Behind The Scenes', 'SWEDC'), + (0x0666e34e136364869f62ee44807022d9fb83cd97, 'névrosé - s.s 22', 'DCL-NÉVRSÉ-S.S22'), + (0x067442dc669cf13d6984481fe3fec9d78d20a340, 'ApeRemix', 'AR'), + (0x06749dace44095e3244e0e2d9dc260df76384724, 'GoGorillax', 'GOGO'), + (0x0678a8a27a3a009b07927af4b634df4e5ea6e679, 'Meta Kids', 'MK'), + (0x067ed53a4f9043389bbe46c7a9b815d4b60dae17, 'Wierd Bear', 'WBR'), + (0x068bef92987d16ef682ff017b822ca1211401eaf, 'GhostMarket', 'GHOST'), + (0x068fdc4eff7b301c519e14e213f580527c59e87b, 'Bull', 'MFBULL'), + (0x069ca23cc8a9558571cff43f6b1bc59dfbea17a2, 'Tiger Cub NFT', 'TCN'), + (0x06a8bddcd186f68ea4af9cb2af3d2a619064f3f0, 'fMetacat', 'Metacats'), + (0x06c0a302a9c00bfb9ac3a3ce3efcfcc83f03dfe5, 'Ukraine <3 Puffer Jacket', 'DCL-UKRN<3PFFRJCKT'), + (0x06c18abdf441813f9140e52fa8eb466294ddde7c, 'Exclusible Fashion', 'DCL-EXCLSBLFSHN'), + (0x06d19ae542c896c613efd55bab03d0d7b720181e, 'Dunhuang Flying lady', 'DFL'), + (0x06dc5cd1fc0aa518bf359cc95372b8dab787e94b, 'GEN-L20', 'GEN-L20'), + (0x06e08e9f1318d005802899105749319e8c62bf82, 'Johhny The Thug', 'C'), + (0x06e2ee8c334886d3be756b1ae52c0638beda174f, '420 In Decentraland', 'DCL-420INDCNTRLND'), + (0x06e8acf373db394999de9624cbb541f0700bfe45, 'Doodle Ghosts', 'DDG'), + (0x06eeac451fb17843766e20784d7b0c1a87664e9b, 'Forgotten Warriors', 'WARRIOR'), + (0x06f68f90f95826ac3f9806b1cd66d3cafe13a752, 'Fight Club Red Glove', 'FCRG'), + (0x06fa460506997a1f1be486a6149b32e9498d1f8e, 'CAMOUFLAGE SNEAKERS NEON SOLES', 'DCL-CAMOUFLAGESNEAKERSNEONSOLES'), + (0x0700d03c1262f81ffc718e246d534f4562067b0d, 'Marshmallow Fashion Club', 'MFC'), + (0x0701f6abd6146a6e89e29478c7794c2184151214, 'M1NTY - FS', 'M1NTY'), + (0x0703589706634e31f5c6115cc2c90c3760d31731, 'Driptor', 'DCL-DRPTR'), + (0x070c92958ffb5e7d11cebc5141ba2b1483d2ac51, 'Gekoloniseerd', 'DCL-GKLNSRD'), + (0x070fa43d0fcbec94494b0c66104edbe96ec913d1, 'Phoenix', 'DCL-PHNX'), + (0x0719268726cf710174d1f3756de8730b6da16782, 'Luck and Sweat', 'NACLS'), + (0x071a1f28ac0b922cd4b43fa241da56c0cf3e53a3, 'Normal Eyewear', 'DCL-NRMLEYWR'), + (0x071c729c1dec07edaa89753a2379d2e32b9aebbd, 'Azuki', 'AZUKI'), + (0x071d94324a0fcf3ed967a078d7df1c8fd8b63ebc, 'Joyride Games', 'JoyrideG'), + (0x072044f47acc6a9019ef5548f668cd68323d0e0e, 'DemiGoats', 'DMG'), + (0x0726b7cd4a8078741ac1f711e353cadcc1cb3199, 'Matic Birdies', 'MB'), + (0x072b9a3cf4af40f12cfc611842f482b09705c5cc, 'Higher Life Gecko', 'DCL-HGHRLFGCK'), + (0x0735f6a2fcafe1a6a3bb8a22c9d78a9a8980ee78, 'Crypto Battery Family', 'CBF'), + (0x0741e0fc8e69c275542fe153ed10f4b7a6c68dac, 'Poly Collection', 'POLY'), + (0x07425471a1cb489149a47a036c66aad48626424b, 'CryptoPsyKitties', 'CryptoPsyKitties'), + (0x07512bba5f81c8c69c7e325f36a4ea9d133a79a4, 'JANS BOYS', 'JB'), + (0x0757bc621a32b1134ecf2843955b0bbc8ca13ba1, 'DeriV2 Position Token', 'DPT'), + (0x0762ee1edcbea7d2cf04029137af220704970ddd, 'Starton Genesis', 'STAR'), + (0x0766501c04ed3f72214c76bc85d233fbbc2a5012, 'SaitaWolf Club', 'SWC'), + (0x076dba35aefafc028cca3deb31b2c359262c1034, 'Grandma Cat “Angry”', 'SWEDC'), + (0x077a934187e8bf4546119b3875990c64c7713fdb, 'Shades NFT', 'SNFT'), + (0x077fdc3eb9f35616e0a7a542d9252b2614a20810, 'LILHUDDY, Meet Chase', 'SWEDC'), + (0x07899fe3c061a4485d11d8d81bcb9f98bbb13d68, 'Rainbowsaurus-Rex Pyjama Set', 'DCL-RNBWSRS-RXPYJMST'), + (0x07904fbe7be2d663abf5febdc04c1d6937b4c713, 'ENPOSH ITALIA', 'DCL-ENPOSHITALIA'), + (0x0792b369d2f4b9cf3b7ed3a4db539add75108ad7, 'Supreme Skulls Prime', 'SSP'), + (0x079a68dad28fc18530f7919803ae0d79aa6fc565, 'Lucky Blades', 'LBNFT'), + (0x079e38bcaec4ba6dcec0a4dc6c9c821529fcdca9, 'Parallel Dented Feels', 'PDF'), + (0x07ae3987c679c0afd2ec1ed2945278c37918816c, 'Toyo - First 9', 'TOYF9'), + (0x07af17daa58c7459e182f4af320432a404d1f0f9, 'Horrors of war by Henry Starling', 'HOWHS'), + (0x07afbbb49d7725944f19de4561b8542923e74c85, 'Kalart', 'NFT'), + (0x07b966e144863daad210619cd8943c0941ff6062, 'Metasharks Collabs', 'DCL-MTSHRKSCLLBS'), + (0x07ba990fa055b932544e0e132a9f92b3269c8348, 'The Galaxy Of Lemuria', 'TGOL'), + (0x07c59ab7c73c3d3c05b578f55705aacd33e44b18, 'Teenage Bears', 'TB'), + (0x07c8395caab2eac4bfbe5a273a64f19fcaad5016, 'SOLF NFT', 'SN'), + (0x07e21f45025a3c1917901edc77debf08f39b79a7, 'Buffalo, NY Silver Edition', 'SWEDC'), + (0x07e888da4d937ba90ae66f3a4e6cbd63fc01ce04, 'EmoTop', 'DCL-EMTP'), + (0x07eaa89ff86a396dfc7b92e93da86ea061a9fb74, 'MENNIN TOKEN', 'MNT'), + (0x07efac7c79f4dba35912c708290030a3d537ce2f, 'Paradox Metaverse', 'PAX'), + (0x07f70720dbb6c244987c7af2cf4c3d82e3bc23b1, 'Backward Shoes', 'DCL-BCKWRDSHS'), + (0x07fec78e97ba36fb00d6dba0dd1953556417bd5d, 'Raptor City Rascals', 'DCL-RPTRCTYRSCLS'), + (0x08066a05f430004ef78c29b6aef9c7779ddeb3d9, 'META', 'MDT'), + (0x080f3d911eb9133732b03281a35b1b7badb3b466, 'BABY_GROOT', 'GBNFT'), + (0x0821f6bfd01735435d863a7a37d5d511e3bed527, 'nonghao', '11'), + (0x0821f7c5e4d7a9de952c9bfe6b1335f500a7b0d4, 'LiamNFT', 'liamx'), + (0x082388e1c8dbc14e9d9662795955ab06b40c53eb, 'NFTStudio:Token', 'STD'), + (0x08247a63a38c52bf5612ebf6fada5bb8f494e8b8, 'ICE Crowns', 'DCL-ICECRWNS'), + (0x0824c0cd3eac049ff7cd7caaa6fc2d4a66f4adc1, 'Kranion of Saiyans - Special Edition Classic Armour Warrior', 'SECAW'), + (0x082d812fc702929ba4b2e629b8f50f3a8564db50, 'Scouts of BARC', 'DCL-SCTSFBARC'), + (0x0835645ae3d1728e667728484ee0a258db3eb660, 'Chic Cows&Bulls Collection', 'CCNB'), + (0x08439463e6afa54bb5e4a559bfa0f10dfc27e0d9, 'CoinGecko', 'DCL-CNGCK'), + (0x084e175bc6eec9274439826bcfe3165fbcffb278, 'Dumpling Time', 'DT'), + (0x084e49027edc6122dfec875dc25e7fb4db7f365c, 'My Collection pNhPsJ5u62pejJSpTXwm', 'my-collection-pnhpsj5u62pejjsptxwm'), + (0x085b74cf3e25be4d49bd8e796f890c6e270a3d34, 'Bull Market Friends Club', 'BMFC'), + (0x08603b408fc1936f5b716a4c10048be6a24c551a, 'Jaipy Monkeys', 'JM'), + (0x086067eedbe52af4c4db801865f407c286f7b6c0, 'Eternal Monkes', 'ETMONKES'), + (0x08630d0af507b91502cc272f9216cc6a6ebc297c, 'ArtWalk''s DrG x Stoney x Hiro', 'DCL-ARTWLK''SDRGXSTNYXHR'), + (0x086cbd54ce4ecd1672fc35dfb5a6c38465200067, 'BAC_OFFICIAL_CASINO', 'BACC'), + (0x08741d0b079183041737c128d65b09ab4bb07145, 'GEN-T41', 'GEN-T41'), + (0x08813038929eb53da6293058dcd0bea25a1c0939, 'Nothing is Impopsicle', 'SWEDC'), + (0x088af69feca9964470258b37a309e2c8d00a828e, 'GossApe Girl Collection 1', 'DCL-GSSAPGRLCLLCTN1'), + (0x0891c46b4b58d10e0be4fa73ecd1248635a106a6, 'Meta Mashers', 'MASH'), + (0x08927f894da194f041e0648eda94f8263d9bb41d, 'Aliens Are Real', 'DCL-ALNSARRL'), + (0x08956a6958c5e007624f6dcde76fc8c520cb0b5c, 'MetaWear x SkinnyBandit', 'DCL-MTWRXSKNNYBNDT'), + (0x089a7f97878f19709c3fedb8809e6d5617001a38, 'Little DDDemons 1 (red)', 'DCL-LTTLDDDMNS1(RD)'), + (0x089f332e73ee2a7b7c455d365c8d1f3b81bee751, 'Tiny Fly King', 'DCL-TNYFLYKNG'), + (0x08a813952f6d21ea182f390010da83704cc5ad03, 'CryptoPunks Ukraine', 'CryptoPunk'), + (0x08a9710fad6a03c4fcc82ce45901d70a53bffb47, 'Armadillo Society', 'ARMAS'), + (0x08af49e3b6b35f97ea21053aa4f7044f15b2ad20, 'Mystic Rebel Drop', 'MysticRSCDROP'), + (0x08b55fe87775a37573159609490aaf7365d73b73, 'CheerfulGeckoClub', 'CGC'), + (0x08bc7c42319bfc18ebf6529b55839bc2b4ea0f8b, 'The Snowgoonz', 'SGZ'), + (0x08cbc78c1b2e2eea7627c39c8adf660d52e3d82c, 'Blue santa hat', 'DCL-BLSNTHT'), + (0x08cd32ecf3b9dc654f629ed4950597fd268a423a, 'Funwari Shih Tzu', 'FST'), + (0x08d131cfa304c3b47f9c57f95e6c4e5548d25bb4, 'Red Bottom Loafers', 'DCL-RDBTTMLFRS'), + (0x08d517181789f1d3acc1aa519f64563ae9c5148a, 'Putin Toots', 'PUTINTOOTS'), + (0x08d53acb21ed53705343623fc1b5e129809bf3d0, 'Sushi', 'Test'), + (0x08e4986d11e4746c8811e21c646e933fe2bbb818, 'Punks Not Dead', 'DCL-PNKSNTDD'), + (0x08e6b1ffad07c969af871c4e19088b58e25fd389, 'KaijuFrenz', 'KF'), + (0x08ea7569c7db180ac376dd345a4b734944104eb1, 'CrazyThumbzz', 'CTbzz'), + (0x08efe677e2150d4170ccaae1f69228394f37079a, 'LOST ARMY Trading Cards', 'LOST ARMY Trading Cards'), + (0x08f3df6b8067ba7a4e8bd03f7f279246d4f01d25, '0x87ccEf13d42Bc8ed869500C814308fC7e6B897B1', 'Xcc'), + (0x09014b4be49502ac6640cd98f7ba06b207eb6fc5, 'Bad Hangman Promo', 'BHP'), + (0x0901a85eeb53552694cc7003f990eac7557df9f6, 'Gallerium.xyz', 'GLRM'), + (0x0903703ed66f3b494dc312a085cdc84b86564a09, 'CryptoTruffles', 'CT'), + (0x0906c48d0c8b685a19fb89deea9cfad1f096d0cc, 'Bally Gang OfficiaI', 'BAL'), + (0x092d6085d673778468c072a223b9aac18cff51cc, 'CryptoToddlersYC', 'CT'), + (0x0953d46695620f6980bff3e8b0ad9dba927a4c2e, 'JustFrogzNFT', 'JustFrogzNFT'), + (0x09573d2d4b4df660127f06f7df621f4cc8468bd9, 'PhantaBear', 'PHB'), + (0x0958ee5ecf3230f45405b13e5697a818e8ab11f1, 'HVerse', 'HVS'), + (0x095bf4ef3ead14b66daa82f98015c7293d4a02df, 'BrokeAss_Ape_Club', 'BAAC'), + (0x0969f7fba32fb488d3e8125e354b795da57b059d, 'Sketchy Octo', 'OCTO'), + (0x09778e3d86efb91b62082a87142d5558083295a8, 'PunksSociety', 'PS'), + (0x09801fe4e6d9af299dd8d279bec59defbe3be5ed, 'HN1', 'HN12'), + (0x09835fd38354872ebe69b4c694306a3aa72c243e, 'WPN1', 'WPN1'), + (0x098bbaf097ff040aea730f89870a70213421c49c, 'GanjaSmokers Mask + Blunt', 'DCL-GNJSMKRSMSK+BLNT'), + (0x098e1bc661398ed6858626ba5750e56ce03f9072, 'cryptokhat', 'ck'), + (0x099885f47abb94cc48db7671e0576b2813dcdc1a, 'Bored Imaginary Apes', 'BIAC'), + (0x099c493ed36b18b661df222a679fb47c5e1ec2c9, 'StoneyEye - Crimson', 'DCL-STNYEY-CRMSN'), + (0x099d5a418c878c0037fab3516e773a53e3ee86b8, 'GIRFAPECLUB', 'GC'), + (0x09a2ec4ffdc0e5bceeb804ee6d82868a85343283, 'Cyber Birdy', 'Cyber_Birdy'), + (0x09a3fea3073774ad196367b9042ce6068ab66b7b, 'MGMNF13', 'MGMNF13'), + (0x09aa1a14e572e6fc05f64e541699d3e0361c7f2f, 'The Mars - Martians', 'M1'), + (0x09b24950abf5e93768c7fc3208a7ce10940cc531, 'SPARKS', 'SPK'), + (0x09b316127cea59bb767ed8daa9a93da3c63d19bf, 'DCL Curations Black C1s', 'DCL-DCLCRTNSBLCKC1S'), + (0x09b4201ad1ec29405459023a7638e15b6d2b8054, 'Award_Pool_Beta_Tokens', 'APBeta'), + (0x09badd473cdbd922fe631bbe3e12387c493a13a4, 'Ranghmar Bone Warrior', 'RBW'), + (0x09c6f0b284bcfa49cbf9e100a4ce8ac25cfc3432, 'Psychedelic SupDucklings', 'PSYCH'), + (0x09c9673dd7bdc5a84f4fcbe0fcb8880bfb4ad2a4, 'For The Culture NFT', 'FTC'), + (0x09cb79bd023b1ac056e9a6cbc7c65feb6075ecaa, 'NFT Garden', 'NFTG'), + (0x09cea8cc8a78e398cd72c48166e47a944683a088, 'Hostile Squirrel', 'HS'), + (0x09ec967c5310af6d298bb1fb409c6080a126764d, 'GANG GANG 420', 'DCL-GANGGANG420'), + (0x09eeac7dff0dc304e25cbb7bdbfae798488fc34f, 'Founding Fathers', 'DCL-FNDNGFTHRS'), + (0x09ef0ad81897a67c9a1ba6bd5117db4dfbc1fbfd, 'ShoeFyio', 'ShoeFyio'), + (0x09f97952a0fe0558961241b8f907d82923493912, 'GEN-H29', 'GEN-H29'), + (0x09ffccd0574e4916e5c0670294443dc33fb86c39, 'Jesse21: 1:1 NFT Collection', 'J21_nifty_721'), + (0x0a003cf9d80da8b34129974c9926ed48cf9b8884, 'Mutant Shiba Club', 'MSC'), + (0x0a03968182fabad49bd4b57363ff9bb4f0d8d7a5, 'MrDragonFishVV', 'MDF'), + (0x0a04cca75b74c69ac5ad2e219d1b9c180d8fc746, 'MrDhingia', 'DCL-MRDHNG'), + (0x0a05817089179632a0916862db9876cd079d7f3e, 'Cyber Mobster: Warrior Captured', 'SWEDC'), + (0x0a09e985e3a49909b0a45adedfdd6f99aa27e529, 'Octopus Smiley 3D', 'OctD'), + (0x0a0bf65248805efa926c39bf51b6dd94e3d1a7af, 'Visitor', 'VSTR'), + (0x0a0c3d9412be89cc2edd95f268ef8e75b9325fca, 'Meta Orcs', 'MO'), + (0x0a12c9b4bed3e50b203cd367d9ba9e43fd94f79d, 'The Free Guy', 'TFG'), + (0x0a1c381cd518e2a2f7c1e295994402f09b94eb35, 'GM Chest', 'CHEST'), + (0x0a246b5969957b2f4857c459134a47d0fe1280a6, 'JGNFT4', 'JGNFT4'), + (0x0a24cb89289043d35d3423137a137297bbba253c, 'The Sheeple Club', 'SH'), + (0x0a2668346b89f6946aa2ba82d599fc776c91bdf1, 'Akiverse Game Centers', 'AGC'), + (0x0a270076a035b26cdb851a804dbafd9cbcccbb02, 'FLIPPED REAL APE', 'FRAP'), + (0x0a2916f5feb997fe65b1e434e23c0bf7c374d0b6, 'DEJAVU NFT', 'DJV NFT'), + (0x0a2a89ab08de14dbf144d52f40d2ac34ac90a141, 'Chill Bear Club Presale', 'Chill Bear'), + (0x0a2b4d279afa7e3428e06a485d5686115a44d3fb, 'MyToken', 'MTK'), + (0x0a2bd8736c82fb1a72ba7cb20ca870381e384fbd, 'MRPOTATOFAMILY', 'C'), + (0x0a2ec2465168b5ad1d7877b880df50a7a74c2790, 'Small Heroes NFT', 'SHN'), + (0x0a30f6cc7802a0d05b0080746553ed17f3a08a90, 'Orphan', 'SWEDC'), + (0x0a37c03301ca20adb71ee1051773baec2f4d88e8, 'Monster Kyubu Pixel', 'MKPX'), + (0x0a37e6a7a9c11119d6f9da4003c5d6bac76b9b10, 'Blankos', 'BLNKS'), + (0x0a397a28617b18004bc61e4c3a3ca473ad21b4a8, 'Monster Ape Club Polygon', 'MAC'), + (0x0a3de68124dd1fe3b3524b5f7f55918bbe2fb98a, 'Oneserest', 'IO'), + (0x0a3fe0fdb920bb233c5b4efcd86df365dd407114, 'Eternal Monkes', 'EMNFT'), + (0x0a55591e79b75cef742e4166255a9ced8d1f1c05, 'Lootex Badge', 'LTBG'), + (0x0a5569564d95cba399460b06673454faeef92cd2, 'NewCollection', 'NC'), + (0x0a5a12e6f6484dbd813e298af99de65faceaa69a, 'APE GANG', 'DCL-APEGANG'), + (0x0a5d4b528702621a762c2ce4a086ba4469948b64, 'FacelessvoidNFT', 'FVN'), + (0x0a60047a0dc272fed19e32a06146b983e7b7492d, 'quotidian bogies', 'qb'), + (0x0a633c92aca0e5b04637b05512a112b7ca3ab6d9, 'CRYPTOPEACE1', 'CP'), + (0x0a6ae821197442aa3177c9a4886680f506f40082, 'Rebel', 'RBL'), + (0x0a6c168f1080e2d0969bb7b6c92c93f3fda26cc0, 'Bernertracht', 'DCL-BRNRTRCHT'), + (0x0a718a6e7aba9443e19343656d0f0bc3667e3764, 'CRYPTO DEER', 'DEER'), + (0x0a71d33441c96afa398e36d2212d295ee1d55bc7, 'Matt', 'DCL-MTT'), + (0x0a775dd8284a5f824fb48460e6d6460f02834c19, 'SignPass', 'SP'), + (0x0a7aa5a6d28c29dcb2d1e906fca16840e2a07327, 'Bounty Pet', 'PET'), + (0x0a7bfa88979705eac4dc43b5d3c34b2c1d890bc0, 'LOC Legendary NFT', 'LNFT'), + (0x0a7c18f4f3e62044e3dfed2aae580c66a2e37677, 'Altcoin Aviators', 'DCL-ALTCNAVTRS'), + (0x0a83ac9a04072c6d931aab89481bda342fb75806, 'HarborBcg:MarineChartP', 'HBGM'), + (0x0a8b69d10ff3896f47a50907ee557363b64d104b, 'The League of Sizers', 'SZ'), + (0x0a92f166d5e030dacd5c33fd5fc810d9b14c0802, 'Wolf Pack', 'DCL-WLFPCK'), + (0x0a9867367ed8d36edcddb3f2dec7fc759574e2a4, 'MetaButt', 'BTT'), + (0x0aaa68886931d589ea22a87a130a8bb8b8bfba18, 'Tagger', '🔖'), + (0x0aacb4655e3a25662f224862920ac9ca9115741e, 'Funny Ice Cream', 'FIC'), + (0x0aae1d67586a3decee063a227fbce97daa1cc940, 'CryptoJawMen', 'CJM'), + (0x0ab3b701475043d3d5c3de276296fc5b2eaaeb5a, 'NymphaeCyberis', 'NC'), + (0x0ac7612db1d1dbaf09ece4d81a28d2265172d6d6, 'Suburban Colors', 'Suburban'), + (0x0ac7ca8eb9ab6a06868d9f05442d78dce5e1ccab, 'RiverMenGift', 'RMG'), + (0x0acd8cbf01067ef5c07afe1b3cbb90f5d8b45245, 'Peons', 'PNS'), + (0x0ad93fb834086c7cd780248136edae5968d3bb35, 'Meta Man Degen', 'MMD'), + (0x0ad9475281c11bddc3b322d4d7c9ab4732b81f88, 'Austin, TX Silver Edition', 'SWEDC'), + (0x0ade415fc853300c7671fc5d8cbe4de940954642, 'Bored Mutant Ape Plane Club', 'MAPC'), + (0x0ae29b66094193d0087d33a524eee875ee284c6e, 'Internet Diamonds Club', 'IDN'), + (0x0ae6d734b0bae07ee0011b1aba08f2200714dabc, 'GumHeadAndyToonClub', 'GHATC'), + (0x0aece05f986a3ea7ea7467bf581f43bf61fa7781, 'Dahlia X M1D', 'DCL-DHLXM1D'), + (0x0af0abfabd8c8c2740e5c9d152dd36f552ecf403, 'NinanMemberFactory', 'NMBR'), + (0x0af54c6d7ca3c8799f9e6d6f4c7d169616e429fb, 'Octo Finissimo Ultra - Bvlgari Singvlarity', 'OCTO_FINISSIMO_ULTRA_BVLGARI_SINGV'), + (0x0af9df48d6aec5e287a0c39ffb7df259b20fda42, 'Bored Ape Expand Club', 'BAEC'), + (0x0b00ccc2ecd0e655449c1ba6ca0b43ef9e28ed0e, 'Mutant Shiba Club', 'MSC'), + (0x0b076ca2fb2e4e14250d77693d548261e349bc43, 'FTPB', 'Fun Time Party Bois'), + (0x0b0ba4b49b3b676a42c9034ebedd58d92e11b858, 'Super Gremlins', 'SGNFT'), + (0x0b0cb2f2a23e9b3dc880badb81bda48fb26a6744, 'The Real Brawl Stars NFT Collection', 'TRBSNC'), + (0x0b0d90f194519b2fa59c1c577977abf7d0a7b35a, 'nftunit-medal', 'medal'), + (0x0b0d97058eeeaec0708baf6fbe953dd971debf1a, 'Pixel Prox DAO', 'DPXP'), + (0x0b103c408845ba8db7cfcb92c7551aaf2d61ca64, 'Fat Ape Rocket Crew', 'FatApes'), + (0x0b1682987966858e830a35f4f20417e428ef9b0c, 'Cool_Ape_Pixel_Club', 'CAPC'), + (0x0b18b900f7375aabda00eeac988116c33fb05bd2, 'The Stripes NFT', 'TSNFT'), + (0x0b225ec142181cf8fbd8d0097b99f3e42a8d6a3c, '8MGMNFT', '8MGMNFT'), + (0x0b28cfb1c6bc8a5635cebb17d91d70770dd24853, 'SwaggyDogs', 'SD'), + (0x0b2aa838588892a21d5f0c5a9ea3c8483c815a18, 'Doodles (Wrapped)', 'DOODLES'), + (0x0b2eff4caff5358028a3b39954e3d959437696fa, 'Freshly Deranged', 'FD'), + (0x0b34c6f794e1881092c0878ad182a9ef18548cb2, 'Bully Bashers', 'DCL-BLLYBSHRS'), + (0x0b3ab4b53afe0ab44f757ce6b57f30b954c76596, 'Billionaire Drip by MetaWera', 'DCL-BLLNRDRPBYMTWR'), + (0x0b3d6b328d97a4330f628a150ba4bbbb4f2362a6, 'Buffalo, NY Pop Art Edition', 'SWEDC'), + (0x0b53dde55fbd1f95ea292cc7e9d62e070e8d7437, 'TEMPLE MEMOR!ES HOODIE', 'DCL-TEMPLEMEMOR!ESHOODIE'), + (0x0b596cfb5de855ed0534d768cd3aff0068c7c605, 'tudaBirds NFB Pioneer', 'NFBPIO'), + (0x0b6b6ff15f94ee0fba87997a08fdb724e0f41586, 'RARE BEARS OFFICIAL RB', 'RB'), + (0x0b6d6b49fef808f32b22061f1194160b5e0934da, 'Bored Vibes Ape Head', 'DCL-BRDVBSAPHD'), + (0x0b7090ba8703dd066a19ce5e5770966f248bdcde, 'Left Shoe', 'LS'), + (0x0b7663af7e0029e2880708d7a7ad1a3c0ba3ee73, 'Crazy Devils', 'EVL'), + (0x0b767d6d36c1ac3b25928c43ca549c8ae3a3882a, '1kPixelArt', '1kPix'), + (0x0b7fe7dc52e3d5e826759bd8047aa03ddd3d929e, 'John Chocolate Hand drawn', 'JCHD'), + (0x0b8c2d1ffa2ea24c5c73eeea11db4fd6f074434f, 'SkullOVerse', 'S'), + (0x0b8f56306ab5f54cffd6ed5e47d26d981332cb2a, 'Crossing Bored Apes', 'CROBA'), + (0x0b9b400c8c72b88f29493f162f9fb8c00fd22f8b, 'JarOCat', 'JAR'), + (0x0bb33e4be40d2ec170c83703e99b129cbec9e015, 'Car 22 Camera Rig', 'SWEDC'), + (0x0bb70eee4289097a98323f67e9ded68f0887babf, 'MiraCrosswords', 'MCW'), + (0x0bbac317032b20e7685b3d8438ea0e43ba1e999a, 'Naughty Nuggets', 'NOTI'), + (0x0bbc9a143ffb502601bfbbf53033605a2246472b, 'Meme Cat x gg Toy Company', 'MCXGTC'), + (0x0bbcc70a10111eb057ee64822d1778ad4746ea16, 'Massence', 'MR'), + (0x0bd6aff252c5f43c29ed39cdd9708ec4a7282562, 'S.O.S NFT', 'SOSNFT'), + (0x0bddeccf286da2fa11b468922269307b4c06d99f, 'Bored Ape Yacht Club', 'BAYC'), + (0x0bde08eafadda1c25ee64323243a55ddb8ed2daf, 'DoomsdayDolls', 'DD'), + (0x0be096f1831681430cd3f5017853b597da8b8dd3, 'Madre Moderna (MMCXXI)', 'MOMM'), + (0x0bf0872390a94c15aaa2865a2f9d8dec90b0af6c, 'Nifty Eggs NFT', 'EGG'), + (0x0bf150e96d2da9eef74c98ca33b0e046b88212f7, 'Mythico Glasses by M.S.', 'DCL-MYTHCGLSSSBYM.S.'), + (0x0bfa472fc335d480a5dfaffc7be0fc9f59bea6bb, 'Meta Ape Collection', 'MAC'), + (0x0c02cf6f80aa60323de730f8fca5f6c3d8d68fed, 'NFTs', 'NFT'), + (0x0c10410947a2c921105eef6c472c619766815063, 'QRishin', 'QR'), + (0x0c165f27179342a5185373aa945262011251a9b9, 'AI Revenge', 'AIR'), + (0x0c16ab8596307e17b5ccf025acaebb3347239a73, 'PRETTY GIRL JAPAN CLUB', 'PGJC'), + (0x0c188df7554f92e076c3d1bc643906a66e9a1c4c, 'Guys', 'GYS'), + (0x0c3a68972be688f85c58aa0ff8152382f7308729, 'FancyCroc', 'FC'), + (0x0c3e8b9a34d0e3a344222912fe0c828b9003d1b0, 'HODLE Whales', 'HW'), + (0x0c3f09ca778dbeb65ff237f7f4c814744e41828f, 'Hood Aliens', 'HOOD'), + (0x0c4595317068cee3f077f71e971fcb31fd0629cc, 'Poly Pythons Collection', 'PPNFT'), + (0x0c46ccbaa3edd8a1fcd19edf34516587dec3e2a9, 'Miss Learning Curve', 'C'), + (0x0c48b3b83676707dfd92577ad72969dfe6ff7505, 'Official Spaz Static', 'DCL-OFFCLSPZSTTC'), + (0x0c51e1c0fafceff8c588a0073ba3b51824dbf1f3, 'CryptoQueensUnite', 'CQU'), + (0x0c724c4442334c15ea9e1510b5b9051889010ad9, 'Sneaker Heads', 'SH'), + (0x0c7776127ffea9f45c52da49e78496c8f29a30ce, 'Skeeball', 'SWEDC'), + (0x0c78e946de21ad6e5278b852dd065dd3a0b2a16e, 'MNRL', 'MNRL'), + (0x0c7940a62e05d7582570bb618a58d0d079b6d5b6, 'PinkPunks', 'pp'), + (0x0c7b975177e02c18cff0a355643cef8fe2c27ee0, 'MOODLAW', 'DCL-MOODLAW'), + (0x0c861e408400c031f20ece5aa87aed5b73a351df, 'Plastic Surgery', 'DCL-PLSTCSRGRY'), + (0x0c866f7759db6794bfd811ba21551a18cfc29a9d, 'Mushrooms Club', 'Mushroms'), + (0x0c8cdb80cfc583fe615ab853f4d321052aba3b73, 'PMX Player Pre-Access', 'KEY'), + (0x0c8e120c3dae1e657862e364a9036f4ee84b27e9, 'Penguins&Pancakes', 'PP'), + (0x0c93c6c26d79aabcd8915b7114d63f388821e614, 'V1 Punks Wrapped Matic', 'WMPV1'), + (0x0c93eadce0690d41a73e985bf0c6d8ef4d4c78d5, 'iPERMojis', 'IPM'), + (0x0c97c971450c20cce3cbf9340e63a59bfdd467f9, 'Willie Wortels', 'WW'), + (0x0ca01f8007cc1507438be498e4a0f9b82b58256a, 'Devious Dinos', 'DDNFT'), + (0x0ca02ba09a40b676e66b8b18d2a64eadcce1bf56, 'web33', '33'), + (0x0ca3350124482d560cfadbaee01aef6b0a0df4ee, 'Clay Boys PRESALE', 'CB'), + (0x0ca59079daf72a75895e38aec1171c4c49f6c076, 'Ninja -Cherry Blossoms-', 'DCL-NNJ-CHRRYBLSSMS-'), + (0x0ca81eb33b5072ef039b332fd81d85eca3060827, 'Friends of Audiograph', 'FRND'), + (0x0cad276f51ac6063bcf709ba15689a04fbf334e0, 'SuperCryptrollz', 'STRL'), + (0x0cb3731d580902a7c31095f9887a797e89e1e958, 'Crewmate', 'CWC'), + (0x0cc005278775fe300fcda1629d90883eeaab3666, 'Crypto Gems First Edition', 'CGFE'), + (0x0cc3d1ac0ecef007d098b604da47908ff12572d8, 'Loot', 'LOOT'), + (0x0cca1432e6e68d43466e536f7c3ebba545c32c03, 'Bloomin', 'BLMN'), + (0x0cd1457f35ebbc77966c377ccbf03e323268c1bb, 'davidmembership', 'davidmembership'), + (0x0cd217ad5826f0457c29b3b998685f95f6a72969, 'Sobriety Squad Token for 6 MONTHS of Sobriety', 'SBR6Mon'), + (0x0cd73d6bc22b74ee281e9e9d67876be85c82863f, 'Community Gems', 'GEMS'), + (0x0cde9c198b7a42ac2bd426bb5c83b1561771931b, 'Weird Catgirls', 'C'), + (0x0cdf35da3bd47ba531102383baba60a47f658e56, 'Star Pet 2022 by Oltecs', 'DCL-STRPT2022BYOLTCS'), + (0x0ce68a670ce6f41aad63ae714ab087b125e7dc9d, 'CLONE X - X TAKASHI MURAKAMI POLYGON', 'CloneX (POLYGON)'), + (0x0ce9a6838f1574f78b84d145df716c6fd3160ca7, 'Eco-playing cards', 'Eco'), + (0x0ceb45dc89ecde2a4551ea5633d67eb5e143534a, 'Argentum Alpha #50K', 'AA#50K'), + (0x0cedf6129f9a20109f0e0f043c1e01590a2d6ca6, 'GN Ape House', 'GH'), + (0x0cf22084b79629c7df7514eaf0a9b29bbb4386a6, 'Sweet Scarecrow', 'SWEDC'), + (0x0cf3d779ac71276106578a3a8951846f3e2daa77, 'NemCat Wear', 'DCL-NMCTWR'), + (0x0d176605eba21fb29986335605ba20870a14a571, 'NFMugs', 'NFM'), + (0x0d216b47bf9d3ade0981449a91f8893c7500afad, 'Man Fashion Club', 'MFCT'), + (0x0d21face24a67b583f67c79562e7156e85705218, 'Cross Boss', 'CB'), + (0x0d26ecebff305aea015eb10833bcf715503fc64e, 'The Kong Dongs', 'KD'), + (0x0d2eb8f004e5f09fa18125e77e23af66d2958bad, 'Django Dino', 'DD'), + (0x0d334ccde54bc53b877c1b8bfb2fb6ca104362e1, 'Charity Raccoon', 'CHARA'), + (0x0d34913ba64ebe1d6cc046c09c9f93bc6b35829f, 'Monkey Kron', 'MK'), + (0x0d3685ee724717502c83e886691bc07264e1e93d, 'FacialPunk', 'FP'), + (0x0d3cc383ac2b6ef6a3f909928fd941753d324369, 'Kawaii Nekochan', 'KNEKO'), + (0x0d404a07864fe6d385ceb54e882cd4dd1519c307, 'GEN-L10', 'GEN-L10'), + (0x0d49a53de47907f257ff43100c1a37cddee4561a, 'Roustan Acid Wash Jean Jacket', 'DCL-RSTNACDWSHJNJCKT'), + (0x0d54319c932816d15da94937915237afeabf1d9d, 'The PI Charity Club', 'PI'), + (0x0d55bfbd54a80f78ebe71436551894a1f231051f, 'ScareBears Christmas', 'SBC'), + (0x0d56b429f93f34468b41606b956d042108ccb238, 'HODL VUITTON T Shirt Collection', 'DCL-HODLVUITTONTSHRTCLLCTN'), + (0x0d60f5e2ac4646c6df2992aa920702173724c02e, 'OGLLY COOL CRAZY CAT', 'OGLLYCOOLCAT'), + (0x0d63f92454fbff2104ee044fc7ffc569e8a133be, 'Stellar', 'AWNFT'), + (0x0d6ef995e6cf1cde4034305bfd0571cf699ff08c, 'BigEye001', 'BGI'), + (0x0d7f8b59f9b5021bc4eb501dad3d5ba7af2fca73, 'Going Ape', 'Going Ape'), + (0x0d8028c369aba2c0038b9a45146ea2d0f975fd5e, 'MCP Vehicle', 'MCPV'), + (0x0d8ea45f0fd7dd8537be21736c5f66f448318bae, 'Posh-Goat', 'PG'), + (0x0d8ec5283610ebf0f005b50edabba148c1448710, '[DEVELOPMENT] Ro Ko 039943', '[DEVELOPMENT] Ro Ko - Ed 643566'), + (0x0d9223abacba9ca5e286b3089a07a0b81d0df892, 'Milestone', 'Milestone'), + (0x0da699fbac204a6bbbc7d3ed2c49fc2bc6d90907, 'META MANSIONS BY KEYS', 'KEYS'), + (0x0daa675c723222fa82eb00b4b384c54df25a422e, 'The Sandbox Season 2 Alpha Pass phase 1', 'alphapass'), + (0x0db92f5fbc1e535762c132e53a8cc4b889c3cab8, 'We Are Ukraine', 'WAU'), + (0x0db9bebc93fd83dded8b843a8985ef01e1a53eaf, 'Rebel', 'RBL'), + (0x0dc6b27c7a0ae7a453a905003cbbd98a08970f4e, 'Bad Expressions', 'BE'), + (0x0dc77110b8222227b59884d24fe3a71749d52fc9, 'Pixel Churches', 'Church'), + (0x0dd50bfc7d68c09a49c0e236acb9a0a1fe513a62, 'Thats Gross', 'GROSS'), + (0x0dd568c0a998471c2ffd6f6dbc8a739a91f954dc, 'JANSBOYS', 'JB'), + (0x0dda01a2e69235dda81c23108102aa5829a38ad1, 'Awesome slimes', 'AWSLMS'), + (0x0de5b12b4b63bb1819775e29854735547704af81, 'GROWMIES', 'GRO'), + (0x0decafe3b93dd8d0af3ea96ae1d1175f575fa010, 'CrazyThumbzz', 'CTbzz'), + (0x0deee3b23764246e36cb84f6c1bdd9d414564db5, 'CosmoLand', 'CLAND'), + (0x0df57584dd420a83054db6d78c48d49b94c1bd9c, 'Fashion Trend Clothes', 'DCL-FSHNTRNDCLTHS'), + (0x0dfa26dc1fa8a4832153f6cdcefb0758654a0e94, 'Alendis Knights', 'KNIGHT'), + (0x0dfd5f1d17ee86b50b944814fbe8eed7b20f28e3, 'Haki Official Collection (Pre Sale) NFT', 'HAKI'), + (0x0e0224f6a6cb2f32210dcb9f59ebf3d10c78c909, 'Car 22 on the Grid', 'SWEDC'), + (0x0e075b87aad63920bdb5a0d4a07b2e026d106462, 'AO 2022 - 10s', 'DCL-AO2022-10S'), + (0x0e080eb5225c47c119e75fe657a5fa18a37e5b48, 'Bored Snowboarders', 'C'), + (0x0e09a037717e1d08f0bf22c0e36ace600085bca7, 'BDNFT3', 'BDNFT3'), + (0x0e128bd3f06339e688c90912bb2b67e63ebb1831, '[W]Hole', 'DCL-[W]HL'), + (0x0e135a34a943f87be76674bf16665ba3e2d650ef, 'Holy Rail Fam', 'DCL-HLYRLFM'), + (0x0e1605e46863b22c6531fa3eaa71e2d5c932784d, 'The Lodging Club', 'TLC'), + (0x0e183ef8072c2630e15909c1668a14455933e9b0, 'MrCannabisClub', 'MCC'), + (0x0e21b26834f23cf673e47a2b194091895cab0f4c, 'Son of a Biscuit Love', 'SBL'), + (0x0e3b30b7dba51a550c80bca50ed66c02df16df6f, 'Hammer Ape Studio', 'Ape'), + (0x0e40acabbb639e35aca1066ba9789cfa1903f912, 'Chubby APE', 'CAC'), + (0x0e496728c59a9ebf4426c55e840918ca7eddb03c, 'ChaosLoot', 'CHAOSLOOT'), + (0x0e5712a204429b5078171037d6aad378f48d677b, '2BarsCafe', '2B'), + (0x0e645324c3b78e50f9a9d1a993a37ccc07e82674, 'CoinChars', 'CC'), + (0x0e758897bfc2e02d03098542f33bc86b11d1f000, 'Official Bit Bang Beings', 'BIT'), + (0x0e7a099eecf77c0542202d4f16916259c7d7dc39, 'MyNFT', 'NFT'), + (0x0e82140880fb4cebcfc1579428d1549e79463969, 'WeirdBOXMAN', 'BB'), + (0x0e831ceb3d67f35072f1f794468284a85a2c767e, 'WonderBox', 'WonderBox'), + (0x0e859150ff9308b9a40cbaeb30b04b3d114257d8, 'Mr4Bet''s Hoodie', 'DCL-MR4BT''SHD'), + (0x0e87e1672d17aba8db2f1a1f957ca2fb34db66bd, 'NO WAR IN UKRAINE', 'no-war-in-ukraine-14170'), + (0x0e890236fd21276132de982c687b78035ef1f098, 'NFTMPRODMAR22', 'NPRODM22'), + (0x0e8e2b25bc26209be710f9e05ae58ffdad3676db, 'Anime Corps NFT', 'ACN'), + (0x0e95f044d219da0639b1531366181a504d673824, '[DEVELOPMENT] Ka Ha 357888', '[DEVELOPMENT] Ka Ha - Ed 030316'), + (0x0ea82851652086eaa36d2bd7aea5cd35df19d5ac, 'CipherShooters operator', 'CSO'), + (0x0eb02a69e281ab49b0504d1b57dfbaa5e74c2305, 'Pixel Art Asuki', 'PAA'), + (0x0eb7d3307b0b7953e4b0cc33448de71da1371c55, 'GEN-T46', 'GEN-T46'), + (0x0ec4ae26e3522079c752adbfc1b9d6ad2ad460a4, 'MetaApe Club', 'MetaApes'), + (0x0ecd2dfdcc04b0939711c7530cf58cccc1891e64, 'HAPPY STARS', 'HS'), + (0x0ed1e90876dd95f3a7499d3c4c3d44f0f93130fc, 'Monster Munchips', 'MMNFT'), + (0x0edc4796d2d610477d181e0afad91668acf1c1ed, 'Tokidoki NFT', 'C'), + (0x0ee0944bc47a6a865657de998cf62404e517f940, 'Plis', 'PLIS'), + (0x0ee28e262c420c8325f96760812f229bc142e5b6, 'Dickey Specials Reinvented', 'DKSR'), + (0x0ee7d6519a475a35e5c65dd0193dd1b9800e4db0, 'buongiornograzia', 'GRZ'), + (0x0ef379005487c9eb59f8bf95f6e2ad4748ede054, 'ZombieBitsons', 'ZOMBITS'), + (0x0ef4ec1b8055f847ea0cfed398e391dfdef5d7c2, 'MonkeyGalleryNFT', 'MGN'), + (0x0f0293b0976c076eb0dd8e81cb9dde1366fe7d77, 'NestedNFT', 'NESTED'), + (0x0f04884c89e93b95064c6363a70692a3ba341510, 'EZYMETAVERSE NFT', 'EZYNFT'), + (0x0f05d6899686a0bb927b93739ae124ea25e6224c, 'DogMan X DCLDating Mecha Dog', 'DCL-DGMNXDCLDTNGMCHDG'), + (0x0f0ff89895e9e3b41745bfa78eaefbd837040a89, 'LANDERS PIXEL', 'LANDERS'), + (0x0f134689b14b9b5f19922af2b7bb13b82c2b02a5, 'BullsandBearsWhaleCollection', 'WHALE'), + (0x0f176afa03ee82945d85f4d3b6f550d33c517a93, 'SnowGoonz', 'SGZ'), + (0x0f1ad270ccd1b52b58ff96770204fcf9d5ee2005, 'InterestingMans', 'ITM'), + (0x0f1df6043cf247bab7b1fa434cb6ace8e8c9e739, 'Polygoonz', 'PGoonz'), + (0x0f2e1aebf46937992796b63bb874e20493721d38, 'NFTPacks', 'NFTP'), + (0x0f321d725c96b8b086ed87b400ac92c17c08b796, 'Fumigene', 'FUMI'), + (0x0f34b44755a47c902d9a7876c287e0f085bec7e9, 'Terra Unending Genesis Library Cards', 'TUE'), + (0x0f424a0150e50f26b45aec0c3d6a2acb36e9a436, 'C5 Gallon Cowboy Hat', 'DCL-C5GLLNCWBYHT'), + (0x0f46017ab371a983a116ea995db633c667824f12, 'ShelliClub', 'SIC'), + (0x0f468766cc936e059a6f4cc8c9826f8958b67ce2, 'The Coldest Drop: Subjects', 'SUBJECTS'), + (0x0f48aa308bd22ce88d9a44ad2c6c9630c72c887a, 'My Fat Babiz Voucher', 'VOUCHER'), + (0x0f4e1419301a72efd2dc7580054cad7cc07ea64b, 'Witchbot', 'SWEDC'), + (0x0f4fe6c37424035bf2487043274ebf71497c0940, 'Wassie Capital Membership Pass', 'Wassie Capital Membership Pass'), + (0x0f50db74a3868931dde2d047f82f24f61bbd4732, 'LonelyTails', 'LTS'), + (0x0f5524f41a64529dc853f5dce434369ba4584353, 'Big Flex Drip', 'DCL-BGFLXDRP'), + (0x0f5c6153a08f40434aee9b3fbe6d5872e0e28c9e, 'Xeno Infinity Official', 'XENO'), + (0x0f5f7c853ffb86150e5275d01e2264778abea84d, 'Tanks Lovers Club', 'TLC'), + (0x0f61ce455336a9af507c93975f4fbcd29a22d113, 'JASA', 'EGI'), + (0x0f62008e068aa22f0307e5a2b68e9d46e7499b8a, 'GEN-T11', 'GEN-T11'), + (0x0f69fe8d4dd2213f07d8c0c2411e71277113fae9, 'Sappy_Spirits_Society_NFT', 'SSSNFT'), + (0x0f6bb78032758d121345ca4a38d2fbebbf52c9a3, 'Vikings', 'VIK'), + (0x0f6d01ea6cf03106716230675ac3020bcf545971, 'Peace NFT', 'PNFT'), + (0x0f6d43cd5ca6465b8cc8c1dfbd5ee824ab564ceb, 'Mutant Shiba Club', 'MSC'), + (0x0f75d4ce8881d4ac78e57be953d736f0c20b2b65, 'METAYUNI 2', 'MYUN'), + (0x0f781a26062fd70c67f111443f7eda6111ad8e81, 'MinistryOfSillyFaces', 'MSF'), + (0x0f84a2a2842ebeefce03ed22bf0b1dbdbfaead2f, 'The NFT University', 'TNU'), + (0x0f859094000012b95de8cfe72e1a59d85bc9461f, 'The Unique Punks', 'TheUniquePunks'), + (0x0f85a46e80b13a617408c246c55e7f459af63532, 'RtistiqPhysical', 'RQTP'), + (0x0f8a768344624c9c819e368202d3fb4bf9aa31df, 'contoh', 'contoh'), + (0x0f8c4e76c636bcc2928219d0eb2f526b820a9576, 'Amazing Luchadores', 'ALDM'), + (0x0f98d3e83e98fe82469460822bb045b82125a69f, 'Cyber Mobster: Boss', 'SWEDC'), + (0x0f9af1d71e855f2fd2e80f3cd07859616a5ef410, 'Azuki Fire', 'AZUFIRE'), + (0x0f9b3365b4bbd8f6594fc21f2ca652054bc06760, 'Codename : Spaceman', 'COS'), + (0x0f9e6f5453625d5d3f5bf944908f5c309a681af9, 'gerrrfggfr', 'CB'), + (0x0fa03f3f6b44e996583ef8d5295fc41967520cde, 'Zompop', 'SWEDC'), + (0x0fac55a7414f35a5ca35e2e84795d5c372d0db03, 'PMX Players Access', 'KEY'), + (0x0fac93dd2228de6881baadcc93335dc3a6ffbc62, 'Ribbo', 'RBN'), + (0x0fb76c214f110ba7491ec4f959bee81f7bb1be05, 'The Bored Baby Ape Clan', 'TBBAC'), + (0x0fb7fa4b3726434f7c78d2390dfd70bfb22fdc54, 'joker-deep', 'JKN'), + (0x0fb809a2b1587b66236ee55bb78ea17703f452e2, 'GEN-L06', 'GEN-L06'), + (0x0fb9f65a874aebc77f761e29c7434c4f2c6374e1, 'Crypto Kids', 'KIDS'), + (0x0fba4dc343395f3a35fccb322f2f6bc03508c780, 'Sweet Drumstick', 'SWEDC'), + (0x0fc9cb150d735e3f6f7d87bdf1e116b8633b4c1a, 'Los Muertos', 'Los'), + (0x0fc9d7254a08d7b41b6ab561b46cab4504832cd3, 'Rangmar`s Bone Fighter', 'RBF'), + (0x0fd3d35c4536134e48a6bc05558b8d870878e119, 'ElementSpringMysteryBox', 'Element Spring Mystery Box'), + (0x0fd87697d5ce60cd22dc2c860bf6cc1a5cc26b81, 'HypedApe', 'HANFT'), + (0x0fe18dd6f025882712a13583ab0903e326d047d9, 'xDai Tigers - Cosmonauts', 'DCL-XDTGRS-CSMNTS'), + (0x0fe3272decdc45b79736db9b730e459899bdbd25, 'The Sevens Genisis Collection', 'DCL-THSVNSGNSSCLLCTN'), + (0x0ff4ecf1ea33d9e2754deb259947b50fc5a8be44, 'SpaceCubes', 'CUBE'), + (0x0ffa3323827c5700b235be40bcb700abc81cff32, 'Sweet Pumpkin', 'SWEDC'), + (0x0ffa97a13a8c342259619ee06e3320a6bd55c0d5, 'Stoney Collection', 'DCL-STNYCLLCTN'), + (0x0fff7f99d2b32849848e31cb48090c5268e06f65, 'NestedNFT', 'NESTED'), + (0x10014a10fd228d23156c206245c0bbdef20b2ee7, 'Brainbot #79 Ya-C', 'SWEDC'), + (0x1008eba96be5c67fa41a974cd1b8557030f453ea, 'K-9_Crew_Collection', 'K9C'), + (0x100b59f6017b3195c2a5e0e66e92a3abf0c254b4, 'Crypto Deer Club', 'CDC'), + (0x1010900618c0706a5ba1003bcf0be05bf1f9cf19, 'Fairy Little Waifumon', 'DCL-FRYLTTLWFMN'), + (0x1013e797307a1925e8fcab2619a66999285bd22b, 'Cozy Foxes', 'CF'), + (0x10157ee092c874ccacdb72ab4b7db0206e2119da, 'Bulbheads by Durart', 'DCL-BLBHDSBYDRRT'), + (0x1018692d09c611f6c5f95f3eaf9d619d0fa56928, 'BLACK WIDOWS', 'DCL-BLACKWIDOWS'), + (0x101f66385bbf565bf4484aeeda5afdad8c2580ac, 'Collection', 'c'), + (0x1024a374dffd09614429ba409e55df4b13621284, 'MetaWear x MrDingha', 'DCL-MTWRXMRDNGH'), + (0x1026a4c0aa02999fc33898555848ed7f6d0017c2, 'GET Reputational Brander', 'GET importerRep'), + (0x102923ddeeb419fcb66b7dc0153349308483248b, 'Decentrealm_Dwarf_Character', 'DRC'), + (0x102a4f239be04c4af8d067f5cafa599c5a815c30, 'CoolPetCats', 'CPC'), + (0x10311deb1ea3f7adce2c97622ed297321ffe56aa, 'Synergy of Serra - Bagni Mask', 'DCL-SYNRGYFSRR-BGNMSK'), + (0x1039600f4d73fb30e08c569e1096109bab1fd514, 'EGG', 'EGG'), + (0x103f90b11e0ecf4acc167c31c27eab831b363bd0, 'ShibaPunks', 'SHP'), + (0x1042b82e5242947272e24798ac7b71f2f55c474a, 'BERCULLA', 'BC'), + (0x1042e36304013668eec3def67df9719be2a2913b, 'Hipster''s backpack', 'DCL-HPSTR''SBCKPCK'), + (0x10463625ae4e5e3158ceb36ad458faa4642ef1cc, 'Crypto Jesus Collection', 'CJC'), + (0x104ba1c2f7dfb638c1b0cb3838ad9ab704e6c74f, 'Denver, CO Gold Edition', 'SWEDC'), + (0x104cf9fcb375af382bb8e3e5956ad78c96963ba5, 'Swivel Mainnet Launch Key', 'Swivel Mainnet Launch Key'), + (0x104f595c9bac3398cc8e608789ebe123f7504146, 'Edu', 'Ed'), + (0x1050b92750bd854df9fb76e5143aa2a24cd114f1, 'Drippy Bears Society', 'DBS'), + (0x105d3d401ef6277aa151ed6b6a0cae56ea2a248b, 'We Own Sea | W.O.S Club NFT', 'WEO'), + (0x105e31a9e7058c2827cd56f84403f4f9cf1ff7e5, 'bone_headz', 'bonez'), + (0x1063e5ec4544a9d0dde313ce1ca1eea9604d1d05, 'Hog Mob Society', 'HMS'), + (0x1064f6c7dfbce9ac1851ff0dc71e25ed743a3607, 'I did it first! Meta Skate Drip!', 'DCL-IDDTFRST!MTSKTDRP!'), + (0x10657bc41e7f74c496e3f68b71b86dcaa3d60632, 'Bird Gang', 'DCL-BRDGNG'), + (0x106ef73e90459542bd4dc99beec5612082a99d86, 'LolliPoop', 'LOLLIPOOP'), + (0x107c132dc01ae3213778335cb194f205a8a59abe, 'Pioneer-Key', 'PK'), + (0x107c8750d6cb3ab721fdf27b3be707722e3197a1, 'Lazy Lions Gallery', 'LazyLionsG'), + (0x107eb30c1fe6d13c4ce679260f213b3a2f0d5b34, 'wegreherhrehre', 'Sneaker'), + (0x1080678a84e558f4a2ff52887deeed2ce42d6c00, 'MetaMen', 'MM'), + (0x108bb0e9b29996d6bfa4920c81a7ad9946d04ce4, 'Bad Punks', 'BPNFT'), + (0x108f7f134d73a2212b5029cd9cb939d4c1a75076, 'DROP_BY', 'DB'), + (0x1091adb899c73075af0e5742d2aa24fd35a7cefd, 'Doki Doll Face V1', 'DCL-DKDLLFCV1'), + (0x109440e0a0b37c0e2a17f91bdea42a8fb17663fb, 'CryptoEmpire Avatars', 'CRYPTOEMPIRE-AVATAR'), + (0x1099901774c74b0849575b621b7ddd24dd02ea3c, 'BusinessBuilders ChildrenEmployee', 'BBCE'), + (0x1099b916db28863657643b41a0bf58ac73bc9d44, 'Space Ladies PreSale Invite', 'SLI'), + (0x10a388c64f3d5fb5d22194b70ba4ecda66d2670a, 'Eggtastic', 'EE'), + (0x10a7ce55873bc32c692f7b2ddfa268741a64d7ee, 'PixelDoodleApeClub', 'PDAC'), + (0x10a8408440de69a1e54d1958b98196e1979c61c0, 'The Snowgoonz', 'TSGZ'), + (0x10aa1c5fb1cda86723042d34650f933383fc37b1, 'The Crazy Pixel Apes', 'TCPA'), + (0x10ab15965bd65387fbfada0af2c4b631dc504142, 'WeirdFoundersLabBadges', 'WFLB'), + (0x10b444f2df40387eab18522b3a3dfdc268d0fde0, 'Teoría de la evolución culinaria por Ferran Adrià', 'EBFTEC'), + (0x10b4c7152f71442eb1fee8fa0b6e4041b4ed62ae, 'Punks of Galaxy', 'GP'), + (0x10b6838f191ecef7dc706cb068912c1e98745cff, 'RBX-4000', 'RBX'), + (0x10bb4b7c8228f2c1a393d1570b3d1cc69a5b83ad, '0x314A3C5A72632555d9806a2e79BcFa21704E15B6', 'XAC'), + (0x10c4555a15527806eb54b243f115e31f7aada466, 'Thief Fox', 'TF'), + (0x10ccf32a8e9dd989da20bb92b997e3d0d9eedae6, 'LIQUIDITY', 'LIQUIDITY'), + (0x10d0789a9786fcb458982ef707ad080c929438c6, 'BabyFloki BabyFloki BabyFloki BabyFloki BabyFloki BabyFloki BabyFloki', 'NFT'), + (0x10d5ce0bf4bd77f5f79ec770302fdfaaecbb3dc0, 'Fenix Armor', 'DCL-FNXARMR'), + (0x10d878643643793f928ceaeed862077621e12a66, '1970s Poster', 'SWEDC'), + (0x10dbd5ba6d38e69323a37946f772a2683e6ad41a, 'Miner Ape Pool Miner Ape Pool', 'MinerApe'), + (0x10dd063d16daf873741e469f9ef1384aedef1231, 'Egg Resistance', 'ER'), + (0x10e10221653adbf4769e2154d9e43395e7302c1d, 'Small Bros', 'Small Bros'), + (0x10e6eb4974841956c6f9ada4ab58277ff6ccc33c, 'mgnr', 'DCL-MGNR'), + (0x10e827a4420f39724fdc82c04c78b34423633b06, 'VAFFA_CELL_MYSTIC_NFT', 'VCMNFT'), + (0x10eefbc8e00578a4bd52d21c1ce653fea6c1edba, 'World of Woman Galaxy Polygon', 'WOW'), + (0x10fa0404fc0a6901550ad689334cbd676f25bf55, 'NFTs', 'NFT'), + (0x1103f4ea2e49a91cddb5149d2080187095501e45, 'Pandastic_Panda', 'PAPA'), + (0x1105daae2c88a3d80517f449b95efa6b60ca1efc, 'Mask Network Club', 'Mask Network Club'), + (0x110eb92dd8ed4739a72219b7958a74457cd893f1, 'UK Mayors Club', 'UKMAC'), + (0x11103776852623985dd56ddc8c2ca6eee4c80cef, 'Saiku Take Shrine NFT:Token', 'SAIKU TAKE'), + (0x11104d13488273cb7d63d0382329c97315464308, 'Fundacion Pequenos Pasos NFT', 'PEQP'), + (0x111fc2d0a12c15af58013584df58a0a805094dd3, 'meta boy nfts', 'MBN'), + (0x112721c13dd721a543a0c805791dceebdbaf308d, 'Cadena', 'CDX'), + (0x112b0bba9d0dae503655fd9000ff8579b39c40e3, 'Little Assistants', 'LA'), + (0x112ccc3c50b364d42c6969508ba0ec6ecee7c3ab, 'Black Label Wearables', 'DCL-BLCKLBLWRBLS'), + (0x11306268ba35ce1f82f951da716dad86c31c996e, 'Buy or Die', 'BODz'), + (0x11309e0cd831bea0550ab39a9c5a28bdb8ad1cc7, 'FrensPass', 'FrensPass'), + (0x1135813e408a98b49ab566424d843a3a1d01b390, 'Karafuru Gallery', 'KarafuruG'), + (0x1137a52e42aa5c26fcee4e90bebf4bb963ba79d9, 'Inspiration4', 'INSPIREFOURNFT'), + (0x113c3bd84aa7df7f0ca6abeac1df87ac5f84e2b7, 'MindFulls Official', 'MF'), + (0x113f7e55253020bdd83ec8728d1e02ff64004341, 'The Doodles Cats', 'DCATS'), + (0x11426158c6e2a16bdc100b2e122f41750608758f, 'uauc', 'uauc'), + (0x1147104624f32b26e5ee27fbcc8d38842a3dc70f, 'C-01 Collection 1', 'DCL-C-01CLLCTN1'), + (0x1147a151daa263516fa762558a7a50857efeb0e0, 'dscadsf', 'asdf'), + (0x114a32a198a6ff5d1d8a4767c750e5f413d88890, 'Meta Cat', 'C'), + (0x115035d249604f767ff6795827a4bba06b1c332c, 'Apes 3D Decentraland Wearables', 'DCL-APS3DDCNTRLNDWRBLS'), + (0x117af881ae5a53a3b9b2c2204b3d0374eecec3e6, 'KGNFT2', 'KGNFT2'), + (0x117eab0985745ec2116cdf0913fc8f20b0ed362b, 'DG Joker', 'DCL-DGJKR'), + (0x117fe14c1c6435530137a3cf8feb7ee27e2175cf, 'CrazyBeholder', 'CB'), + (0x118086be2a50074114c9a32035b2fc20f3a4770c, 'Moon_and_doge', 'Mad'), + (0x11837f7f9db32dec7ceb9da31a32a425b4d907e1, 'Crypt_O_Monsters', 'CM'), + (0x1184d0ce4bc8035d7216b0e6769ae32b3b79c48e, 'NFT Rockstarz', 'NFTRSZ'), + (0x11886e919b80da0cd5a31e9ea444625aa46e47fd, 'Penguin^S', 'PENG'), + (0x1189f60c076e6dc8054af9b9fd7104ec8527e558, 'GEN-L02', 'GEN-L02'), + (0x11912834e60c54346b8d70f98e7d139a9e38e5e0, 'BearDudeClub', 'BDC'), + (0x119323ccd190279f87b09810a101dcb6602018e7, 'NFTONCollection', 'BGS'), + (0x119326241516716b19d5744d2f9f61d5d93c1e74, 'Villagers of XOLO JRNY Club Official', 'XOLO'), + (0x11948dd8ed45c18df97552aaccfcfe8337a0a07c, 'WuTang Hens', 'WU'), + (0x1196a963ac192e11bedef219704eebc06e77a9c8, 'Virtualand', 'VRV'), + (0x11975e264ea9efdc2f0485322d5d66525419066a, 'KomodoodlesX', 'KDX'), + (0x11a2c8836012638e0457ba4dba352b55a0068894, 'GridZone Mask', 'GZM'), + (0x11a33631a5b5349af3f165d2b7901a4d67e561ad, 'camWETH MAI Vault', 'camWEMVT'), + (0x11b9120e9c2057b687da12ef4fba525a6b6b8eb1, 'Crypto Rich', 'DCL-CRYPTRCH'), + (0x11c4c04d26bcca06deb7fca83d7d4267d236dc21, 'Argentum Alpha #1M', 'AA#1M'), + (0x11e3c8a70871d6930b5051e790eb9c3d1378bd2c, 'Sneaker Heads', 'Sneaker Heads'), + (0x11e91311d64cad7f96227270db359b07d2f2dfa7, 'Crypto_Joker_Punks', 'JOK'), + (0x11f1b9ac41ac7670d9a386804787d0ea280a6356, 'block', 'BAKEOFF'), + (0x11f2d996ee079f1a8c77af461e3ff6ba2eda9fb3, 'PixelCube', 'PC'), + (0x120217eeb7848f87abe7496e42e2eeff0c82c57b, 'EPICBΞAST', 'EPICBΞAST'), + (0x1208c6c9f3f35c57ce0a9fd1bc0269ac8bc69e06, 'Jaguar Social Club', 'JSC'), + (0x120bcc58d0fcb24ca50d267dc52575339fe74228, 'El Paso, TX Pop Art Edition', 'SWEDC'), + (0x120cfcb0c5653d40c88e9210ac514ea67739a70a, 'Nike Bored Ape Yacht Club', 'NIKEKEKE'), + (0x1212ac97b302fb68a028f54d9ef4f64d81cf1078, 'Celestials', 'CELES'), + (0x1229599ed7803fc9c76faf1b415d236586e7fcca, 'Baby_monkeys', 'BMNK'), + (0x122cc40fd82e277193cc02e8df4a9dc84ceece93, 'Lottie', 'DCL-LTT'), + (0x123456789d16846f7f15b134892429fe20733529, 'Zero Squats', 'Squats'), + (0x123a5fb045c378c3a78ee02300405385760a4270, 'Digital Artworks Domatic', 'DAD'), + (0x123db7844eaf7da11d88cf1754945bbd020742ef, 'The Aquarium X MMAtv Collection', 'DCL-THAQRMXMMATVCLLCTN'), + (0x1247b137a89185c46ea0326b40cda4f6463aef33, 'PandaMATIC', 'PM'), + (0x12487c311448a669793e866c5bb4584608e75663, 'Wolfverse Full Moon #02', 'WOLFIE02'), + (0x124e1a32ffb516d9c927dffc49b58636d16ca119, 'Skusassdsdjhghfg', 'Skulisljsdsdshgdfal'), + (0x12526e4d226dca4fc570ab35e61f3623f5a4f955, 'Sangbejo', 'KEY'), + (0x1254bb35e5ddc57666f87e7f3abcf0c391024edf, 'Meh Sloths', 'MSTHS'), + (0x126cc73b7422a3c96741ad8e009e603a984b6a7c, 'Hog Mob Society', 'HMS'), + (0x1279f3cc6649c696fd4a92fb9ffdd029aaa278b1, 'Giraffe Tea Party', 'C'), + (0x128086f50cdb1317236cea78f703379ae07e1303, 'CryptoPhucks', 'PHUCK'), + (0x128597ee003b3388f44ffe964fd789a9b6a844ff, 'EyeDeeP Collection', 'EDP'), + (0x1286dad1da5233a63a5d55fcf9e834feb14e1d6d, 'Aquarium Hosts', 'DCL-AQRMHSTS'), + (0x1287cd43ec0212114de8c630dedd942c85307514, 'YesManVR Sexy Girls NFT', 'YESMANVR'), + (0x129acae9849e1db0bfa02d2b1807e99f7c1efe50, 'WorldPeaceNFTfolkboys', 'WPNFT'), + (0x129ce77b637a0b05eb0709abe05a25699e91782d, 'habsawee2', 'Baskerville'), + (0x12a2aae442be6ffdbd24bf6cbbfb66855cc0a6f5, 'MushroomsSeason', 'MS'), + (0x12a3ecd55de986fcb754cb2c9ddbc1de74df6c6b, 'PoisonToads', 'PSNTDS'), + (0x12be61be2c97bd8eaea52626b8dabcdb656e6dc2, '"Ring- Ring- Ring--" Spotted the Loop', 'NFTY'), + (0x12beea1289ec33b91c89846509312550e1e5ecf4, 'Billionaire Boss Bulls', 'Boss Bulls'), + (0x12c0cafb740dc26879a3db57db185c9f2475192f, 'CryptoChefs', 'CHEF'), + (0x12c2e56a2066b005713fa93af286e2e1dc9c3dbf, 'MUSE Headband S1', 'DCL-MUSEHDBNDS1'), + (0x12c428d1f38e4ad816a8691ad334943ff5356a2e, 'Kawaii Cool Cats', 'KCC'), + (0x12cd82095de051b8dd6010f8f4890d3e69cc5c44, 'FriedFlamingos', 'Fried'), + (0x12d5c30d773d1ea67607d8e080dd52aadcfed081, 'DragonPass', 'DPASS'), + (0x12d6b6b7d5e26fffb7aea9906ad8db22eb7f7481, 'MINT FOR UKRAINE', 'MUA'), + (0x12d90ffb1c660d917dfa52d2ed47365026965ed8, 'Thousand Brokers', 'THB'), + (0x12e2903d28555d39fe2ca7dd14285bb1a49a428b, 'Bit Whale Society', 'BWS'), + (0x12e30d6291511c3b1e609e706ae1bab2c0f8202f, 'Soldiers Society', 'SS'), + (0x12ede6d07be285b63f1b40810b4cbed074357b8d, 'Space Doodles NFTS', 'SpaceDNFTS'), + (0x12f4e9047b2e60ea96254531075e36f72e759771, 'Gooniez Social Club', 'Gooniez Social Club'), + (0x130260a62e352be358ac4061892341e87d1fee1c, 'Frontyard Baseball', 'FYB'), + (0x1305067cf45743aed22708ae1eb8add52e4878f4, 'Billionaire Ducks Club', 'BDC'), + (0x1306d694871ec48aa03dd36f384afa1605cce900, 'VroomVroom Model O', 'DCL-VRMVRMMDLO'), + (0x130a78c94546dee4d80be78b50f1df15dee12eb3, 'Rogue Fox Guild Collection', 'RFGC'), + (0x130cfcd3d22b4c5cf2cd99f0d1bc536e8a0da038, 'Azuki Skullhead Male', 'ASM'), + (0x130fbb538ba21ba8cf6219a1635c53f12e6b6900, 'Teenager SLow Loris', 'LORIS'), + (0x13166638ad246fc02cf2c264d1776aefc8431b76, 'Green Dragon', 'DCL-GRNDRGN'), + (0x131ad3a849ac41719de298f2c270365392e10fe2, 'PortabelloshroomFarmer', 'P'), + (0x131d6292729de1a8c02dd4f07030634ea168150f, 'AsianSpiralArts', 'ASP'), + (0x13204eb6551d4ab46443a2506c8c7042208fe866, 'March Madness 2022', 'Mar'), + (0x13206d9e8ce0dc5951509856c0d3588b5bd84f1a, 'LamboLanders', 'LLAND'), + (0x1337dee2a1449b17fcdd9506829a858e1aed7d8c, 'Gradient Symbols', 'Gadient Symbols'), + (0x133e5cfd68b4e85a1a23822eba5f05b60f0e11b9, 'LazyDogs', 'LD'), + (0x1345102a63b646716b90dca20a3eb56f46b7583b, 'Tres Leches Cake NFT Limited', '3LechesNFTL'), + (0x13473d78d158fb33ddfe5ec643f246d2c28d06d0, 'DIAMOND CRYTPO DUNKS', 'DCL-DIAMONDCRYTPODUNKS'), + (0x1347e8ea76ad253402ffa27007e593c409ddfe73, 'Rottweiler KING', 'ROTTK'), + (0x134ec8f40f9339578240fe3fdc28f070bb09e1e0, 'Creep Factory', 'CF'), + (0x13502ec4bf5211998ddce26c84f464460073f85f, 'MetaDoc Club', 'MDC'), + (0x1350b648a4a803f6e8f0275461c7dbc2850b6434, 'Crypto Rich Punk', 'RICH'), + (0x135de69e2c8a6f14f00dcf9c9e8d8120fbebef5a, '.hmn', 'HMN'), + (0x1368412108b086f64242cd9eec07a66ae8b287c4, 'Puma Punks', 'PPNK'), + (0x137c20246319302df1bdf3bb047befc95b071bfd, 'DODO New Year 2', 'DCL-DODONWYR2'), + (0x13827f0d808a9cb0170e8759d9453d2b4c0d402e, 'Digi NFT', 'DNFT'), + (0x138faa33b57ab385f5cbeb1e0dec82df4803f69c, 'KONGz Polygon', 'KONG'), + (0x13935ddb4bd229b41134754abe3023e69d94e3c0, 'YGG SEA Badge NFT', 'YSB'), + (0x139bae37f328261af9a67a681a7589f9163b55c8, 'Elegant Elephant Society', 'EES'), + (0x13abb7e2c5fcf8946ae667235ece446b5be049ac, 'WPNS', 'WPNS'), + (0x13bfc0967dd1315d698e45756da6f00d6954f205, 'Investalog', 'IVG'), + (0x13c35cafaf5ba930c7d11bb9ecf96535d8180be0, 'PixeLizard', 'PL'), + (0x13c577e5d72b56adc372f18449f7ea588a67a66a, 'GEN-H01', 'GEN-H01'), + (0x13d9db9788abe10ec880d016780f6ce08748ee13, 'Nuke Yog Sothoth', 'NYSNC'), + (0x13e119903fbac846fe7e76cf8f841a9d3b798ab0, 'Random Duck Society', 'RDS'), + (0x13e4305cdeed4f85ad74ccf27849f815da9798d7, 'CryptoBears', 'CB'), + (0x13ec29504d120a0ed2d06965e1f6fe6778bcb88e, 'Premium Bath Water', 'DCL-PRMMBTHWTR'), + (0x13ed7ec25c4862475f0da81607f6d58bd347ef8c, 'Baby Monkey World', 'BMW'), + (0x13f3ff896b1ea70c73f147965b4de371c753ee9c, 'Joker''s Lottery Bronze Edition 1', 'BE1'), + (0x13f90404c4b9bb0ce055f2dbff259a8c5b43e879, 'MEKU CANDY', 'MK'), + (0x13f98e51708951a96168ab8c3b5ff1f4b9cfb717, 'ExtrusionPunks', 'EP'), + (0x13fc425c8b9d61c25b46f47ebbd3b1b4e3fc1167, 'Dbilia', 'DBL'), + (0x13fdf09c89caf6c91496110ef048426251219112, 'Planet Headz', 'PHZNFT'), + (0x1414647219726d9abbd02ac69cc5e2ac734e4d59, 'PROJECT GUPI 0', 'GUPI'), + (0x1415f178fa9e4393f7b03a4561469753e5f9ae2c, 'Tokusatsu Rabbit', 'DCL-TKSTSRBBT'), + (0x141d8a900ee841f8f2e6bd8c4c1b7c89fd0fc56e, 'TerraVirtuaNFT', 'TVNFT'), + (0x142cd2c812d723fce5555ebdd51ae8a92d4ea7d3, 'QRishin', 'QR'), + (0x142d8c19ac4a8b37e40318ad8c30e3b0607e8f2e, 'Crypto Cunts NFT', 'CCNFT'), + (0x142fb90a2e87f1a0f42f2d7b1ecaf837b109b3b2, 'PolyApers', 'PolyApers'), + (0x143192d4b47f8021d3563c8462fd95baa264a42d, 'Garbage Friends Official', 'Trash'), + (0x143530dea74f16908beb5f1aeced31d3adf0ddd5, 'Memphis, TN Pop Art Edition', 'SWEDC'), + (0x143ba32499065b5f89c518d5b75a38f3529ce324, 'Sunflower Farmers Scarecrow', 'SFC'), + (0x143ecde6ff2a160f6089d898a0c3b064524054aa, 'BLKSHP', 'BLK'), + (0x144f941ceb55570e6e0065e756f9856846f2f42f, 'Skelebits', 'DCL-SKLBTS'), + (0x14505a4b84a63a4c661dff61efad370f0cb23d8f, 'Maple Aura', 'DCL-MPLAR'), + (0x1455fb2a8c61d80a0b5c2134d3841716e852b122, 'SUPREMAYE', 'MAYE'), + (0x14708c54b1a4d921ecb9e027bdf8a946f7059f36, 'Fancy Eyepieces', 'DCL-FNCYEYPCS'), + (0x147a5dcbdbd132d00c23a58d7e92d0a08425a9be, 'Reflections', 'Reflections'), + (0x147e40c2f7fe1ccca4f787a415050df8d240679d, 'Cool Lions Club', 'CLIONS'), + (0x147e51ad1096d158acebc42ef570ed81712a4bb2, 'PiDAY', 'PIDAY'), + (0x148282ca1df36112e4085c832d73d09f011f4c86, 'Rebel', 'RBL'), + (0x1483101e56e41ef3c58222a84ed350fa67294111, 'Crayz Galaxy Patatos', 'CGP'), + (0x148da2bbc4698a8537522245b81d9ca280f7cd92, 'NotSoCoolTeddy', 'NSCTED'), + (0x149830f20147fbecd1be89745368c2885a304b54, 'DragonLuck', 'DL'), + (0x149cd4f4316031b09da0ed49e457527d5fe3f809, 'Poly Tigers', 'PTIGERS'), + (0x149efea4c5331ad9c0fef1d8ccdf292b6ef284f5, 'JGNFT18', 'JGNFT18'), + (0x149fe5b35eff51da4be83ac51f1f34160f0c50cf, 'manananan', 'mana'), + (0x14a36ce6f98808f8dc7c5807e877cd345150a8a8, 'Wolffies', 'WLFFS'), + (0x14a637be7f1eb0a585a6448084d71e41eac347be, 'KERNEL', 'KER'), + (0x14a64266037e363aa5a9da98645a848c07cff716, 'Degen Assistance Shoes', 'DCL-DGNASSSTNCSHS'), + (0x14aa0c53fcfa227b888943cddac5aaa364b6fc71, 'Hashdemons', 'HDR'), + (0x14b6c80a2f4cfc1cc1d7c25a1b0d2037a59b5f99, 'Long hair don''t care', 'DCL-LNGHRDN''TCR'), + (0x14cd3948364da43c6a5c9e9141a0b9ab449106ae, 'Kangaroo Punch Club', 'Kangaroo'), + (0x14d7b0ee98a9fe3153dd9a4e5168586d7a495998, 'Undead Blocks', 'UB'), + (0x14d9517cdc07e7cd5167aa29c02b9172cae021c0, 'NFT Garden', 'NFTG'), + (0x14e0eee6ee8a83502131f3a528bae50eba9df180, 'Phantom Frens', 'PFNFT'), + (0x14e15e892a195a690b086d8e0454c1d052bd1f14, 'BobBots_1', 'BobBots'), + (0x14e5c036e57a8bda242ff35c9c2dd0580ab1bfe5, 'Al Cabones Official Polygon', 'ACBN'), + (0x14ec1c66f37acfb7466651ea15d21582ee6f9098, 'Pepapes', 'PEP'), + (0x14ecf9d9b5637ad62833ac2a3e488a0a5c8acc79, 'Neo & Tima', 'NETI'), + (0x14f2c3da0c170060ac93afe5a61d56f6c38d7b1b, 'Myrtle Beach, SC Silver Edition', 'SWEDC'), + (0x14f4dfbefdad13ae4e59e3363f765e6eb49698e6, 'Jacked Ape Club Official', 'JAC'), + (0x14f753d8d2572c55bb2e511def6d48f9538f8281, 'Unoriginal Punks', 'UNORG'), + (0x14fd762345ce3cca7cb8823355808cb18f0aa18d, 'Monobundle Developers', 'MBDev'), + (0x14feefac182652fac0658637e1797a75024771ad, 'CBRPunks V AlterEgo', 'CBRPVAE'), + (0x15217272df6abc8a3ebfb13c6525ba4e4dab4a21, 'BTTOY', 'BTTOY'), + (0x1522d3b0967cab6b3b899231de4577533e6cd60d, 'MAC', 'MAC1'), + (0x153521fcfba5f3901a103d4cc616634563e74b3b, 'habsawee2', 'OMNI'), + (0x1535b1d08c3f5af965373cae80cf1bd2ff8cf873, 'Oasis Man', 'OAS'), + (0x1538ca6e3528e21b6b2e69217a5c4cf91b297087, 'SlothWithLove', 'SWL'), + (0x153b5a68969b3eff2fe44062f678bbbf36ddfc8f, 'Panda Pass', 'PAS'), + (0x15429d4e952b2f6fb92f10faa2da405db5566fe4, 'Greedy Turtle', 'GT'), + (0x15559ee1bde926b1bbc6dc6f4f86aea0e212607d, 'NFTs', 'NFT'), + (0x1555af9c4efa0c3acc2be530861b835bc7643c3f, 'Mushroom Lady NFT''s', 'MLNFT'), + (0x1568fbd1a14746924d91c953a786ea0ceb8a010f, 'J2LS Cyber Droid', 'DCL-J2LSCYBRDRD'), + (0x156961d23d57c4a3136a1f3afcb5a94f8d4cefa9, 'WeirdDucksClub', 'WDC'), + (0x156a026b2bfa173a8f82fb67d131cb98ba542602, 'Digital factory', 'DCL-DGTLFCTRY'), + (0x156a1756cfe2224ac091918ddc7f3e64b97600d1, 'Ugly Birdz', 'UBNFT'), + (0x156c587002db50f8a523acd6e21523e377f5bfd0, 'Street Pups Club', 'SPC'), + (0x15706974e6e5f2376a1241d5d3d040fe071f0519, 'Milionario Com NFT', 'MCN'), + (0x1576b49963da2bc169126dfd31ff15cc1f1dc0f4, 'AdamPunks', 'ADAM'), + (0x1587054431588c18d2520b5d6b0f3a7260af7ea5, 'CryptoRGBs', 'cRGB'), + (0x15966ada4c4a2735fe18b570872651c27750efbe, 'The WILLY', 'WILLY'), + (0x15994aec5c4d381d93fe63d467c47af7979100d7, 'NOT A DAO', 'NAD'), + (0x15a1ef9f05fc037cc140a10568fbe8cfe5a271a4, 'My First Collection NFT Matic', 'MFCNM'), + (0x15ad1d35cc43d5ef37727671fd4be066c4ab1e18, 'CrazyCrypto', 'CC'), + (0x15b374cdb7a71029b7751e2ea73265a03d39aeb8, 'Eddaverse', 'EDDAVERSE'), + (0x15bebf78e9c591681a4ad9fca5550b0e36b4d07c, 'Toe Jamz', 'TJAMZ'), + (0x15c4a4a7b09d485d7b14f1451bbc424628f79cf6, 'Saudi Woman', 'DCL-SDWMN'), + (0x15cc3ca86b844b443ce8c604cbb647d087418f82, 'Rebel', 'RBL'), + (0x15cd1645ab814593da1765336c51878c781d2012, '[DEVELOPMENT] Fl Ne2022-03-14T16:21:30.064Z 222129', '[DEVELOPMENT] Fl Ne2022-03-14T16:2'), + (0x15cd96970061e11d91cccdf7b87d223fd4807ff4, 'Ape Runners Official Polygon', 'AR'), + (0x15d23d864726a9540ea5995c8fb8f5e6c729ce48, 'Kleoverse Genesis Tokens #2', 'KLVRS-GNS-2'), + (0x15dce9e6892a174e730aeff13bb46ee45a2d878b, 'Apes of Space officiaI', 'AOS'), + (0x15df35574ca069694fa33d2443aab7992923ef83, 'NFT Knox', 'NFT KNOX'), + (0x15e5461d6bdfdf774ddd150a609e0079c455f160, 'Shiba Inu_Toby', 'BAKEOFF'), + (0x15e8397f5631ea7878e5dfdbe271a8b7e753cb3c, 'DeRace Love', 'derace'), + (0x15e9064bc16a1a59121556b5d99c1c5c288d9c51, 'AquaticWars', 'AQUA'), + (0x15ea432b7fa06fae9b603c775133b282507f4b0d, '0xAminoBoost', '0xBOOST'), + (0x15eee2bc3ffa769bfe9d1f77a2349804892cef9d, 'Cryptoiz LMO', 'CTZ'), + (0x15efdca31b8b19289079409c2ec9a4f3d7b51266, 'FastBoysClub', 'FBC'), + (0x15f3d9dcbeaa31907005be33c00a147419da1e32, 'fg', 'gh'), + (0x15fa03e6b483bf43044e4fefbb5250f7ee283a9f, 'WeirdGoats', 'WG'), + (0x15fc8cf01df524c465ea899d188cdf851fd09213, 'PhantaMutant Serum', 'PMS'), + (0x1603b71b1874be469d9223040934b713ddb1382a, 'Fangster Kevin', 'FNGK'), + (0x1607b7bf40b17f5cba1014c29cbe0173fdbf44f8, 'ASCIIINTERCONNECTEDPLANES', 'ASCIICP'), + (0x160fcc6595b0ad4801ab1f5cb9031b6fd51e44f0, 'CryptoOmikuji', 'OMKJ'), + (0x1619a9314b40b24f491899ba5af25544e57175eb, 'Pixel Ape Social Club', 'PASCOF'), + (0x161dc101ec5c13b5069e0b6fac10598b16301c64, 'DigiTomoe- ParcelParty x SknyLou', 'DCL-DGTM-PRCLPRTYXSKNYL'), + (0x1628fcce52a0d2c671fe828bea0102c76d27c73e, 'VroomVroom Model D', 'DCL-VRMVRMMDLD'), + (0x16292d7187d3284642ffc6e594942318280b660d, 'Persian Cats NFT', 'PCAT'), + (0x162d6ec8fd4b6bd87074c0fdefa465aa6164273e, 'Riot Racers Racetrack Land', 'RRRL'), + (0x162ef7ec1f871be174d3e2c977a20afbcbe3ed17, 'Polygon Forum Finisher', 'ptr-poly'), + (0x162f6f6ac7b2a2f359c99255fa19dc57f4d5498f, 'Tycoon Bears', 'BEARS'), + (0x163b6a2edae58b371bfc2d4ac10dd44ea51943a7, 'hot', 'MHD'), + (0x163e1a43b09e588089e7a8105398af20ef2c8868, 'Bored Imaginary Apes', 'BIA'), + (0x16408b98be88624911b348e02692c9225f36ea09, 'Stylish Birbs', 'SB'), + (0x1643f8210f4f66a860a1f841a5718ba4ada2efb4, 'MODA GOLD', 'DCL-MODAGOLD'), + (0x164e2436da14b00567d4043d8bf9b68e0e964f97, 'On Fire', 'DCL-ONFR'), + (0x1654b6dcd481cc76ea0188269a7a245e7ae3c08b, 'Funky Fungi - 8 Ball Fireball', 'DCL-FNKYFNG-8BLLFRBLL'), + (0x1664a79fe985e6262c3789688d6e74a58423b607, 'KyivPunks', 'KP'), + (0x167ae793f9a674531054c3f9631b130b91f89477, 'Metakay - Metaverse Festival', 'DCL-MTKY-MTVRSFSTVL'), + (0x167f00974066d7ff0916e9fff6aba8bcabce65ba, 'CHIBVERSE', 'CHIB NFT'), + (0x1680bc98c269a34d02c8271edc0a8fd9b2b22d2a, 'Bored Seal', 'BSEAL'), + (0x1680d4084f8bd58c96a9a8a9f910323bbddbbc72, 'TheCryptoCity', 'TCC'), + (0x1686574ded2b5733b124a317d375a2f8e1c8d319, 'ShoeFy', 'ShoeFy'), + (0x168c7737a2d117b8d1c902893a421ea4add50ff8, 'EMERGEPUNK', 'EMERGEPUNK'), + (0x169ac69003b8917a334f263b84f4ee13e65deb14, 'ESHU the Trickster', 'ESHU'), + (0x16a3e3df44ce53ba4e11dee803596797ebfdfdf5, 'Sannin''s Ninja OG Hat', 'DCL-SNNN''SNNJOGHT'), + (0x16a7a15b79417a13e86543ece377938f85dcb310, 'FMHeads', 'FMH'), + (0x16a8f4782b4b35e972d5e7ce818c97228f0490de, 'Sports Pass', 'SP'), + (0x16b558dd9eb6e057b8f0e7d146f1ddc567538ac9, 'Loot for Spark Era', 'LSE'), + (0x16b57a75d8ea2dc0283fe5dc11b4b3ca05cf96a2, 'ChainArtefactGreatsword', 'CAG'), + (0x16bbbdabe8003b7a0d71d9443bcaa180e67fbd47, 'TheOwnersClubTicket', 'TOCTIX'), + (0x16c3cfe4c455d7222b12497dc3bfa2b1cdd90a9d, 'Volcom Metaboard', 'MBRD'), + (0x16cb60be1b82b114319060d54e7150e4131933a1, 'BearGalaxy', 'BEGA'), + (0x16d2aaed76109f7192c4b2fe0dfdf2d74b04618e, 'lec', 'lec'), + (0x16e4d12e8531288ec8cb9a7b52f4399da59bebbd, 'Alpha Aliens', 'ALIENS'), + (0x16ee169ba6ca433b08774d2509d660614510c0b1, 'Eriks K', 'EJ'), + (0x16ee1ce53ee9ca211787c54ba2274a4380236008, 'Atlantic 10 Women''s Basketball Championship 2022', 'A10_WBB_2022'), + (0x16f950ee2fd775cf6213f61f43dca5cb624ae2a8, 'Doodles Gallery', 'DoodlesG'), + (0x16fb5c25682c8a2894f787b06360dacb39637964, 'Prueba2022U', 'P2022U'), + (0x1705348d3125ed5daa7236a19939e8133a13ab1a, 'HypeVision4K', 'Hype'), + (0x1718555fde0ee5c3cfafce91ff059e83f2868b3d, 'Goon Galaxy Batch #1', 'GG'), + (0x1722615f7649b21a4a2903f3e2e1ec7ae1b567a0, 'Undead Blocks', 'UB'), + (0x17245310a13a8139f652c9454107529edf49e523, 'Hashkey Capital', 'DCL-HSHKYCPTL'), + (0x1727ba12c89da1c6e2ff518df3ff28445c257c36, 'Kooky Canine Crew', 'KCC'), + (0x1735615ad0c4ad3b363316eb9b30a69a625a49b4, 'mfersNFTs', 'mfersNFTs'), + (0x1739595fd2fa4702bd1b451bf51916d13348fd54, 'Crypto Zombie', 'CryptoZombie'), + (0x173a252817b80fa4f49f46ac2ea5dc628d2c9153, 'Hedge Fund Hyenas', 'HFH'), + (0x173c0790799e1fb09425f95e70d8000655ab6854, 'CoinPoops', 'COINPOOPS'), + (0x1746a3089b8d6501b670dcc98af9337b4408ade0, '8 Bit Parrot', '8BPnft'), + (0x1747435cc4315005cd2e67ca5e7821c8b2b7fb75, 'Hog Mob Society', 'HMS'), + (0x174dbdbf2eb5fbea3db58bfc5e3a2b3c07133586, 'The Boring Stones', 'TBSNFT'), + (0x1751443e95b4b0f203e24d2bc540dbf0c1535474, 'Cipher pyramid club', 'CPC'), + (0x17552bd1455ec969d3609c02b41e1b79d6d9bac7, 'FunkyMH', 'FMH'), + (0x1755f660ff60eabe197b68bba35930acfba57c26, 'PixDucks', 'PD'), + (0x175d307859da4f21759a99287ac26d9e0e4da40f, 'OptimusArt', 'OART'), + (0x17607db76ba71500ebeea98ee21f346c92664408, 'SweetDinos', 'SWD'), + (0x1760d8f9043e3256a7b6a805a849a0f5f8c3a059, 'demoneyesv2', 'dmne'), + (0x1762e162f8cd1b77d6a8ea1ddf22c8d94be50638, 'CozyQuazy', 'CQ'), + (0x1763bd81087958c9fd458150d1313253199dd19d, 'Virtewel x WaltAdler 1st Collab', 'DCL-VRTWLXWLTADLR1STCLLB'), + (0x17641af5db5b490f165a1fde5bf9fa2fe1f7002d, 'Phantoms', 'Phantoms'), + (0x176d1d440bb41c3948e4e97ca19e586a90a07dc8, 'idf3 Wild Bunz Collection - Launch Wave 2022', 'idf3-WBC02'), + (0x177468a4f4914bf387e9e10fe7de751a5728f8e8, 'iNFTspace', 'iNFT'), + (0x17753db0eaf564b9d6b2716fd22429d0d439bace, 'Doge king DAOTess', 'Doge king DAOTess'), + (0x1790637c314c567177c9843deff012bdb50f73b8, 'Cosmic Dragon - "Proxima Fantasy V" Card #2', 'SWEDC'), + (0x17969f1b83477c8a7d5c2de8b7375366bf87f69d, 'GEN-B17', 'GEN-B17'), + (0x17996ea63c341d14b0675ff140870ba8cc9816b2, 'Collection', 'c'), + (0x179a7b96e7e160778b5c597df268f6a340d37e20, 'LazyGoat', 'LG'), + (0x17a57d15b750791a54537315a1ce400d7c03cd99, 'NakedVinnies', 'NVINI'), + (0x17a747ae542171da9ea3ecd651a1f6021a1ff8a5, 'Then Android', '620630fc41a18f46012548a5'), + (0x17a97ecf3171c1f3270e800e659c5410417b923b, 'New Haven, CT Pop Art Edition', 'SWEDC'), + (0x17abb572e46775e8290b95c9a2e52f79d09af5d9, 'Everyday Heroes: Doctor', 'SWEDC'), + (0x17aca69807eb4cec3db4beb21b61800647d5f2af, 'Chattanooga, TN Pop Art Edition', 'SWEDC'), + (0x17b400ca220d9b6f57fc88741a38d828a50b4974, 'NASDEX 721 NFT', 'NASDEX'), + (0x17bb5c3ace90e85a61b6d1d3116401201238c2b2, 'JEWELS OF META', 'C'), + (0x17c0491322e5afe72812156ab56f68d119bc0788, 'COLORS APE', 'CAPE'), + (0x17c360b88521607e69c55e18482c72f40af5a2ac, 'Wrapper:TerraVirtuaNFT', 'WTVNFT'), + (0x17cc437e62eadc561e47a6ab4440287a06cfabe7, 'Sugar Maple Characters', 'SGMPC'), + (0x17cc8ca6d7d30721bce419d3ac43d9f0b1e7fbe2, 'The CerealKillerz', 'DCL-THCRLKLLRZ'), + (0x17cff0e45eeb3d7e48b937c4e751dd548495c07d, 'Neon Party - by Cielo', 'DCL-NNPRTY-BYCL'), + (0x17d4f084781838eeaa0b890e4f15d472303a9e22, 'Lode Runner #1', 'LR1'), + (0x17d7c9f83254176618ca90d99db2e6f5209b062b, 'CryptoApesArtClub', 'CryptoApesArtClub'), + (0x17d85b0313c56012fc8e2cce0274899981435473, 'BitcoinPizzas', 'BP'), + (0x17db801b542d787a512958030938e214b5947aef, 'INFTY_ART_DYNAMIC', 'INFTY'), + (0x17dd5ece0ee7a28aac7b6213011c4a5f76e90933, 'GossApe Girl Collection 3', 'DCL-GSSAPGRLCLLCTN3'), + (0x17f292552677631e50acf58cb35170a56be5d438, 'Mana Knight', 'DCL-MNKNGHT'), + (0x17f8520f1c1b78b92d3d059210c2abf2c34b1656, 'Genesis Sliders Shoes FBRN', 'DCL-GNSSSLDRSSHSFBRN'), + (0x17f8c790cb5a4d42b584254e10f95d09b391b9af, 'buongiornograzia', 'BGRZ'), + (0x17f99b1bae522834418cf781db62a829ec452508, 'Boston, MA Silver Edition', 'SWEDC'), + (0x17fbb3590c163a293a90b1547855e21fdd836d97, 'Keronyan', 'KERO'), + (0x17fc40d5d892323687b2d69cede6f856d0c074c1, 'SYNTHETIC HUMANS', 'SYHU'), + (0x18052dfd2bf186c6aff670c9a22e7b573195d650, 'Duccos', 'DUCCOS'), + (0x18093b7e373b70a5c2abb7a28efdc294868698e9, 'DiddleDinos', 'DD'), + (0x180d7c06bc22c51a9ca21aba5c26a7b87424e19a, 'CryptoWorldCup2022', 'CWC2022'), + (0x180fe56efea7128ab619a0134145e2c1f8ec010f, 'Highness Crown', 'DCL-HGHNSSCRWN'), + (0x181223c2cc58cfd0e30527b0271076529731085f, 'Fractal Property Listing', 'FPL'), + (0x18200b049d6c92570e263f951ac2ba6fe2434054, 'CJO:Fighter', 'CJOF'), + (0x1828ef0fdc685ace059483663749a7026f021d96, 'Atomics Godly Vendetta', 'DCL-ATMCSGDLYVNDTT'), + (0x183031417953be6f4d982f9c3d792844eda155b3, 'Sea Creatures', 'DCL-SCRTRS'), + (0x1830a987ecdd19b23761fe5c25a8189ca10f5af3, 'Griftersbyxcopy', 'XCOPY'), + (0x18325672fca6689067e5e084095362eda35a1cd5, 'DDNFT2', 'DDNFT2'), + (0x18451f04401202763e63f72500e63682465b4b7b, 'Small Bros', 'SB'), + (0x184722bda034ff640bf39a74dcd8b3c89b17f4be, 'FoxDetective', 'FD'), + (0x184a5ab846be32c312bb2ea4359af6a6e178ff71, 'Hungry Baboons', 'HB'), + (0x184cc52581547f5da4eee4e9938ff14f3daf0c82, 'KGF', 'Killer GF'), + (0x184cfd5e555fe8928f15dab0df689d8728656e7a, 'Kitchen Punks', 'KPS'), + (0x184de1a11a055aeb564fa162a76335f6b3dd1b05, 'Digital Ape Club', 'DigitalAp'), + (0x185e2231ffe6f9e7e2711d3c194fa7201aef204d, 'Duction;', 'DT'), + (0x18625825d7f658dac3863abf05a0ddac35d1b219, 'Biologists of BARC', 'DCL-BLGSTSFBARC'), + (0x1862759b9ae74945af0f2adb9068c735ccfe561d, 'Frost Illusion Heavenscape Collection', 'FIHC'), + (0x18654aaab0af9b8d13afdc69783a446aeb618043, 'F VIN E', 'DCL-FVINE'), + (0x1871464f087db27823cff66aa88599aa4815ae95, 'Galaxy OAT', 'OAT'), + (0x1871496264fe272af3b1e0e3a2e77ce840a96716, 'Meta Party Fashion Week Glasses', 'DCL-MTPRTYFSHNWKGLSSS'), + (0x1877fe3b39b799636521b152513107bddbc74295, 'BoredParty - Clubbers', 'BPC'), + (0x187af1036dc581d4b5cc3a49019031e2c350411a, 'The Cause Wax Sealer: DogeBurn', 'TCWSDB'), + (0x18946292d41c596fbcd186a65c947ae74498869f, 'Wandernauts Official', 'WANDERNAUT'), + (0x1896a70846b061a788448b06938fbcf24db43ce7, 'joker-deep', 'JKN'), + (0x18987efa04a31c5bc82b21f3f9538f1cc7e011f2, 'Azuki Ape Social Club PolygonChain', 'AASCP'), + (0x18ae54723efd21634e0d495e33a6015e7a0ba107, 'Escape The Lab', 'ETL'), + (0x18b735a0fe4fa550c0233a233e5ed80922be0f6d, 'Mutant Doge Academy NFT OfficiaI', 'MUT'), + (0x18b7d408618ada60276627808a941e8cbf5290e0, 'Labs of Boa', '$LABS'), + (0x18b7fd52bd6baf1a6ad817966fca0b99b80e3e16, 'San Juan, PR Pop Art Edition', 'SWEDC'), + (0x18bdbd1b50a928eb35f88c31c2462c6f5c81cf39, 'FunnyFaces', 'FF'), + (0x18c5d5e778fcd9db00b4433697bd1fd01f3c91f7, 'Dino Planet', 'DP'), + (0x18d38b8b371008576a15f7a38ff246f9a8bc0e8b, 'Women From Venus Polygon Official', 'WFV'), + (0x18e8a94d208ebb22015016face128f2b8c258876, 'BLET NET', 'BBNET'), + (0x18f0ee00d8c21dc92b27c7acf3ca11430499a727, 'Funny Zombies Lovers Club', 'FZLC'), + (0x1901ad64cb34641123617c65ce1ab08d26e3e16f, 'INVADER OF MASK', 'made-by-lowzzy'), + (0x190368567d361a118a466d42048fcae320ab4aac, 'Mr.Hot dog', 'MHD'), + (0x190d662572c69ed53ac7d3b85770f78211306d3b, 'Classic Striped Shirts', 'DCL-CLSSCSTRPDSHRTS'), + (0x19149ac37cf915e4de9cf7799a2de695f2360d81, 'Project: Pigeon Card Packs', 'PACK'), + (0x19165d77fcf4c4fb9e5c265d93f99c547690b3f0, 'Bored Husky Kennel Club', 'BHKC'), + (0x191b9507c0321d223807c503bbbc798536f7cce4, 'CoolAye', 'C'), + (0x191ec0b739c02612c6505142d29519466e011875, 'Mystery Martian', 'MYN'), + (0x192810926f0028b6f265feaf22ec73a9f491cdf9, 'Fetish Punks', 'FP'), + (0x1929055309d46fa89eae91bae2653ab5299ad5b7, 'Rich Homie Gang Gang Accessories', 'DCL-RCHHMGNGGNGACCSSRS'), + (0x192e0386735b7743985af29c0c0da86425a7757f, 'MTNFT2', 'MTNFT2'), + (0x19302ec99e049624d89f51cd9392c4e7759814af, 'Genesis DSO', 'GDSO'), + (0x1933fe6a3f847cb06f8dffaca046807471dfe5b6, 'Tyler Rich "A Little Bit of You"', 'SWEDC'), + (0x19344d456c5ea35ae6ba6ed227759f72a04addf9, 'MONCHI', 'MONCHI'), + (0x194efdac9ce97225193bc399b457d2e75d53294d, 'Catzus Official', 'CATZUS'), + (0x1955ccbeb9cf1db1cef28a03edf826dcb3696841, 'GOLDMINE1221', 'GOLDMINE1221'), + (0x1966054afd34fab9f6ef5482c5098004583abe6c, 'Crypto Crochet Duckies', 'CCD'), + (0x1972c3f5647372060b6373e8c0ea95e5ff37e757, 'BoodleCrowns', 'BC'), + (0x1979f120cd7a6cb46e8fde7997a1d16887864e9e, 'FamiliarFaces', 'FAMFACES'), + (0x198b9fe691cd0af6ecd37756535089c1db274056, 'Baby Apes On Stroller Club', 'BASC'), + (0x19ad2b1f012349645c3173ea63f98948a2b43d27, 'SNS', 'SNS'), + (0x19b2163edbd22c476f9b5009fca13746f8ff1016, 'Crazy_bug_eyes_cat_club', 'CBECC'), + (0x19b31e3ac25a9c4827a16089d205bf1a581b0e11, 'Colors', 'COLORS'), + (0x19ba9e930c975d264a7989d18cfe5e92012927bc, 'casual friday', 'DCL-CSLFRDY'), + (0x19bf46d18dbc00aab0e963005102ad1e51d56a32, 'My Collection 7CfPlqb8IPwFPYUnFAbH', 'my-collection-7cfplqb8ipwfpyunfabh'), + (0x19cd2ea5bba6897c826115f8b59d62ec3df75f9a, 'Verilink Demo', 'DEMO'), + (0x19ce366dc098571170cff54758d89541f9318f8e, 'Mahak Charity', 'MAHAK'), + (0x19df959f438e562e9f1a192f18927aaf655aebdc, 'MFRM Token Backed NFT', 'mTBN'), + (0x19e25d9a486728e6414898b0a20c6bd9167b3a07, 'GEN-T23', 'GEN-T23'), + (0x19eb8a3ecd7e7e377e07de339c03c61931cfe543, 'Bored Ape Yacht Club-Tribute.Edition', 'C'), + (0x19ed22f59ac603f9f63339eff27cf6b199db269e, 'MCP Citizen', 'MCPC'), + (0x19f5329d08487259d742418ed5d6fa2de7651539, 'Shio Hashtag Queens Superhero', 'C'), + (0x1a096af43ec1636f9970c05c8087937cf2084e5d, 'ClassicCheetahYC', 'CCYC'), + (0x1a0a97ccf04e822716114b3f22fd44241a9d45bf, 'Queen Bee Collection', 'DCL-QNBCLLCTN'), + (0x1a0b4e0facd171d5e5ce3d1cda30624ead73a06b, 'Gas Station NFPs', 'NFP'), + (0x1a15330979cd273996c178a49bd810f593d5007c, 'GEN-H19', 'GEN-H19'), + (0x1a174d3b1d9a16e7b7a05faab51027b4217187a4, 'CryptoCatPunks', 'CryptoCat'), + (0x1a17ebd232f4089e15ff350414ec6d5d0f7b3921, 'Our Broken Planet', 'OBP'), + (0x1a1ca7e4a98ff2a1846ea81718b6a5474e7f442f, 'Risenode_Streaming', 'RSNFT'), + (0x1a1cad17a2bba84148b10833ed5f64e4177ed744, 'Anchorage, AK Pop Art Edition', 'SWEDC'), + (0x1a1d57d379478a723c38be52d4f61f31289756e4, 'Cars Inc', 'CARSINC'), + (0x1a1f3b5c1849683b9cdf4b0c35fe6e9a1af87062, 'LOLX™ MetaDrip for MetaVerse.', 'DCL-LOLX™MTDRPFRMTVRS.'), + (0x1a27fb22af7bd1195975cc218c478f3feeb5a772, 'Romario', 'RO'), + (0x1a2a555fcd601f20f9bad0b8888fe6ca0349dd8b, 'MetaZoo Intl. Boat Party', 'DCL-MTZINTL.BTPRTY'), + (0x1a3166927b74e5ba81d58cf6241fc22b8b792451, 'Cheeky Dingo Club', 'CDC'), + (0x1a331d2754bd9f146653b6111cced37cbe1fbed6, 'tridetch avatar', 'TAVA'), + (0x1a37fe2c54a7b81f5b7453257e871a60c30b4d68, 'É gol', 'EGLCN'), + (0x1a4943ea2e5d214d385dbb3017726d49ae373dd2, 'Delphi', 'NFT'), + (0x1a57b773bed4c6ab63980c067e439e8085e4b3d6, 'LUX Eyewear 1', 'DCL-LUXEYWR1'), + (0x1a597726c57df1360669b1a50162d6f4fbbe42db, 'PolygonApes', 'PAPES'), + (0x1a59c902ab3ebef09880caf5de53d53d5357dc98, 'BeatLoot', 'BEAT'), + (0x1a5d2ce1c8600eea67f66dc6cd14ccd4e3653bf1, 'Aleatorio', 'AL'), + (0x1a635b04e0224a2870e91d7b5e5888883c6cb2fc, 'Mara Grebenar', 'mara-grebenar'), + (0x1a708639da2e207c61dc04231ee2cb06df6be7bd, 'NKTrees Collection', 'NKT'), + (0x1a70a9c919811d3eb95835cb096f2bfe6ab7dad3, 'Argentum Alpha #20M', 'AA#20M'), + (0x1a7a1f6f6f310dd8d2b80245f82fdcfa267dfa11, 'PolygotchiUniverse', 'PCHI'), + (0x1a82b421518353eed26bd27b90306d270d3dbed3, 'Buho''s Barber Studio Membership', 'BUHOS'), + (0x1a97162e04684a0eaf4383e321b1e616e51b8399, 'My Fairytale Romance', 'PHFAIRYTALE'), + (0x1a9b1ff0253c2098b36cb2d95199f9884055b857, 'Enigma Zombies', 'EZ'), + (0x1aaa180d4c82aa7eacea1fae8b09bbb8174cbbf0, 'TrashPandazClub', 'PANDAZ'), + (0x1aac784616e4d1f6f3938ce29dded6860f4c1b85, 'APETOPUNKS', 'APEP'), + (0x1ab43527c3d6a48655c39a1460a43e0b5e86c5db, 'Poor Rich Boys', 'RichBoys'), + (0x1ab9c4f6797b4cc6ceef1198b3386f424a7bb65b, 'ASTROBOY', 'ATR'), + (0x1ac931a703a6c53670a05996a77534050f233a60, 'xx4bud', 'XX4'), + (0x1ac98be5dfa11ede70683fcfc364f284370ba334, 'Nike x Bored Ape Yacht Club', 'NIKExBAYC'), + (0x1ac9c10a6164fdbc64107a1ee50d8270ce569e8e, 'DATURIANS', 'DATU'), + (0x1ad1c0c3951e34a3b40ffa8587d57da55bc24731, 'CommsaurIslandsOG', 'COMMxISLN_OG'), + (0x1ad599c527f2fe7b6283bff95d441dd7aee85b3e, 'TheStripesNFT', 'TNFT'), + (0x1ad6f587cf2f956ce055574aba0af8e5c3728934, 'WorldPeaceNFTwargirls', 'WPNFT'), + (0x1aea06e166aaaba49c1f22d47ada97ecdb9d7e01, 'Cyborg Head Augmentation', 'DCL-CYBRGHDAGMNTTN'), + (0x1aeb7d9536193a3a25c74d462ec2dc88da9e50dd, 'Golfcraft Doki Hair Set', 'DCL-GLFCRFTDKHRST'), + (0x1af5f3b23d7e56e0be534142993fb4668eb47376, 'CartoonBoyzClub', 'CBC'), + (0x1af9d383111145a70e8ddcb25a6dbf84143190d3, 'DogeMaskNFTs', 'DMN'), + (0x1afbd5509d2ecbe7bf56d55560ece9f0f6fd26a9, 'Afaction', 'AFAC'), + (0x1afbdaf3a1e2e83d840ecbd5a563423dbe7546b5, 'RichCity Toronto', 'RICHTOR'), + (0x1afc77170c1aadff375e9e32d95c99c4d787abe2, 'Cyclops', 'Cyclops'), + (0x1b00ce661b0e0346c75d1b406ca94e9f1611ff90, 'Santas for Charity', 'SFC'), + (0x1b04af9a7ce387f6424cd9e055b27a9b68a22f06, 'Bored Matic Fox Club', 'BMFC'), + (0x1b05cbbf6f8218ead06fad59a54295711486d63b, '[DEVELOPMENT] Ka Ha XWPQTX', '[DEVELOPMENT] Ka Ha - Ed ZRWXPJ'), + (0x1b0cbfcbdb9c08dfb3a73784afba0c5044baf32b, 'Head Rockers Pixel Pass NFT', 'HRNFT'), + (0x1b0d21639ce154a704a12b42bd7fce2fd2ddc976, 'Buckethead', 'YYDS'), + (0x1b1401a407713ebd3cbb733d5f848ac87d3992d1, 'CyberOctopus Oracle', 'OCTOPUS'), + (0x1b1431345a5e7b67562aea6bb496b1957f0339be, '[DEVELOPMENT] Ro Ko2022-03-14T16:21:29.700Z 972865', '[DEVELOPMENT] Ro Ko2022-03-14T16:2'), + (0x1b175cdc339755e8f226cf517cb668cf22faef1e, 'MetaZombie', 'DCL-MTZMB'), + (0x1b18873c4d65af76d77d5dffa55cdef84f531d60, 'FashionCats', 'FC'), + (0x1b1b94975ff6b87013f20e2ff8fe0460e6b18b2b, 'Samsung 837X Collection', 'DCL-SMSNG837XCLLCTN'), + (0x1b1f33a9eef47565d195e1943845aac1777312b8, 'Jibaros', 'JIBARO'), + (0x1b2ef2fa531e1a420e57939bd304f0c0895bd00f, 'DreamyGeeks', 'Dreamy'), + (0x1b30f6bd2e6fac0d75754d850eafd13a725143fc, 'Putinity', 'PUTIN'), + (0x1b354a0d793028af4144bf8f967b73343b88ebf0, 'Gibbons Of Greatness Inspired Series 1', 'C'), + (0x1b377ee74a0140f0ff032d59d62679b074350b94, 'Pixel Pin', 'Pixel Pin'), + (0x1b37e2f89e6fdf51ce3a8b721b480ec6f736006e, 'Mahak Charity', 'Mahak'), + (0x1b3c70bcd5af8dcc32f054b99d0bc8580444b69a, 'M5NFT3', 'M5NFT3'), + (0x1b3ca06ead35fd7bf224011ce7758c4f5e005e38, 'Alpha Omega Nuke', 'AONR'), + (0x1b407cbabbfa1afe363c5167d149134e9ff6af71, 'FabulousFancyFishNFTV2', 'FFF V2'), + (0x1b4538f43997e1f2aadde515f65696fdff1cf714, 'CCC - GOLD - Drop #1', 'DCL-CCC-GOLD-DRP#1'), + (0x1b50ec9db9f01718622f7f1a91dbc34663a2815b, 'Aussie Bears Club', 'ABCNFT'), + (0x1b6199306ea2cb1e189834c5f758799e9e8e0870, 'Cartoon Guyz', 'Cartoon Guyz'), + (0x1b63aab12f6b5562a0388115243ef1aa54a4ab75, 'Meta Masks', 'DCL-MTMSKS'), + (0x1b6c61801f00390c6f8420d3cd77d9dcc60d1023, 'Whale Killer NFT', '$WKNFT'), + (0x1b70e35261ab06c5da7faff804237cfbcc6c6edc, 'MASKED APE SQUAD', 'MAS2'), + (0x1b7160dfcb8e479f5f51c7f8660a571f3061efce, 'leprechaun', 'GUR'), + (0x1b72ccc5ca8c93101c01a1869a670453f4ff6305, 'LOES Tarrafal', 'LOEST'), + (0x1b79e7e8e7b011f302b89256779eb54055934b45, 'GenesisPlayer', 'GP'), + (0x1b8024036d6386f7ffbd87c138c51592696a3c3e, 'Donold', 'Donold'), + (0x1b8163931d5b0f681e0db966dbb9e18e3d352f39, 'VipGirls', 'ARTC'), + (0x1b83bda60c41907c25510f7280662884fcb89d7d, 'BreadDogsChilll', 'BDC'), + (0x1b8afcbdb236482dc33984bddee3fd6f88869af9, 'SIMBAVERSE', 'SV'), + (0x1b994b8391ada517fcb649c67064216f70fc19c8, 'NFTapir Curations', 'TAPIRS'), + (0x1b9c167fa72b46fe85538a00ae7d9038f8533af7, 'africain women support', 'AWS'), + (0x1ba2dbfff35428104d9df6fa5f795521a1b01e60, 'Bedlam', 'BED'), + (0x1ba686c2f793fdf224db8e2478e93fb01408629b, 'GrimCat', 'Grim'), + (0x1bb2dc2dd779f397319efe3df417091998a3ca18, 'Panda Space Club', 'PSC'), + (0x1bbc2187a65f86fd7dee6d17d1bdb175308d5c63, 'Foot Heroes Club', 'FootHeroes'), + (0x1bbca92fc889af891e3b666aee7cb3534b83d7b7, 'BOTS OF COG', 'COG'), + (0x1bbccde92ef4c4455a57e66147cc7dda128d1b2a, 'Virginia Beach, VA Pop Art Edition', 'SWEDC'), + (0x1bbd6c49945b91a31942014f0279d788f9cc1962, 'Matic_Multiverse_of_Madness_Polygon_Politicians', 'MMPP'), + (0x1bc673caf772842d3d341430f3c83d6c5fcf30cd, 'Mustachioed', 'MUSTACHIOEDS'), + (0x1bc9ac58f871c357b4503b8be91efffba8f5646b, 'CRYPTOMOO', 'C'), + (0x1bca714188ea2703f3fd672b0012a199dce6ce62, 'Seabums Special Mints', 'Seabums Special Mint'), + (0x1bd80c6723c5fd44bfe2a8e88eaa6b8c09967084, 'Chibi-wa Chotto Baka', 'CHIBI'), + (0x1bdba7d8fcab20e53795f38db181b1c7e66490cf, 'Baby Ape Gang Official', 'BAG'), + (0x1be138098ae10892ef235c127e2c4dbd57586e4a, 'Prettie Girls! Red Collection', 'PGRED'), + (0x1bec3555dd07b05bd65fc8b808a7439a7481755a, 'Free Spirits NFT', 'FREES'), + (0x1bedf553e025cb56655fa1f03ac09a54aad93a79, 'CosmoLand', 'CLAND'), + (0x1bf7f7f7f06f628ddadc6990cc644ccc95a337e4, 'Rilla', 'Rilla'), + (0x1c0fcd4648767a37ed265e72dd4727ae0fba7463, 'Mountain Gorilla Crew', 'MGC'), + (0x1c119b7edb3b4a79fba0f537e3db688efa1cf618, 'Cactus Frens', 'CF'), + (0x1c16c474bf628866703f079f44fd54b7e9dae033, 'PunkHex', 'PH'), + (0x1c22fa9b915f9823b9ee78ba348381068229212d, 'TrustOS Miscelanea', 'TRUST'), + (0x1c2f44af2b182a520fa9d0e847d67c637a47c08c, 'Crypto_moon', 'CM'), + (0x1c32ad033aabf6c6917025485d7f5574eed4e207, 'TankKM Collections', 'TKM'), + (0x1c34e5de49ba971f5b33fe6cc0b70ab321c4c6c6, 'Tsukiverse', 'TSKV'), + (0x1c3657f238e9efd8e441aa212f1fc25188d4f3ed, 'Fireworksdesigner3', 'FD12'), + (0x1c37a4ff9e588deb21b8524d9c1f35e6f263d51d, 'Steak Rawars', 'SRS'), + (0x1c39de8135f9c824477291e1a9bc242f224fa5b6, 'Awesome Winged Shoes', 'DCL-AWSMWNGDSHS'), + (0x1c3a7319f05a512302649b90e8ac9de139e8823a, 'Web Safe Cups', 'WSC'), + (0x1c413a495a883b0fa9ec618419a6d1653b3d4ffa, 'BULLY COWS', 'BCOWS'), + (0x1c478665dbf905278ee6af63397ea470d8af7266, 'Skrantz FACE Fashion Grant', 'DCL-SKRNTZFACEFSHNGRNT'), + (0x1c59e4a0a542688bf3e0b17033cc0da9f0d79d3f, 'NFTs', 'NFT'), + (0x1c694dee097b8d463f4bbee4372c26ea59eb49a7, 'IOC GENESIS', 'DCL-IOCGENESIS'), + (0x1c6c3e76b0cfbf83e285211553953d093fcb8087, 'df', 'gh'), + (0x1c6e42f92e6474eccb5467be21ad2a50209e402c, 'iMining Wearables', 'DCL-MNNGWRBLS'), + (0x1c753ccc6752af315dda2744721b3fa3c881edc4, 'Oklahoma Set 2 Master', 'SWEDC'), + (0x1c755f85cdcca4356e7911e84f7796257f6e893a, 'Skull Basquiat Tribute', 'DCL-SKLLBSQTTRBT'), + (0x1c817bf929f43b18343f77f84e04a2d55ea1debc, 'The Backpacker', 'TBP'), + (0x1c85a6bdbf3b6630474078950c715b5869290d7d, 'ShePunks', 'SPK'), + (0x1c9572eebcffd1422ef7573229c4911a3dee7ea0, 'The Gang Of Funny Monkeys', 'NFT'), + (0x1c9ea1a30560445727f0c714dbac5f0102d57e54, 'Detroit, MI Pop Art Edition', 'SWEDC'), + (0x1ca42269d04cd0ecc576518d49b2a2e95606b31c, 'WAGDI Pass', 'WAGDI'), + (0x1ca8c6e2762313cc15c9d2d794cd5a2cc0627636, 'Nail Biters Club', 'NBC'), + (0x1ca9789d8bcd90f2552bc1bbfcc4e211df17c44a, 'Blood Brothas', 'BBNFT'), + (0x1cb547b2dad56df446db7f04f1624710cd1424b8, 'Cannaverse Club''s Polygon Trading Card - First Collection', 'Cannaverse'), + (0x1cbbd368f4d0ca396d31b73c06313d0011bcb94e, 'GEN-H20', 'GEN-H20'), + (0x1cbe42977415d0322a66fe543d0217f0820be648, 'Animal Spirits Collection', 'ASC'), + (0x1cc7d7cbe6a938683b635014b33b00efa442680c, 'Impostors Genesis Aliens Off', 'IGAO'), + (0x1cca9c9d9d0148ebeeb3b69522adec9c489df473, 'Crooked Colours', 'DCL-CRKDCLRS'), + (0x1ccfd720742577817d439bd49f014aba10d2b4e3, '[DEVELOPMENT] Ma Ne 068038', '[DEVELOPMENT] Ma Ne - Ed 886404'), + (0x1cd20ee2f013e05cb9b43108492114b08ffa18b8, 'HIGHDINOS', 'C'), + (0x1cd3244bbfc0a988b842c3441c4f035b6321e594, 'No Signal', 'DCL-NSGNL'), + (0x1ce655a7e67c3e88569d44a655c9f1dd3282b32c, 'KryptoGO x DemiVerse Lucky Bag 2022', 'KGLB'), + (0x1ce82c360fbe9f88d227780ee085eb41b5f10009, 'Party Samurai', 'DCL-PRTYSMR'), + (0x1cf67ce7e0a92eb28771b654f5b02e78fdc61bf2, 'I Stand With Ukraine', 'DCL-ISTNDWTHUKRN'), + (0x1cfc0ed41b51ebdb85b8a9b236204ed89d703d5b, 'Cable Monkeys', 'CableMonk'), + (0x1d0360bac7299c86ec8e99d0c1c9a95fefaf2a11, 'Gotchiverse REALM Parcel', 'REALM'), + (0x1d092f23761335e258ef8f3c2bf6bc1ff692c42f, 'WhatYourDiscord', 'WhatYourDisc'), + (0x1d0c131ca85ac90cc216a9d390321f53e5ce2246, 'Legends of Asians', 'Legends'), + (0x1d0db3329c1d41209934c6d0919cdbdef085f27e, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD01', 'MLPRC-HMB-C01'), + (0x1d1eb86d6f5f088b1d4d344c6ebb1d70c1b293d6, 'MatrixPunk', 'MP'), + (0x1d261a1fd620cb86827ca6662f3f9ba6b423c23b, 'Space Kids', 'SpaceKids'), + (0x1d2f295e9f9e62cf9a26d07ce071e922c0240f67, 'CryptoMonsters', 'MNSTRS'), + (0x1d332dfbd2255dad2d804732de734e768ee070d4, 'meow', 'meow'), + (0x1d33c213f12e4f5c996c4c91977b033f22287f40, 'AstagaDragon Official Collection', 'ASTD'), + (0x1d343e5be5055edd64e95cd339a8d864c1437fbe, 'Ghozali Land', 'GL'), + (0x1d369bbfba2047de626a35f98aae245cc8a5eff8, 'Pixel Relica', 'PRelica'), + (0x1d3885a48d440ef278fdd5bce20851b060eab733, 'GT Old School Raver Pants', 'DCL-GTOLDSCHLRVRPNTS'), + (0x1d3a7cbc123ba42dc21a2039265c43c6bcaf6128, 'ETHDenver2022Feb19', 'ETH4'), + (0x1d40e2a5978ad22e3e0e0bf7cb7522f9de33e9be, 'POlygon Ape World', 'PolyApe'), + (0x1d4c452f1d648d93c41b5950a580a5ea4934432d, 'SmileDetected13', 'SD13'), + (0x1d525ad45a9669ec0185da05a8a4ede413a53d79, 'leon', 'CSLC'), + (0x1d648954df7e728c0418bfba4b5b103ad813746e, 'RedCatTemplate', 'RCT'), + (0x1d6a7e9b55162cfe85c75df1b59f34ebc64f2bd9, 'RTFKT', 'DCL-RTFKT'), + (0x1d6ceda3f21d75d02f1c998164e155a9cd76a681, '#000', 'MAJ'), + (0x1d7099bdc6fe2d5f54b846c910122cde861a731e, 'CLTRVLTR // Genesis Collection', 'DCL-CLTRVLTR//GNSSCLLCTN'), + (0x1d73378988150d4f4b6d84442fa172ead3d50d8a, 'Cat Coin Yatch Club', 'CCYC'), + (0x1d74716262e1a4a526b5a339a1b86a480b1e4cbc, 'Rogue_Rabbits_Rarrible_V2', 'RRRv2'), + (0x1d7f2b0d94c8c53220546647208f31dd55a8a34e, 'RamenGuy', 'RG'), + (0x1d818e5973bd2e3be91b280d7e22091f9744b261, 'Carrot Rawars', 'CARS'), + (0x1d83f8665585720cc2e67645ca9dc477372c6079, 'LimitedRepublicLuckyCollection', 'LRLC'), + (0x1d8f2308ccd90c79fc238cdc9054cf341bf55b5b, 'Gerasu', 'Gru'), + (0x1d8fbf2e6ee2fd658d246c89989955822212c604, 'chilltertainers', 'CHLTR'), + (0x1d954f6ac5bb5ea95803d25632f2c7e8002ad010, 'Giraffe Big Party', 'GBP'), + (0x1d99fe01a67c390243f4157b09a5130be04796d4, 'KennysDead', 'KD'), + (0x1d9a3d4f9186caf5b756e1cc2bed0769ded82584, 'CryptoMonsters', 'MNSTRS'), + (0x1d9e8b282709bb373f6040c890f2311d1a809a9a, 'Wayable | RainBlow Weird Clothes', 'DCL-WYBL|RNBLWWRDCLTHS'), + (0x1d9f8a25ca4a64cc21bf2f9b1e8c202b1c4450ed, 'Pixel Store Fronts', 'PSF'), + (0x1db32169d7a74fa34e597cc1f64d13080e7d645e, 'Polygon Nft', 'PNF'), + (0x1db81e823a8a0d827728cb4b0a50d8c97b0a5f55, 'KoalaBear', 'KLB'), + (0x1db8e10fb046a5ff2cce78e1e33f9932fe3cca53, 'Karma', 'Karma'), + (0x1dbe1a52eafb7332260e5fc0156de9f40be10a77, 'MetaAngelsLoaned', 'MAL'), + (0x1dd7028a4f9947e3f0ddd79430c8f5205a15ee50, 'joker deep', 'JKN'), + (0x1ddff7c3dc1fd1109192c144ea9eed7540ec92ab, 'CryptoDuck', 'CD'), + (0x1de40e525a2d9811f2019ea429d13ef65994aa17, 'AVrtsNFT', 'AVRTS'), + (0x1de73892cea30c0a1e0a5a931ebe9929b797cfa5, 'UKRAINE FOR PEACE', 'PEACEMAKER'), + (0x1de8aeb6794dff0c76914e4a429a28a44ba056c5, 'TroglodyteSociety', 'TS'), + (0x1dea63646457a6ddc716169f89fa738c43c90ccb, 'Neon Reaper Rave Hair', 'DCL-NNRPRRVHR'), + (0x1decf9baeecd3197b3f6661910834a52afba841e, 'JGNFT3', 'JGNFT3'), + (0x1df8ceb8fb1f47b5d8fd689f7c8d9224b380341f, 'Leila Goncalves Azevedo - Povo Surui', 'Povo Surui'), + (0x1dfa70d440af50eb20400f151351826f0d2bb0b1, 'Ever Weapons', 'EVEWEAPONS'), + (0x1e11372d7a318c38cc0ace61d5f974409b3455b7, 'Roustan Skull Dove Top', 'DCL-RSTNSKLLDVTP'), + (0x1e1e14ee13dbebcb2dc62126ea54b97bb83dcced, 'MaskOn NFT Collection', 'MASKON'), + (0x1e210eac6c121c54756cf02cf9217d761836865b, 'Boson Protocol x Hogan', 'DCL-BSNPRTCLXHGN'), + (0x1e292d4e2d9afc4d29ca184b391e418b69028347, 'Drakons', 'DRKNS'), + (0x1e2b30879e6050b6480c3870ff1ba822e204bba6, 'PushinP', 'PEEP'), + (0x1e2bd692a831a5cc6ff138923537aee9f2b7c174, 'Peek-a-Boo', 'SWEDC'), + (0x1e2ed5d3fe9936d3baf9ac0d202bc36f673d9fac, 'PolyDwarves', 'POLYDWARVES'), + (0x1e2ef3ae3735fd42dba37ce51d072fddcf2bbc66, 'Contract Name', 'TIC'), + (0x1e301599123bbc907c3f01369d7a33642db318e8, 'Hunnys Royal Bunny', 'DCL-HNNYSRYLBNNY'), + (0x1e364a73938e32bf72178041b85295026476304c, 'AAPIX Store', 'APIX'), + (0x1e36e2b1153511eaf9d93ed20001bf1a4a97c0a1, 'WZ Ukraine charity collection', 'DCL-WZUKRNCHRTYCLLCTN'), + (0x1e3d0d395eb6f3d763feb0b1324b165ac498071a, 'Meta Smokers Cigarettes', 'DCL-MTSMKRSCGRTTS'), + (0x1e4068a6dbd56d706bdee27ad67e49c06ccc1a10, 'IndefiniteGames', 'IGI'), + (0x1e4b32090cbe5215632808d480ba9104429e4de4, 'Revolution Punks', 'RP'), + (0x1e515d8724db2e0cc2684b01bb4ffdd982264f00, 'Legends of Atlantis OfficiaI', 'lAO'), + (0x1e5320e0815d172daede13e04a28c9b77b232d39, 'CryptoTeckels', 'CTK'), + (0x1e56d3af7792464f984a70f0f784052bc1a05950, 'Lake Mermaids', 'LMPT'), + (0x1e5cd8966cb8e5dea6e43687fa1b065dae63d886, 'Bored Ape Club Comics', 'BACC'), + (0x1e778e51984ba798674d5d8fa21e10ce88204c79, 'Pong 4P', 'SWEDC'), + (0x1e80fab8ed55d9dc7be4173a6af30ae06cec8ae6, 'Sneaky Vampire Syndicate Ghost', 'SVS'), + (0x1e8ba0ec4a96e9c6b9f3db9d2e29db4ca244eb08, 'Cosmic chameleon battle team', 'CCBT'), + (0x1e8fae9b8d3e3fed1057d36b0ef3836bc2906085, 'Tarot Cards', 'TAROT'), + (0x1e97b6fdece4bc1e358ea1a34ab2a1064f6a33f2, 'Gold Fishin''', 'SWEDC'), + (0x1e9b593fee3a1886701da6b13fbe24797e76af77, 'AAA_Pass', 'AAA_Pass'), + (0x1e9d72c887f1b49a87007cb2dd1fd77b64cf111c, 'FantasticLand 2022-Kiko', 'DCL-FNTSTCLND2022-KK'), + (0x1ea016dcd53ba2ebe9dbd1c0418ff816b6ff9b25, 'Digi NFT', 'DNFT'), + (0x1eae378921b779a2a639a1d07b377de854c5a1c7, 'Anitta, Meet Larissa', 'SWEDC'), + (0x1eb9d72a34366b0af55bb0c9d69f9217b914c4e5, 'CoolBestWomanClan', 'CBWC'), + (0x1ebb0961c8de994027945720f37e95acf858142e, 'BruceLee', 'BL'), + (0x1ebd571ab22fe91b8f05fb88939d10a7086c50d0, 'Teddy Town', 'TTO'), + (0x1ec5b1a1e6e0feaf55e64307df53f211dae7f4bb, 'Felisians', 'FELISIANS'), + (0x1ecaaf5be8c3cbde12dbea06ac91f3f3ff7846d0, 'Dope Dogs NFT', 'DOPE'), + (0x1ed22059df698fd6e42cabc7459da786141dfd8b, 'Ramen Head Club', 'RAMEN'), + (0x1edd8405a5f4f4accedbeaac1e8cd4bfdb49a706, 'My Lil Rapper NFT', 'MLR'), + (0x1ee35508a1f5452e96f5e3c5b1e7a4f5ecb4eb2c, 'Legendary Location Pass', 'LLPS'), + (0x1ee4219ece0550928800453560147dda9615d86d, 'Bread Initiative', 'BI'), + (0x1ee96022aba7775f53107f83562f35cd60a852cd, 'C137', 'DCL-C137'), + (0x1eea0b8111aa151bd88e5f4ce383bc7197f12eed, 'Fun Aslan', 'TANK'), + (0x1eee7c246b93803196d70c4e3f277d5591953ce9, 'PARAZEN - Limited Edition Gear v.1', 'PZ-LEECA-V1'), + (0x1eefdd3e0f428c8bee7c7e7365357eae0939ef77, 'L.Skull', 'LotS'), + (0x1efc2167b0b1ba0c365e4c8f9dcedb46d3cc5781, 'Cleveland, OH Silver Edition', 'SWEDC'), + (0x1f024f5716b637fcb4d13b98ab36a9f43133168f, 'Genesis DSO', 'GDSO'), + (0x1f0aa72b980d65518e88841ba1da075bd43fa933, 'vGHST Mai Vault', 'vGMVT'), + (0x1f0b0bf1ccc27925373416f9fb2c19b8d808153a, 'Jungle Mania', 'JungleM'), + (0x1f0ca6bf76b525f595eff79af9b51f4b87b24027, 'beach', 'Beac'), + (0x1f0d0fea5b29c8adc44cb2a27e55a6b6fed254fd, 'Loveless City Discord Access Pass', 'LCDAP'), + (0x1f1f94a754d42c2a0718579a3f04e1b7470230b5, 'Crows Nest', 'DCL-CRWSNST'), + (0x1f349ce0131bdff72067123d2724b9c69675dbda, 'Dino Bros', 'DINO'), + (0x1f367a2162ac989057ce757a558b8a686348136e, 'Polygon Franken Punks', 'PFP'), + (0x1f36bf42bce6e5c61fda8760ed7fc0b10b18562c, 'Perfect days with you - collection', 'PAHN'), + (0x1f3d3008002a5675ec0c8e6c17a875c9ce2fb88b, 'Crazy_bug_eyes_cat_club', 'CBECC'), + (0x1f47fa0e085e5eb93cf22a2b24195e399e709332, 'TheHoomanClub', 'HC'), + (0x1f49c896e534d391ef02018d6454886352376f5a, 't242ERC721', 't242ERC721'), + (0x1f4ada368790b91172252b457d7b032a993d49f0, 'Skeleton Onesie', 'DCL-SKLTNONS'), + (0x1f4bef9db0af3e82fed7b40333fa7590ec216b12, 'Mutant Turtles Club', 'Turtles'), + (0x1f4e5b690a4b0e13dded4954869c28ecce1ea3fc, 'Kranion of Saiyans - Special Edition Classic Armour Warrior', 'SECAW'), + (0x1f4efc45d7e88d9d5d73ab9f6de8150dfd3d883d, 'BabyApeFriends', 'BAF'), + (0x1f502a3fe549ff1a411e1c2078d4c0f3c45bb51a, 'ChiZo', 'ChiZo'), + (0x1f52e13b490588f44581e6e5b2b67ff2418d86c0, 'Chubbeez', 'CHUB'), + (0x1f5567d9d3efa79c4b03beb42491344111efbdf5, 'WhelpsNFT', 'WLPS'), + (0x1f57e09838a5e3921830ecd7bd1608f01ef3fedf, 'Faceless Gentleman', 'FCGM'), + (0x1f66dd34cffd09769c2504f4dc960fd657614fb8, 'RisitasNFT', 'RIS'), + (0x1f74810ba986289d82c623847835591995f4941f, 'Tegridy Farms - Ice Collection', 'DCL-TGRDYFRMS-ICCLLCTN'), + (0x1f76935e34cfed74b52f4a045f895423b9b60f7e, '1980s Umpire Chair', 'SWEDC'), + (0x1f788b87435bc396b76243546c44b98062a352ea, 'WEDDING UPCYCLED', 'DCL-WEDDINGUPCYCLED'), + (0x1f7e1d94e0b9a8874db12d22dc2116e36c14a16c, 'The MetaFriends by DEVz', 'MFbyDEVzMATIC'), + (0x1f7f95186b09c4e0e6e89c98d07116d615739575, 'Otomenena', 'ON'), + (0x1f85edd6df06df3167ff08bfdcff508af44c2050, 'YearofTigers_YHBY', 'YHBY'), + (0x1f89ba83206710aacb1231dce4371e6b051d8096, 'NodeNationNFT', 'NNN'), + (0x1f8aedf30f4885566a4f3a1b7bf676b12f9d8ed1, 'MAPE', 'MAPE'), + (0x1fa629d909ccf412f99ab1c7d4dd2ec09b8190cc, 'Espresso Box Club', 'EBC'), + (0x1fb27248c07ee915119d9256ef5bb8836723904d, 'Kuharenko Sasha Birthday Token', 'KSBT(CXC)'), + (0x1fb7418f446e8ee46f03a01cebaf43dc7aab4e31, 'DEARRT', 'D'), + (0x1fbd8756887faab19c364ee9d869f311cf7d5ecc, 'DogeShibaNfts', 'DSN'), + (0x1fbf0230d0c925544bfbb33fcda074f87cbc69cb, 'Collection', 'c'), + (0x1fc7dfc3cc37995bd43e31d9503d467d18bca3e8, 'FancyEthereumClub', 'FANCY'), + (0x1fcffa33c040ba0673901fa9a6926b781f4d2edd, 'Flux Rats', 'FLXRT'), + (0x1fd34cc9a54100806c1525f2addf2c63ef329071, 'Tribe Quokka', 'TribeQu'), + (0x1fdd50476c6437f4e67403574e89ce8a3a3ddee1, 'NickMixed', 'NCMX'), + (0x1fdf03d2f36e40912b53edad3f4349bde8e1edef, 'Elon Metaverse Club', 'ElonMC'), + (0x1fdf97e5bee48893eef28116973ca81166e4ec02, 'Collab.Land Genesis Membership NFT', 'CLGM'), + (0x1fe4a6596595cc73a6aa1161bec6f4f25d7e4033, 'Girl & Octopus', 'G&O'), + (0x1fe5ab42e423b11d5680b1fdbff181b2c23cf399, 'Meases Cryptic Owl Masks', 'DCL-MSSCRYPTCOWLMSKS'), + (0x1ff8fd5342d272dee65271c53533449da2b2c44a, 'Baba Brave', 'BBRAVE'), + (0x1ff90613384955319a1e66d11319f743052ee1c0, '[DEVELOPMENT] Ma So 468437', '[DEVELOPMENT] Ma So - Ed 322911'), + (0x2006aeec65fadb3854a30c47f3e50027d1bb540f, 'Premium Selections', 'DCL-PRMMSLCTNS'), + (0x20162e2c2af0196e24e7e79b00cfada24110c9f5, 'Troll Game Casino', 'TROLLGAMECASINO'), + (0x20196e11dceab525c2708b8b43e904f62628b843, 'Sweet Flannel', 'SWEDC'), + (0x2024b10460d2c2ad3834d4f4c6978fe1ff981a5c, 'ANIMATED PUNKS SOCIETY', 'APS'), + (0x202dacb36004128ef0640662e75b9241eaccaa22, 'Hog Mob Society NFTs', 'HMS'), + (0x203410d64c1903c6311300849c5e482eed29712f, 'Tubby Alien', 'Tubby'), + (0x204a86fb59fa5a82ea1eb26bf1cfaba86db888cf, 'CLONE X - X TAKASHI MURAKAMI', 'clone-X'), + (0x2051983b815d847a8e3037eca29dafd1f1e92ad9, 'Ufomania''s Wizard Gear', 'DCL-UFMN''SWZRDGR'), + (0x2055244a719229d669488e389388f2d653a452f4, 'GET Protocol ticketFactory', 'getNFT'), + (0x2058a89e71463b4e4a45880066f89851107cc507, 'Fraternity Apes Party', 'Fraternity'), + (0x205b40b7a31e15c634e0ee15f67499c2b455e1e5, 'SurrealGirls', 'SURG'), + (0x205c6365a496ff16eac864b73ee26ba052811181, 'Meta Island Club', 'METAIC'), + (0x2060193dbdbdeb87a9df21b2dc1bd7b1165710e4, 'Bento Box Meowchi', 'SWEDC'), + (0x20641b1b34274c081b8fd817c77372cd12133bd7, 'PlanetWomen', 'PoW'), + (0x206ab22f8d8410fefff9b39fda384c7806aaf547, 'Weird Gallery', 'WeirdG'), + (0x206d3441ce23d0a80039d7d00d941b45a204b199, 'PolySmurfs', 'BERRY'), + (0x20769fc6932da30261134e43358b81faf7da2772, 'Crypto Arcade Town', 'C'), + (0x207861b5febcb4341c790b9beb1d357906fa0791, 'Maison Lycan Pink T-Shirt', 'DCL-MSNLYCNPNKT-SHRT'), + (0x2079413635c49beb1d6e4dc47ca2541f2d426b8d, 'WastedWarrior', 'WAW'), + (0x2097389da7dd64e237eb92fc5ceadcdcc03213d3, 'Green santa hat', 'DCL-GRNSNTHT'), + (0x20a33da0fa8f82adebfdbba19c24f8b9fcbdca66, 'Meta Warriors', 'MWarriors'), + (0x20aa56668640ea42c0ee3c6d7c70a85b64f5a3ad, 'Proboscic Monkey Club', 'PMC'), + (0x20ad6a01108ff5b54ea00abe4c5627ca640f9f5a, 'Playboy Legend', 'DCL-PLYBYLGND'), + (0x20b1b06e34bef2948e2094f1d07de9567049370e, 'pigirl', 'pigirl'), + (0x20b99200c6e130ab5ceb380cc7dc34c3afc85ba7, 'Shawar Kamees - Pink Waist Coat', 'DCL-SHWRKMS-PNKWSTCT'), + (0x20c2b7aff8008f16ffee36f2c95b56e205011a23, 'Dummy Animo', 'Dummy Animo'), + (0x20c51431c43f17f56b52dee27c1c1e7679578bd0, 'AtlasCorp Development', 'DCL-ATLSCRPDVLPMNT'), + (0x20c985f772927c31ede69e812543480ab2288b01, 'Glass Half Full - The Legendary Pixel', 'GHFTLP'), + (0x20cdd2f28541f9793af007587680cbbe3374d3a5, 'Cloudy City #5 - CNY 2022', 'DCL-CLDYCTY#5-CNY2022'), + (0x20d0adc4061d5bf923d5977e48871cd1fa64c2f5, 'PolyPudgyPenguins', 'PPPG'), + (0x20d0afb19724778c36c2881d769a4385a22bab0c, 'MesChain', 'MES'), + (0x20d1f0ba31b9206c367bc9a226d75e0b41ae1a7f, 'TheMafiaPunk', 'MPK'), + (0x20d9462eddb9e8085ac72ba57a5b296c175e0d0d, 'Lazy Seals', 'LS'), + (0x20db43f70d19c55e55a48a032da34fc879218082, 'International Women', 'IWA'), + (0x20dc97c0f2a9ccbb4fae7a005c4b27a2582b2840, 'The Cause Waxsealer Fight the Power', 'TCWSFTP'), + (0x20e8165515fe69b03be6012cdaa76c833af0e241, 'PipeFlare Pyro Collection', 'PYRO'), + (0x20e8a7f5ca260e90c4a483278eac1021d67df266, 'MaTigerix - The One', 'MATIGERIXTHEONE'), + (0x20f4e927fcf3bc81dbcfb31732d937d150d6ab8a, 'GreatVikings', 'GRT'), + (0x20f7ee691c36430925143c365847cfff8031399f, 'Squid Room', 'SRM'), + (0x20fc20ecfd0b7a8a441e73a6174cb1e050633b8b, 'XCOPYBAYC OFFICIAL', 'XBAYC'), + (0x2102e1e7334eb858a8d237c74df552de7fa1b5a3, 'PhoneyX', 'phoney'), + (0x21049e499b3fca45820f144e5e2a6cc99c7bc27f, 'DizzyAlien UFO', 'DCL-DZZYALNUFO'), + (0x2107a998c529b31658a6ad72488b872fd50be5ce, 'Dragon City 2022 Chinese New Year Carnival', 'Badge'), + (0x210cf28a18306e136eb0908ad68f14b6e1e756c6, 'Dojo Fish Wearables', 'DCL-DJFSHWRBLS'), + (0x210e74c878d96c4aa1e9cbaf32fe1950dee2ca53, 'Vatoms', 'VATOM'), + (0x211130652e8b21e9f6193b9707dd677ac26d623f, 'Bity Presidente', 'LENI'), + (0x211409e5c0030e92332538c571c0ba132be758fb, 'ColorfulSoccerBalls', 'COL'), + (0x211738699f78ce137e52c1d6b19698e1da088cbe, 'akhirngoti', 'akhirngoti'), + (0x211ba062e4c10520f1fea078c42f13a53bdf0e9f, 'sla', 'SLA'), + (0x212820c05e456c7054495c82169f914008452e0c, 'Drippy Fennec Club', 'C'), + (0x212836e2b45b51f9ee25c6859a09cee37ea54e0c, 'Meta Pet One', 'DCL-MTPTON'), + (0x212a72b79ee5ac2cc89681d323c4c2b296c3dca2, 'ContractSol', 'IO'), + (0x21381252ba13fce41dd0181eddbe48451da7388b, 'Bitblocks Gold', 'XGOLD'), + (0x213db03e6c710476dfa38ef382754baab08f93c7, 'Sweet Leaves', 'SWEDC'), + (0x214d6e8e8c56f75a833e216e5c72799dea2d89d2, 'AI_ART', 'AIART'), + (0x215131b4c65e4b5c23eb6b213ba89368dd9d107c, '[DEVELOPMENT] Th Ke2022-03-14T15:32:02.479Z 160359', '[DEVELOPMENT] Th Ke2022-03-14T15:3'), + (0x215babfdeaf7f35478164b0b2a232b15f5c61aff, 'New Crypto Heart collection 4', 'NCHC4'), + (0x2164b1f310fe175ad01763fdbc8aa4fce10c7ba2, 'RetroAlien', 'RA'), + (0x2168ea0845ce96544e288d2dec2010a914719966, 'Nike x Bored Ape Yacht Club', 'NikexBayc'), + (0x216f3f44001a6f8936d0e8a76ccfbbd6518c0729, 'vikinggarnft', 'TTKN'), + (0x2170a8226ad8afb634d17f1a23038c8eb17a5902, 'DISOBEYPUNKS', 'DOP'), + (0x217214251f8c52a2a73a95b1693a20d070c0a422, 'After Hours', 'AHRS'), + (0x2172bdd13277a3a7fd219fa7db9ca45d525a39ec, 'er', 'req'), + (0x21748c95703844bd270106d64cfb967748e103d2, 'Bored Bulldogs Club', 'BBDOGC'), + (0x217e5f6e879c103cc599e4fd1f06bcced9ee45c8, 'Pocket Goat Collection', 'DCL-PCKTGTCLLCTN'), + (0x217ec5306a3c0d9f3ae9a151259b146cafa24a0d, 'Rhythmical Meta Crew', 'DCL-RHYTHMCLMTCRW'), + (0x21983d48d8e4ccd13becf8b774cab9c5b1486c5e, 'Dallas, TX Pop Art Edition', 'SWEDC'), + (0x21a16fc49d1c6ba8d26b58bbb74fb81619bd3328, 'Nicki Nicole FW Collection 2022', 'DCL-NCKNCLFWCLLCTN2022'), + (0x21abd3f0cb1bcc8973c55b559eab8c6e2ad52ae5, 'MetaSkinz Christmas All Year', 'DCL-MTSKNZCHRSTMSALLYR'), + (0x21aef3d9937758f2cec7b402286b60f8687b3471, 'Damas De Mujico', 'DDM'), + (0x21b5523f9a7435b4f4f2de8ed7f5c8c54f8e6560, 'EMOJI SUPER MANA SPIDER-BLACK', 'DCL-EMOJISUPERMANASPIDER-BLACK'), + (0x21b5716685531b450e7488cb9ecf054f2a003abc, 'DinoX', 'DNX'), + (0x21b725cdb8f5ab2035908ba2095fa17a05180735, 'TenshiGirl Founders Run', 'TGFR'), + (0x21bcda256a8ae34d6265e62562bb8ff63ed5a087, 'Doge Shiba Pixel', 'DSBP'), + (0x21cfd4b23d58de8f7338cb6f44f63b62a2384f13, 'Mutant Shiba Club', 'MSC'), + (0x21d34d2b9529cf909919aae5c68d78196210bff4, 'Burds of the Colour Dimension', 'BOTCD'), + (0x21e0014c06082ccb2cb08601219a3c191e150196, 'Wagmi World', 'WagmiW'), + (0x21e5cdd1885d069960229d6c39b8aa941af10180, 'Seeing RED', 'C'), + (0x21e663d536d1f3a2d580c4b6bd0add5c19fdf88b, 'Apes 3D Backpack', 'DCL-APS3DBCKPCK'), + (0x21e82438fce529a6f9f565b35cf57bb65103d5a9, 'Oklahoma City, OK Pop Art Edition', 'SWEDC'), + (0x21ed62ce9bba7b1376a6094b17c36b5f0af647fa, 'New Stickers', 'NS'), + (0x21ed88e1e6aa4b69228238db69581b6fffffa28b, 'Naughty Teddies Club', 'Teddies'), + (0x21edb2f1bfef829ff04b08638a28cbf7671d401f, 'RZRblock Hackathon 2022', 'DCL-RZRBLCKHCKTHN2022'), + (0x21f5f8b46621cfa77d4f296a901cdb7afdbb6a18, 'Algebra Positions NFT-V1', 'ALGB-POS'), + (0x21f7e98ea2eb0084f89916daa362988de991083a, 'Crypto Bird Eggs', 'CBEGG'), + (0x21ffed46eb631672ede9ea00443b3a2fb3a129d4, 'TreeCrawllrExpedition', 'TCE'), + (0x220e474cf38d6001727efff4fc57f8821a55faff, 'Float Capital Gems', 'FCG'), + (0x22143a13692324c553564360bf1c9e44e70619d9, 'GEN-L03', 'GEN-L03'), + (0x22160237b20f80cb6ab26a37c5bca25ff45a3685, '只言片语', 'Words'), + (0x221d5fcc692d6fab19d0d0e7ce34e881e252b7cb, 'Baldie', 'C'), + (0x2221ffad98ebc5a7715d0de2b0fc31adbc72b1bc, 'Beta Pulsar NFT', 'BPULNFT'), + (0x22226ab52405594e74e080b72a66442baed9541e, 'HolyWaifu', 'HW'), + (0x222760770d7fb0bc944740c656bc329f7fa194aa, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD07', 'MLPRC-HMB-C07'), + (0x222deaa90399023e707abd3f81b268493bdc891a, 'TheDude', 'DCL-THDD'), + (0x222e2a549d75a787208ca65b910c26c32e0497e2, 'My Nft', 'Test'), + (0x22331b680817e87eb0f3f5e768bfd49f0be340ad, 'ARTEM Coin Rewards: Federico Chiesa NFT', 'ARTEM.RWRD'), + (0x223b6bbe1d3ac553162864b26c091368f6c492b4, 'Cyber Aussie Bears Club', 'CABC'), + (0x22475b19324ee80d8f7e746e8a151fe8d8d745e1, 'Metal Bobs', 'MEBO'), + (0x22488a98ec332448742dc5aacc5fcdb1fe01889f, 'XTIX EVENT FINANCED', 'inventory NFT'), + (0x225ea664e090a2caa0d81182a6b8e2d2ab791bcc, 'Unique One', 'UNE'), + (0x22638487bbf8e5ebca886cac753b07aa8ec01a89, 'Silly Rabbi', 'C'), + (0x226c74979e963cbde7b66144cc2793851d78e84c, 'Love My NFT', 'LUV'), + (0x227e3e889f0264876b7b637ef894fdd86c8314f2, 'Proper People', 'PP'), + (0x228281f7385f2353162d09bb66d05bc17aa7db13, 'Motvind', 'DCL-MTVND'), + (0x228438a32309e660ee89514cb5b7078a8ee53374, 'GEN-T02', 'GEN-T02'), + (0x2285bb040c6ac4d9f13b1023d9c80bfd527b6cf3, 'Zeni Mint Pass', 'ZMP'), + (0x22896e8f9a2b1d95cc1963ff3ef853f7a1dd65f3, 'AlmaredNFt', 'MNFT'), + (0x228a69ac8dd4cdbb8ef7dcd7740989665cfa0b38, 'CrazyCrypto', 'CC'), + (0x228da17043a9c8feb0981f4d25782cc7d302c869, 'Immortal Chess', 'Chess'), + (0x2293543244e3feeb106994d7e8dadcfdc64afc3c, 'Funky Cups', 'FCC'), + (0x229b41e9e17972e504148cff110f7600ec16f2a1, 'GEN-L17', 'GEN-L17'), + (0x22a5cf2799b5fe9e934f5bc207e6402c7558f063, 'Meta UFO', 'MUN'), + (0x22c1df687eb41e0743e03d80bf56c65812ebc3f1, 'TubbyChicks', 'TC'), + (0x22e47c91985f477a1e59f36171ae45a3db165ade, '2000s Umpire Chair', 'SWEDC'), + (0x22e4dd0f19ce95b644921c7f7825ae37393382aa, 'CuteePunk', 'CP'), + (0x22eeeb7f9956be5ffaeb98561e3052052f0d502c, 'XU Meditate Hoodie Noir', 'DCL-XUMDTTHDNR'), + (0x22f0b0609ee5859e6290e1512b596dd303557620, 'HappyHornets', 'HH'), + (0x22f396302d2f1dc8931e63583b9f8687a5c78b88, 'Dragon Baby', 'DRAGON'), + (0x22fc513fc8c44f444a33e39a7179cb39bacafd33, 'Threehe', 'THREEHE'), + (0x230232b30c8c109d3a4d1b1337e3e96ead08fc40, 'Nyoki Club Official', 'Club'), + (0x230267d4dd60ff49fc8f9e97c3ab4a9d0c831bb8, 'Skunk Club', 'SKUNK'), + (0x2302da56f3bd50966c8904939407e79f10ad795e, 'Nike Bored Ape Yacht Club', 'NIKEBAYC'), + (0x2303ab602d6e77f345ecfff137501503a0ec9c66, 'Bangers Anonymous Genesis', 'BAG'), + (0x2316b2f9cb8295fdf264f7842b15cdba0d5e3dca, 'Red NVLPE by 2426C', 'SWEDC'), + (0x231e9a191598b7eba9c374118c9abcf6d2ba41df, 'Pink Flamingo Social Club', 'PFSC'), + (0x2321ba8f60cc209c98a0fed805f9fc9c2bab5b01, 'Silver Cookie', 'cookie'), + (0x23265be4c0caac269b43d7caf7dadc6a62c261ce, 'Master City NFT', 'SWEDC'), + (0x232b7e9d52c19bbb6d3564145c9b04388cdc3bcd, 'Base Generic NFT', 'BGNFT'), + (0x233582b19c36e02b385cdf605e41ab9bb5bb9c45, 'Prince Black Dragon pet', 'DCL-PRNCBLCKDRGNPT'), + (0x2339deb234e3b29dcce717beb1a295d24ad800ec, 'Drag Skulls', 'DS'), + (0x2344b7b7ca2dff1ca57ecfcb0a751b133f0fa378, 'CypherSun', 'CSN'), + (0x234801828c1bf4a7877ce2026b4aae237c194fd2, '64 Bits', 'Bits'), + (0x235164985bb0a4fe6273babc6fac32cf8fb0b559, 'Buttheads Club v0 : #lookatmybutt', 'BHCX'), + (0x235d0fdb23b11c8605d161ed5f3ac5e808b3f24d, 'V7_Rich Polar Bear_Bronze', 'PRPBBV77'), + (0x235f313caf4f3e8c079013d538b0346e2e190645, 'NFL Helmet Madness', 'NFLHELMET'), + (0x236480037667a06adc43aaa544bfe5fe358e7cf0, 'Meta Trinity', 'MT'), + (0x2367a9ce1c54890c1cfa5786ee4f79b2f532499a, 'The HellPit', 'HP'), + (0x236a0b8f7759f99e5052c211f07bfc2fbb2d04fd, 'SynFutures 721 NFT', 'SynFutures NFT'), + (0x236ff2ccf706e7b49817960ac492d61f613c6aeb, 'PretyLoris', 'PLRS'), + (0x2371015f90f14b64f79e280577a7152a4797ff14, 'FilmrareCineplex Access Wearable', 'DCL-FLMRRCNPLXACCSSWRBL'), + (0x237708b3229067eece915a55c2045b2ef68a2565, 'WorldBuilderDAO - KURHA Genesis - OG Pass', 'KURHA'), + (0x237bfa7c9cc61efc29e667a5e89e3914ff8bb249, 'Minto', 'MNT'), + (0x23933e6ae994f46d95311abb7561104e8e84106a, 'MightyMini', 'MM'), + (0x23b76f1623c4d1314b7d6cf83fc5fc7b881bfd50, 'Pittsburgh, PA Silver Edition', 'SWEDC'), + (0x23c54ac322cba66eddcf95c5697b53fc3a8a608c, 'Lowriders', 'LOWRIDER'), + (0x23c7a7e14f92a4f76a4dbca2410ebfddb9691168, 'Giba', 'GIBA'), + (0x23cb1d39e55aa8ab3893ef69cc9e01a3783e893a, 'Etherlands', 'DEED'), + (0x23cb55abd000d185782c7c8d960805b90002a8f9, 'The Fabricant Exclusive', 'DCL-THFBRCNTEXCLSV'), + (0x23cba08143cc2293c1bfc7814417edceaf161d0a, 'ticking', 'T.'), + (0x23d3c5b1d9e6727b6e49547155d3bf88e9b79cf6, 'Smallnaut', 'SMLNT'), + (0x23de4cb6a702caef60579b0e1acde3de2dad6fbf, 'Catbert Abstract', 'CATA'), + (0x23ec6017d07a31ea0c6e185ad9f7bc22eaa75270, 'ML VermilionBird', 'DCL-MLVRMLNBRD'), + (0x23eda38841f7f421209cfd10c90adc58422b7b25, 'TONNEROW', 'TONROW'), + (0x23fe4a16f8459d9b99d8793e57cd74bf5ab1ff27, 'Metaverse Festival Spottie Wifi', 'DCL-MTVRSFSTVLSPTTWF'), + (0x24026b09c64e6c609837aa9505c1c492409c28bc, 'Cryptonaut-Aliens', 'CN'), + (0x240289c8b55bff32752ec590557b570f6f4b2cc2, 'HODL DAMNIT', 'DAMN'), + (0x240354369a838bda66ff22b6c7c5415f98e8ec51, 'VoxBox Robot', 'DCL-VXBXRBT'), + (0x240761342594ef6b758b569603a3172ce55ce25f, 'PASS 1 to 10', '$THC'), + (0x2407a30e7eb3ae0f715e45ec97c70379334c6015, 'Awesome slimes', 'AWSLIMES'), + (0x2416bca2beca1f77fce6bc134b463e0537445915, 'FantasticLand 2022-Nancy', 'DCL-FNTSTCLND2022-NNCY'), + (0x241716afef4cbb87c7374697a3a1d79850a2da68, 'The True World', 'the-true-world'), + (0x241ba8652f8cf0ecb3ba4018aa06953f72d7c756, 'TFA Apoel Nicosia Fans', 'TFAAPO'), + (0x241c7a39eca8a3edd08171b6f29dec4f0c9652ae, 'Series Sweep Golden Ticket', 'SWEDC'), + (0x241cd25c7b7bfc8f57e71cb324307bb1abd8b915, 'G.G Gold Jacket', 'DCL-G.GGLDJCKT'), + (0x241e9a095df3a5d42cc10bd2a27f154b7aeb3e99, 'Wow Dogs Club', 'WOWDC'), + (0x242241a396286aa5255ac1762f14d7d1f326d4f2, 'Dabbing Divas Social Club', 'DDIVASC'), + (0x242338b425ebfddc3f9095495ce8952e085d2497, 'CryptoWeed#001', 'CW'), + (0x24236f1a132f11feda43c1ae09f01c25c2013572, 'Rosepop', 'SWEDC'), + (0x242f6699f78ae6e9d0e505238913cb7afea2f5fb, 'Animo.Women', 'Animo.Women'), + (0x24362954d1db38f9d18b8ce91e6bcd283373d527, 'CRK Team', 'CRKTEAM'), + (0x2446291de7975872a93ecbdaaf229156362300f1, 'AO 2022 - 00s', 'DCL-AO2022-00S'), + (0x2447be8f413125505b154737c5d90ec020b1c172, 'Mad Ape Abu', 'MAPEABU'), + (0x244a20333f5d6ed68ec9b5ab75ea9287ee2d0454, 'Adonis Gorilla Farmers', 'AGF'), + (0x244bb88a9eab53537b300b870cd01cb65b529050, 'My Collection m1byhN7k8Y9no4BtRF4l', 'my-collection-m1byhn7k8y9no4btrf4l'), + (0x244cb430d58a197be31919336406695bab58d9f3, 'StackOS NFT 3', 'NodeNFT'), + (0x245a6b41f51d90698aae15e822a00e5597464b1f, 'Ballz Game', 'BALLZ'), + (0x245cf1e2f8e10a9a32e301d84d04b4000c1abf62, 'RetroPunkApes', 'RPA'), + (0x245de6019fb66f61bd03bbe287805a1a8ca84e58, 'SPACEMUTANTZ', 'SPM'), + (0x24670b70dc6ce12d01e4ec7163de313c94875da6, 'Women of the World', 'WotW'), + (0x246f6a6b49890475c7e77ec5786da06fa4392fcc, 'F#CK Collection', 'FU'), + (0x2470e32a0cfd852a169d27101b76170d40ab2416, 'JoMFounder', 'JoM'), + (0x2487df8d510cc0a9ec99fce1f1d43adb3f6c731d, 'TheEndLess NFT', 'TheEndless'), + (0x248d70a9eb15a1a852204d0f529cdd4a8b6b80ad, '“Missing Her”', 'SWEDC'), + (0x249578e53773c7444fbfbf85f5f5cecb07fa4f4f, 'Abu Crypto Hall Of Fame', 'ABUHOF'), + (0x249c3fe43d035ae2a19ab0dd3bb6bf13dd8d70a5, 'SPD Pants and Boots', 'DCL-SPDPNTSNDBTS'), + (0x24a09f3c7ec2621c854ea8da799a17d953dd9d4b, '0x7D7a87139528A5C0F29aE785C3578b137a9B3C9f', 'XDa'), + (0x24a7b7e4ecbfef80897cb22e6442d7c0d4dbc5fd, 'Shelliclub', 'SIC'), + (0x24ac12fb64fa202a5436d0a0f37be66ad4f5882a, '8bit Gamers Guild - Kek Lords', 'EBGGKL'), + (0x24b321a206c25d7deedae9d6fd537f680b6d3bea, 'Metaclub Society Official', 'METACLUB'), + (0x24b41fe8f4cf4cc89012edac6502537703c6c17e, 'Wills gReAtIsT HITS', 'GGH'), + (0x24b8e81b98740181473dcb77eba77075708c1b41, 'KINGWEN x DigiFun', 'DCL-KINGWENXDGFN'), + (0x24b985947bc32ad9296e7aeccd7e302797fdeb04, 'AstagaDragon', 'ASTD'), + (0x24bfda0194ad0b0c95a208b83f8f310e2080f635, 'JockeyGymNFT', 'JGNFT'), + (0x24c0c1e9daff479719fd49edd71fc2130206a556, 'PL_finger', 'PLF'), + (0x24defd78cbd7189626b01618a0b0cc3b567f9acb, 'POYA', 'POYA'), + (0x24e3b355830698097ba4c167c3dfecd0600df323, 'O Lenhador', 'OLEN13'), + (0x24f3b4541cf28b77db4f951cd3ceddb6b326b2e9, 'Supreme Boxy Collection', 'SBC'), + (0x24febb877869e1e55e881cead3065490f53ed8e5, 'GEN-B12', 'GEN-B12'), + (0x25037ea0e524973b96680bfacb2058d8b62a3098, 'nft_name_0124', 'nft_name_01'), + (0x2504f274f053d0669eca03117d1c5db79e0cb648, 'Mummified Walkman', 'DCL-MMMFDWLKMN'), + (0x250ca16c6dc5c2175f767987154fc284ece6d0e4, 'EgyDeities', 'ED'), + (0x251095cd0b4f4a2e18c8c0a3003f7cb31a7d7a6e, 'Ukraine_reveal_Peace', 'URP'), + (0x2517687804418207eafb4755a911bfba978824c6, 'The Secret Island', 'TSI'), + (0x25189c94f6474549ea72ba487bbd6df898fbdfac, 'Elves Attack Box', 'EBox'), + (0x2519a9e8ca938682b53d870163264b79ff026b23, 'Spaz Gang "Double OG" ', 'DCL-SPZGNG"DBLOG"'), + (0x25241758b3e2e07f44bf63a733668e24ced94152, 'DinoDino', 'Lonely'), + (0x252438da4b3fc049b2274b94070a96dc428143d9, 'Anchorage, AK Silver Edition', 'SWEDC'), + (0x2531692eee3432fe28476017501cebaa3748e7d3, 'Cocky Docky', 'DCOCK'), + (0x253dc2bf5817f7043bc1f6a5bf85e805ec108df4, 'Shadow People', 'DCL-SHDWPPL'), + (0x25437e0f67e3f257d0dc54c591f204fd57d3fb4e, 'Chibi Ape Labs', 'chibi-ape-labs'), + (0x2543d997e766af463e2b11bd7ee3e6d722bb1d9b, 'DigitalaxGenesis', 'DXG'), + (0x254a0773b915484be15f82441115c0ea2f215291, 'The CryptoEggs Club', 'Egg'), + (0x254e8bb89c1833a42d863cd3f1caec9be4508bea, 'DogAgentJack', 'DAJ'), + (0x2550159992f6ea90f1187bd803d60613e9c1a4d1, 'High Roller Gear', 'DCL-HGHRLLRGR'), + (0x2552ebe9fab1179e0fc3c5bfc6857ff3da7bf645, 'Bruno the Maggot II Collection', 'BMAGG'), + (0x2555a974177d05b50472343701e74594e14af5fc, 'Fuego x SlideOnClay FW 2022', 'DCL-FGXSLDONCLYFW2022'), + (0x256637b98b196525112a589feefe05a1bbac05eb, 'Hello', 'HELLO'), + (0x2572895b940bf6aae0f22786571c87400001c0cc, 'Vintage Bay Media Hoodie', 'DCL-VNTGBYMDHD'), + (0x2573cebe5fb4b4db8001e133da645efd2151d5c5, 'Generation #19', 'G#'), + (0x257aa169609a5bb2f09035a936a9243a84775016, 'Trexerz', 'TREXRZ'), + (0x2583d832da3f420bdf79cf92c861be9715d0d76d, 'Marble', 'MIB'), + (0x2598a82cca7a93bcf4d3f7bdc0f249b151e1e32a, 'Reign of rings', 'ROR'), + (0x25a135bc66dff510cb002523961c1cdcd38bf564, 'Morning Cocks', 'MCO'), + (0x25a1d66891d44cdf7b8d45802489c1dea7aadf8b, 'FluxArt', 'DCL-FLXART'), + (0x25aa0936b394a886398b655631f7d1880543f3de, 'Cryptogods NFT Poseidon ETH', 'CNPE'), + (0x25ad5761bac488dd906c7b708c5dd34c21b637c9, 'Abstrax', 'Abstrax'), + (0x25bb495c3d92d8ce0b817f0a55b49e0f99fb98ec, 'CharitiesNFT', 'CN'), + (0x25be9116a6d90d9de8efc3d611c4901bfcd4aedd, '[DEVELOPMENT] Lu Kl 640125', '[DEVELOPMENT] Lu Kl - Ed 419954'), + (0x25c32cc9ea17043a7d1bf15ff4bda1e6c88592a9, 'PPLLP', 'PPLLP'), + (0x25cb13e6607baf2cd6fe82ab65022bfaf5524bab, 'Roach Spray', 'DCL-RCHSPRY'), + (0x25d24d52a656883b2649fdc3738aa747f9e3a2a0, 'CryptoDoonks', 'CDK'), + (0x25d49e905f78bd184075d356b596dc1c4963e877, 'Car 22 Winners Circle', 'SWEDC'), + (0x25dbef03a998c7b14085021b315fbde455f1cab7, 'Sneakers LOWP', 'DCL-SNKRSLOWP'), + (0x25f091013f96c4a46433da6355c3a63a63f8351f, 'MaTigerix - Zodiac Saints', 'MATIGERIXSAINT'), + (0x25f16970fcdc6ca89d173fc53c7678fb77ca486b, 'Glody Knights', 'Glody'), + (0x25f2ff696a917f8834c15f090fd5c15b81206bce, 'Loot', 'LOOT'), + (0x25f8272e206bd7502fa5f2480b29e984075cda00, 'Gravis First Ships Collection', 'GRVSSHIPS'), + (0x25fa6a097deb6e7fabf56a72750864388cef25a3, 'JGNFT1', 'JGNFT1'), + (0x25fc98725fae9c851abd1543175f9361b633197a, 'ChiefCheap NFT', 'CHFCHP'), + (0x260003f2a2dc3b9fafc112c631d3d40e484f1c13, 'Meta Apocalypse', 'DCL-MTAPCLYPS'), + (0x26025cdbf81a01bb681491ffafc61506fa30ff3d, 'Peaceful NFT Ukraine Benefit', 'PN'), + (0x2604def85123c83a950866ea575cba01cd3aa66c, 'Boise, ID Silver Edition', 'SWEDC'), + (0x26095136711a9abc88009026f92d6200d3317d6a, 'Olympic2020', 'SANTAV2'), + (0x260f2de5b4d60a040d76737bc1c26a37fcde7db4, 'dsfdsffds', 'IO'), + (0x260f2f07ec5b7969970ec522fc27cf3a3cbca1cd, 'Weird Catgirls', 'C'), + (0x261deced9b554cd730bd1830f26e93896b6908e2, 'Letchumi Pretty', 'LPLP'), + (0x26294e873f69a25d6ae2321e9042118eca689112, 'Golf Head', 'DCL-GLFHD'), + (0x262a5b26b664863552408780e09eff6412020de0, 'fMetacat', 'Metacats'), + (0x26403327dea04ad801f07e700b766a5fa0ac1dce, 'ShowMeNFT', 'SHOW'), + (0x26448edd017ec689b3e468bcda8367bf8ab14f1c, 'Aybills x Wavy - Volcanic Wear', 'DCL-AYBLLSXWVY-VLCNCWR'), + (0x26453c2b32a857ce6e06df115ae1edff04e0f932, 'Azuki Dead Skullhead', 'ADSH'), + (0x264c97418cb81ce329bf5c35efe10a57ae4bb453, 'Mythic Weed Wings', 'DCL-MYTHCWDWNGS'), + (0x2655607dd307e84148ea48bf3806f8c02bcaebd2, 'DecentralWear FREE NFTS', 'DCL-DCNTRLWRFREENFTS'), + (0x265687ea2541b4f81262b48bde3ae1f0bace6d78, 'Constellation-20220007', 'CON0007'), + (0x26583bb41c2a8909b6d408cdd09eab6ae5718c46, 'VenkatART', 'VENART'), + (0x265f517ba8a34981995a8a085807116110ead160, 'PunkOligarchs', 'PO'), + (0x266117854da4aecd39d3a5691a5cd461906242df, 'SelfKey True Avatar', 'SKAVATAR'), + (0x266442942aa869cc09e433ff3cf5607ef420b0e8, 'ANGRY CHICK OFFICIAL', 'ANGCHICK'), + (0x266665625d5d43990fcc062dfc8ac2f3bcfdba1e, 'Instant Metawear - Technology', 'DCL-INSTNTMTWR-TCHNLGY'), + (0x2666929ad3eee9cd8862689d020773b3d4025bab, 'Shellfurds', 'SHELLFURDS'), + (0x26676a456bca88e418f9ea4b33a707364c0b5876, 'Parcel MVFW Wearables', 'DCL-PRCLMVFWWRBLS'), + (0x267190a7aa1a6bc15581be91944eea06efbc56ad, 'Jetpack Minook', 'SWEDC'), + (0x267c938e47ea166fe246f4c2526c1d9e2a3d7af8, 'G.G. Bomber Jacket', 'DCL-G.G.BMBRJCKT'), + (0x267f7be23760743f0e415a28f56da5129ea11aa9, 'Hypernet.ID', 'Pseudo-anonymous identity verifica'), + (0x267fc8a77c2642b7e28ac2dbe90a1c0e0db32df9, 'ALIENZNBOTZ', 'ABZ'), + (0x2688857dbe8e4d6d94f529c159d4710e25054022, 'Huggy Wuggy', 'SWEDC'), + (0x26891958d0ad054c360f06c3ce10e10b6db21a56, 'Futuristic Fashion Items', 'DCL-FTRSTCFSHNITMS'), + (0x26895b69ba871a455d7a355fad16893f998c3c49, 'MosaicFries', 'MF'), + (0x268b2b962c9c2dc357885fcfcfac95a94d618656, 'MONEYTREES', 'C'), + (0x2690f530039096f247b51cc45d0bdd1b0158aae3, 'Boba BFFs', 'BobaBffs'), + (0x2692be0399e0f92f9b6e6dd033bc65e268df36a8, 'Loot', 'LOOT'), + (0x2698aaefd883576e0803428dabda6cedd9a0c629, 'CatventureNFT', 'CVENTURE'), + (0x269bd6e9b017f400aa5d3753a48a2513b3d0c7e9, 'The Stripes NFT', 'TSNFT'), + (0x269ef9deccd2baefd3d3e90d48b0e8138f8a0db6, 'BOOMGALA Metaverse', 'GALA'), + (0x26a78bf3ee2d1f379b65574ed14c3dbfdac34336, 'AMA NFT 1', 'SHOW'), + (0x26ab8ee70b7dba1f5df542579f6fc6565948aeda, 'Obommas Urus', 'OBOMMAAS URUS'), + (0x26b4cf5519cbff1b0396a9d56f335f8e740040ae, 'Neon Oni Samurai', 'DCL-NNONSMR'), + (0x26c1d01d0796c45721264e7fcbbd56853c5c1a26, 'Grimpop', 'SWEDC'), + (0x26d17a098524dec16b334b362ab3defc00a6af57, 'Access Glasses', 'DCL-ACCSSGLSSS'), + (0x26d7010f0e38fee6f37e1942537ebb238b8ee6d8, 'Bullianaire Club', 'BC'), + (0x26dba8143100a65ebccf96a7464d825296840f49, 'The Possessed NFT By Pssssd Labs', 'TP'), + (0x26e5cc28d5af85b28e06eb13b9faffd04147ffc2, 'Oxya Origin Metaverse Wearable', 'DCL-OXYORGNMTVRSWRBL'), + (0x26e8d0c3371caaa78234efada4a669262b98ac52, 'Cultured Orangutan', 'ORANG'), + (0x26e9f81e4cbc1c5e0fa027e11a83106639c75fdb, 'Derpy Books', 'DB'), + (0x26f161093b867f8020b2fdb72d3d181ef08a82bf, 'New Crypto Heart Collection', 'NCHC'), + (0x26f6ad1936c7033edb334cfe2846a12d812704e9, 'UNI PASS', 'UNI'), + (0x26f82db061334e1fd5bb017172f293315fceb216, 'deMice', 'DICE'), + (0x2709c863ce43d9feb88c79812502a0c050a2ad82, 'Bone Fighter', 'BF'), + (0x2709d82ef94d056ca85c561bc9cdec15a4b95d6e, 'NonFungibleTurkeys', 'NFT'), + (0x270d2746b3e6deb9d348a2c3d5778e4c200c0a03, 'Crypto Ghalia', 'CG'), + (0x270da33899792353442e8ff641a42d40602862d3, 'Verisart', 'VER'), + (0x27103d15135c9fb58dbdf264876897a79aca5237, 'JGNFT12', 'JGNFT12'), + (0x2716a213c18865d283a7e5c3b201fbd55c053286, 'Designer devils', 'Dd'), + (0x271e18eecba989813b8471d005640ce4a076538b, 'Crypto Gentlemans Club', 'CGC'), + (0x27240a260c3828ce774718823d4c6bf501ea205e, 'Caged Bot Club', 'CBC'), + (0x27245224a3934815a4867dc1b6b12a64a644fb72, 'NFT PetCoin Pups', 'PUPS'), + (0x272b5e2df14b4b59622bcef40c598e972db1ce37, 'UkraineNFT.shop', 'UKRN'), + (0x272c9bb0c997162d01ed4ffc2bff4b00535f9761, 'Wellness Demo 01', 'Well'), + (0x2732aade6a2b23698a0e78a2459c832f2298baf3, 'FunkyMonkeyHeads', 'FMH'), + (0x27331bbfe94d1b8518816462225b16622ac74e2e, 'CryptomedaCards', 'CMC'), + (0x2738f72d79eb13ca3bf4adef62c5482419d7fc66, 'SPD', 'DCL-SPD'), + (0x273b2276a49a56a71660c24d742aeaec0aac7b23, 'Cool Kid Next Door', 'CKND'), + (0x27420938b823ad7f5c6f9ac17ce88578a2fdddac, 'Playing to Win Badges', 'PLTW'), + (0x276a2c1dd553573bbb3f5cb61183572283d1ed63, 'Banana Suit', 'DCL-BNNST'), + (0x2777f954b2e121481bc0b651a51597c7863fa49e, 'LeoPix', 'NFT'), + (0x2780977043cd02edcf23de3bcde316975931d1cc, 'Fantasy GF', 'FGF'), + (0x2783707e39417e1b82aedff967bf5b44f3eb4360, 'M5NFT20', 'M5NFT20'), + (0x2787a253341edad9151b4a721aeb92ed23af97e4, 'Eggsventure', 'EGGS'), + (0x279359aa4ddfe903a785180268b22bf534864202, 'thecoolbooogang', 'KC'), + (0x2793bf3057468258b0bb2af4daf4af3189daa96d, 'WARRIOR of the MYSTIC KINGDOM', 'DCL-WARRIORFTHMYSTICKINGDOM'), + (0x27a4ce6ae0ec3c35e20c4e1e5af30790909f1731, 'art.army Artwork', 'AAA'), + (0x27a4ec8372c4f99268bd7203faba2cb13c7263e4, 'Deluxe Ducks', 'DUCKS'), + (0x27acd84284282311b8969ad8b4de9625257297ec, 'TheCryptoBar', 'TCBNFT'), + (0x27ae32d2999d984a379d5689a099d0cb7da76441, 'Magic Agentz BrotherHood', 'MAB'), + (0x27af6bfd1b894387ea760d96496d0385bcd66730, 'NupamiDiary', 'NPMT'), + (0x27b13a30a10c865fd741ed5bfc0b98a680855de2, 'Spiritual Kitty', 'KITTY'), + (0x27c474895ee6bb20deb00a4f7b2d63bc3ff09bfb, 'Hater Blockers', 'DCL-HTRBLCKRS'), + (0x27c79fff71957934835b47c7a2335d85e8539008, 'Pixel RPG Club', 'PRPG'), + (0x27ce2fab1f1efe3ee504b42ceaa488d940461a17, 'WorldPeaceNFTgirls', 'WPNFT'), + (0x27df99b0ee7d31aa0667593484bcd48e5204e745, 'joker deep', 'jknf'), + (0x27f89f9c38b3893dbe5c38668a6e2467cd0ac509, 'Monster Girl Sexy Witch Collection', 'MGSW'), + (0x27fffecae7b002a27d5d5808d3885737e035da0e, 'MSCM Ticket', 'MSCMT'), + (0x28009881f0ffe85c90725b8b02be55773647c64a, 'Tweets', 'TWEET'), + (0x280104b906d42c11b8c0948205f590945350e42f, 'CLONE X', 'CloneX'), + (0x2805fd2a1f4512a460a7e2f77e02f2a72ba08e47, 'NFTroy', 'TROY'), + (0x2814225e75b3723dbe1778fb33ce9fe6a766b98b, 'Voyager: Unknown Genesis Official', 'VOYAGER'), + (0x2816d1235be2e0324e719f72a2680a6f2c5a86c0, 'Transium3', 'TMX3'), + (0x281b63eadb4f7f7145f97f6c93e2cad13d261d9a, 'COBA', 'COBA'), + (0x281d01e5b148e00bfb4e4a9532b8115479179e67, 'MetaSoccer Youth Scout Tickets', 'MSYST'), + (0x282319339f714b8d550440b12bbaa06979698986, '1kPixelSnapshot', '1kSS'), + (0x2826d221fc375896424bd130259a360b1749678a, 'Lazyfarm', 'Lazyfarm'), + (0x28280eee597eb8ae4d8baa56332e0322acb8f7bc, 'Wonderzone Cybertorian Coat', 'DCL-WNDRZNCYBRTRNCT'), + (0x282aae7b826d5de16e78ecdc2015eb2110918fd2, 'Sunflower Farmers Golden Egg', 'SFGE'), + (0x282cc126e8b35821cb798260fb01ae868200fd01, 'Superior Mortals', 'SM'), + (0x283273d68f210d2faeeda9760ddc1e8cbd4a8c87, 'The Cyborg Wolves', 'TCW'), + (0x2840953a05bfa808a1ecea50766863d7bf56f003, 'Baby Dino Gang', 'BDG'), + (0x2842a966a06571df260cc5a76e495579c31832ea, 'Antiquities', 'ATC'), + (0x284f8e78be5039fb6b964ddeb734a693045436b0, 'Roustan', 'DCL-RSTN'), + (0x285238626b64a13dfe5f1a4b5d3aee9a28605108, 'Loot', 'LOOT'), + (0x2856177ae51f65b3f4d42717aaedd85e4b6b2a91, 'Meta Party Vox Boards', 'DCL-MTPRTYVXBRDS'), + (0x285ca35b7fe7ac958e7fcc8c8ae666d1e30c5c5c, 'Follow yourt heart', 'DCL-FLLWYRTHRT'), + (0x2861b17e6d0e394bd95c9ab087017d9a3d7dcfcf, 'CLUMSY CUP', 'CC'), + (0x2862490c8caf2aa3a259cde41a17cb679d6d1986, 'Dogs Unleashed Roaming', 'DURNFT'), + (0x286c2bb5a5449be046776b52a3b3d7763b58f3e4, 'CrypGenny', 'CG'), + (0x2873cfc9a8bb4ac6e7bb523e5de6a315d0de5a71, 'BOX', 'BOX'), + (0x28773d4b6a7df7fdf177dc7388bd72ae31a65882, 'Beautiful SuperModels', 'BSM'), + (0x28779b197f6c7be641f2e288adf303adb37a2a9d, 'SuperchiefNFT METAWEARABLES', 'DCL-SPRCHFNFTMETAWEARABLES'), + (0x28791a72ec6c9fe257c8f3a2bd2f43aafea95470, 'WHERE IS KEV?', 'WIK'), + (0x28822b45da567d97ee69f6e6e3aae47eb7f626ec, 'Ujuuna-tokuten', 'UT'), + (0x288b265ccb133e24a6fe9baff6ab0e5c27afd40b, 'Equabotz', 'EQBZ'), + (0x2894a71210e3d54db6d6436c35a7e5f924adbb2e, 'NFTONApp', 'BGS'), + (0x289a9beceab91690fe656df15f2c59b87b7923cb, 'Pillar Genesis NFT', 'PLRGNFT'), + (0x289f3374440eae1224910bad726b6421fc0be66d, 'Santa hats', 'DCL-SNTHTS'), + (0x28a1aa0309ef7159f16dfcada2b36f213dff4b2a, 'Doge king DAO', 'Doge king DAO'), + (0x28a3cff46a4dc82081d43a100ae47af3d12ae78c, 'EggDogDreams', 'EDD1'), + (0x28a48e830f1098717f942ff813db3e0dc25336cc, 'Lucky Cat Stamps', 'LuckyCat'), + (0x28b6b17010dfc022fd04d17dee722f4d9b80c550, 'WeCallToStopWar', 'WCTSW'), + (0x28b7096cdbef123b4fa5d26a1a4e5769a84ad2e2, 'DCLDating Mecha Cupid Alpha', 'DCL-DCLDTNGMCHCPDALPH'), + (0x28bd496abc4086a352e4fd7e33fb4f783f5deb42, 'We_the_Ukrainian', 'UAP'), + (0x28bf90fe4bfe15d29253019edbc8e2f41ccbe1ba, 'MWDxCCC Collection II', 'DCL-MWDXCCCCLLCTNII'), + (0x28c58049fb6675a4c51424d3c4a55783ae3dd32c, 'Visionary Inc. Series #1', 'DCL-VSNRYINC.SRS#1'), + (0x28ccbe824455a3b188c155b434e4e628babb6ffa, 'The User Collection', 'CAUSER'), + (0x28d241804ff5861db7bba0901ecb3648de8a74d6, 'Suit', 'DCL-ST'), + (0x28d8ecc7a16b01ec2122d8aa55e3dd7dbc2d59c3, 'SkullCrew', 'SC'), + (0x28e16e69e8df44224713558555d898faba2d1aef, 'DODO New Year', 'DCL-DODONWYR'), + (0x28e2c87fb1005f20dfbdab17221fe24a2fe9b615, 'face', 'F'), + (0x28e62b9dab6668215c35779bb9861ba32829f5e2, 'me', 'er 721'), + (0x28eb9b8f9e8d6c70bb145723efa9e52977ea6f1b, 'CATERPILLAR 2.0', 'DBNFT5'), + (0x28edebe3f4d92d4b536bbdcd5ad173f3efe9898c, 'survivers_contract', 'SURV'), + (0x28f02d6a3705584c70a620c518b22623964cb1c0, 'Cutie cat kids', 'CCK'), + (0x28f0b3db1f57dedcf72c3c383a2e81d54ae05e08, 'Huuk721', 'Huuk721'), + (0x28f49ba7b20cad0a8256be34484cf733b0f9a88f, 'MetaSoccer // Scouting', 'MSS'), + (0x28f68e70ba4ed8f56730ff74b10a99a4cde1ff83, 'CipherPunks', 'CP'), + (0x28f9b718f4e88e5eb6e38143497581ed8fc1d65f, 'xMaticPunks', 'xMPNK'), + (0x29091a7a664a5e7a67b58efbd73b4c18d987ad4a, 'EVme NFT Series 1', 'EVme1'), + (0x290cbc85ae725b4a427e7453e956821ba582b34b, 'Anti-Cat Cat Club', 'Anti-Cat'), + (0x291a91c304c972fbc54fc89c9a1cbb48403ad1f6, 'Ape Life Frens', 'ALFRENS'), + (0x29257276857176494866eadc913290f6426d3e3e, 'Aakansha Patel', '6182c3c210cbaa0c8b2e9673'), + (0x292833f00fe3b76fe66134002d3a77546f70be64, 'Bored Ape Yacht Mining Club', 'BAYMC'), + (0x292ade207f502e776df30562fb0c0df1092fd584, 'MyNFT', 'MyNFT'), + (0x292c263ef6a4f0f480fd76423517f7d56e321abc, 'Phantom Frens', 'PFNFT'), + (0x292fad263060b12e0a663ba4ab4fe42abdd91e76, 'HuskyStyle', 'HS'), + (0x293001274a70dcd4c398fe83535fdddadca3ce5b, 'John1', 'JOHN1'), + (0x2937320e8c03075d716de220eda7aa0091c796fe, 'Doges', 'Doges'), + (0x2939fb658ea7b1423966c9a263d24a9145bfe1c8, 'Ice', 'ICE'), + (0x293d1ae40b28c39d7b013d4a1fe3c5a8c016bf19, '3Dium x Lion MVFW', 'DCL-3DMXLNMVFW'), + (0x29447b3d3d136dd079a11514e7e7fb3f7db0ed88, 'Gray Boys Official Polygon', 'GRAY'), + (0x29470eea1ec37f25669879d0aaf9bebcaf0f92c1, '#Monster Hall', 'DCL-#MNSTRHLL'), + (0x294b5def3cb0fd3389ddc62461befea2132732e8, 'HIGH STAMP KONG', 'HSK'), + (0x294c20ebe0a3ae167b91f5e01e43545f493649f0, 'Happy Halloween Bones', 'SWEDC'), + (0x294fe6d45a5948089f447c0b7c8de9da0827da4e, 'Freakby', 'FF'), + (0x296027d997b65078dfc1e344842ebcbacb8c9b59, 'The Kiss Of Eternal Love', 'KEL'), + (0x29628a6906be14effe5ad095d7bbe19099eea513, 'Head Crypto Cat', 'HCC'), + (0x296fb623b0f477dbaedb9c758981657b13daf98b, 'Niftymints', 'NFTY'), + (0x29768a03a62760ef462c1f0ffec1c027b981b909, 'TATUM GENERAL NFT', 'TATUM_NFT'), + (0x299dccd79105e41291f7eb98755f12d3561b7b3d, '3Landers Punks', '3LP'), + (0x29a9fff7b7af9e94f317c481bf3a44851e946e7f, 'Fit AF', 'DCL-FTAF'), + (0x29b80bfc957e7900f4a79cd57df61ba3c6052e5e, 'Fast Food Friends', 'FFF'), + (0x29b9295ccee76f24ebe10ab8cc7a9e3d6d2a3720, 'Glory Angel ROBOT WARRIOR KZ99', 'DCL-GLRYANGLROBOTWARRIORKZ99'), + (0x29c07804ed8a9c8cbdba416fa59006ce7eacdb70, 'IDIDID', 'IDIDID'), + (0x29c2aa7445c646ac0e01f00e0511db90abc3dfe0, 'Helmet of Death', 'DCL-HLMTFDTH'), + (0x29c5205a5fb6741c0a22bd2c87c9ea2394a08a35, 'Weird Catgirls', 'C'), + (0x29c72adb6655d3cf84280ae78a4329405556f7e8, 'Ninjas Don’t Play Well V2', 'SWEDC'), + (0x29c74158da86a976dfbf0c0bb06c5b3a6da7f675, 'Gorillascapes', 'GLSC'), + (0x29d3234846cb9854a06f89eacdd6be420ecaa5fc, 'Argentum Alpha #250K', 'AA#250K'), + (0x29d36e1cabc9a558c2ddba12967bfd6d021fbb18, 'CryptoPunks Portraits', 'CPP'), + (0x29d471a14221538a936242bad5620bbf6ea1456d, 'Bear Dude Club', 'BDC'), + (0x29f09a96ba74ce533f4947f0b971adfb8069b389, 'NFT Garden', 'NFTG'), + (0x29f85e87f4a013ea45863a742994a10d18263345, 'SCNFT6', 'SCNFT6'), + (0x29fed34ac52d6e5d45d3ec021531f8f1edc4521f, 'Contract Name', 'TIC'), + (0x29ff9f27ca1519b4a5eb0ff13064f55e9cd6dd05, 'CyborbChicken', 'CC'), + (0x2a0102d600a945623cb8a22c7b18a49efbb503ad, 'Top Crypto App', 'TCA'), + (0x2a0154c5a7a2e2802db16639ac1e6f7d8142a9c4, 'Funny Ice Creams', 'FIC'), + (0x2a01fc8295b383d20e160a7f5f4ec90dd7a38591, 'Onnomi Pajama Party', 'OT'), + (0x2a0912fbee33a2e31a7451f58fa599d986e29900, 'Clozer', 'CLZ'), + (0x2a0954144dd32d8e27ec6b863201439332cee377, 'cc', 'cc'), + (0x2a0ccdc8150ec5b295a24e87cb29a5b17d0786da, 'GEN-H24', 'GEN-H24'), + (0x2a1b80c0cf447dee61781ed2e0c6d9ede40b104b, 'Speed of Light', 'SWEDC'), + (0x2a1d1eddecce21d5ad1814325acd655201f74b52, 'Aalien Club', 'ACB'), + (0x2a1e70916127ae11f6548f7db0c34c2118b65ba6, 'Rental NIOX', 'rNIOX'), + (0x2a2efa26af7d5c61b371bce8b4a5006adbef3588, 'Ghetto Granny Club', 'GGC'), + (0x2a30b7557c6c3373faa0933671fd89862c3c198a, 'Radisson RED Dubai NFT', 'RED'), + (0x2a359a1a51fa39d6d0820a49d387238fe80b7f0f, 'Fantasy GF', 'FGF'), + (0x2a36e8dffc902036c0b1d418bc48e4e9c9f6d089, 'Lucent NFTs', 'LUCENT'), + (0x2a3a6d0c92b18102ed189233976c974473a59c87, 'EL Wearable', 'DCL-ELWRBL'), + (0x2a3abf99222474b38dd06378ed584929a3796c81, 'Eternal Monkes', 'ETMONKES'), + (0x2a42d61416960300248d19d19f788bd5c5d65e7c, 'Eye see you with love', 'ESYWL'), + (0x2a4651412b227d6b6149af8307d211c90e0323bd, 'Alien Heroes', 'AL!EN'), + (0x2a48ef9e1033710f4a688b51ff33c1476e2e1a6b, 'The Igloo Club', 'ESKIMO'), + (0x2a5128ba4accd234c2563dc5de944ee27c3cdd5b, 'MetaAvatars', 'MVT'), + (0x2a644467ffd0bafd597fe00711edd074c1097305, 'IDGAFrog', 'IDGAF'), + (0x2a675f50acf84e5fd87db187c48f9d10960b6c4f, 'SynFutures 721 NFT', 'SynFutures NFT'), + (0x2a79bfc22810c07a5b3467974638b64f1426d436, 'Funny Man', 'FM'), + (0x2a7c03853950e68e2524ccc341a06935b0461f07, 'Vladimir Zelenskiy', 'Zelenskiy'), + (0x2a7fd336b8f11f5f9e6d9daf77ff2532e5ca62d1, 'ChainArtefactShield', 'CASd'), + (0x2a7ff3b9b1f6b25c83b4afd7a429fb219e79f1ba, 'tet', 'tt'), + (0x2a8106537884d3a61ba2a3ef2effc2a5d2f8ecab, 'ThugMarioz', 'TM'), + (0x2a89e8f1ea5edd82eba1219d63e4b1810eb88515, 'Colorful Trains', 'CT'), + (0x2a90b8b3cd7d504a01c00f674910350242f5c3af, 'Project Pigeon Eggs', 'EGG'), + (0x2a9cd2482452205e6ed2bddfac6da489e00298d5, 'Icon Apes NFT', 'IA'), + (0x2aab587c15eaf452efa08dffa90c8b41b5f9045a, 'TobyChi 3D Collection', 'TOBD'), + (0x2ab2e659e8e8d123e2e0dd7c86c11ad02771e7ee, 'The Tribute Club Final', 'TTC'), + (0x2ac15b25b7de6b05e650878b97f56137a5e4e4da, 'BSP Class Single NFT', 'BSP1'), + (0x2ac7e103a96e57bf93e23012200337edef8e39dd, 'Kaiyodo', 'KYD'), + (0x2ad367a9580484ca5f295ad0278a803f3dc416f2, 'pixel ape clan', 'pac'), + (0x2ad3e99e5bd132d37ec75854d3b71930e3ec630d, 'ExoMech Operative - "Proxima Fantasy V" Card #4', 'SWEDC'), + (0x2ad64e95eff639fbd0273bcd4d0eeb72a60c8586, 'MobsKeys', 'MOBSKEY'), + (0x2ad7743e560498080960fb81a55142402c246a61, 'Lazy Bucks', 'DCL-LZYBCKS'), + (0x2ae00e1bb3492f1d535fa0b4c568740fd6a733f6, 'MaticPirates', 'MP'), + (0x2ae27516d4143203c9c16499c93581a6d8e6301e, 'BlackMasonz', 'MASON'), + (0x2af3b37cdfb23c2e88f1420cade04ed1f5b75f64, 'World of Ether', 'Ether'), + (0x2afb990d0bad1a40adbb858b521a8ae80af1a333, 'Good Morning News Portuguese', 'GMNP'), + (0x2b033629736e41cbfaa9dbf8885fff588359f607, 'CoolBoyNFT', 'Coolboy'), + (0x2b054ecbe524de08341b104e2fcb0273d95cda17, 'Alpha Angels', 'DCL-ALPHANGLS'), + (0x2b076d596b9ea1b5820d718c02cb4add071868a0, 'WPOptimizers', 'KEY'), + (0x2b08cae57c909129a9323ebd76300e53f4ed016a, 'Primero', 'CR'), + (0x2b0b58cddce48c6a44c7e48e39d629dcf9fdb41a, 'Engineers of BARC', 'DCL-ENGNRSFBARC'), + (0x2b153feaafb38ada4070dd21215a423fc6db66ae, 'AF-Genesis Drop', 'DCL-AF-GNSSDRP'), + (0x2b1ae6754a4a99c130d2a1cc4334e9c5e2cabd36, 'ReferRocket', 'RR'), + (0x2b2a1537ed5414f1ed541417e2ba22faaefbf2f1, 'unknown', 'unknown'), + (0x2b31c8828ed71856935e119de95de809c45e06f2, 'Brodolfs', 'B'), + (0x2b32378cb487114fa3b09a6aa1d3d87a3dde5fd8, 'pssssd nft', 'pssssd'), + (0x2b3a39191548d831d56259d2eb82b8211445ddfa, 'SUNGLASSES META', 'DCL-SUNGLASSESMETA'), + (0x2b3b197e7c8a41dcaa4f5c669e5cc2264a9be23f, 'LuxoBvlgariSingularity', 'LUXO_BVLGARI_SINGULARITY'), + (0x2b47534fa9ba9ccb169d0aaec720e591b791c9f8, 'SILVER SCREEN SIRENS', 'SSS'), + (0x2b4a66557a79263275826ad31a4cddc2789334bd, 'Sunflower Land', 'SL'), + (0x2b4a6ddde546aeb322136034645b2fc4d5a45fc8, 'MGMNF16', 'MGMNF16'), + (0x2b4b856a8df26f716e5816143a9efa1b6eb59d99, 'Metamouse Clubhouse NFT', 'MET'), + (0x2b4b94828df5dfbe7679d5f6dc13a1c19af772c1, 'Pixel Hamsters Club', 'PHC'), + (0x2b752a8b26f24ec45f2854b3fdd38910dd422d74, 'AzukiApeSocialpolyClub', 'AAS'), + (0x2b7ca50f95e830cd7f47f42f156a6934906e3957, 'FireStarterMetaverseCollection', 'FSMETA'), + (0x2b85211447d6dfc4b5f69ee91208bae4fd3b7284, 'Turtle Time', 'TURTLE'), + (0x2b8c8d2c05484a13dae7e8fbcfaab4fd09deef6e, 'LovelyDAO', 'LOVE'), + (0x2b969e8060b923b896f50e52a72deab3bb09e4ec, 'APY Vision Subscription NFT Basic', 'VISIONNFTBASIC'), + (0x2b97615a2606cace3952908c8076da54da2c5462, 'Owlman NFT', 'OWL'), + (0x2b98ad929ee80d23902d27d1a9a9549d4b067448, 'Web3 Builders', 'W3B'), + (0x2b9de2d5e8d701e905a9728fa464d90e30b4e2a6, 'PunyPutins', 'PP'), + (0x2ba099bd1eeac47616661de182a97c904c47e927, 'Crypto Apes', 'CA'), + (0x2ba788993f4a308e0aaea4e91e694097f7bf2a43, 'Mishka Keep Watch Fitted Cap', 'DCL-MSHKKPWTCHFTTDCP'), + (0x2bbc8d788d8962b71fef568953a30bd5f2f62e58, 'Orange', 'SWEDC'), + (0x2bbd787c23b62ecb0173d850cc406e4d2a03b02c, '0xUniverse', 'PLANET'), + (0x2bc4b69138115ae81229c2002a427bc69ff5ca40, 'XNFT7', 'XNFT7'), + (0x2bd223325dbe5d283c69f734fdb321a3f9fd61ec, 'Dumb Ape Honda Civic Club', 'DAHCC'), + (0x2bd341ae42c775eea02489f336b78c36b76221ff, 'ZAMET', 'ZMT'), + (0x2bda6a791b18086627c327d21e74a29195d1cddf, 'NFTokers Hoodies', 'DCL-NFTKRSHDS'), + (0x2bf012030d529579f1366b03747f54c73649572e, 'StashBoxNft', 'SBN'), + (0x2bf3e794fb3f558188733c1b2e506944ba83b842, 'Magicverse', 'MGV'), + (0x2c040c33cf5481c0b5aaa5ec35e78431479590e2, 'JAMSRAN', 'JAMSRAN'), + (0x2c0bd0ed54f45f7d65157fdba932c1d6ddd28d77, 'Crypto Colosseum Free Bet', 'ccFreeBet'), + (0x2c13eff086090d53041abf5305c6ed2e287f309c, 'ViolinPixelArt', 'VLN'), + (0x2c25280fc5554234e1f7ee8375954cc08425a925, 'Eye Bee Leave', 'EBL'), + (0x2c25fb8fa9c05e9dbc6b28126772c4cbdedaa4a6, 'Monster Deployer Oeye', 'OEYE'), + (0x2c26aa21f2a194d33356b95f4869f289e8347969, 'Ethernals', 'DCL-ETHRNLS'), + (0x2c2a460b7ebb9e1d53439f6e75e192e48a49a019, 'Me+🌏JAPAN #003', 'DCL-M+🌏JAPAN#003'), + (0x2c2c17c066af1e4a7bcb96f3e4e3d27968613ad0, 'PiggyBooty', 'PGBTY'), + (0x2c2dac8d083d271ae62c61d487e3024e4fc279d6, 'The Reptoyds', 'REPTOYDS'), + (0x2c30ea4092b648ab8630cf2641396dd436c9f536, 'The Crash Turtle', 'The Satoshi Gang'), + (0x2c363fb15c0f98e26add137dcacf24463915095b, 'Crypto Chicks SS22', 'DCL-CRYPTCHCKSSS22'), + (0x2c44799fda19fe807abe8e3df7c789d13b49e754, 'CYCLOPets', 'DCL-CYCLOPTS'), + (0x2c4b281fb4633b3fc7f040eb3b8c0291a60c9cf7, 'NFTStoreItem', 'NFTSTRITEM'), + (0x2c510afe3435b579de4f8921bc6ce06224f26eb5, 'CryptoNinjasOfUzb', 'CNU'), + (0x2c77c6a24eff698867529c9e1d028941fe5dfdd4, 'BoredParty - Clubbers', 'BPCLUB'), + (0x2c7da52850c8516ac3542d72a674f1d6870c8bd6, 'Brutal Snake', 'BS'), + (0x2c815b18d91132f55f0a3c5933e7b7e185f3886d, 'GEN-L12', 'GEN-L12'), + (0x2c81ba5cef6e6d1cba2484a82e62d66351e12638, 'Genesis DSO', 'GDSO'), + (0x2c820ff4c9e52c1d19963bf84df6fde2cb86041f, 'Duction1', 'DT'), + (0x2c96719e38609e00f07bc791ed0aef0f7a94fc2d, 'Animo.Women', 'Animo.Women'), + (0x2cb51714abdd9d1d4ea14d4f1fb25561fdc9c49f, 'Meta Motor Keys', 'MMK'), + (0x2cb63c79522b69f59919aa4891d636b998fef9aa, 'NugFTs', 'NugFTs'), + (0x2cba3250ee95cc51a5c28bafad5d78805b39380c, 'JollyMinion', 'JM'), + (0x2cbffe12817d6af4069572d96ea46ad86deeb8ad, 'Dope Dudes Society', 'DOPE'), + (0x2cc21fa3274110475a27c5b211baf84241342736, 'The Tribute Club Final', 'TTC'), + (0x2cca47f5c18ebbc17c366cb9ca167953e3d3cabe, 'Sexy NFT Anime & Ecchi', 'SEX'), + (0x2cd476b1a665be33b207598c3760a5c745d4070c, 'SLC', 'SLC'), + (0x2cd54586f7dd9ed53ec865ffb854c34a6d38117c, 'Arista Lee''s NFT', 'AL'), + (0x2cd5c3375ebcfabde48d310a99649e79de85862c, 'vagina saver', 'VS'), + (0x2cd794652ceb9674a51fa8645f300690bad89b9e, 'Weird Catgirls', 'C'), + (0x2cdada9435c976c5e2d13b0b48a90b4086f32580, 'META DRIP Phase 1', 'DCL-METADRIPPHS1'), + (0x2cdc260c2b80fe7eb0044ffae4d546f7a346f2fa, 'VAULT.swiss V1-X Luxury Watches', 'DCL-VAULT.SWSSV1-XLXRYWTCHS'), + (0x2cde4c7cc96a10f590811b16578468a917eceada, 'SATO_AI', 'SATO'), + (0x2ce03a484baa7e858511ec5c61a82187d48122ed, 'Stixl', 'STXL'), + (0x2ce684d4ba8e47c12f5dbb474241968dc800b7ca, 'Play Bird Mansion', 'PBM'), + (0x2ce8f99bfab670e01a392e163ed0eb1f2c4151fe, 'Tripod Cats', 'TRIODC'), + (0x2cf453793f9a3cff15a3bc009d56871b16904cd1, 'Rhino Wearables Culture', 'DCL-RHNWRBLSCLTR'), + (0x2cf8392cfc8e1d4e9af5a1246a462325a7f3b83f, 'The Crypto Womens', 'TCW'), + (0x2cfded5f9526f42683d5fd7dd149a82d64620c52, 'Amnesia Gear', 'DCL-AMNSGR'), + (0x2d03af334fccec3fcb9f5320ced96e060eeab919, 'Artefacts by Ethlas', 'Artefacts'), + (0x2d08ff557774d7de36c8102a8a70f8c3196eb58e, 'SpoiledBearClub', 'SBC'), + (0x2d0aa792a934c4bfbe1d3f0477724604d1686b7e, 'MisfitApes', 'MAS'), + (0x2d167012839f729b192114a2d325719a607106dd, 'Tygr Cub Alliance', 'TygrCub'), + (0x2d1ae24ff318d2393e52fc68f6d19fe4690173fe, 'CANVASNFT.ME', 'BRUSH'), + (0x2d21701dab82dcd35c15d1bddc0a532241459e56, 'ShapesChain', 'SHACH'), + (0x2d266a94469d05c9e06d52a4d0d9c23b157767c2, 'GFARM2 NFT 5', 'GFARM2NFT5'), + (0x2d318193d0c5dcf219b0c7c0439acc8b2b3d260a, 'Flipisible', 'FLISBLE'), + (0x2d3d6215c00277a7afdb6237d1e06876c96b2d7c, 'King Collection', 'SWEDC'), + (0x2d3e83ffd5c83d83f4cdd8dfceea01ee2ac93129, 'ccc_love_addicted_girls', 'CLAG'), + (0x2d3f16019fb6874ebe09ff41c8b4401fbcc9f1ee, 'Fanny Pack - Limited Edition', 'DCL-FNNYPCK-LMTDEDTN'), + (0x2d403d2ee9ae3236b32ce55111016da909f328a4, 'Mr Wilson', 'MRW'), + (0x2d4e9b56a0bbf2eed1fc355b689ddc6f5c3504b1, 'Cygnus Zero', 'CZ'), + (0x2d50ead1bc95cd3cfc1939ac7348145a73785b77, 'NFTs', 'NFT'), + (0x2d515e55aa3b74c988c1ad5732cd99dd56425082, 'GreedyTurtle', 'GT'), + (0x2d5692ac7b21e0a335d2bc6b8eb61373198afa34, 'Eddaverse', 'EDDAVERSE'), + (0x2d581267afb48e9639c8f6f2098409e6e405e808, 'PIZZA', 'PIZZA'), + (0x2d5c319a8fdc2972f40220b99b90030ccb7fc418, 'Pixel Toriys', 'PXTORI'), + (0x2d5ee88d28c64e003ab538ca7c3133632629508b, 'MetaMoriSkull', 'MMS'), + (0x2d6658da0b9b4ac32650966648760fe40617816c, 'Meisje uit Odessa', 'MUO'), + (0x2d6d516cdf84bb2c07c31b1680ace7798678a0f2, 'Gozoclub nft Collection', 'GZ'), + (0x2d70256d864b3153a309a1f6a9eceb1c1fac7aca, 'NFTLocker', 'NFTL'), + (0x2d708f7477d8a1b4664765c9b783ca9a7d377d47, 'Clownfish Komo', 'komo'), + (0x2d70a2a21f0581306b0a6b90aedaddcb256ce746, 'EstateRegistry', 'EstateRegistry'), + (0x2d7cd073c00c457d88b675c647e19e00cac6b7c7, 'XYZ_Collection', 'c'), + (0x2d7f267cb5eecf04d3f2415376d99d3be3d3a392, 'Furry Wolf', 'DCL-FRRYWLF'), + (0x2d8a7119f611bdb5f00a501caf6337f78c9dd045, 'MasterBuZPass', 'MBuZ'), + (0x2d91401009f9b43e652452018a356eee25d03a67, 'The Stoned Frogs', 'TSF'), + (0x2d916700307d59cbaf0b16b064db01915f53ce14, 'BirdEye', 'BE'), + (0x2d996446dd133c541ce0bc19d6fcd7be1ea8dc24, 'BENFT4', 'BENFT4'), + (0x2d99fef65960bd43c56ebc22824be40c9a4b0f84, 'Grumpy Krypto Kittiez', 'GKK'), + (0x2daad7dd1dcce7aa1918fb6c10727feb095166d0, 'Official Jacked Ape Club', 'JAC'), + (0x2dab0f561e19c8ee5b8f7142aea8153a292d2428, 'Beer Mug Club', 'BMC'), + (0x2dae1ede90ecd9aa6831292b7f9d8c56baa8e2dd, 'ROBO-Accessories', 'DCL-ROBO-ACCSSRS'), + (0x2dbd209b184492d88ef2bffc2ce8c59f162e3b2a, 'Super Elon Club', 'SEC'), + (0x2dc047a2b3b7380cecb8e8b643185caeeb405b82, 'Magic Eyes', 'MEES'), + (0x2dc2cfa6221dbc5545f50e7eff7f17ac5bb6a2a5, 'TheDogeLuck', 'TDK'), + (0x2dd06c3c8fe6b319f6fe5bf76ffc8ab3949c721c, 'MyFullyOnChainNFTs', 'FoCNFT'), + (0x2dd080d1e23a1c5323b449e295d6bf4e5b2e79e7, 'Wolfable Collection', 'WOFC'), + (0x2dd6e7c773ec931719b1929ab8b4ed1e95776036, 'Akiverse Game Centers', 'AGC'), + (0x2dd7ea1b9c67115eac74248ba8e024f1d72a15b1, 'NFT Yard v1', 'YARDv1'), + (0x2de1e606b9c7c6afbda06d08e6b8c0e1289cd134, 'SaveTheStupidWhale', 'SW'), + (0x2de5310595f254627dd77fbc5a79e6841f7bad18, 'Bored Dilfs Raffle', 'BDRAF'), + (0x2de6022d230870cf2e627a9ed8596b109c3f77d9, 'CryptoEmojis', 'CE'), + (0x2de69c3317a0fe90e74bdd32e576b7ce5a4d231f, '123', 'C'), + (0x2deab27b024362a9c33033987fb688ef6c89d313, 'DegenDads Polygon', 'DDADS'), + (0x2deb9081556743ec4567d568bccf551722fb4c1e, 'SolitaryPandas', 'SP'), + (0x2e0115d0852560d2d884d63dcfcf91f11d367088, 'BBHallow', 'BBHW'), + (0x2e016834e2c654527482e27970338f9156ec58d9, 'Dropys', 'Dropys'), + (0x2e02f87c4bbb97fcded5b196810cfa74c8283c39, 'WonderBearClub', 'WBC'), + (0x2e0e28346d5bf3f0496f082b1e71ae726a007af3, 'CYBERGOBLIN', 'C'), + (0x2e1d11298123a23f10e20e49609b8bb79562071e, 'HCPNFT1.0', 'HCPNFTz'), + (0x2e23d59463cacc7fe2c177aafb3865fcbf0972e8, 'MAJESTIC OWL', 'MO'), + (0x2e28f39a564ed7477cca4ab07cfda3dc50d5c689, 'Kraken Metaverse Festival', 'DCL-KRKNMTVRSFSTVL'), + (0x2e2aeda041159548352525f21aa7ed2513495a81, 'LANDTOKEN', 'LAND'), + (0x2e40f0f72aea6957920601e021d992fba8aa7303, 'Ninja Combatant', 'NC'), + (0x2e464e45abdc73720c5099db76ac44a67ee4856a, 'DapperHorseMetaClan', 'DHMC'), + (0x2e4db43c4f90ae9b1d23d310bb46d7d62bc4e311, 'Whahdude', 'WD'), + (0x2e50387da0351d103f97280e4f9e551650104b8a, 'Goat Villa', 'G'), + (0x2e5c6c19fac86708d0203d5374c25f9a3636f880, 'My Collection HcpI7ITS8bBq2a1fuxld', 'my-collection-hcpi7its8bbq2a1fuxld'), + (0x2e5e76bf9e90490d6aef8a32cf43bda7360cf3cc, 'Cyber Snails Club Official', 'CSC'), + (0x2e6419ebd3a09b504456c4c02024a5ddfd7bc546, 'Nowhere Near', 'NN'), + (0x2e671a635bab6435cf718207be7d5c5df84537ac, 'KonMini''s', 'KBN'), + (0x2e6b5caa235956839ed8c893410cd68d16275528, 'KittyLitter', 'KittyLItter'), + (0x2e7241dfccd5d76e8f24e35bae8df3ee787c5302, 'The Dicky Blinders', 'DICKYB'), + (0x2e7488a5f01547889abdec728f3bcf1c54795719, 'Artefacts by Ethlas', 'Artefacts'), + (0x2e836e2d2bdcaeff23198c18466ef4a0470b186f, 'Weird Catgirls', 'C'), + (0x2e86ac408dda0c410d966aa6c9559d28ec19a61c, 'Staked Gem (sGEM)', 'sGEM'), + (0x2e891553413b9026a4bbe329d750e9a367fad304, 'NEONZ', 'NEONZ'), + (0x2e92ccf2bdfe2de86c2451a2320cc3f6be64633c, 'Whalez Water Club', 'WWC'), + (0x2e9964e1a27ebebb5f291ab90e7bb6045068cad3, 'HYPEVISION4K', 'Hype'), + (0x2ea26e36aaa23a604f0896668b1fc987211d2890, 'It''s 420 Weed Leaf Shades', 'DCL-IT''S420WDLFSHDS'), + (0x2ea309260d2884835b369ee858adfc9d803603fa, 'Investalog', 'IVG'), + (0x2ea6529dbe8f1e92d5d0c9c659dcef5174d90e2c, 'SmokyApePixelClub', 'SAPC'), + (0x2ebcb9f25b02a0225e174cdfbd5b8a7fb7c344bf, 'AFROGIRL', 'AFRG'), + (0x2ec2d61828871861f3c332daaa50bea1f5b162b7, 'Forbiden wings', 'DCL-FRBDNWNGS'), + (0x2ecc1b74b0d87d30b47fa9f497462bcb88a11db9, 'Bored Kamal Society', 'BKS'), + (0x2ece7089a67c5f7bac6d2cee6ed78ed04421c129, 'MetaCenterCommunıty', 'MCC'), + (0x2ed5de19015f966b23f4f7628f3eac3200415cf7, 'Cartoon Warrior', 'CW'), + (0x2ee644add323566aca502ffa779d4cb5035a38c7, 'Cryptonite', 'CS'), + (0x2ee89db4fac2776e36d705516d750c2df628036f, 'nate', 'BAKEOFF'), + (0x2eebc529b770d96a4dc686318a7ae6eb5665c005, 'DEARRT', 'D'), + (0x2eef28671e2bc5c5458ad2d0248b3a7bda51cabb, 'TrollGameInvitation', 'TROLLGAMEINV'), + (0x2ef168f343f63a0a14185622941bb5180e661f8d, 'Panther Youth Club', 'PYC'), + (0x2ef253abb8c20b944a65070eceacd25224136b05, 'CryptoSkulls Polygon Official', 'CryptoSkulls'), + (0x2ef686361ef8dbe16260f91cf9223af2efec1344, 'Genies Gang', 'GG'), + (0x2ef82fbc4706643ec9b2b93489775ef5895a6be6, 'AI arts collection', 'C'), + (0x2ef8a3e6d579ac1bc22ffab52ec66198ee9a7376, 'Kongo Kingz', 'KK'), + (0x2efa9396d250ec1ebd0c0b3d926c9f6c0c45d5dd, 'Battleship', 'Battleship'), + (0x2efd16397f85f2217248843f6f8f157bfade425f, 'Flag_on_v1', 'FOV'), + (0x2efd37b4b668ec6c3a54393291109d08703a06d3, 'Brian Gonzales NFT Art', 'BEG'), + (0x2f0ae948b36cd36744a579c753c72f4c32417230, 'CryptoPunks Accessories', 'CA'), + (0x2f1b71b46db29f71457b9ed2452a9c4db174e75e, 'Punkwalls', 'PWALL'), + (0x2f1d835fdc8b59e03828d9b7f0b91b046b40f5bc, '0xRacers', 'PRT'), + (0x2f2851d52c69925fa72b500c94064d573668984e, 'GEN F Official', 'GEN-F'), + (0x2f29e3086fd4e6f6549d4b08c3d399b4f7711dd9, 'Ignite Desire', 'IGNTD'), + (0x2f2dda8725fa045b7f021275e1967f0dd47efc4d, 'FSBx', 'Farsite Box'), + (0x2f3602093995c9f5cd97bebb17d4b4334d37853e, 'Minty Meep', 'MM'), + (0x2f390f84a2f8dc3df03c89500a76a3548d0cb661, 'Wolvie Wolf', 'WOLV'), + (0x2f3a2f9b0173b3455522682cf64963995ffff663, 'asdf', 'asdf'), + (0x2f40240bed363902cf64ef3bb8ba03bf14f36f6e, 'Manga Ape Universe Club', 'MAUC'), + (0x2f49228a4c2e7a222484b28bbc83013d5e2ad11c, 'Argentum Alpha #500K', 'AA#500K'), + (0x2f5042df001628e9bac9e4b05706770d4515a7f0, 'Old Egy''s', 'Old Egy''s'), + (0x2f5224435edbc00fed10871db07dac5f20cf4d24, 'Paradise Predators', 'PDPNFT'), + (0x2f528244b2a399736c309992d5984d7e9faadb80, 'BTC pic', 'BTC'), + (0x2f5705006f241ed1ea682aec4fd25b8ad6ba5196, 'Mad Meta Senseis', 'MMS'), + (0x2f58da419e003f10b740212ab7955a74e1101893, 'Collage Club', 'Collage'), + (0x2f60a20f183ea10e44b1ab5307ceeffe08811bfd, 'Tanishq', 'Tan'), + (0x2f6763f3240ab1510562c5e40a3d03378a5c9afe, 'Vertualize it!', 'DCL-VRTLZT!'), + (0x2f7f72ee5890698646a846a2c091451082c52878, 'super mario fan', 'C'), + (0x2f839485b9fd67c67d74c70d17633e452d2b1423, 'EMOLLECTION', 'EMO'), + (0x2f8b7d50a5e4121821eea2def98906a2d05b7036, 'AnimaverseNFT', 'AVGG'), + (0x2f95497737f2b928a174116a7e6562463b5ae4a7, 'RUSSIAN WARSHIP, FUCK YOU!!!', 'RWFY'), + (0x2fa4ddd62aab7955565b5368142b79d1375376d7, 'Dusty Old Bones', 'DCL-DSTYOLDBNS'), + (0x2fab158175f6f538069daa0c8e99f2c14b77c3c9, 'BabyPapa', 'BP'), + (0x2fab212da597dc38afe80abbff8530bfc5a4a8ad, 'RODG | St Barts 17.02.2022 | 1:1', 'Polaroid'), + (0x2fac24cdf7a8a5207139c6aa08deb6e81f24be44, 'Don’t slow me down', 'dsmd'), + (0x2fb1e504016901b14400da34d96b66875d4bb388, 'Ankito', 'ANK'), + (0x2fb471a64aedb98179950d7fb49f6bb630894666, 'FancyTigerClub', 'FTC'), + (0x2fb8742150af2a2878bda168c196103f0ceba952, 'DevilTeam', 'DT'), + (0x2fbfc5362c088d168b67aa8858f0bf0298732ddd, 'Meta Witches', 'MW'), + (0x2fdb57a1e1d909d3992d25417558551704069934, 'Kung Fu Panda -1.0', 'KFP-1.0'), + (0x2fea4c4745e8327c5a4be8e160d69d4acb1cbe02, 'SkoolCharro', 'C'), + (0x2fee1dbe415a2187c26663f2c53b3963ee54cfa2, 'Mnemory', 'Mnemory'), + (0x2ffa40e4bdc311c6fc17df585d46d7d43a6a1e90, 'Golem -Magma-', 'DCL-GLM-MGM-'), + (0x2ffce9b58a788a54b4466b0d5ccc5c6dd00c1b83, 'ModelsNFT', 'MNFT'), + (0x2ffd835ccb7504fcdaf43a052dcb268371f7aabe, 'Prime Kong Planet Official Polygon', 'PKP'), + (0x2ffea1c43e419472278186b5473410b567346231, 'Rave Wear by Artemis Moon', 'DCL-RVWRBYARTMSMN'), + (0x3006531937eba648f48b40c64eb1ef2be7482aed, 'Griffin Yard', 'GYp1'), + (0x300767a276457170bf7ec038b6801afcbb2800d3, 'Sweet Turkey Dinner', 'SWEDC'), + (0x300b954d68b41ce6269cc986abf06efa287b8599, 'SCNFT1', 'SCNFT1'), + (0x300c8583c5f18fd3f2bcc251ce913394a8c5d8f9, 'Poker Shades', 'DCL-PKRSHDS'), + (0x300dfd125ed85e0337d06aca172b169949e8d7d2, '5555', 'C'), + (0x300ee829102811f33595daa840e51b43c81d9110, 'CryptoMinerz', 'CRMZ'), + (0x30105a673eb9866ecff02f5ab81a8ba8047955c2, 'OliversOlives', 'OO'), + (0x301126a224b4ac15d0a9aa499923713f23d807d9, 'KryptoMouse', 'KM'), + (0x3011810abfec25777a01d5fbef08b2ad12860460, 'Earthpop', 'SWEDC'), + (0x302290c83bbf3e245f51ec8a23239dcfbe400bcf, 'Monster Companion OFFlClAL', 'MC'), + (0x30253a3e42cab3d35a5cd0124f840a02a6921061, 'Fashion for Meta', 'DCL-FSHNFRMT'), + (0x302c05366a1e712bc4e6e64fd1cd6eaba1ffe5c7, 'est', 'test'), + (0x303043d124705ae7560a3cbc292e8a52641b8b1f, 'Bored Vibes Black Jacket', 'DCL-BRDVBSBLCKJCKT'), + (0x30342e2397c5e9bd63cf88f46e5367fa205b1ef4, 'SpaceRaceAlliance', 'SRA'), + (0x303c064d101208441c618df8194e28a9fe9bc3a2, 'Celestials', 'CELES'), + (0x304ad8a1c2d5eb0ad5628b43a9f1d72e2e26f6ff, 'Tickets.sol Ticketeer 1', 'getNFT Ticketeer 1'), + (0x30517529cb5c16f686c6d0b48faae5d250d43005, 'SHIBA INU', 'DCL-SHIBAINU'), + (0x3056e5eabb081672070ef0ad9a53237f8f819b6b, 'Potion', 'PMBNFT'), + (0x3057003775ca4ecfcea0ef8aad15614efa60bb61, 'OctoPeeps', 'OCP'), + (0x305a98adbc3a78e482bb2d935da5401d6528d855, 'WHATSTHEMINIMUM', 'DCL-WHATSTHEMINIMUM'), + (0x305d0d2c1ee5c23cec254e049996027d650a4b2f, 'Private Museum Art', 'PMA'), + (0x30617766b2de4dd191418b8979f3db139c08448b, 'Modern Art Ferrer', 'MDRN'), + (0x30630c16a44d67852f83fa30680f403dd696f167, 'XNFT17', 'XNFT17'), + (0x3064f1dbef6d387d19badc92c7df97019f815f76, 'GOW NFTs', 'GOW'), + (0x3066a7b41280a8277050d6e7e15db18e3f97db5a, 'Hippie Wings', 'DCL-HPPWNGS'), + (0x3068cf1c68499d11a99d10fab8a7cdf15c198bc3, 'Bear Dude Club ss1', 'BDCs1'), + (0x306e01aa840ad87e07864d70145f876db3e53a4a, 'Skusadfg', 'Skulisdfal'), + (0x30748e684ebd20aee9e4c4dfa75c0da6a9c623d1, 'GlobeHeadsNFT', 'GHEADS'), + (0x3081a64774426eb4de8fa8d70c3cd742a885327a, 'XO Collection', 'DCL-XOCLLCTN'), + (0x3085fab38f64ae1f45a5f8eb1ae5deab00438e53, 'Split Roger', 'STR'), + (0x3092296444d68e94e2059e337f1af587dce04aae, 'NetaMask', 'NTMSK'), + (0x3095bfc28ebbb63dde1ba55112f1861b22a92e5f, 'slimefarm_pluton', 'pouch'), + (0x309cc19e5a671fd17a960c220e73223dd9b02ddb, 'NewNeoPunkSociety', 'NNPS'), + (0x30a0602688736315b3682514de8769f5261b7ead, 'Uniqly Valentines', 'UniqValentines'), + (0x30a47da8006a72b469e0dbda64115e57de476262, 'Creatures.crypto', 'CCRY'), + (0x30a8a6e293e64e33ffcd64981a437b606af57973, 'Supreme Skulls Prime Official', 'ssp'), + (0x30ac924dd2e45f476e7d467ceb1a5492be141a00, 'Angry Chick Official', 'ANGCHICK'), + (0x30aeb99f8eb81e0c9353d094af9efae9d27df9ca, 'LemonNFT Marketplace', 'LEMON'), + (0x30aec79baa1fab6216727d636f7225e6645cff00, 'TheGraphWorkshopAudience', 'TheGraphWorkshopAudience'), + (0x30b46827f7b82035b09400a72a31c82b62cd5f0f, 'FindTruman Genesis Part', 'FTGPart'), + (0x30b4c8ac49f01264159c93f966eef945b7413af8, 'Unicorn Punk Fantasy', 'DCL-UNCRNPNKFNTSY'), + (0x30c310dd3864f5d737cb04676ef33742c15c4728, 'Wealthy Weirdos', 'WW'), + (0x30c77a274012bd50e374a9544091c9d105690128, 'ClayNationNFTs', 'ClayNation'), + (0x30c93bc7b8fabf9fa5ad64b67c0fbf12c13237d4, 'Pharmanaut', 'PHARMA'), + (0x30ce05103783aa1ace8ed6e979d55911095a327f, 'Atofio_Hrisafi', 'NFT'), + (0x30d27d054745671f85c49c3b4a31ea4c8828624d, 'ChubbyPups', 'CP'), + (0x30e22b833fac9b3b57242103e9f12b6e2c9410a1, 'Poison Egg', 'Poison Egg'), + (0x30ecef47957f6823c6b2929747bc19d765efee26, 'RSS3 X JIKE', 'RSS3JIKENFT'), + (0x30f0e9e232629b270b87dc9cdf71e1aac9d061c0, 'SuperShiba', 'DCL-SPRSHB'), + (0x30f126ff5ea8905d0fc4894c97f3bfe2f6c86f4d, 'Fancy Rich Pig', 'FRHP'), + (0x30f2638821e5113dea9bd6f248f86007d39bf76b, 'Asian Identity', 'Asian'), + (0x30f480793f172da5ea749f9dc2c17b28bf1a9eb2, 'Cosmic Apes', 'CAPES'), + (0x30f5971011193e81f59ef563dcc3196a6d28baa6, 'Dirty Sock Drawer', 'SOX'), + (0x30f7245626b1707fd69e23de0cf84fd359e1ff70, 'Dape Fighter', 'DF'), + (0x30fbe142507bc1929afd3d086967d9cd034e175d, 'CRYPTOHeartsDoodle', 'C'), + (0x30fe6368e9d2cf982e7de1ada874be5b085a95b1, 'NFT Garden', 'NFTG'), + (0x310bad9d93396be112b605a3cc2a792b602cf5cb, 'My Collection 6dI8xKKoxaXzeB9VJ6YT', 'my-collection-6di8xkkoxaxzeb9vj6yt'), + (0x311085c93584b4dfda46f8934f0c070554d4d47f, 'MysteriousXXXFriends', 'MXF'), + (0x3110b1f08352074245ef35d82a002ee36250123d, 'Jiggly Bears', 'JBears'), + (0x311c1dea03a00a31c8c943d8d0f8c52bc29dc1c0, 'Doge king DAOTess', 'Doge king DAOTess'), + (0x3123837240f85045aed018c55e4659ce194d149a, 'ThePossessedNFT Official', 'pssssd'), + (0x31305f79b48f73607d48b94c5bc314d6a7df4567, 'Punk Meh', 'PUNKS'), + (0x313b88704d93e974fefb4faed8f3e1ac93738d47, 'Threehe', 'THREEHE'), + (0x313b8ee731491ea6c38df3fedc463201072c1a2b, 'Polywhips', 'PW'), + (0x313d2c8b098c40778aeb23b9457e3a5b640bf79e, 'Drunk Guy Beer Club', 'DGBC'), + (0x3142f991109d220b74a1d433283cfd67919146f4, 'Pitzi Glasses', 'DCL-PTZGLSSS'), + (0x3147c88aed32b890df7ce10f9469377c96ab0d5e, 'DG Gear', 'DCL-DGGR'), + (0x3164fc283d00b542d22c49414a5bfd36a4ae73bb, 'Aspired Hands', 'Aspired Hands'), + (0x3165feae42a182e5ec33bafa9f326e8c409fdbe6, 'MCP Resource', 'MCPR'), + (0x316a830d7372e2946292f60c8f2c70579c5a4a89, 'Mussoorie Trip', 'MT'), + (0x3177b0b6459d46eb422086836a85490f35f75493, 'sinje', 'sin'), + (0x317dc5d5d17366a41844ca2e0773b9570132826d, 'TequilaPartyBottlePass', 'TPBP'), + (0x3186219579134aac27852f9f921b6489ae4c158c, 'MRST Mining PET Cube', 'M2R'), + (0x3188c69da04f2e51da1df1ba882639dd8da29c48, 'Property''s Metaverse Wearable', 'DCL-PRPRTY''SMTVRSWRBL'), + (0x3188ec72b02645316bc1b26040e230437de6a2f6, 'Banananguin Wearable', 'DCL-BNNNGNWRBL'), + (0x318db37ae11bad2e4cb6b6e16413cbb1cf128ea8, 'Gravis Finance Evervoid Captains Rank II Collection', 'GRVSCAPSIII'), + (0x3196099237e65ae9b751e4681cba77e9b7f86c3c, 'IN2Academy', 'I2A'), + (0x31972da2aba63bd7ec3ebae1cf012864eb46787a, 'Diddle Dinos', 'DD'), + (0x3199090e9854d125e03336edc48b3546a22dca25, 'BoobGirl', 'BG'), + (0x319ef59cd852c4ffc268280006e8e6fad5a0a0a9, 'The Darkest Truth', 'TDT'), + (0x31b121bd5d548ee183be4f4f5b6a75d833bc778f, 'PARAZEN - the blind box of Pioneer series', 'Blind box of PZ Pioneer'), + (0x31c5260b78080cfb4e2bb7ee834fdf4c5f3d3a92, 'RadicalRats NFT', 'RDR'), + (0x31ceae7a1beedcd15f5af6882f36018cf634969c, 'Deus6', 'D6'), + (0x31d0cb54c54aa7e9e699f2343e481511ff713147, 'Trendscrafters Gag-Gift Emporium', 'DCL-TRNDSCRFTRSGG-GFTEMPRM'), + (0x31d1a77c810d6a4cb0e4bd781ffe7efa0100d88d, 'Gargoyle Wings', 'DCL-GRGYLWNGS'), + (0x31d43d46191f33ae8afa25003b49a50852563e28, 'Imbackbitches', 'IMAGİNARYONES'), + (0x31d4c150e90a18b1b184fb8b9071d6dbd48cd455, 'NeliumArt', 'Nel'), + (0x31d5134ed9cbcaf9eaa236b07da125dbe485bc69, 'Mongo Mugs (2nd Genesis) collaboration with Dr Sian Proctor', 'MongoMugs2G'), + (0x31dd668280d386787208f78fc3d56db1b577540e, 'Generation #13', 'G#'), + (0x31dd87a135c2bcdef49f36b48750575366a21b5e, 'LOCGame | LegendsOfCrypto', 'LOC'), + (0x3201395dedc22a101e815b684e194eb8a2a94c34, 'Poppy', 'SWEDC'), + (0x32088eb375bc25b4e2a24e0c15971d3a1226022d, 'Adopt-A-Xolo', 'DCL-ADPT-A-XL'), + (0x3209c2bf89e84bcbec8364f2b3c583e8882f1a03, 'UkrainianBrewNoWar', 'UABR'), + (0x320a144099546e6561f4747686f79ec6a5c24e27, 'VroomVrooms', 'DCL-VRMVRMS'), + (0x320ab570b9b1d55706d207e429cb25e0596a754a, '[DEVELOPMENT] Ju Dr2022-03-14T16:31:04.277Z 344198', '[DEVELOPMENT] Ju Dr2022-03-14T16:3'), + (0x320bf87e210d630491ce7c5c720f6a6c13684eec, 'MetaFantastic Mushrooms', 'MFM'), + (0x320cf6a35a3c36cf8f55f95be85ca144f7d99cc9, 'Azuki 12^2', 'AZK12'), + (0x320cf9c462a178d6456d23c48e927c2af1a8741f, 'fdghfdhfdh', 'Lion'), + (0x320f537da591da33dd1a04dcb062434e3d176d3e, 'Polypunk', 'Polypunk'), + (0x321223fb30d96901357fb3c2cf03d813137dca4a, 'NFTs', 'NFT'), + (0x321550fe3bc09b41a0190e94917395cb6de70703, 'Eternal Revealed', 'EMONKES'), + (0x32166853386e35e85064b1ca9ec36bdd12f8769f, 'BestCats', 'bcts'), + (0x321cd6d0901ede3b10e042febcc96e4e84202c89, 'pothead', 'DCL-PTHD'), + (0x32222da4c2f6cb3b3ea57578bd3d81aff0b20626, 'Anime Corps NFT', 'ACN'), + (0x32325300869f8d3a7dc317269042a482f0d4f418, 'Mr.Hot dog', 'MHD'), + (0x324629eb0b7756309724d9844cfbab12c939a706, 'AI Future', 'WITAB'), + (0x3246a5d904da5822bea153e2b20cffb2d2dca3e4, 'Nike X Bored Ape Yacht Club official', 'NIKKIKKIKIK'), + (0x32490a07994f0e90559d757ceaa03256bec3aecc, 'GEN-T07', 'GEN-T07'), + (0x324cb2c654be51c6ad6c76a3e022cabe49cc4e46, 'Wonderpunk', 'DCL-WNDRPNK'), + (0x32572bf284c84e26dc3f1b84714d576a8eb8bc0b, 'Dankmoji Mfers', 'DNKMFRS'), + (0x325a685b1c81d934ba01e2b9ce6b2635a2b4d732, 'Bulgeye', 'BG'), + (0x325c554ca8be6c4bcdf36ffaf0da238e31e9b44b, 'DogeMaskNFT', 'DMN'), + (0x3261014a6a258236d1f1c9305c4fa501014e37aa, 'DollaryDoo Contributor', 'DDC'), + (0x326752150213b592b4b0a9efa1e372557dfe72cb, 'PowerPigs', 'PwrPigs'), + (0x3271de0485cff8d5466129652d011942eb590081, 'Ukraine Be Strong', 'UBS'), + (0x3284f5e6b6647a9ec2cbb8856ee7d35f2252afec, 'INFINITY MONEY', 'DCL-INFINITYMONEY'), + (0x328581165eb3f6a6589f1d6cde67c4d21edfc5ee, 'ShockingLittle', 'ShockingLittle'), + (0x328abea223c47f16e61f67a5f8f445777f6245d6, 'Deadmau5 Metaverse Festival ''21', 'DCL-DDM5MTVRSFSTVL''21'), + (0x328e12354a5956fff998da20f65c679b1cebb0d0, 'Party Animal Sunglasses', 'DCL-PRTYANMLSNGLSSS'), + (0x32936ae5898642b0dd60a652d02b1fc1050f046e, 'BONYZ', 'BHS'), + (0x329802f061691c8a2696d830c642be4a85f4a173, 'MADMERLY', 'MDMRLY'), + (0x329840c806d9cb0b1da0bd25a2c27cfb971713c2, 'CHIPDIP', 'CHIPDIP'), + (0x329970a88271e8192afbf8a3195f306699dfe7e7, 'Art Club Collections', 'ART'), + (0x32a96b45bddf5aa0db851e36b3c521e047effa85, 'Pocket Dinosaurs', 'PD'), + (0x32ad4f4744af784758a91e84d86c682c8f17e4e5, 'gfdaghhjdj32131', 'Shiba'), + (0x32b2535fc23a1693ab07f3c66b9b436ed0297e24, 'FEWOCiOUSxParis HiltonxGENIES', 'DCL-FEWOCOUSXPRSHLTNXGENIES'), + (0x32b6405465c539e12cf8db7c61c23250b2f2c0e0, 'ArkenAirdrop1', 'ARKDROP1'), + (0x32baad7f3adaef687eda8eac604847216f5c8dd0, 'Supernerds', 'Supernerd'), + (0x32c6dbaf97a5c40faa3444af03511559687c22a2, 'CryptoDuckz NFT', 'DUCKZ'), + (0x32d9bbdc9330e13304b41ed6b96187fb545df474, 'DID.ID', 'DID.ID'), + (0x32e5c56c7c99696e7b2acd957dfe72c594463954, 'MadBabies', 'Baby'), + (0x32e7cc81e142f21fea3a294d08fa34e91f6d3d58, 'OracularSnowMan', 'OS'), + (0x32ec1024f5d04f8bf5a253b92b6f31bc5a77ad7c, 'LOSERPUNKS', '失败朋克'), + (0x32f260038bfea4a4ba92aebc2b3ffbe8ad3043ca, 'Skinny Bored Ape Club', 'SBAC'), + (0x32f9b45e74488704f4da53336f03d9d089bc4209, 'RickAndMorty', 'RAM'), + (0x330b06c695cfbb51d0cf9d5ed3deba2bd7efffb4, 'Gen NFT', 'GenNFT'), + (0x3314ddc1ccad7ccb1d197ca27346b1298745017c, 'Eye Of God', 'Eye Of God'), + (0x3322b2e38d755642f3040d77e03876d7bbc1c64a, 'LILHUDDY Behind The Scenes', 'SWEDC'), + (0x332e6819f7aa491f4cb96efb7164fa94b22665bf, 'PixelDapes', 'PD'), + (0x333081a689f19d6f09aede7b1fa08bd151b843c9, 'MAC', 'MAC1'), + (0x3336c6d935c140fea0df80bbbb8d88245f4a08ab, 'Skyverse Official', 'NFTC'), + (0x3338c4f07d89662766720da44f3f6c7a605ed3b4, 'GEN-T03', 'GEN-T03'), + (0x333b8167efe8c3685172951ab3cccbbb7917ce77, 'BoredApeCryptoClub Polygon', 'BACC'), + (0x333cfc10cc4b114281dc58f70ebdc6c06ef54911, 'TheDolphinsWorld', 'TDW'), + (0x333f1cbed448d333aa1aaa0d6ba40d45c3424450, '420 Fam NFT', '420FAM'), + (0x334218df8a230ba5857d7e456f621af92a2c757b, 'Postcards Lotto REZ', 'PLREZ'), + (0x3343f6bd3fe6984f78e9c4d74ac1cdb08c30f558, 'Panda Pioneers', 'pioneers'), + (0x3345143f32b9f668c8277140177f4c0c43732683, 'Aussie Bears Club', 'ABC'), + (0x33536333eb174de61eca49da949408580f3860de, 'Oklahoma - Steel Guitar', 'SWEDC'), + (0x33554bc827e6b371584de88cf80a6cb530bb265e, 'Your Love Butter', 'YLB'), + (0x3355d19764c3814af5ece39ad73d81aefbaf7116, 'OpenCards', 'OpenCards'), + (0x33582a372167590f8189287bcf0b1af833764955, 'Tickets.sol Ticketeer 1', 'getNFT Ticketeer 1'), + (0x335be92c6ffb5b3f9d76041c44614197008c4744, 'Perky Pugs', 'PERK'), + (0x3361408900416775000a964329fa3a55a4b41da9, 'Doodle Ape Fren', 'DOPEf'), + (0x3364740a05dd387cc25f4aaa55d09f85e0b934cd, 'HairitageNFT', 'HRTG'), + (0x336eb339e7bbc420f8ea388eb34c4fd2be17b8a6, 'Polymancer', 'PMCR'), + (0x33727f3cdf6898f71c1e73fe4ec4e19bd5c66eba, 'jokerdeep', 'JKN'), + (0x33769faf42fc724ee3ec6cdee30b22071efee545, 'QubitsAccessPass', 'QAP'), + (0x3378ad81d09de23725ee9b9270635c97ed601921, 'GFARM2 NFT 3', 'GFARM2NFT3'), + (0x337b2df51b4e7c20d5ca824d8de1f11979fb6f44, 'KhabyRecommends', 'KhRe'), + (0x3380619a9ade23993fa1a7af0afdbd9fea0c9cbc, 'Anti-Ape Association', 'A-A-A'), + (0x3386d6aac2cf7c096911dc6ba67d78d19efdd4bc, 'Pastel Panda Club', 'PANDA'), + (0x33890e0f257a0cb4982046c4e421cc0e730f3b76, 'Plaid Cats', 'PC'), + (0x338b2996794cd123c98840a76b6797b239ad4ae4, 'Amnesia Merch', 'DCL-AMNSMRCH'), + (0x3390fcfbfe5a268b27612ffeb5eb9c74f43ce5c5, 'Habbo Official', 'HABBO'), + (0x33938ea3240ee4227e1d90c732f1b6abb5f66d8e, '2020s Poster', 'SWEDC'), + (0x33a379c786cfad7c5990430764e2377a333f0200, 'BirdEye Shot', 'BES'), + (0x33a5501dba0caafb40c5677ba0cf4c4e5ed11fab, 'Tales From The Wild - Giveaway', 'TFTWG'), + (0x33a9d75247527d3b7d09c291fddad12f305c73d8, 'Sweet Pilgrim', 'SWEDC'), + (0x33ab8db939a24325b38ed29b2832f6327cca15ac, 'M1D - EVENT DAWG', 'DCL-M1D-EVENTDAWG'), + (0x33b11df3fcebb45fe489ac37df80fec7101f0817, '420 Cap Drip', 'DCL-420CPDRP'), + (0x33b143ea478732e446d12d2ddde6cd0e076e2ee7, 'Nick Cannon Presents: SucStress - The E-NFT Album', 'NC-SSA'), + (0x33b2b0e84e0e7bda7893c1bb65558f7287ea6e40, 'Soultry Bliss', 'DCL-SLTRYBLSS'), + (0x33b50467e18ba7c412fc5659215236fd35390dbc, 'Dapp Cats', 'DC'), + (0x33b828ac32bdc5e3badec3e2dfe31191408ea2a9, 'Charming Ape Club NFT', 'CACNFT'), + (0x33b84627cd7883e150d9ee71c9fae7a1f2d04e80, 'ClownDaddyNFT', 'CLNFT'), + (0x33b84a01feceb2a63173632d561e2377a9b2891e, 'Potions by Mana Witch', 'DCL-PTNSBYMNWTCH'), + (0x33befcf80c08ef7bacbef8d80c1f3ba1a8bf0cf0, 'Broke N yoKeD', 'DCL-BRKNYKD'), + (0x33c2f973df6dd4ce08af2e89c61b80a0b052ab98, 'My Collection 5JR6rfrHH7oJVmxgJx8S', 'my-collection-5jr6rfrhh7ojvmxgjx8s'), + (0x33ca4cd717409f60ccfb48125cb0559afcb5ad31, 'Grand Piano', 'SWEDC'), + (0x33cb919ac7e5f288e849727376e287d579f55dda, 'Oakloria Luxury T-shirt', 'DCL-OKLRLXRYT-SHRT'), + (0x33cc1ae940fd370160622fda644343b3ad883e4b, 'Avatar', 'MmM'), + (0x33d5a31623cbf31fe8d55af085e3c577138dfbb2, 'ShowMeNFT', 'SHOW'), + (0x33e14ce74adad8067976748976c051ac330bb0e1, 'FuturisticDogz', 'FD'), + (0x33edc107ea5c77d9aa6601fcf5366e261173dc00, 'Bougie Cats Billionaires Club', 'BCBC'), + (0x33ee050441652d540b692765e4656fa606a2815b, 'Fingery Club', 'Fingery Club'), + (0x33efef36816d62341d17b87a19c555b123f92034, 'CRYPTOTALKS', 'PLTZ'), + (0x33f1e5d006f257b32c65ad094552dfddee1e85be, 'MetaKuza Polygon', 'MKP'), + (0x33f2996ca84b89f0e70dc18275a0885d1531f098, 'Stapleverse', 'STPLVR'), + (0x33f7bbe336e42b31e9042e9c4b4dbbd8e5af7179, 'DEARRT', 'D'), + (0x33fe0e965c7b3be8b444edbe4ef6524d2f577a06, 'kuki', 'kuki'), + (0x33ff0294b04430809bdb1b538ae3066310005b58, 'Weird_Eggplant', 'WE'), + (0x33ffdc6f11ec030f99cc28657835372cfd41eb5c, 'Solid Solidity Finisher', 'ptr-sldty'), + (0x34048d2bc4a108251069c715ca4aea18cd196b25, 'Blocfox', 'LFXB'), + (0x34082fa0229979ffd8e6c327ce462ed6d619f9a2, 'The Order of Liberty', 'LBRTY'), + (0x34097cc096e563b003460015721b4435bfbb1d74, 'Kinkify Girl NFT', 'KG'), + (0x3415247680d728182efbf7e31a00edb72ff144fe, 'Anime Corps NFT', 'ACN'), + (0x3422b7c3b5e46d2d1053b28676fcee10c27bf768, 'Lazy Paddler - Gale Force', 'DCL-LZYPDDLR-GLFRC'), + (0x342ebf5d4eb38727b3584d03bfad617631170f42, 'Dragrora Online', 'Dragrora'), + (0x3437d68c806741f187a078ed77a39256a30e3ec3, 'Aspired Hands', 'AspiredHands'), + (0x343f145599c6e5d62866578d03770c39a5a1d767, 'Punkdeers', 'DEER'), + (0x345466f8edaa277dfff06d672c2c30307f1cca3b, 'CryptoBears', 'CB'), + (0x345ca32aefee9007a0e1334d4401b7471a22eb04, 'Digital Arts City', 'DAC'), + (0x345d4016855424d90ad5d441ea36c740564ae2bd, 'CryptoBearsClubNFT1', 'CBCSNFT'), + (0x34668f03a224b56b21a15de0de18d2002c8dee4a, 'MAINNET3', 'MAINNET3'), + (0x3466979eeff4ea9281aebe01a7f98f32d5f19c48, 'AVATAR', 'AVT'), + (0x346d6e3b0d012e3284da1f2d4f9b5ac796d08fe5, 'My Collection qW7vvcA1qAPDgOospeEK', 'my-collection-qw7vvca1qapdgoospeek'), + (0x3470fcc4629801093934ecb11ac28070e600fddf, 'PolyPunksGang', 'PPG'), + (0x34742c7a08acbe1c710a862557d83921104c0eb8, 'Sugar Club & GraffitiKings', 'DCL-SGRCLB&GRFFTKNGS'), + (0x34746740d6df620e2ac854af834a0a32a032eed9, 'We Are Ukraine X Armed Forces', 'UKR'), + (0x348469d9e9d57623900a06fb75a2d7c73c8d4321, 'Cool_Eggs', 'Eggs'), + (0x348656849c012e43ddb117c41b2d3a4810865041, 'demo po', 'demo po'), + (0x348829d82bf657a8640bd96d7a8e89eef12fe72e, 'Metafox Crew', 'DCL-MTFXCRW'), + (0x348b61a9e774906d66e985bc25be11c5f01fd485, 'GhouliesNFT', 'GHOUL'), + (0x34944dae74ae7cfb9eceeffc6aa5edd3403ea79f, 'Daniel Punks', 'DANIEL PUNKS'), + (0x349ab4e1cc7d2a19efe798a0e57b84105fcaca14, 'Paradise Trippies Club Official', 'PTC'), + (0x34a1e552ff6849f522475b131e5045f16e98cef7, 'Eggs Army', 'EGGSA'), + (0x34a32df38fc511bf002aed9dec1b70e16870317f, 'CouncilOfKingzProclamations', 'PCOK'), + (0x34a77f550af90fcdefd431f29ab6f2d0c94a199f, 'MetaZoo Intl. Future Styles', 'DCL-MTZINTL.FTRSTYLS'), + (0x34a8d97adb8002d7d3c36e81afaf477b876e4154, 'PixelGorillas', 'PG'), + (0x34b1fad7f0f6701e824c2d2aa41461a77a660a84, 'NFT Figs', 'FIGS'), + (0x34bd2c9d7568b9d659221f83fd044fb94c08805d, 'CFD NFTs V2.0.0', 'CFD2'), + (0x34e88eec03c914bcfcb278b6a38c3aca4104acd5, 'The Colorful Tapes', 'TCT'), + (0x34ef8881b7c342f8f0f1ef1a23fe4ef5873244f9, 'Pepper Attack', 'Pepper'), + (0x34f39eb716825f72ca2549fb3466ec75e80508f0, 'Sunnyside Reapers Pr', 'C'), + (0x34fa482c795dfcf8533b197f11d44ef9aae84494, 'CoolCat', 'CoolCat'), + (0x3509b41c8879c077556af84e63eb2c809c2072c7, 'Oklahoma - Eiffel Tower', 'SWEDC'), + (0x3512fca78669b80e6d51ea1f7ebcf64de6db4e6c, 'Artefacts by Ethlas', 'Artefacts'), + (0x351f2ead92ad6c1069526813c57779d62ab37462, 'ApeAzukiClub', 'AAC'), + (0x351fbbe85ac817f8a1033d59f518af7fcb1fb64f, 'Stoner Wolf Club', 'SWC'), + (0x3522fa9ce5122906577d65883386614c852b7267, 'Unicorn Lover', 'UNL'), + (0x352f3a3e593f17b12edb0069e327f5b8bb0a4f3d, 'MyNFT', 'MyNFT'), + (0x3532644a81b877736ac3f68f235e4e92a9685955, 'Bell Bottoms by GenXNewb', 'DCL-BLLBTTMSBYGNXNWB'), + (0x35361b9740694167a59b3eabfc58fef8b66c14ed, 'BadAssRabitzz', 'Rabbitzz'), + (0x35368c20f70766d528afa8c91b1b47e2735cc7fc, 'MARBLE-NFT', 'MRBLNFT'), + (0x354dc3a8f36a81bb6eb436c9304d00ba42899fbd, 'Store Ape Club', 'SAC'), + (0x3557546d66482504b2f58ae67fe931ce738020ec, 'GALACTICAPEPUNKS', 'GAPE'), + (0x355f98cf1d0c9cd52e01d0ffd43e4299575d6067, 'Providence, RI Pop Art Edition', 'SWEDC'), + (0x35617f3024306540af0dfac78f928e13ce388de3, 'CT3.0', 'CT3.0'), + (0x356383ab41bfe8b8657009f24dadc849801e6956, 'Neo & Tima', 'NETI'), + (0x356568a79606442f3feb5dba09ba7b73b4e1fab6, 'House of Goblins', 'HOG'), + (0x357806d4c8cde92cd5fa68d94dde6446f0717797, 'COBA50', 'COBA50'), + (0x357cac79953547bf249ecf3bcde2662a362900f0, 'Smiling Face', 'SF'), + (0x3581dad8fb4afb3cf9efcf62e2f9900de21980e8, 'POTIONS V2', 'POTION2'), + (0x35839d2b1ff0612041a62b8357728b8231b1598a, 'Void Entity Genesis', 'Void Entity Genesis'), + (0x358a46bd738617a1d5b955967f98a690045f767e, 'The Ethvaders NFT', 'TENFT'), + (0x35944e192183f20e073dc8f4f625ec67eeed4758, 'WorldPeaceNFTwargirls', 'WPNFT'), + (0x359dc448c84e544b0e10e2068af516acb3e8f61d, 'Gangster Ape Gun Club', 'Gangster Ape Gun Club'), + (0x35a3f680c8f5b1757fd7d19acae1a913732bb402, 'GEN-L08', 'GEN-L08'), + (0x35a44fb55f78bc04138a774a23677105fcc2e0df, 'Atop a Rock', 'SWEDC'), + (0x35ab0d603889f3e0251fe4aa10045c13364e8b1c, 'Albuquerque, NM Pop Art Edition', 'SWEDC'), + (0x35aef61bbbdb21952bb24fa5cf5bc829ff98c43c, 'IDA Token', 'IDA'), + (0x35b397dfb8b2c5fbbe7ac7c1845dbd364945cdac, 'BILANC® NFT', 'DCL-BILANC®NFT'), + (0x35bdbf3997fc17011d62f7cc4d7f54c80c76d5f3, 'Rat Street', 'RS'), + (0x35be1387d1bbc2d263b73ab2825ee91f1fd75cf3, 'Sunflower Farmers Gnome', 'SFG'), + (0x35be95f3d17892ccb2d14cb1db9f433c7945eca2, 'lapuetroricko12i', 'Meta Triads'), + (0x35c22f1f3a7f46ac60c4773b6b117e2b7c453bf5, 'Alienverse', 'A'), + (0x35c27abcfc833efb0152ebb71d8b8fad903247c5, 'CCCC', 'C'), + (0x35c4b0e4dc07ed852621c4abc6e643a8effe667d, 'CZ-Blind Box', 'CZ'), + (0x35c727abdb04cc75f63d67547d97bf2e084c1705, 'Metaverse Arts Studio', 'MAS'), + (0x35e750e7fc2b1e0256a335e84539cac9761b743a, 'ceste la vie', 'CLV'), + (0x35e961736dbbd3eb50c0ad7923837dbf168fb234, '11Minutes Game Session 1', 'ELVG1'), + (0x35ea2cb4e54b5cfcd71562f8a4cc52646443bd19, 'Brainbot #87 Tinray', 'SWEDC'), + (0x35ede6d25fafc93938d9c0530f1f5c0edc9d3845, 'OffChainMonkey', 'OCMSIS'), + (0x35fa8200d8d517206fee84694b99b75d80ba358e, 'ExoticSharks', 'EXSH'), + (0x35fc32899a406e2399151a3beddfa3ea3d0eda40, 'Crypto Ghost Punks', 'CGP'), + (0x360d0a61d64d2645e67e9beef833b9163878bba4, 'KWIAT x METAGOLDEN', 'DCL-KWIATXMETAGOLDEN'), + (0x360e2ec456369cfed8f7009d4cd0c257ec24af00, 'Water Wings', 'DCL-WTRWNGS'), + (0x361779683d7e71d62d12977218e79488b6ce692d, 'KingsKongz', 'KSKZ'), + (0x361cd037c63aae19de0dd9b86f2489fc29433491, 'NBT Vegas Ape Club', 'NBT Vegas Ape Club'), + (0x363557e4d802a4b8fd057beebbe4611a3aa08937, 'Bee Real', 'SWEDC'), + (0x363f1bd07dd7cf0366a7cc56495d3d7495f6d5f8, 'Trybals', 'TRYBALS'), + (0x3641077960167a794afd0129eff76e7869bd8a4a, 'te''resa_PIECEOFME', 'pom'), + (0x36427dc2e1f01398f9366a4c6a44eb1a62251ee0, 'Elemento Dragons', 'Eleme'), + (0x364281cc6334fd9243d01d7025d538a38e76aa80, 'LCNFT1', 'LCNFT1'), + (0x36467cf3bdfa2ee64c6935d97064ec986dd4ce7b, 'fool hiahia', 'fool hiahia'), + (0x364b518b65686ff064bd748eae61d619e3487991, 'CartridgePunkz', 'PUNKZ'), + (0x365be438f0c098e5109294cf639a494c66fe0aa5, 'NFT Bunny', 'BUNNFT'), + (0x366505491680cb502ccdb0cf3e33a095469925fc, 'Helmet Collection #1', 'DCL-HLMTCLLCTN#1'), + (0x36730ae0f9862c25dd761680955c52698bd2c432, 'River', 'River'), + (0x36755997d300058d20e478b0d9380e1d09d58637, 'Garbage Friends Official', 'Garbage'), + (0x367659bfef7b0783968f39c85f2ff2e011daba88, 'Bored Ape Punk Club', 'BAPC'), + (0x367f14eed5d7022a12aef13f6ecacc6fcb833e03, 'Freedom Doves', 'FD'), + (0x3686a71b90159c78eb87c358b73bff3d31c4cb6e, 'XNFT5', 'XNFT5'), + (0x3687da0bf6486d367f26e4b2cf071c926df65c99, 'Crypto Prophecies Prophet', 'CPP'), + (0x3688a60af612d3fcdfd7c79c352b488baa4c49f0, 'Ignacio', 'SuperFanArt'), + (0x368b25a502cb439da6169f5047046377bf73ab6d, 'i sea monsters official', 'ISE'), + (0x368fbfe3e2b4ac4ea2d4839984c0b95a2b677891, 'SoulBay', 'SB'), + (0x3691dcaf5e57f5b83ad417cd1a837f67250272b6, 'Galaxy OAT', 'OAT'), + (0x3692dc7e0b6bb90612252362bd1f6ee90051f0a2, 'My Pooch Puppy Collection', 'PPC'), + (0x3693741dd073ced9fc949d306ca81c48453f0a82, 'Surfsnappers Metagateway', 'SSMG'), + (0x3693985ed94e64c36f0d7f716695fcc06f3a2118, 'Crypto Teens Night Club', 'CTNC'), + (0x36960f42dc15981b976787ae0db4bba12c5a2bdc, 'CryptoMaids:Valentine', 'CMVL'), + (0x36969ac86accbe80c1619ed970b1dd5063c3c5d0, 'League of kingdoms Lands', 'lll'), + (0x369c24d2befafd3ac3710e9c37854cdf16d5a355, 'PunkDoodles', 'PDOOD'), + (0x369fc4023e8796f6c441e209a853355df7cdc86e, 'Robot Walkers', 'DCL-RBTWLKRS'), + (0x36a8377e2bb3ec7d6b0f1675e243e542eb6a4764, 'Non-Fungible Matic V2', 'NFMv2'), + (0x36a9382caa8471c448956b57122ab9af41e67e45, 'CryptoPredators', 'CP'), + (0x36ab88316f0c53adae93b68ff8325bf13a69e9dc, '21G', 'lkr'), + (0x36b61c77153d181c3538632a0b0e93cfb6312338, 'Rebel', 'RBL'), + (0x36bb04146a221ac58dfb1f3c05d655ccace0cc0d, 'DinoLand_NFT', 'DLN'), + (0x36e52462dd9d406e02f84f84efb21a0cf5debad3, 'Generation #16', 'G#'), + (0x36e5677ad7013022e44f1178b0d745e588bb3f11, 'NetworkPioneersGA', 'NETPIFGA'), + (0x36e7942ad4d8eb66b54b06bc78f076e3d3263ca5, 'Women Warriors', 'WW'), + (0x36e94d12899317dc792e558f993213eef9b85c78, 'Cyber Oni Mask', 'DCL-CYBRONMSK'), + (0x36f0c0327d244ae20741a24849004242de351c0f, 'Hamur', 'HMR'), + (0x36f142f836c7755a00f98a7ab81914530e1ae533, 'Hafnium Pyro-Force', 'HAFNIUMPF'), + (0x36f1a2cfbd814092afa21318576fe0e81a661b05, 'Shellfurds', 'SHELLFURDS'), + (0x36f6d70d122c3c120ce59c6ef46dc822374c80fa, 'OwlPixez Gen 1', 'OWLPx'), + (0x36fc769a27283dfadd2cdc21c2124c18db23187c, 'The Weird and Wonderful World of Tara', 'WWWofT'), + (0x36fce2e436cfab9746b1f83405ef52d636694d11, 'Crazy&Cute Chicken', 'CCC'), + (0x36ff9e9cad41efca56b1ccdfbe28ca10f73f0d82, 'DaoMonsters', 'DAOM'), + (0x37052416c1992d0b4a798a5414f1c8d36c70d6e2, '[DEVELOPMENT] Ma Ne2022-03-14T15:37:35.576Z 827605', '[DEVELOPMENT] Ma Ne2022-03-14T15:3'), + (0x37054f030941699da135f42656691eec949e7415, 'PuzzPlebeiX', 'PUZZ'), + (0x3706a8b3480e1a87c82ac9b94ea4bf4e9ca3559c, 'TheEvilPunksSquad', 'TEPS'), + (0x37131aedd3da288467b6ebe9a77c523a700e6ca1, 'WBTC MAI Vault', 'WBMVT'), + (0x3716444fb61ce6c6318f81f0d6e9a2980afb37dd, 'Simplys Pass', 'SP'), + (0x3722991672f2cc11a3422c1a652d878ae7f95d0e, 'NFT.Kred', 'KRED'), + (0x3723f2161388dacbd7a711da8c8a974bd3b3e715, 'BubbleBros', 'BB'), + (0x372aa8c0541dcbdee09f8b1d0d6eb67f7ff5a930, 'InJesterr - Epic Jester Outfit', 'DCL-INJSTRR-EPCJSTROTFT'), + (0x373bed08839fac6b807f41ce2e60a066415dc80b, 'Jaipy Monkeys', 'JM'), + (0x373c0586251ab47d2739bb4b544e90f8bd98d2ca, 'BullsandBearsMoonboyCollection', 'MOONBOY'), + (0x3743bd99ece00f68fe0c141540311c35e9459593, 'Beach Bodies Lifeguards', 'DCL-BCHBDSLFGRDS'), + (0x3745ac2dc00ba187a7156fbdc74e4e8595cc757b, 'Hungry Hungry BAABBoons', 'HHB'), + (0x374e4abb88b6b0bb51b84718f127eebae5f59fc2, 'VRMETA', 'VRMETA'), + (0x37532a9032c1591fee8b93b4f7e9bfd64d8e2414, 'Crypto DragonKin', 'Pi NFT'), + (0x375ce2ec67d584292f9a81e96b422e58ca52dde4, 'MetaDogs Club', 'MetaDogs'), + (0x376588763a9b0ead13b43db3f6fdb3be70eb4b1c, 'Acid Dragons', 'DRAGON'), + (0x376ec17540ca06a959612c1133176bccb8dd70c1, 'Milwaukee, WI Pop Art Edition', 'SWEDC'), + (0x376f6d51407cdf022c9b65b8b4c7ae28ec5931de, 'Wonder Bear Club', 'WBC'), + (0x3771ee61c8f212f9b9c3488c5ad0066d639ae237, 'FLUXY CATS', 'FLXCT'), + (0x3774ccc1073fc058b3f71b5cba2b3129b15f5945, 'Lucky Unicorn', 'LU'), + (0x3775618e3a7343cc55267360179aa50f666a0f3c, 'Walelasoepileman Cristovao Surui - Povo Surui', 'Povo Surui'), + (0x3775996941734e35b39fcbad09266008bcce4a48, 'XD NFT', 'CONFT'), + (0x377a67315faf867e16ac073c5605adf114c353a3, 'Azuki Official', 'AZUKOF'), + (0x377c46eb4e3714d7c32fe669121c37ecf980c59f, 'VitoWeed Joints No. 1 & No. 2', 'DCL-VTWDJNTSN.1&N.2'), + (0x377dd47f5ea5223e19d8be4c4aa3b872d838220f, 'WitchzElementz', 'WzEz'), + (0x37811b6c097680cb1f9fa950499cb5a9dced8b8c, 'Anime Corps NFT', 'ACN'), + (0x378491bb37620d85d2b6667f46c80d8bb95f1c50, 'Amazing Elephant Society', 'AES'), + (0x3786b880f988b04c8f7a88443b25c777bcfb325e, 'Tempel Tuttle Chelsea Boots', 'DCL-TMPLTTTLCHLSBTS'), + (0x378900f2c1436f5f1e21ba1726bce6d99492f419, 'SPACEMUTANTZ', 'SPM'), + (0x37908f3c7f31a715acb73ba1a47025c38577e0fc, 'Cartel Founder''s Collection', 'CFC'), + (0x3792d75be596d11d685d5e60b6f0946a0499dd27, 'Crazy GIRL', 'CRAZY'), + (0x379937da9ee8862244ea65dd4d62a8cbce882446, 'OneOffs NFT International Art Fair Ticket', 'OOTIK'), + (0x37a0d3143ca3b25180413f5e35c859b1571ca9b3, 'Crypto_Night', 'CN'), + (0x37a396a35192ae3cd7b736cd3f42dc86fb0f2229, 'NFTCK', 'CKN'), + (0x37a3d076b10f113fff2c0de60901d8c9b1db6de6, 'Thailander Drop #1', 'thailander-drop-1'), + (0x37aec032403fd69a40a710da162aee62490c48be, 'Hooligan Pets Official', 'HPETS'), + (0x37b98d1ce3550d22e3fc0c0c9de3ecf2466c85b9, 'Crazy Factories NFT', 'CF'), + (0x37c3fcc0d0000274ccfe29ff4e40b0f4290c67dd, 'Animo.Women', 'Animo.Women'), + (0x37cab9f09a2ffa8c8650dd3de3594e1cf2f38a84, 'Little Traveler', 'TRAVELER'), + (0x37cd0558cc22712efab4dea072885e769ca7eb6b, 'Awtg-Hero', 'AwtgHero'), + (0x37da451c688be9fc5c8ddb092a6c7d392f867ab0, 'JYD Drones', 'JYDD'), + (0x37dfe20206d8e6315f0e371e18c845b400d83e40, 'DF Wearable S1', 'DCL-DFWRBLS1'), + (0x37e2ce846cba0014b0dfb6384025fc0b7f739293, 'cats mutants official club', 'CM'), + (0x380227be977713ff8c5c401bb6102b4811f2c6b3, 'Rare Weed Suit', 'DCL-RRWDST'), + (0x380302e576f90ca2a9fe29312739c108078deb95, 'wyrms', 'WRMS'), + (0x3803f8497f0446ed5362c73635e3d8e9eac83d25, 'FoxHen', 'FH'), + (0x380731dce18c2da787cc56b279be00458f5e7eca, 'DistilleryDAO-Bottle', 'MALT-Bottle'), + (0x380c3748d3d44d223eaa28bfbf9f4a6601eedec8, 'WorldOfHandsNFT', 'WOH'), + (0x380ec8075113820e68bf878515d082418fe3826d, 'Cartoon Hand Yacht Club', 'HND'), + (0x381657f4f5c4dd6c1a34e9628fd34bf8845f78cc, 'Dream Kid Drops', 'dkd'), + (0x3828138c6a5d919f95d59c647492e2e8e49c3ac1, 'GRILLZ N GOLD', 'DCL-GRILLZNGOLD'), + (0x38356aa0e1717a1dbc9a421ca8da4f1fa7fdec73, 'EggZeeUniverse', 'EZ'), + (0x38383befa7c792ea9825d55310a5fa9d037663bf, 'WLD Wolf Pack', 'WPK'), + (0x383ddca4aaeb7a2c12f9285f57cb048e85b4d505, 'CybeeDAO', 'CYBEE'), + (0x38470be96577b8d89952d2d9291bc4a1c1ccc5e7, 'Astrology By Anand', 'Astrology'), + (0x384a5d6bbf1f33695fb07f7d061366ac1885fe06, 'New Crypto Heart collection 6', 'NCHC6'), + (0x3854f4488818315398b5a18d3ee28bc7081672cf, 'Crypto Gent Binary Suit', 'DCL-CRYPTGNTBNRYST'), + (0x385bc436c3e4cd747be109c65bd6e6f2262a708b, 'GEN-H37', 'GEN-H37'), + (0x3868b30386c60ed86661b98079f538b563d621af, 'DarkHobbySquad', 'DHS'), + (0x38776a041ab363ddb58a1ad1e434a29572943b30, 'dPatreon', 'DPT'), + (0x387e9625a6fbde9f483b8371ff35c10ad8621980, 'GRADE APE TROOP', 'GAT'), + (0x388323ad9a9da54a8581214a471040c66c6b7e5c, 'Horns Of Wonder', 'DCL-HRNSOFWNDR'), + (0x3883d5a29cd16adc435a3c45c64a5e7f5be93149, 'ofofofofo', 'io'), + (0x388d19fa6f4b654a8bd92ff7ac887af0281491ea, 'Zombie Kids Community', 'ZKC'), + (0x388eb34b54fe92e944b81a23f8e60146ca838180, 'LaborChick', 'LaborChick'), + (0x389667155b14606b7069c6250f97771361b71dab, 'Anatomy Science Ape Club ASAC Polygon', 'ASAC'), + (0x389e11255a78db6c8eddf8b5e112470f026d19e2, 'CropXYZ Plot', 'zPLOT'), + (0x38b049c5f8385e25caec76ac970dc2684e359ad7, 'BENFT3', 'BENFT3'), + (0x38b1ad6b0974db4c818fdbee682e16c2275db750, 'Wayable Weird Creatures TMC', 'DCL-WYBLWRDCRTRSTMC'), + (0x38b300449e342552deea4e18d9162bc0c16420b5, '8SIAN Wearables', 'DCL-8SIANWRBLS'), + (0x38b50e28362c4667c55d46440658a1ed91a2b50b, 'Bad Panther Club', 'Bad Panther Club'), + (0x38b7c9e5bf45610689e3dc7e106a351360f9043f, 'Kitsumon GEN-0 PROMO EGGS', '$KMC GEN-0 PROMO'), + (0x38b9aa4056fb0847bee6271572179172ef3594d3, 'Silver Live - Tawanda CrypoJazz Festival', 'MJ010108L_Ag'), + (0x38b9fc2cce151f7401a34ad54648315582dfdb75, 'PEACE PEEPZ', 'UNTITLED'), + (0x38c2ef1130f79a08d20c62e3726c9338d950431e, 'Kitties', 'CAT'), + (0x38d87098d6cae79cd133e7489da8ac8ab71a8c10, 'Vox inWonderLand', 'VOXIWDL'), + (0x38dbcf56996132e72acfc79a0d32b37a099ec1ad, 'PeroniTokens', 'PRT'), + (0x38dc23d724e29ec1071d07f3d1c85f8fdf7de761, 'WaterMan', 'WM'), + (0x38f6e9d52f8b29cc231159347deb1b6482e5b3b3, 'Matic-Contract', 'RAIR'), + (0x39033dafac1a724999afa90b3cdb3cd53ee7905d, 'AngelSkulls PIXEL MINING CAMP - SEAT FOR 1 MINER $ASC GUARANTEED + 2D DROP', 'FPM'), + (0x39056796acd7c31647a701fa13c5bb382f9de29b, 'Elyn KD', 'DCL-ELYNKD'), + (0x39075cc234fb077b396afedf72a29eea365eaaaf, 'The Unicornverse', 'TUV'), + (0x390ad89ba5409b0fb99d25f96b9b1ad390cd0ba3, 'Ape Azuki Club', 'TAC'), + (0x39169b0900b65414c7e2ac2d99e7753b524b50c0, 'Nuke Yog-Sothoth', 'NYSGRC'), + (0x3921f7ad3d6882addba8202918d36738755f78fe, 'Zodiac Elites HN', 'ZEHN'), + (0x3922fa5d9265dd20bc4c6efc20da5a08f2a8fb46, 'Mystery Box CATAMI', 'MBC'), + (0x3928e5f58ce67b2f4aa0c08e43f7f095a8453fab, 'WPNS', 'WPNS'), + (0x392d787c0a204d68acddc5795e32a4a0f5f1688e, 'Ugly Birdz', 'UGLY'), + (0x393158acb1afe826a3098a8100b1ce4bbabdd257, 'Meta Milfs', 'MetaMilfs'), + (0x393c939ecab08c20703533c0ff4d34a2d0261d78, 'UrbanUpriseCrew', 'C'), + (0x393e4ec674bd01b9523fefa4ff46896909fa9bc7, 'Generation #17', 'G#'), + (0x3940947040a6d7caad6308711d5c2ba40ace7db6, 'StoneyEye Rasta Shades', 'DCL-STNYEYRSTSHDS'), + (0x39419b76de9b90ed6525c2bdd9f7f7f06a2a1b27, '6MGMNFT', '6MGMNFT'), + (0x3942adc7e16cc491e95245ca58892dfada0e3aa0, 'Apes', 'Apes'), + (0x395ab8d889d3075ce56003ceee159dd4f99de08b, 'JTV''s Jersey', 'DCL-JTV''SJRSY'), + (0x395b8cc9a20b7407c9f29fffc2b0932071aaf037, 'Django Dino', 'DD'), + (0x396345293d73a4acd1c77eabe4bfda11881fd5a1, '90s Frens NFTs', 'DCL-90SFRNSNFTS'), + (0x3969e6ed6218116dc3fb464550ab26272cf442db, 'Tribes of the Aftermath', 'Tribes'), + (0x396b929235c783683d8b00a655ca6381846c26bf, 'ShitcoinsLegoLogo', 'SLL'), + (0x3978962fcd3909ce6684f58479611732c61d83ff, 'Pharmanauts', 'PHARM'), + (0x397a7f59cc8e47854df20116ff0c0aa370371c49, 'Blockvatar', 'BVTR'), + (0x397aeb2cbd1e7b387acb7234b6600cd087b09498, 'MGMNF17', 'MGMNF17'), + (0x398ca81539ca54751f383933e2b838ff99291cc9, 'Azuki Skullhead', 'ASH'), + (0x398cd94c7c33107fa62184ddc27e2dc52cc0caa4, 'Hydrogen', 'MHW'), + (0x398fa4746e370c0e295583ec00b09f248acf1b5c, 'CryptoCatsClub', 'CCC'), + (0x3992277655ad3f8dd5126f5ef07bb771891f3c34, 'Futures Factory - Membership Card - Genesis Edition', 'Genesis Edition'), + (0x399618fd315116a25e64aa4e43b699365bbe6d9e, 'BOMB Money OG', 'BMOG'), + (0x399b0156a3577d2a0bd10238c860ee831d7bc704, 'GAT Bridge', 'BRIDGE'), + (0x399f7b159c6e6f269cf8c4bc4a5492b8c1a9f402, 'BottomFeeder', 'BOTTOMFEEDER'), + (0x39aa7cd4b942a79d8dee5240bee3a935046815e0, '200 Keys', 'KEYS'), + (0x39ad160c95e1c40150509e18efc39ed901ae9007, 'WorldOfHandsNFT', 'WOH'), + (0x39b58efac5042c3dca042937b92942a336c4f690, 'Twisted Bears', 'Twisted'), + (0x39b941007a82c265c0c053b9a2bd85ac47ed6682, 'Drip Society Launch Collection', 'DCL-DRPSCTYLNCHCLLCTN'), + (0x39c8eb5fef6ccaec420ace803a9e153968f517f7, 'The Suga Boogas', 'SGBGs'), + (0x39cbee09094af5a60572ce42707852e4b0c1857d, 'Celestials', 'CELES'), + (0x39d8fddf939ab075e41a1b032a0006d6740ba095, 'CryptoPhallus', 'CryptoPhallus'), + (0x39e95009813d5ab6307949cda8e7c0c1bb2c631c, 'SedBoi', 'C'), + (0x39ee3d0cefc1042d033c7d4790377ad1b016f55a, 'Car Gang', 'Car'), + (0x39f45e3cc4b2c014ddd84f19dda2a3482e38a502, 'CrazyThumbzz', 'CTbzz'), + (0x39f7018bacca280f6bdbed07a293594ef82093b6, 'Basik Shop Tops', 'DCL-BSKSHPTPS'), + (0x3a01f060a2424ba427d8377660e85eb9d0df843b, 'SeasonalHeadz', 'SHEAD'), + (0x3a03842776f13f622699a2da8ab2d022a606cc03, 'CVMiniGames', 'KEY'), + (0x3a06f714742e6df5a4936bdf60fd497de005ceaf, 'FunGuys Club', 'FGC'), + (0x3a1803dc6a58a1808d35fc2dc49a21634ff612ff, 'RCKBOT', 'RCKBOTNFT'), + (0x3a1bb47ca3c260c8bc8c3c3b0f1ad3ec8e20c2b8, 'GEN-L19', 'GEN-L19'), + (0x3a1d2aaa511a39da6b2dea8c229498bd5dc9370b, 'Kyomugao: Despair Face', 'KYOMU'), + (0x3a1d3a7ee10c3ece542bc9dcef7819a836d0d172, 'Orange DAO Hoodie', 'DCL-ORNGDAOHD'), + (0x3a2060453e40944b251624499620545f3d9c35be, 'Wisher Vodka', 'DCL-WSHRVDK'), + (0x3a22b4b7185ef4da982d8bc94f30f799654d8541, 'Zion''s Landing Universe', 'DCL-ZN''SLNDNGUNVRS'), + (0x3a23bf645bc72ca2a2cdff392c6fbf10694d5922, 'WarriorNick', 'WRNC'), + (0x3a25485540327c8e0f14e2a82cc81635720649f2, 'League of kingdoms Lands', 'lll'), + (0x3a271ea79395ab30592c4cd6ee290064410d403f, 'Crypto Birds Cafe', 'CBC'), + (0x3a38149bb39818dc7917b10a4b34b1f8c3d2e678, 'NFTs', 'NFT'), + (0x3a3cee8e3320c851c9450c03622a331f06af0eb3, 'HippyEggy', 'HENFT'), + (0x3a3f6da5bae9974c66b16cd4b1efd1585c081b19, 'FledgeFlies', 'FLY'), + (0x3a4243d103b5caa1feaf94d736f2cc3342093219, 'Mad Science', 'DCL-MDSCNC'), + (0x3a4b45525c5ec747f8b7ebdcb42f1cdf955f554f, 'PixelMixGirls', 'PMG'), + (0x3a4e48e1054caa18eeaf8baa7033e8c47d60e228, 'Secret Weasel', 'SW'), + (0x3a53ed558abe74cdb12032097628b7c330c36d88, 'Nitad18', 'NT18'), + (0x3a5576698ae0a2ff06d430fb15426013d0884e9e, 'Cryptonauts Space Club', 'CSC'), + (0x3a63bac96475da18db7bd70b8f057dd285f816cf, 'Council of Kingz', 'DCL-CNCLFKNGZ'), + (0x3a692f7d316cb4721561d1ba767af072e1062454, 'BullsandBearsHodlerCollection', 'bbHODLER'), + (0x3a699685136e575955e07c237b2bf0cb3ca3d610, 'LavaLampClub', 'LLC'), + (0x3a76b74f7efa18a4f3fd8711eac580674b418076, 'Shroomos', 'SH'), + (0x3a7ba249ab7f8a32d3a3554d145f196239c3ad94, 'CamouflageApe', 'CAMOAPE'), + (0x3a80d48f2a0d8954772551f9099b9a65402b32a8, 'Big Wave IPFS', 'IPFS'), + (0x3a863598318fd981a59f62199f603593be0c45ae, 'Tiny Planets v3', 'PLANETS'), + (0x3a9481218e7122a7c14fa8094601fe06248bb2cb, 'Architects', 'Architects'), + (0x3a9d9a85e3146d788a9342ba96a997f693d8075d, 'My NFT Token', 'MNT'), + (0x3abff13876d0dce761c98126e6a70b4ffe072501, 'Royal Elephant Club', 'REC'), + (0x3ac043dbddc0f39e611133dda4d0bb0de8b3ab00, 'Crypto Eyewear', 'DCL-CRYPTEYWR'), + (0x3ac82bde71632aa9d13066c2b0847c3367474bba, 'WildJagClub', 'WJC'), + (0x3ac9b0a425bcc04b641f0f614e3a97da0fb676bb, 'Bad Punks NFT', 'BPNFT'), + (0x3ad0bef5731d46dc1d8093b69328b26b40f2114a, 'BoobGirl', 'BG'), + (0x3ad75ed28c8c78a932b937ca0b581e8f72329808, 'Generation #7', 'G#'), + (0x3ad875c334491de7e505c21682a13c56943f93a9, 'RenmoNFTWorld', 'RMNFT'), + (0x3ae01110a83a5b383222b4bb41ffae475b8525d2, 'Barksie Staffy Puppies', 'BSP'), + (0x3ae4ebbee0d666b73586f761dc9067409c17793e, 'SuperChess', 'SuperChess'), + (0x3ae53099924e8a515db8e30337aae6d8c863d86e, 'PolygonShapes', 'PS'), + (0x3af869dbb5c8ef55e5758ec8d15eabe32d6329b1, 'MekaFight WhiteList Invite', 'MekaFightWLInvite'), + (0x3b03a8008790f45f9ef26772a76730c57405a13f, 'Gotchi', 'GOTCHI'), + (0x3b064095683833fe47e78b24b5ff3f0830c6e973, 'KAZUTO Drip Maxx Moon Beamz', 'DCL-KAZUTODRPMXXMNBMZ'), + (0x3b0a5be950eb920b3867b38d2c49be9a1fee60af, '[DEVELOPMENT] Fl Ne VFQNVU', '[DEVELOPMENT] Fl Ne - Ed PUWXOH'), + (0x3b0edba1657c531e3f93fd19fc70056ce17857fd, 'NielsDigital', 'NFT'), + (0x3b1942f5a3d293945ff2da664bf05145c053e005, 'VeeDubBug', 'VBUG'), + (0x3b1b6d8bcba1cdd8b4f68b60b8c32c0b6daee160, 'Wise Kevin Punks', 'WKP'), + (0x3b20cc761c4e46ebeb50d5c9729116acdc2a6ec7, 'Small Bros', 'SB'), + (0x3b30663a6cf8fdf8c8d6f1c7da76bad44f9c129c, 'Scarcryptoface', 'DCL-SCRCRYPTFC'), + (0x3b3672f6aba91cc7c03bc59d0b1323599a3511f8, 'LiftedElephantGroup', 'LEG'), + (0x3b46a4a89b47df0cf845abe6a2aa5414ee7470c8, 'Azuki Doodles', 'AZD'), + (0x3b4b3e5c44af00155cf3654aa964de1ebf0156d5, 'Alleged Squirrels', 'ALSU'), + (0x3b53c32c6be459c010d0f366f97351fea82d7769, 'LlamaZz Revolution', 'LR'), + (0x3b55809055985c8b7b4aff6cf01b783226672736, 'MyNFT', 'NFT'), + (0x3b58b1bf2068bf3a718836f184488645630b81c2, 'Dragon Master', 'DM'), + (0x3b6d35573dfede926e2958c48286ad8d5514139e, 'PlanetHeadz', 'PHZ'), + (0x3b760dc45a9e3222f6fa17955b7b168f11ac70fc, 'GoofyChickens', 'GC'), + (0x3b7ea765ce03fbf88f6eb3bb6e6c6e95e081bd15, 'Oklahoma - Woman Dancing', 'SWEDC'), + (0x3b8c2028c3beb27f9cc20f97f588610a58c355fb, 'Ape Explorer Club', 'AEC'), + (0x3b91dcdf6ad80ab2ccd5e6f3880e007679df08ad, 'Fully Faltoo_DunkJunk', 'DunkJunk'), + (0x3b937663cbccc108b4b847b210dce6f17693457b, 'B is for BOLD', 'BOLD'), + (0x3b94879cf9d780e348c5716ba004e5a37317f5cf, 'AI DREAM: CUTS', 'AIDC'), + (0x3b98b98b5d6aed335a830e2113abc29781360948, 'Sobriety Squad Token for 90 DAYS of Sobriety', 'SBR90Day'), + (0x3b9c540c1e6f184bf986145ee9275af6cc0d21d7, 'At the Beach', 'SWEDC'), + (0x3b9d19c1bb20d5179c92417a56d05a17b94e9494, 'KangarooPunchClub v2', 'KAN'), + (0x3b9e7ef21b6d9034691570b309ad85ac1b0a7ab8, 'The SandBox Lands in the Metavers', 'sand'), + (0x3b9ffc5c6b82fdc84edce995d24aa9b0e5c15e13, 'Munchies Satisfayer Fridge', 'MSF'), + (0x3ba04fac6fa44c49bafd04471e97269d5322397f, 'LazyBekantan', 'LB'), + (0x3ba1279901e2d2160e01bd7ee15ff6d885d8e1e3, '721 Token NFT', 'E721'), + (0x3ba226e0e652b86229fbb743355d8c598fe50ec2, 'WitchBots', 'WBOTS'), + (0x3ba6b6cbcd1ed6075b79bde39ff5e72dc8e9de54, 'Awesome Slimes', 'AWESLIMES'), + (0x3ba9d34deb06a4e8898001deae80da0a10f33f28, 'Car 22 Porsche Pits', 'SWEDC'), + (0x3bb83e704de6c1c6370232e75b3da15f3398d75d, 'LEGIT APP Certificate', 'LEGIT_APP_CERTIFICATE'), + (0x3bbe75870b45aa77bf30de035db88b195df9a4b8, 'BlockWinery C-NFT #2', 'BW02'), + (0x3bbf8462dd9710182c030dee1afa92ff4eeadcc7, 'Crypto Pixel Pills', 'CPP'), + (0x3bc51f9f498be85f28d78099a45884e6be2d2b66, 'Goodvibes', 'Goodvibs'), + (0x3bcaf3e9407fe96d57f2fb549a0ed75d982ad888, 'color', 'col'), + (0x3bd47abb3e0ba971659db0e42261bd19aef9967f, 'MetaCM', 'MG'), + (0x3be18a11de578640576e47a6b43435d9d6a7bfa0, 'TGNFT5', 'TGNFT5'), + (0x3be24e721da79c8dcea3cd9a4a3a4098aea95963, 'ToughElvesClan', 'TEC'), + (0x3be62e07aed78ddd854af029f679fd29b86d7bb2, 'Beeple''s world', 'BW'), + (0x3bf759d205c76b344880446fc5171c780255e889, 'Whales Life', 'WL2'), + (0x3bfa6fe20285fc0cdc78b95fa07fc2afee54b410, 'MOFO’s', 'MOFOS'), + (0x3c034f85de3d33e15f8a1022b3513b1444e50f78, 'Crypto Gent Binary Shoes', 'DCL-CRYPTGNTBNRYSHS'), + (0x3c03b5b3d21e56611653c2d323c1c3b1207a5f34, 'PolyDoge In Love', 'PD❤️'), + (0x3c099e880aa2f614651eb286965fbb9d1b476ab9, 'BabyOrangeClub', 'BOC'), + (0x3c0cb7e71e02295b6c6c4ad21bbfe0d8e88f8e98, 'MQ PUNCH', 'MQ-PUNCH'), + (0x3c16d9a3c12a49c188d53112f19997f928c0cd06, 'MVP Society', 'MVPS'), + (0x3c1e535c3a99bae25414d77d431b2f3e91e82cea, 'Rowing Sharks Champions Club', 'RSCC'), + (0x3c27e14fa6869a657584fcc159ac5a7740ff8b03, 'Hennessy H Capsule', 'HC'), + (0x3c2ce18d92c17c0b47fe848c59e7d61def676e4e, 'DoggoBrick', 'DoggoBrick'), + (0x3c2cfe1d3d5b4b532f053257aec6de973d2fbce0, 'MetaDojo Eyes - Clarity', 'DCL-MTDJEYS-CLRTY'), + (0x3c2fd9de0fdcfa0e7c7c3a09f1412ae3226734c7, 'KaplammerNFT', 'KPLM'), + (0x3c370767e143e81fb97d25b0d41d8eaebc9008d4, 'Mascot Head', 'DCL-MSCTHD'), + (0x3c389035de3d910db3a8b77e69b1e4aad800ebc0, 'Bot', 'BB'), + (0x3c468f9f10015b4c152ea8c4d4701f44350e010a, 'Game 3', 'SWEDC'), + (0x3c46ee6a7889a4d4ac3040d89a33c00fada707ea, '[DEVELOPMENT] To Kr 976124', '[DEVELOPMENT] To Kr - Ed 924428'), + (0x3c4de6d30a97dc3ba13ead94c636e77c53903a81, 'Aoww Aoww by EPICSMASHER', 'DCL-AWWAWWBYEPICSMASHER'), + (0x3c4ee99b0e548e33d6a3eafdd66957f1c357a21b, 'AMPERSANDS', 'A'), + (0x3c53d2c9c3d6446c21b45e9b9e64380b35d18c82, 'HalloweenQubits', 'HalloweenQubits'), + (0x3c53ef48c909c9bc312db5c2f83cee45a3e304bd, 'Meta Bottega - Samurai skin', 'DCL-MTBTTG-SMRSKN'), + (0x3c5b16f12fe2d2c48a1e3299aecc64e7b595a93e, 'Gang™', 'DCL-GNG™'), + (0x3c66f4c31ddbbc248c0f92bfc0112be964d5c132, 'Apes 3D Money Aura', 'DCL-APS3DMNYAR'), + (0x3c700d2c078d2af65728c3969f88fa7ec812d86b, 'Hog Mob Society NFTs', 'HMS'), + (0x3c7196c7be3b54c4644e8d6562ecbd4f5c0fd7ec, 'StackOS NFT 4', 'NodeNFT'), + (0x3c7424cb6c6df31143817d30bbd4ff2dddaadae6, 'NaughtyTigersPunk', 'NTP'), + (0x3c74b28c4ee4ca015f94d2094545f12c5a075551, 'Crypto Toppers', 'DCL-CRYPTTPPRS'), + (0x3c75b3bd751eb90db5e992e0c735d8e4df386906, 'Fuego Fashion Week 2022', 'DCL-FGFSHNWK2022'), + (0x3c7c741eb35cc042d94d66e3a10004d669396e10, 'A.I Tribe', 'AITriibe'), + (0x3c897d341bf3f1268b5a5fdb009d7223b965876a, 'te''resa_PIECEOFME', 'pom'), + (0x3c8ba6955d5e69cf853d421bf197939da2631595, 'IAC', 'IAC'), + (0x3ca7462690e4f5b6fb55f12f5b47fdbf5275f24d, 'Nike Bored Ape', 'NikeAPEPP'), + (0x3cacfd879004b722f0aa957712b50c08375bd5e7, 'Grandpa Ape Country Club Polygon', 'GACC'), + (0x3cb49ae34f2edcc121b63c65ba5885ef688e3e26, 'Royal Skulls', 'RSK'), + (0x3cb4a6c21c6cdc3b526e4ef43d14bcebec21345c, 'BATTLE DROIDS - PINK FULL BODY', 'DCL-BATTLEDROIDS-PINKFULLBODY'), + (0x3cbc578f12f7dc09d7f96161cb96207a6251e49b, 'Kansas City, KS Gold Edition', 'SWEDC'), + (0x3cc32c78bc8cf6007c4e9fba8ab76cd40091e5f3, 'Sweetbot Orange', 'SWEDC'), + (0x3cc4d27c666cb509cb83b7de18f45579e499732f, 'Before The Fans', 'BTF'), + (0x3ccb53775f9780c3988a70bba523f0584458d93a, 'WorldPeaceNFTwarboys', 'WPNFT'), + (0x3cd682f32303def99a77d567a9c457807d9e232c, 'Variety Power of Women: Los Angeles 2021 Commemorative Invitation', 'SWEDC'), + (0x3ce3c477e58681bf89185cdf18184111f3909998, 'KAWS', 'KAWS'), + (0x3cf153c64ad44c63725f8cf16d04c6fb6a1d8ce5, 'Dallas, TX Gold Edition', 'SWEDC'), + (0x3cf549e25c319c0f80b98b527cd44c5ed4f661eb, 'BENUS', 'BS'), + (0x3cf9bddf305ae8a6103ee9930d5a843417560378, 'FromHashLipsEngine', 'FHLE'), + (0x3d01c93b98a499517ed0ceb261bec973ba793793, 'LunchBoxLoot', 'LUNCHBOXLOOT'), + (0x3d05f00f4a3e47fcbca68f5b575de786bd022886, 'The Dead Wizards Society', 'TDWS'), + (0x3d0ebeb15e8ba82a52190635cf026e87976cd443, 'vrazy man', 'VM'), + (0x3d1cb0a0623d86810929e4a27fa9069d5e9aa1a1, 'Disparate Monkey', 'DM'), + (0x3d2672cbad3314d20c55cffc0dfee39487bfc035, 'Angle Drip', 'DCL-ANGLDRP'), + (0x3d2d15e1f7508f2d4c7d593e027b7483137108f6, 'FreshFrenchies', 'FF'), + (0x3d342443317908deb7cc3dd14b94bb26c163e248, 'The Metamen Worlds', 'The Metamen Worlds'), + (0x3d4a818c3a56bfca4de3e2a1d9f2565747cac1b1, 'SpeakerHeads Metaverse Festival', 'DCL-SPKRHDSMTVRSFSTVL'), + (0x3d4df58d7de9c2dfdff633c6a9517c284ce448c7, 'Helmet Haze', 'DCL-HLMTHZ'), + (0x3d5c48f88d2be7cddfc8a50211c042a4a217e2de, 'Orlando, FL Gold Edition', 'SWEDC'), + (0x3d5cc0fde50e6d4767edff1565886b7fc249d98c, 'Mutant Ape Yacht Club Gallery', 'MutantApeYCG'), + (0x3d634c8e7cd5c8391cc8af86c81c992d8a57fab7, 'Goddess Wedding Dress Collection', 'DCL-GDDSSWDDNGDRSSCLLCTN'), + (0x3d63be4a70036aa85f46d4bcd66bf79e09778473, 'SepiaZZ', 'SEPIAZZ'), + (0x3d65aa59c99e1051464711b16e3422e58602865a, 'Poly Orgonite', 'PORG'), + (0x3d6ed08627a1b3724a7d31f7027745894e4236dd, 'GEN-T52', 'GEN-T52'), + (0x3d737960f7f96dc8ecce5f0c8faf074d459c639e, 'CryptoDuckOfficial', 'CD'), + (0x3d76c8ff389c08eb87740ee796182b552c1c3e31, 'Glow Socks', 'DCL-GLWSCKS'), + (0x3d7cbfcb927b56efdf423627bffc8e7d82b019a9, 'Doodle Punk Dudes', 'DPD'), + (0x3d8398ac989cb4232b64db13327cbea9e7929f8b, 'Too Cool For School', 'DCL-TCLFRSCHL'), + (0x3d8f58dffa3042ec0771ce98393ffbd3a1d5e05a, 'Rugged by the Nation State of Ukraine', 'UA'), + (0x3d922b6a7690f64513fcf1c131f8c8ee2f047dc3, 'Winston-Salem, NC Pop Art Edition', 'SWEDC'), + (0x3d925a9884eac58e39dc9c5cf34a144fa3cf44e9, 'GEN-H26', 'GEN-H26'), + (0x3d9b4415432dee8741429198ce818f15fd4769e5, 'RARITY OTTERS', 'OTT'), + (0x3d9c7f703bae62393231bcd38f2590a5f7ad131c, 'Tigers Crypto Club', 'TCC'), + (0x3daa94777c1e3dd0fa198dbc6928ba1a186ed147, 'ApeGang', 'AGC'), + (0x3dacc2f47c9298bc86853150bc67a8f5c3290ce8, 'The NFT University', 'TNU'), + (0x3db6e2c269a2003bdd16005fbfcc010eafc49402, 'CryptoApe Nft', 'CAN'), + (0x3db7ef0c549bb9fd2a23dac6fc322317d480ac89, 'VoxinWonderLand (NFT)', 'VoxinWonderLand'), + (0x3dbdf3259885ca99b0ec71fa2f31270dd7174627, 'BOTZ Wearable', 'BOTZ Wearable'), + (0x3dc7a841c1ee376df48d7d21940481ced841c825, '#shadowysupercoder', 'DCL-#SHDWYSPRCDR'), + (0x3dc8e0c48fe21d0d6a304fb48c42cb4bb3596bf8, 'fibrand', 'fr'), + (0x3dcb223cd06745aca391d6396e6e4e73e5ffc92a, 'Seven20', 'SEVEN20'), + (0x3dcf52b4fc73462b6cceaaa169fb86c4fc0e8391, 'Neko Life', 'NEKO'), + (0x3dd1779ee7454d5bf64cde63e7d577cfc3370784, 'OG200', 'OG200'), + (0x3dd385c6300253e182768e2fa14f6f16fe1cba93, 'Funny Ice Cubes', 'FIC'), + (0x3dd79068441688bdf30e4297fe41f968a695c920, 'Monka', 'Monka'), + (0x3ddbf98e516b77ff0ac42ac16ad1855c9bb64e22, 'AtomicWings', 'DCL-ATMCWNGS'), + (0x3dedc36463e1fd8ea4d0e9941a205ee144feef2a, 'The Holy One', 'DCL-THHLYON'), + (0x3df29c2bf98549d0b790f688ca811c5e12bc078a, 'katoren', 'KT'), + (0x3dfa038878c1c3d30da1614879a8792a9f4027de, 'Dour Darcels', 'DARCEL'), + (0x3dffe1b960e5dc0fd91edfe1819bbe821afb8335, 'Shady Buddy Honchos', 'SBH'), + (0x3e093449f4382a7c9c5533149687448bb7afb6b6, 'ZENTEA DAO', 'ZENTEA'), + (0x3e10c2f28f1901608ab47f9068312265461f8677, 'Pasteluga', 'PL'), + (0x3e18ec3b716d7b00ab1121efba7c850445723b20, 'OBEREG Flower Power - Base WIde Circulation', 'OFPBWC'), + (0x3e1acae13e44ce3745d354a4493bfc385b4a4bd0, 'GEN-T24', 'GEN-T24'), + (0x3e1c548332acb6337683c9fdade8c4c8ab660852, 'Lame Duck Club', 'LAME'), + (0x3e1c64ab59580882642d2fb7ba0fc1c3abd243f0, 'Unique sunglasses', 'DCL-UNQSNGLSSS'), + (0x3e2224af5e78a098273391d9d8779a72385411ef, 'doddle', 'dde'), + (0x3e275a08ade69b597b23049f8ca122f7c4d912e5, 'FunGuys Easter Egg Hunt', 'FGEE'), + (0x3e28871102861be746a9e820c8859d55ff5291bd, 'MoodyLlamasClub', 'MLC'), + (0x3e2a01ecd5c57e8e8d4a22e37c2289aa38ee7527, 'Heimr Membership', 'GLINGURONE'), + (0x3e2bbe8d725d513314c33cac49d07484e650f5fd, 'Webedia', 'WE'), + (0x3e36d582b502fb6096b59e0decd934065a590fa2, 'Chippi’s Secret Space', 'Chippi'), + (0x3e3c587a2d66a0b35bb8fe4cbadf54090db36df8, 'Raccoon Squad Club', 'RSC'), + (0x3e4b275c2dacd2a5ab7ed53e18d471acd178a5e6, 'PXLSHT', 'PXLSHT'), + (0x3e4f7feb6f5e5dc82ef7065b7fb70ae6fc56b9d2, 'Bored Ape Boss Club', 'APEBOSS'), + (0x3e5343634e49a4496097886e63b45b1b71d5ce73, 'Generation #24', 'G#'), + (0x3e5b5f1172d0224e07121eda5ea0139e5e1cfade, 'PolySmurfs', 'BERRY'), + (0x3e5bc6c3c60eab53c305fbbfd0224eb64cf60df5, 'AquaFarmCommander', 'AFC'), + (0x3e60bbd468b19ac83938ba91d063c7966f9c6bfe, 'BuilderTokens', 'BT'), + (0x3e63938400a867880565a762fe38fc9915400464, 'Legendary Weed Suit', 'DCL-LGNDRYWDST'), + (0x3e76cec56a87c07f576f57b8c45d6621abacff99, 'Dragon Master Box', 'Dragon'), + (0x3e84de199c6c31ef91f6103d37eefe947ca05077, 'Lovepop', 'SWEDC'), + (0x3e8a2ff6bd62796490072669eaac1b3ca8e27ce8, 'The Lonely Toad', 'LTOAD'), + (0x3e95ce9819990696e0f85933c54db79ad7fb322e, 'Dusty Old Skull', 'DCL-DSTYOLDSKLL'), + (0x3ea320e01145dbc774363682ca3848af60487f3a, 'MeWorm', 'MeWorm'), + (0x3ea4665f2ef21b373d7dfe39041b139dd3723dfd, 'Bold Kongs Club', 'BKC'), + (0x3ea519ffdd77a133e87f2597d734a13150f03e98, 'Neighborhood Kids', 'NKIDS'), + (0x3ea90e8234015a1c52ad2fbd5971b95ba048cf8f, 'UnlistedPunks', 'UP'), + (0x3eae48ea7b0cd3c735da61cbee6146a52431e440, 'Recone Key', 'KEY'), + (0x3eb229a9b97d9061583ddfe046a2985b5d9e5ab2, 'Carousel', 'NFT'), + (0x3eb8829dcd10eb76969dce212b991c9eb403aecc, 'Poco from Brawl Stars', 'PBS'), + (0x3eb9448d489e529d65b03422a653475a662b7054, 'SeriousClubTicket', 'SCT'), + (0x3ebbe921fc886e2c97cd571f64fdc5b146a41fd2, 'Peace-Alien', 'PA'), + (0x3ec0c343328599e3e14c85cca83ab354ae1b3e3b, 'Mutant Shiba Club', 'MSC'), + (0x3ec1879cb94b5d3268db0a7a1ec2babc0e44716c, 'Phantoms', 'Phantom'), + (0x3ec2ad140b99eadd86c19fcfb20644ca8b49ca5e, 'Avanime', 'AVANIME'), + (0x3ecfdcc62a7eeeaf56c2bb9ddea8718a4e2c240f, 'Clever Girls by Fat Baby', 'DCL-CLVRGRLSBYFTBBY'), + (0x3ed02f79901fc1e760c84cabfc71dc975ad44f71, 'TFA Apoel Nicosia Fans', 'TFAAPO'), + (0x3ed566fbada3daf43c0b4f624102c7e10a925b9e, 'iZi Flexible Date Vesting Voucher', 'fviZi'), + (0x3ed7a91a3274e2548d74063df5af7c306efb6f51, 'LLD LLC - Business Card NFT', 'LLD'), + (0x3ed9b49daf656caf105eb3c0ce85bedf7bfd9074, 'Project NANOPASS Polygon', 'NP'), + (0x3eede317a1d997dd275cee7f73395590036f3c0c, 'CityRoots', 'Vault'), + (0x3f04562b1e169e5149dec8f63a77e9533c7d3f85, 'NEO ROID', 'DCL-NEOROID'), + (0x3f1404baa6886ab94bf8fba4d58bcc1fb5d497d0, 'Hungry Buppy NFT', 'HBNFT'), + (0x3f1997010c25c386be9ed7a815c187d4a6a40d7c, 'LuLoNFT', 'LuLoNFT'), + (0x3f21ca8a4f59c13f968c09eb2b5fb4c1444be99e, 'CrazyBeholder', 'CB'), + (0x3f227c7f36749213f9f90474bd130a028e474f65, 'ZhenPinCafe', 'ZPCafe'), + (0x3f24949061541fc8416cb0780b8584e38dd4bd2f, 'Mighty Owls Club', 'MOC'), + (0x3f272bfb3d8bb12c0bde1f923b47410a07ba788b, 'GEN-H31', 'GEN-H31'), + (0x3f2a64fb804d1e2619c23125450d9fc2762d7981, 'KGF', 'Killer GF'), + (0x3f2b71cb470bc9821e7d687a7a3ab6821f9c6f0f, 'White', 'SWEDC'), + (0x3f2ede313d6f459a8f58f10a979ada06c27f2f0c, '8BitBones', 'BITBONE'), + (0x3f3a4fc78bbadcb9c273142e9cd01a0bf1215dcc, 'Providence, RI Gold Edition', 'SWEDC'), + (0x3f3ec8c9016802aa2c5cadf30e4f35903cb54c37, '20220321030', '20220321030'), + (0x3f411070804770886008ee0a0593e6224c837a99, 'You Collective', 'YOUCOL'), + (0x3f45177f11c7a57afa871999a2273fd9e7cefd10, 'Meta Meow Millionaires', 'MMM'), + (0x3f4626a985c67a4c0a06810cd74f2ef02740b5af, 'Galaxy Frens', 'GF'), + (0x3f4a55246bd02d0fcaa0723d7f75f003a0773b7b, 'Free Hugs White Board', 'DCL-FRHGSWHTBRD'), + (0x3f52e7959480b8b4319f14ac7832d9a34340ce35, 'CryptoAmstaff', 'CA'), + (0x3f533cbe453a364d62da77fd3080ee3241c40788, 'CoolestDogLover', 'CDL'), + (0x3f5dbb0222022a723ce56723f80c4312cb50547c, 'Purrnelopes Country Cats Club', 'PCCC'), + (0x3f5fa4344bd8fcf3e91e1c9cc3ea986e4d4483c7, 'TheGateKeepers', 'GTK'), + (0x3f64c00d76803d3cbe3dca58fe667baf9cb64d28, 'Volcom Metaboard', 'MBRD'), + (0x3f6c9d0624ae865fb5a03abadf6d933addcaabef, 'Proxi', 'PRO'), + (0x3f6e4fa82fb5ab9e4153b725236e7a2daad9744c, 'BNCH NFT', 'BNFT'), + (0x3f71bfd9c6d30eaf4729bf397afcf2f9f808d129, 'Monfters Club Official Polygon', 'MONFTER'), + (0x3f79b13d2ba77163aaf8fdcb8cf960b3071920c1, 'Daikipanda10k', 'DP10K'), + (0x3f79e8c399a52964d4e753b2789cb45003ed0f86, 'Prova', 'PRV'), + (0x3f82a4b13ab234dcb05e5f3d10a7620ebce22d00, 'BANGSAEN42', 'BS42'), + (0x3f86378d91d1c75fd86ca2e9b9b6d150b781e3f1, 'The Baby Shiba Social Club Official', 'BSSC'), + (0x3f9a3d46477420103fe07c0afe8e3ce5e2ad22d1, 'SuperUrbanCat', 'SUC'), + (0x3fa759c898efb97acfc51f631c738da81d810bb9, '(B)APETAVERSE', 'BT'), + (0x3fae9e1ffd7223c3ee4da6e8205b7f5054d614e3, 'Epic Ninja', 'DCL-EPCNNJ'), + (0x3fb64b6f57e736545c7283add3996db727e5862c, 'Cyber Mobster: Warrior 2', 'SWEDC'), + (0x3fba2f0a7901e248b01523abcd02eff4619e7776, 'Million Voices', 'STOPMELTING'), + (0x3fbfc0f5679a821dacfa2c75763ffdca41e3a379, 'Goopdoods by Goopdude Official Collection', '0'), + (0x3fc002845aedb1160f12ed6f2c7de7a4ae1d3b09, 'PeachfolioOffsets', 'SPE-CC-GROUP'), + (0x3fc22140df784b15bd2d9ae06d091312500c7139, 'Risugurupu', 'Risugurupu'), + (0x3fc6c5387a4735247b491708f1babe36497cbb71, 'Secret Weasels', 'SW'), + (0x3fc9dad47a43b4af9ece12da4139ab097e0bd8e5, 'Tengu''s Slime Hats', 'DCL-TNG''SSLMHTS'), + (0x3fd1b9be13391d0cebdf3d497cf36655e3610637, 'CityRoots', 'Vault'), + (0x3fd939b017b31eaadf9ae50c7ff7fa5c0661d47c, 'WETH MAI Vault', 'WEMVT'), + (0x3fe273f0dcf133d1bfd8214f2fea6c97d9409068, 'GEN-T53', 'GEN-T53'), + (0x3fe736feae9b432b926fb58f7f096a4d4e549391, 'survivers', 'surv'), + (0x3fe8d23cc41dc0ca903633e975dcccda28bb54c6, 'Argentum Alpha #100K', 'AA#100K'), + (0x3ff16f4e1d615c035646e9ede0ba9b7a87d82c87, '1990s Poster', 'SWEDC'), + (0x3ff7d7a63f63cd6a30868eb580f55acb3b0de6d7, 'KitsuneMoon', 'KMOON'), + (0x3ff9005293ad0d743cac88e5a90e75ba6ccfa850, 'Gamer Apes Player Club', 'GAPC'), + (0x3ffa62a8d98989f249bda7003e29e8a977e2090c, 'Sku', 'Skulial'), + (0x3ffa9c8d0f504111198d81453d05346c7e9477ce, 'Sweet Movie Night', 'SWEDC'), + (0x4017937e5289018085c81b5dfb75bdb639fd70ae, 'METACOMICS', 'DCL-METACOMICS'), + (0x4019bccfe32080f4fcd99cfbe9437faef941a3a2, 'CryptoSteinz', 'CSZ'), + (0x401c7a2139278f9f09d1cc7b905402cade635a04, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD09', 'MLPRC-HMB-C09'), + (0x4026fc537280fdec7d27193feb4ff59fca0db481, 'Fly', 'AWNFT'), + (0x402ac7c445b267346efd42c206c40b1217219baf, 'Hawt Drop Pass', 'HAWT'), + (0x402e24e81d184d9e5093073a797fd10795a074d7, 'UBunny', 'UBUNNY'), + (0x403376b553fe58fdcc57817e77e4f4d8a2c5f804, 'Bored Groots Club', 'BGC'), + (0x403ec18a159552d0c9777eb8cab10a96cadbdcaa, 'Milk Jug Toss', 'SWEDC'), + (0x404ef3bb6c60e122bc89f30f0f1639fc518fe7e7, 'Slumdoge Swag Drop #3', 'DCL-SLMDGSWGDRP#3'), + (0x4051fcd217f76c7a8d07f83a870443027dbab3f7, 'CocktailBarPunks', 'CBP'), + (0x4054a46b90363a3155ae1d32e707ae0442f350ee, 'Wack n Win', 'SWEDC'), + (0x4055e3503d1221af4b187cf3b4aa8744332a4d0b, 'TheRedVillageGenesis', 'TRVG'), + (0x405bcc5e23307a52ffd4f34a99f5d3a6fb422da6, 'ETCYBakeryDonuts', 'EB'), + (0x40646abc90a29e5bf89e456301d421e993b5e90b, 'CipherPunks', 'CP'), + (0x406dfe90769a8693bfb0359f7a91fcedb721c097, 'AlfaNFT', 'Alfa'), + (0x406f2cfaa5c6d45f530b85c6f095e9729f4054d0, 'Aspired Hands', 'AspiredHands'), + (0x4087ebd3bfc37bd927a32eac9333a9ea0e9f6d0d, 'zerti 3', 'z3'), + (0x4088262efc19b54529a00b96efec9de8f60febf0, 'Matsu Mecha - ZG 10-1 AP', 'DCL-MTSMCH-ZG10-1AP'), + (0x409010acdd53024be204415e4810dbc511f28db2, 'isro', 'isr'), + (0x409ce015d5b90c52fb544c0f950420b6dcae2961, 'Fire Warrior Katana', 'DCL-FRWRRRKTN'), + (0x40a047cbe550d108aa32d8987dbfd67fbdc8fe37, 'Stateless Vision', 'DCL-STTLSSVSN'), + (0x40b0c49a458596cd4de48015a6807f28f0b58c19, 'CutieSquad_The_Rise_of_the_Rebels', 'CUTIES'), + (0x40be65b67cce18bbbac5339892fd289e92c9df98, 'Aspired Hands', 'AspiredHands'), + (0x40c09a8c79b0a657691a6acb90391154bdc0c55c, 'Duckkies', 'DK'), + (0x40c0ac832cf7e9a39b0be33aa8a637216a5ab29b, 'Toxic Skulls Club', 'Toxic'), + (0x40c1338a987c20c801fc3a0430f66ee4f7505e93, 'CHADCRAFT', 'PLOT'), + (0x40c95d980ca54c17a377bd845dcf115c5ac648c9, 'Moose Society', 'Moose'), + (0x40cccfc484ddd4e77dbf8ae5823fa7c2ddbdbdbb, 'ThePugArmy', 'TPA'), + (0x40ce2881f620c8ec7b0b5227d2aa9b88847c982d, 'Little Alex', 'LA'), + (0x40d65666b84123325d70a22cd59909211910d39e, 'Squid Gangs Club', 'SGC'), + (0x40d7e89e91caa209c63d310a05573aa0bd719f54, 'Liberty Fight', 'LIFI'), + (0x40dac29e0be3af5a9cfb4a14f65e9415fddd025b, 'Pixel Hype Ape Tribe', 'PHAT'), + (0x40dc332fdf5dcc068953ae9e165a9a140aeda7f9, 'FamiliarFaces', 'FmFcs'), + (0x40e02df3302627fe3a8cea9fae1d0dfd0e62a9a7, 'Ballz Game', 'BALLZ'), + (0x40e4391809620eb7bb3d73023a03a1305c01637f, 'TRIPPY MONSTER SOCIETY', 'TRMONFT'), + (0x40e7885d4619e7f91d3919d640e8574ce1b81d76, 'Australian Open 2022 Costume II', 'DCL-ASTRLNOPN2022CSTMII'), + (0x40f89e4169c5c13f65c39331e94e4bcd04469e4e, 'imperial whale club nft official', 'IWC'), + (0x40f9cdbf8e358a8e3d6ac563095111536fde2e31, 'GameBaller NFT', 'GBN'), + (0x40fc062663d2fa583fef5caab47ca1813a0cdd92, 'Criminal Skinny NFT', 'CSN'), + (0x410056c0c44efcef6baaa16cfd9f73998d755f52, 'Warrior', 'WAR'), + (0x41051151cc9e2052d27a98b19977c4a2c1dae648, 'Non-Fungible Kings FBRN', 'DCL-NN-FNGBLKNGSFBRN'), + (0x410ca53172d0b53e2e81d4cc767c762da35aedf3, 'Brainbot #7 Zoop', 'SWEDC'), + (0x411941eec4a42efde23c0c890d58ffe31662701f, 'Stargraph', 'STAR'), + (0x41197c4cd688067ab4cce3cc794f8e3300946153, 'The Indopunks', 'INDOPUNKS'), + (0x411e2ee96250b0148413313a91289750dfc5b01a, 'sa-de', '3K'), + (0x41256b64a781af464e93fa98d3a4af7a7dd1c71d, 'Neo & Tima', 'NETI'), + (0x412a5aae6ba1a98c32cb32da5e051eb9e81dfa3c, 'FACE Electric Series', 'DCL-FACEELCTRCSRS'), + (0x413481540052112fcef3b875cb0b84f0a8674b0a, 'Tracks to the Metaverse', 'T2M'), + (0x413566a91edae243afd1ec10b41f1c9e74f83eec, 'GEN-T37', 'GEN-T37'), + (0x413aae50b95c935ecc808b30c3365c443b282e0d, 'MetaTrucks', 'TRUCK'), + (0x413b986f219e31286e355fd81bb23357f9834222, 'Dragon -Leaves-', 'DCL-DRGN-LVS-'), + (0x413e541e9af89b01a96a386b03a41f8e89e9d679, 'Tickets.sol Ticketeer 1', 'getNFT Ticketeer 1'), + (0x414588a50b26e6734277a84e6da1152058fa936f, 'Color Trappers NFT Club Ticket', 'COLOR'), + (0x4146c03b3266f8237684be076f1d821f992cb208, 'PolyDoge X Polycat', '🐶🚀🐈'), + (0x4154bcc2d14ceff7703d2e091ea4dc800797c3e7, 'Miss World', 'NFT'), + (0x415680251968dc874ffad257f530b03ee18a4c28, 'Super Hybrid Friend ETH', 'SHF'), + (0x41585b8171d7f54ce4b145cfb98c62d8c8f53950, 'Crypto Spoonkie', 'Spoonkie'), + (0x415ac740989bdfa9caa04be1929051ff9dec5e92, 'SqwareFaces', 'SF'), + (0x415bbf6598d835638c3abccd77d861fd4c203874, 'Quest in the city of Ruins', 'cityofruins'), + (0x415be9b1dc27c0a1fa1c4627575f774ce0e55645, 'Pexel Man #', 'PEXM'), + (0x415d09522e46f5d50dd6e4d4e0c02c87381ab68f, 'Pixeled Mates', 'PMNFT'), + (0x415d2986141538099d1915fb9fe7cb8809785627, 'Freaky Friends', 'FKF'), + (0x4164ed1183ddd510023e3455b1cd8b509bf5dddf, 'ORIGINAL NFT', 'ON'), + (0x416641eac164f996759b03f224005c3422b0d650, 'ATKCollection', 'ATK_SG'), + (0x41676727444a0674aa8cc3efc8e7f2b49996f7aa, 'InverseKlownz', 'InvKz'), + (0x416844d3fd695885936a0ed54ef11225544311f3, 'Voxel Turtle Club', 'VTCNFT'), + (0x41691ddc8cf7fbc2442abbf7563b9dbcb0d17bf5, 'Nature', 'Nature'), + (0x416a5566f26e20db52b26e34de8c13407b64f0ff, 'Pixelated Pizza Party', 'PPP'), + (0x4173eff368153f1f1c87be05226ebca9e5f5748b, 'Angry Bird Gang', 'ദ'), + (0x4177177c84c9021ab9c99e3a3c3c4aa0b81cab5f, 'Triangular NFT', 'TRINFT'), + (0x4178cd6ed50360bc8a786e905a87804227ea974f, 'The Stubborn Ape Society', 'Ap Society'), + (0x4182a32149bfc1e2df38931c3f1084b7e8a96957, 'HamsterKingdom', 'HMSTK'), + (0x4188cea6e4b4bb7e9f899f5abc9cc730bca35fd6, 'MidnightChickenCombo', 'MCC'), + (0x418d123a1490ad7113896a5e5ce61703744d5814, 'MetaArt 2022 Fantastic', 'META'), + (0x4191a5bf689fa633445a6cef7579f686c31ebfae, 'treasureland.dego', 'TRSRNFT'), + (0x419e8e59b1a37b3bc1e5e0af69978581c19589ad, 'Superlative Gorillas', 'SG'), + (0x419f030f43a1c08f0ce325f84b35f70e8ce0dcec, 'STOP WAR RU UA', 'STOPWAR'), + (0x41a4c6eaf2918c6d41c97541be96a71aec04350e, 'Kitsumon GEN-0 EGGS', '$KMC GEN-0 EGGS'), + (0x41ae4f0b07dc1ae37e0d92a6f5e2992cd5d79d3a, 'The Squishiverse Official Polygon', 'SQUISHIE'), + (0x41b0b9e2f700d70328c99cd9dbeef450e81ef2a2, 'CryptoBay Dock', 'DOCK'), + (0x41b17f5bbdc2b3eb492d5ce41fa1abe46694b1cd, 'Apes In Space Official Polygon', 'AIS'), + (0x41b6caa11f6fc5133dbf50d162a61f643bb93347, 'The Penguin Planet', 'TPP'), + (0x41b9f75792d603b7908d4268ef551df366d546a0, 'Crypto Loaded Lions Club', 'CLLC'), + (0x41be7216e5523a2e2e0c6a1f8632fa7e4dc0a996, 'Crypto_moon', 'CM'), + (0x41cbd8fcedf632759e2f4b711dd321962a595924, 'Non Fungible Bentos', 'NFB'), + (0x41cf7dc4329dc545550e661101b0f574655e42da, 'black skull', 'C'), + (0x41d8dac14ba82f7ac176467bde0173a1572fe577, 'CryptoCatsClub', 'CCC'), + (0x41da8c409c94bbbbf4384024f5a89b7a72c42442, 'SkullezMileHighBadge', 'SMHB'), + (0x41e58f21f74dbf4fa33ca563262eb9386d874542, 'NFC', 'NFC'), + (0x41ea522228d62affaa67d42bc0593cf02885802f, 'islandyardie', 'IY'), + (0x41f092e0e0132e90349c7ed2c951a5f9f0200bdf, 'Meson', 'Meson'), + (0x41f2e8da4fb03d5c54cda7ce1f7b965b18400c21, 'Studio Nouveau Icon Series', 'DCL-STDNVICNSRS'), + (0x41f4845d0ed269f6205d4542a5165255a9d6e8cf, 'Evolution Land Objects', 'EVO'), + (0x41fdf5a54eecffd92362777b713db431fd5bc00c, 'Gryphon', 'DCL-GRYPHN'), + (0x420c073ad985c64b86ad9869cd1612cd38c9fbf6, 'Collection #2', 'DCL-CLLCTN#2'), + (0x4210454864f125c5a50581db458e10c29d66cbf9, 'DavidMan', 'C'), + (0x421b291ef1ceaf5652206bcdf0575df533b6a3de, 'Electro Motive Fighter', 'EMF'), + (0x4220896d61b9dae569add66c1cf32563c5455102, 'The Tribute Club Collection', 'TTC'), + (0x42261370e6934146c2d6c3b40662aa20312a52fd, 'LoopersNFT', 'LoopersNFT'), + (0x4226bc7f1a3c3f2a4b2a01d4fb1fd149a5738747, 'GIFTED.Sight', 'G.S'), + (0x4226de425b96629c82a08a09ef800743937df3b6, 'RGB Rocket V2', 'DCL-RGBRCKTV2'), + (0x42285002f6adedf83db2fec6039f2edfbcf768ad, 'Stoner Pineapple Dude', 'DCL-STNRPNPPLDD'), + (0x422a0997b5a39b9294ee0d65d3aa3141f5957141, 'AlphaSkullz OfficiaI', 'ALP'), + (0x422c18b2776298d68f05d485cf5322ae214541f4, 'MixVanGoghArtClub', 'MVG'), + (0x423160dfe1ea846322df4158ba705aa50792e137, 'HODLASSETS', 'HODL'), + (0x423989c0152ce8ac2477e5e0165d00c7a35cce93, 'UH-72', 'UH72'), + (0x423a41dac2f216a28116d1787a830af4e48065f8, 'Matic Worms', 'MW'), + (0x423c41c3dfd7bd2e624fc387840dfb84b776fc4d, 'Gozo Hip Hop Collection', 'GZ'), + (0x4245fb82d0db43f4c91a7bb9e9e54a11e7b603ba, 'EyeKonjo', 'EYEK'), + (0x424b2c048d397b69c88a8aafecc87d20ded12ad9, 'The Rocking Uniquehorns (TRUs)', 'DCL-THRCKNGUNQHRNS(TRUS)'), + (0x424b6ff8c704f867e2f5cb11abb8379276bf6c0c, 'Lightnix', 'LX'), + (0x425591aad3e807af7f9ac472466f52ef62c12c82, 'CryptoNinjaFanArt_Polygon', 'CNFA_P'), + (0x4258fb4ed94390780100b59459d3aad73fcceb5f, 'Rush_To_Space_Putin', 'C'), + (0x425c61144d81464f4222b2cae771f8dfdc436142, 'HCI NFT', 'HCI'), + (0x4268cdd93f1d03464d384383492ac942cf09219f, 'Fast Food Friends', 'FFF'), + (0x426baf018f978182f39cfbb26af6d3a2fb372823, 'The Dog Pound', 'DOGPD'), + (0x426c9a136f0671a8ba5e5b7814843628de29a3f5, 'Thailander Drop #3', 'thailander-drop-3'), + (0x426fd57fa0073f08c3bdf9658654f2bee3b6e40c, 'Gravis Finance Drills Collection', 'GRVSDRILLS'), + (0x427e3e235dd7d0c3fc0b34a829e001d195e4f930, 'BLOCK X JETPACK', 'DCL-BLOCKXJETPACK'), + (0x42845a65e16e3aed767c13a8500cd791df81c892, 'Gorilla Marine Squad', 'GMS'), + (0x4289345ebc21d02767b3cb3a33862065228c9d6d, 'Argentum Alpha #10', 'AA#10K'), + (0x428d7d579a6abedbcbdc9d048f283ed4cb1a001b, 'Django Dino', 'DD'), + (0x4298facf9dcaf23fb9c3afdc3529b53ec93e1f5a, 'Weedcommerce', 'DCL-WDCMMRC'), + (0x429e3c7551f0ff339021ba16a94a973a36649b54, 'Frawwgies: The Adorable Amphibians', 'FRAWG'), + (0x429f5fc2d8a234d4d2192c28ea568eb0b3e54ae9, 'SEFA', 'SEFA'), + (0x42a3e32f9c99744b8b4fa6b2b9e2cf347239830b, 'Guard Dog Kennel Club', 'GDKC'), + (0x42a668e82c80f38bf706fbc3f11650cd0103964e, 'Mad Ape', 'MAPE'), + (0x42a7ec7dd3ebbf25f29d2edfdfa1a44700e90651, 'ASHxox Store', 'DCL-ASHXXSTR'), + (0x42aab824bdfcd2b19b8185a7268ef8189284b769, 'San Antonio, TX Pop Art Edition', 'SWEDC'), + (0x42ac2f77c15f335bfbaa98205d15a1876c325cb8, 'Boardroom Governor Access Card', 'GOV'), + (0x42b4995912e3a1936aabbc151052caf7fff39a12, 'Hooded Egg Club', 'HEC'), + (0x42b4a7db1ed930198bc37971b33e86f19ce88600, 'EGGRYPTO:Monster', 'EGGRM'), + (0x42b9f8a5432965fd03654630e50cf501ae1a3a77, 'Fennec Fox', 'FNCFOX'), + (0x42bde470ad3a382037cb775786318538889003c7, 'MaskStopWar', 'MSW'), + (0x42cef2b3825198c4bec87cfc8ce4dc7cccc6ca1a, 'Airabot', 'airabot'), + (0x42cf3c7982c2a81dd6b3b2db5c12fc097e05d482, 'BlockWinery C-NFT #1', 'BW01'), + (0x42d4654c5abba31f2e422754b0a6fca97fa98132, 'Kleoverse Genesis Tokens', 'KLVRS-GNS'), + (0x42d4e0ef502b9931aa2487cc13b5cf6efe8f4374, 'Jibaro Drops', 'JDROPS'), + (0x42d52ccb75c43a7279289fe8af8e8458d69eeee9, 'Fake Smilers City', 'Smiler'), + (0x42d9499ffebc233f7e66c0f2ad2d8dd79ffcf2b2, 'plushies4201', 'plushies4201'), + (0x42e55d31c1b9d7f48b00b00536eb2fd69779091c, 'pixel_inu', 'PIXEL_INU'), + (0x42e7dc7036e5602a040e044b5a01a123aacc9fdb, 'Guerrilla Music Clothing', 'DCL-GRRLLMSCCLTHNG'), + (0x42e9131c1bae6dc9c3e9a95ba376cdf8a0383994, 'MCP Appliance', 'MCPA'), + (0x42ee86c7c2834cb30d6071259de654c515b70438, 'Rugscreen Certificate', 'RugscreenCertified'), + (0x42f1f7dc2f5244b31940444853f46049814243d6, 'Constellation-20220301', 'CON'), + (0x42f344f56059e6cce22e2d92d0f8a3653ff41ee3, 'Bulldroids Sheds', 'Shed'), + (0x42f5e3f77c24c0efb48ba0acc489acff55a5f128, 'Gravis Finance Resource Containers Collection', 'GRVSRESCONTAINERS'), + (0x42f60a735b7becef0c782748cc731bebe0e925f8, 'Decentraland Skate Sesh Helmet 1', 'DCL-DCNTRLNDSKTSSHHLMT1'), + (0x42f66ee3a91b532b8792cf7186a7e462776b2815, 'The Dickey Collection!', 'DCK'), + (0x42f9b8ec2df933c934f1a0f3f206b794ad92fa1e, 'GHOSTZZ', 'C'), + (0x43026f37f8ca6be8bab9f8442764269a1afa7bc0, 'Rottweiler KING', 'ROOTT'), + (0x4307ac41ae601a82dcaace7a24c8737051ad48bc, 'Zunk Punk', 'ZP'), + (0x4322609fc9baa71192674b8b2c6ece6b54f87b6c, 'Detroit, MI Silver Edition', 'SWEDC'), + (0x432632acb75452ae61ee12d08d28f5e2a1b020da, 'Blonde Wig', 'SWEDC'), + (0x43265cd74da0aba9361e6538de975c0dffc47944, 'GHArt-Honor Of Gods', 'GHOG'), + (0x4326b0eea80ee174174d2c0a061cf673f3e9c06b, 'AwardPool', 'APP'), + (0x4326ec497a261329d7688c5be1f9670943fde409, 'DAO NFTs OF MAS', 'DAO'), + (0x432e11a8086aa983f81b2002cfb793833eb3bc08, 'Collection Of Rare NFTs,', 'GOLD'), + (0x43327696c909ae5403e0845404fa2a2e64e6a27c, 'Kool Koalas', 'KOALA'), + (0x43333492821b550be71075152806b8a21ad1271c, 'HelpfulBabyClub', 'HBC'), + (0x4334a820f556a54845a35f8aad5986aecdf07d43, 'The Wonderquest x BYO Pills', 'DCL-THWNDRQSTXBYOPLLS'), + (0x433f1ef712c7bf1ae11a57d6fe736b61741d4db6, 'Little Egglets', 'EGGLETS'), + (0x43440842b5a902f5ae44411c9957f109a7eb41db, 'Taerylin NFT', 'taery'), + (0x4345277c11ed6273450ae013afec11424fa1c734, 'lalala', 'la'), + (0x434f7e5713100ace27310e45a8b78bd82e43054e, 'BitDrivers', 'BD'), + (0x4353e39228813bfcb123f9822928ff4d5ac9288e, 'DAPPCRAFT 2.0 HELMET', 'DCL-DAPPCRAFT2.0HELMET'), + (0x43602c8ede2ad38af54725bf28151942b095dd72, 'Necro Helmet', 'DCL-NCRHLMT'), + (0x4364470f3c4a58fa9c259ab004de116b8ae35b61, 'Blackhole', 'SWEDC'), + (0x436b19307874b332c085fdd473328ff8e50bee5d, 'My Zed Set', 'DCL-MYZDST'), + (0x436b2aec1e7f05b3eb6434936c7523c549fbb4f7, 'Wonder Poopie', 'WOOPIE'), + (0x436bb5077eb3ff4741fb643bd26f1ab00312e559, 'HeHeDa', 'HeHeDa'), + (0x436e2cb272b2e54feb30c615d85a1ea2550ceac2, 'MetaDrip Infusion Sneakers', 'DCL-MTDRPINFSNSNKRS'), + (0x4372597f1c600d86598675dcb6cf5713bb7525cf, 'SnookNFT', 'snook'), + (0x437568642709c09002fb84f34757f98aefd7d441, 'MarioKaDuniya', 'MKD'), + (0x437fd5ae50e59b1a5e80ba1873b1f157a5ff50c9, 'MetaWear - Head', 'DCL-MTWR-HD'), + (0x438ac8be541ad8db34ca97476c43344a40b2e9f8, 'Magic Shrooms', 'MSHROOM'), + (0x439142e8d2b3016e42b37c0bf2e0a6e36796e2b6, 'Isekai Anime Pillows', 'IAP'), + (0x4391dd79bf4ecf59a3000b075770bcc8a06c8ed3, 'MuseNft', 'MSNFT'), + (0x439a377bcd39387ca2a8eb3fecd48a1d1403337b, 'ssss', 'ssss'), + (0x439a3e5925932a427042ac59e1413d2112bf0dfc, 'DogeElon', 'DOGEELON'), + (0x43a4bd340c852d76139b0fd25c4c8f5833855226, 'Zales I', 'ZaleI'), + (0x43b2b987a5c37e4baa720aa3ba91f7b28e803953, 'TheCryptoPunksCollections', 'TCPCS'), + (0x43b2fe9c4f205973d18985386c08a79e0baed3d1, 'Abstractiona', 'ABS'), + (0x43b55bafc2051c20a6f8baaf2d84ed8d621e1017, 'bvcbbvc', 'IO'), + (0x43b6f424805440ebdf3257d97e6b42dfba458079, 'HADOW_1ST_ANNIV.', 'HADOWANNIV'), + (0x43b975192efe2d63e45c70fb3eadc1f28643d792, 'Camiiiila', 'CA'), + (0x43bab1a12db095641cc8b13c3b23347fa2b3aaa4, 'Simba', 'SNFT'), + (0x43c2313a44dc5c6c579ddac83d3e5a7aaafd3d12, 'Doge Clouds', 'DGCL'), + (0x43c3ee45f65f9f9c0e91d1974edcc2cd0d5464b9, 'Todd Chavez', 'TC'), + (0x43c8e49a6d31dcfa0b98945def8793358692fa8b, 'VVIP Premium Gold', 'VPCG'), + (0x43caf9ace0bb9d295bd3b1f9f3d6d7c08e1dca9a, 'NFT Garden', 'NFTG'), + (0x43cb0cabfb6cbffdb3667f3bf65ee06759ea4e4b, 'Bored Ape Yellow Sailor Hat', 'DCL-BRDAPYLLWSLRHT'), + (0x43cc1ae5d86fd05c39c8fe0b5d5b358a658c5b8c, 'Joyfa', 'JOYFA'), + (0x43cf2c4f345f3ae1b29a0648f0d177d079a3ad0c, 'CyberAliens War', 'Aliens'), + (0x43d533a6dfc33edd0fed5c15383d15d8b8fab4bf, 'Rock-it Pix NFT RF', 'RPX'), + (0x43dc065b670da76dbdda9f471938dc1b115400f6, 'Washington, DC Gold Edition', 'SWEDC'), + (0x43eb4276085cb068b23e754ff4847160557de5e5, 'Bored Ape Kid Club', 'Apekid'), + (0x43ee1ec9e05210239dd35d84fc0d4db72224aaa6, 'Bored Ape Pixel Club by Daihatsu Bishi', 'BAPCbyDB'), + (0x43f403ffb0430e0b71de06a8a95f1b963358e1c6, 'Kevin On Earth Royalty Share Tokens', 'KOEROY'), + (0x43f8cbbff198655990e487553e731e963e790748, 'Papa Thugs', 'PT'), + (0x43fef1f592af23f7950ae4e9b1b9141faeea64b7, 'uncle sexy', 'UST'), + (0x44055fe5f99bc718bbe83b0a36d060e48f41cf7f, 'Mochimon', 'MCM'), + (0x440e13f9426a5d0456c488ec52eb5b989e218c15, 'Hunting Planet', 'HuntingP'), + (0x44185ccee98cbfc603378f6f4868d3e62f121574, 'Particlon Particlon Particlon Particlon Particlon', 'NFT'), + (0x441f38d52183c4a01c75dda8de3fb7758e83dd64, 'Confidential Apex Tiger', 'CAT'), + (0x4421c9d8defd319ddd63b16084b3c57246b23395, 'CryptoCity', 'CC'), + (0x44306d89387b2fa2c2f8b063e66b33959d51ea42, '315 Guild Membership', 'Guild315'), + (0x4432454dab4de0e6c397ba8297e8f456dd03a724, 'MFIN Morphin Time', 'MMT'), + (0x4433cf5c79287ccf8765ffac8c3b1ace9a3bbe1b, 'MintMoney Mini Four', 'MMMF'), + (0x443762ffefb3ae480983d84b391a308c1f36be49, 'Witches Of Polygon', 'WITCH'), + (0x44387a7f31bae28af833717399fd1d8df98e9dc0, 'Callisto Labs Org Utility Token', 'CLOUT'), + (0x443e4c808b524e94258c35a732dfcf93e532caff, 'ZombieRacingClub', 'ZRC'), + (0x443edd3372c9c16f9327c519587283a02851c68d, 'Cyber Mobster: Warrior 4', 'SWEDC'), + (0x444846e7ad4358bb2f4087c424c3fd0475b2620c, 'NinjaWhiteday', 'NW'), + (0x445953064fc98b4eefc32b2d7f087d1a7479e550, 'Lets Go Brandon NFTee', 'DCL-LTSGBRNDNNFT'), + (0x445dc5285bb5de6263bbbf6edfd4e0fdac397f6b, 'vividot nft', 'VVNFT'), + (0x445fb9417c6828a78a6510cf61800269b4260d86, 'Blocked', 'BH'), + (0x44687a261740615e1d98e827203648cdf1b6b5bf, 'The Amazing Mia', 'TAM'), + (0x446ab6804c6a6511dd8db9f810d7661a121251b1, 'Doodles Ducks', 'DUCKs'), + (0x446c19903c267ae944eab6eca1f8603245be6b80, 'ICE Cyberpunk', 'DCL-ICECYBRPNK'), + (0x446f02eb788b93381eaba302b219649842637fba, 'The Sandbox Season 2 Alpha Pass phase 2 official', 'alphapass'), + (0x446f758468610b01d11bbd215dc5ffcaa79e72bf, 'AGAllocation', 'AGA'), + (0x44845f5bbdff7f38b55be09509c438f2cff88650, 'Lady Devilpop', 'SWEDC'), + (0x44869ec1b2f0274efb9925e83c57e685d74b9b68, 'GET Protocol - Event Financing - underwriterNote', 'uNOTE GET'), + (0x449aece6e26d83bad6d8f4a4430a58e6dc32e9cc, 'Blin', 'BB'), + (0x449bf1ecbdd0a9ef570c25509d5b15cda6cdff6c, 'StupidStars', 'STPDSTRS'), + (0x449e4f495dd543cb3c45dba7669c18ec5ee19ea0, 'CATJUMPING', 'XRTT'), + (0x44a806d63e6116a3271a3918d20598d2edf1a091, '[DEVELOPMENT] An Rü2022-03-14T15:45:40.440Z 264289', '[DEVELOPMENT] An Rü2022-03-14T15:4'), + (0x44b9674df6936f8123a6e8c10df64347d99f113b, 'Genesis Alpixzca', 'GENPIXZ'), + (0x44c37eef72f5c141fa95896030bc6c0a0c16325b, 'Scarcity Adventurers', 'SA'), + (0x44db80de36f1e3f8d04fe912ffb85fabc08fe01d, 'XNFT4', 'XNFT4'), + (0x44dda4879de8fdedb0283ea82af26dedf2a8b7bb, 'BadPunksNFT', 'BPNFT'), + (0x44e2538337fe07183f8fcca6b7c6214e981f9401, 'Official Lets Go Brandon Collection', 'FJB'), + (0x44e87f1474b9b3f350ec55d511abbf40a1dcccab, 'Artcade @ Fred Segal', 'DCL-ARTCD@FRDSGL'), + (0x44f0025cfbdf1ca130e25fb1e6cc9e96e5312f76, 'Manga Baby Azuki', 'MBAZ'), + (0x44f01563dbcb67170a071ea014af58d2032eff61, 'BittyBots', 'BITTY'), + (0x44f06eb946994bcd02a770a4210341df4b0e24eb, 'Bone_Society', 'BS'), + (0x44f2b5fbbab7809054e5c80be38e114499d26b16, 'Tiny Tarsiers', 'TITA'), + (0x44f964ac98355ae48f64bf4bc5db81d6d485d8fb, 'Nitad18', 'NT18'), + (0x44f9931b95d39b033d23faaa7218a7ab4fcea179, 'Centipede 3P', 'SWEDC'), + (0x44fb187f3ea0d2972b22b6edc6fa24f8d76442f4, 'OurBitCat Hats', 'DCL-ORBTCTHTS'), + (0x44fbd27f611837367ee2c6edcd90015c318441f1, 'Baskerville Club OfficiaI', 'BCO'), + (0x44fe4512790ad3170b8a312ce805d85438adfed6, '100 Portraits', '100'), + (0x450357849aa6c8d1fecea6811070d280ffc4a8eb, 'ThePigeons', 'WTP'), + (0x451612c0e742e27f2cfb3888ad2813eec8dd1ba3, 'ICE Joker', 'DCL-ICEJKR'), + (0x45190df49cae65c9c992801a0d2324e29577a9f0, 'The Dystopians', 'Dystopian'), + (0x451caaeaffa6ae934756468f59e266e5a963e6a6, 'Plodding Pirates', 'PPS'), + (0x451f207eddcd82278df3bf39564a9cfbc23249b5, 'Shibainu_FLASH', 'FLASH'), + (0x451fc8e3522b9ef256606fab6c99fa3823a1e2a0, 'Spinal Foxes', 'SpinalFox'), + (0x4521fac36b7947256119d3c1583fc470d31e5ee9, 'G.G. Camo Jeans', 'DCL-G.G.CMJNS'), + (0x4523b667acb59dcce1899b63c573f914aa6375dc, 'r1', 'r1'), + (0x4529d7736fe6f6c8778e09a7af5b194274cec700, 'HeartHeads', 'HH'), + (0x452d4ded0a1e6c502101990ba8c8ecf571c3ee65, 'Fkn Pineapples', 'FKNPINE'), + (0x452ecb1f364c0fb620f40ebb7e4887701984ce00, 'Dunhuang Flying lady', 'DFL'), + (0x4530d5f02003d51f1619094d1bad7099c52e76d0, 'The BaD_BoY NFT', 'BBNFT'), + (0x45344dc4954b3dc40c3fb78ad9a192dcc6a5ee3b, 'Bull Market Friends Club', 'BMFC'), + (0x45377fb2dfc868ac58633547dd43c1a686e3b169, 'Boise, ID Pop Art Edition', 'SWEDC'), + (0x454f30d5d5d433b83e46eeb43adbe01b02a5c467, 'Geckets by CoinGecketCap', 'CGC'), + (0x455240586579b8cc370496e57302218f21ec3bd4, 'My Collection BTPZOcAGv6BioD8oZtRI', 'my-collection-btpzocagv6biod8oztri'), + (0x45575bdeb59de0576b4ec5e690b06f67504a4632, 'Staking NFT', 'SNFT'), + (0x455a7b35fceff426a9f355ffcbbe7477097b1d03, 'MyToken', 'MTK'), + (0x455b7c429a95735ba5d995b8e119c3baf4cf08fa, 'Bapetaverse OfficiaI', 'BO'), + (0x456462178f070f283e82ff1a2567271a01a57ad0, 'GG Jean Collection S1 Colorway', 'DCL-GGJNCLLCTNS1CLRWY'), + (0x456cadf4c1f6cf12d249ba237fd1d9b299b7ca8e, 'Ballz Game Huge Ratty Heads', 'BALLZ'), + (0x45703b21a5a82b1e5f0daea8b1c2c4d385b13613, 'CryptoGorillaForce', 'CGF'), + (0x45719400b3cefc8aecaa9e1c3873dd580d990b98, 'InverseCyberKongz', 'KONGZ'), + (0x4571a80b8fbf62b1f39ba2d31a343b1790dbe1de, 'Astromoons', 'ASTM'), + (0x45732fdf8d8709dd8b0ef1da61151536ea80f639, 'Popó, a lenda', 'Plo'), + (0x45768452ab53ebaa3db7d992d6775b138ef506c8, 'St Patrick''s Day Women’s Outfit', 'DCL-STPTRCK''SDYWMN’SOTFT'), + (0x4578a2db6276140ee6f7939ad6237c8239926079, 'PlayStation Plus 12 Month Membership', 'PSP12M'), + (0x457cdd8baebcd8a704936c5748587110e8bd5c28, 'OpenBiSea Abs NFT', 'ABSNFT'), + (0x457ea0b03dd671bac515fa5bf324918db4b12669, 'Sunflower Farmers Dog', 'SFD'), + (0x45833dd39d821f7e38f2276e84a3e53be1bf1ff4, 'Putin Death Party', 'PDP'), + (0x4584b0f70f5a2e59310b5d4b638b3e534e12f641, '100000 Pixels', '10PXLS'), + (0x458aa765b466149d9dbf14c4a8b7907422761a1a, 'Canvas Cats', 'CATS'), + (0x45957dd1dbcfe1d6227f970ef47fa8fd8f68ebc9, 'Dahlia X M1D', 'DCL-DHLXM1D'), + (0x459ea910b4e637c925c68489bbaac9668357659b, 'Sandbox Lands Metaverse', 'sandbox'), + (0x45a1c80c00df7c0df821e7f5e3c30a11c4106e9f, 'StackOS NFT 3', 'NodeNFT'), + (0x45a1e81fb0d882a05e4788f1719622b82f44b766, 'LuLoNFT', 'LuLoNFT'), + (0x45b38e555477ed3900537abd5528436da7a571e9, 'Candy Cat', 'SWEDC'), + (0x45b745232960bacd66901b0f829ae18caecc780a, 'MetaGoons', 'MEGO'), + (0x45b9e3d82dec31909d4c2e14457bb9d152d5b8e7, 'Galaxy Panda', 'Panda'), + (0x45ba306649a04b8f8e7c22fa917716e6ce2e93b1, 'TheGraphWorkshopAudience', 'TheGraphWorkshopAudience'), + (0x45bc30fc2880b2bfddb8c24ba6ef33f2b86b74ea, 'Replica Otaku Coin', 'rXOC'), + (0x45bfa767f5d557f9322ea814951bd6512f30bdc2, 'Xelvariox''s Treasure Cove', 'xelvarioxs-treasure-cove'), + (0x45d475199444119f81798c57bd13765d3ce50139, 'Genesis Alpixzca', 'GNPX'), + (0x45d6b94e4bbf15a0a12b7281db94657a38ba26e2, 'Designer devils', 'Dd'), + (0x45d98a9592682b6330f9a6aa65354b28a32b10a9, 'Genesis NFT', 'Genesis NFT'), + (0x45e277367c971812157564b4f01be526ff29b437, 'Super Fat Apes', 'SFA'), + (0x45e5c27cb23d691b52d87b440930c37f5cf36179, 'Tueco Colony', 'TUECo'), + (0x45ea2adaeb7cb293aea4b301bfa0c5a41c14a4dc, 'Inverse Azuki', 'IAz'), + (0x45f30e65968ece14996c230479b44a28486a3b2b, 'SS_11', 'SS_11'), + (0x45f625a476545ee004a268dc01be635dfe34ba0c, 'Crypto Monsters', 'MNSTRS'), + (0x45ff37fbfeba31e94c7fc92339483e2dcbd24efc, 'DingleBuddies', 'DB'), + (0x46029efeb1035354ce5014c957548ecb861ea01d, 'Heroes Polygon', 'HERO'), + (0x460ad58c8b8bf7f29dd008a63f9ab53e603da929, 'MURI', 'MURI'), + (0x460c949db355196f579ffc0333376c4de043caf4, 'ARTIC MASK', 'DCL-ARTICMASK'), + (0x460da2a625aa43417d02887fb5e04f4b0f69fd12, 'Argentum Alpha #5', 'AA#5K'), + (0x4612bc4f8d4f05577509d96308fffc36187ffbbf, 'Party Pants', 'DCL-PRTYPNTS'), + (0x4629d5ba290d1189adfeb8b2b07dbcb8f6b08a31, 'fMetacat', 'Metacats'), + (0x462d73b9925c73abf030f814e71c363a34bc5aa3, 'CryptoHomeBoyz', 'CHBZ'), + (0x4631b575ecff0dfac524ef38f8cf0082f4083d84, 'CrazyThumbzz', 'CTbzz'), + (0x46361b9e7ba9b3c21b0ec471eff8147a1e5c37b6, 'NiftyRams', 'NFTYR'), + (0x463d11a2e1fd383a4be31cb2c9e3d168174adffa, 'FACE Studios Drop 001', 'DCL-FACESTDSDRP001'), + (0x463d8dab488342112ccc92f6b65e5492d69f1bf4, 'Girls'' Love', 'GL'), + (0x46471a4c5c06e891332af7c2edc6ade3a68da9c5, 'taco', 'tco'), + (0x464e52afe5116b024d8c4c18c9473328f363b180, 'Insane Robot Posse', 'IRP'), + (0x464f598edc572602ec4ec06f0911f5218cf82fd9, 'VeggieverseXfishyfam', 'VXF'), + (0x46532e67865a61493837f9fcbe3abf4c83baafba, 'Tails Waggers Club', 'TWAC'), + (0x46545041c71fb175c2237b7040680101375d38d9, 'Hiroto Kai Fire Kimono', 'DCL-HRTKFRKMN'), + (0x4654b1692a9f468c5ec3f1ba98393bf2c0076a64, 'Zedge Pass 90', 'KEY'), + (0x4657b34b7a207962de74eca715197b24a7035b86, 'Higher Life', 'DCL-HGHRLF'), + (0x4657cde0e7992b2243ca80c995ca4e46b674d0bc, 'Scripture NFT', 'Scripture'), + (0x466b657ba84cb137874132ed51a303fcaa5290bc, 'CT4.0', 'CT4.0'), + (0x466dee4eba54574861b1920cba0363439fabb6bb, 'KaijuFrenz', 'KF'), + (0x466eebf902a1a28bc3f307af52f90eb8d3053341, 'NPB Supreme', 'N'), + (0x467303663a0e3e94400b723b9cc7f976cf49daa5, 'Jamet Azuki', 'JAZUKI'), + (0x467362b9e92baea66b68374c7e097e3d3deb91be, 'Galaxy OAT', 'OAT'), + (0x4676695175023638765d469d4228a766784f33d5, 'Donuts not Feelings', 'SWEDC'), + (0x467a060a8d08fed0e02d740491ccac0335ce0fae, 'Anime Corps NFT', 'ACN'), + (0x467b984ba64c79efcb1baf53c435096a1c1baf27, 'Gods Collection 1', 'DCL-GDSCLLCTN1'), + (0x467e142a4d8764f3a670c7df95c3b76e6c6f47a1, 'CryptoApeRevolution', 'CA'), + (0x4682562d2d392e2a46dd8467c75169fb0949d7e2, 'SurfingApe', 'SURFINGAPES'), + (0x46850a323724fc4fd157523f24e7ea735ebb28b5, 'The Doge Pound Puppy Gallery', 'TheDogePPG'), + (0x4688c763e4e63eded9b23cbe729bc4375e1b4232, 'RE:DREAMER PASS', 'RDP'), + (0x468c0c2b22ea33bd1e53256373e6a89cd478b299, 'GEN-H33', 'GEN-H33'), + (0x4695882c6a587538ebfe61f9b08fb4f824d8ed06, 'Sloperat', 'IMGNRYONS'), + (0x46970e08488e7a488c61f144c9b951659f7a9d8f, 'CryptoMonkeyClub', 'CMC'), + (0x4697951d7e26f317f65ba0dffa4b73a02a5d404e, 'Digital Diamond NFTS by Mookie', 'DCL-DGTLDMNDNFTSBYMK'), + (0x46997b1dc27fd8f917f195dc863c5d8e49ce9091, 'Generation #8', 'G#'), + (0x469a746bf41623a05d3c9296e642cbfd41e08cd1, 'BetNFT', 'BETNFT'), + (0x46a23b78129acf5b4cc4b4bf704d1c2c0e9256a4, 'Doodle Pal NFT', 'DPN'), + (0x46a2eda0939fb1a585a6b34b671f978749093c80, 'CreepyEye004', 'CPE'), + (0x46b1c44f79ab48a9dc6ff0d98984e9ca02d277ba, 'Citizens', 'CTZN'), + (0x46b82f709dbf12a7ca9564bf0cf267bd4be91d08, 'InJesterr Legendary Jester Mask', 'DCL-INJSTRRLGNDRYJSTRMSK'), + (0x46c017a989adbd027737eede885b5afdcd90de46, 'AI Robot V2', 'RBT'), + (0x46cf3eef8b966e6da687a3a69464ea7d42c7fbb1, 'The CryptoCosmos', 'COSMOS'), + (0x46cfcb9c0004834009abf765031b0e227bcb5dc0, 'Ghibli_Totoro', 'GHIBLI'), + (0x46d2788e14ebb99d85d65ee1925f2acd53320e23, 'Legendary slav token', 'SLAVLEGEND'), + (0x46d3a7a92125d8ef83a27b7c663d0b48aa533a68, 'CryptoRam', 'C'), + (0x46d4d8f281e5dce525484d60c393ad01841c219b, 'RBX-4000', 'RBX'), + (0x46ee2d28f4b3555492296bfe1509ea22ff47b71e, '.web3', 'WEB3'), + (0x46ef874d5a7a56c8d3376438b1405322c6cb01e6, 'Nouns', 'NOUN'), + (0x46f10fc36c1c9dbc40ed504fdfe8c3898d75a510, 'Glowing Party Hand', 'DCL-GLWNGPRTYHND'), + (0x46f6ff72a154a6f8e6004b93e28482da96458944, 'Afronuts', 'ACP'), + (0x46fe82eb089a5f81dc6813ef4549fb7671d3f685, 'Butterfly Prawn Motorcycles S1', 'DCL-BTTRFLYPRWNMTRCYCLSS1'), + (0x46ffc2db05482d6500698b546beb868ed03b1a2c, 'JetPack', 'DCL-JTPCK'), + (0x4707590ef1eeaa07dde4300924196c6dfbcd8af3, 'FFS Seed.One', 'FFS Seed.One'), + (0x47079d796c4a46bf2155481ca4aaa347013db586, 'TheWickedMan', 'TWM'), + (0x470dcc56c2149c1d97afa9e01eb6bd315e5f529b, 'Miami, FL Pop Art Edition', 'SWEDC'), + (0x4717835e75948835186b037200ab03619810c871, 'Arc''s ONI set', 'DCL-ARC''SONIST'), + (0x47288731856b0b72713edc6ca18fc8d4073a5fdb, 'Target NFT', 'TARNFT'), + (0x472d0eb777b020f6c3c61ba257264be9f1340c8e, 'Eggz Army', 'EGGA'), + (0x47345c1bb7b0818ef4b2e321809212b8c22aad21, 'Faces2', 'FC'), + (0x4739f13370fa5169c9f939fc43fde2f6f5dd0ded, 'Grace Collection', 'GC'), + (0x473be295b2af64f6218c3abbb4db6c5464832293, 'UPC Deadly Ape', 'UPCDA'), + (0x4740ff7a9c35c2d100d2cb7d489b166717d9c5a4, 'MutantYetis', 'MUTANT_YETIS'), + (0x474189cd61032399b86e3b0cccfa3fb74d14a7b6, 'MONO', 'MONO'), + (0x4747805f0e74fb4d696b1d30995913c364e5eb2b, 'Beasy Token', 'BT'), + (0x474b16a0c7d7e1df7b43670fcd62d352a7d70b5b, 'DetroitPunks', 'DEP'), + (0x474e904aa0b5b999c48c3a5a9f88452affaa19c6, 'InKluzive', 'INK'), + (0x47512f8ed6f2306bdb029906704014055091ae4d, 'CovidHeadlessMasks', 'CHM'), + (0x47565809997bc7cc599eda6dcec23a72b803042e, 'Fire Egg', 'Fire Egg'), + (0x475946ad83018f57812122471931ebc163112a58, 'Buddy Mohi', 'Buddy Mohi'), + (0x475abb52a7e925209b1334e52bfb62e1da9ebf62, 'Invisible Rastas (Wearable)', 'DCL-INVSBLRSTS(WRBL)'), + (0x475bbbd2913203e396b85ab61e1c76d10d96bb2f, 'Crypto Cuddle Bear', 'CCB'), + (0x475f9ffd26e62b30f32dc80c05d7783d4ef0d75e, 'DeFiSkulls', 'DFS'), + (0x4767cb34413da6f0a836a4ef23359f1a8fe3d0ba, 'Watermelon Head', 'DCL-WTRMLNHD'), + (0x4769a5d2cb2eee6bf0c19a055b7e06ae37827752, 'Bright Palz', 'BrightPalz'), + (0x476e7755a32b54284bed76da377a1321d27d38d9, 'CryptoMonsters', 'MNSTRS'), + (0x47803ebc74a184ea8dadc2499667dc7440ba711d, 'Beach Bodies Paradise', 'DCL-BCHBDSPRDS'), + (0x478a86e1a1f9196d443a5117ad0a1ae25a6770b7, 'Nelly Behind The Scenes', 'SWEDC'), + (0x478dc7e6b1e5c8345f17765ecfb509ae943070df, 'REVV Motorsports Inventory', 'REVVM'), + (0x47909da4da8750e61a0e013a6f4d2bff1c4ce49c, 'Weird Catgirls', 'C'), + (0x4793d79b25d89d9085e574a971dd1edb606e4335, 'Metaminers', 'ZMINERS'), + (0x4799e51f84c82d357b4a4d6343c42b713959d727, 'Squad Champs', 'Champs'), + (0x479e5081e6efee9969049f07f07311c0eee38bd3, 'CRYPTDEADZ', 'CRYPTDEADZ'), + (0x479e7c6b4bf5270a10ed87b1a807e031573cbd8a, 'CauligenousChameleons8Bit', 'CC8Bits'), + (0x47a46a5c22eebef09b730364ee741df5dfb2ac56, 'PiMaEdition', 'POMA'), + (0x47a545945cb1793eb9cf3b6584ba5d06187af285, 'Botanical Mechanical', 'BM'), + (0x47ab7cd7a8df3b816f6994c4093b416c5bd881f6, 'Bored Octopus Club', 'BOCL'), + (0x47acc7929470afa0efc24d1ee088786e21bffd19, 'Pixeled Gangsters', 'PGNFT'), + (0x47c0143a933ec54e12f33bdb699546bebd391c07, 'Marilyn MonWOW', 'MM'), + (0x47c4badb9eae703aa5f5b9ef4c5f3acfb4a94314, 'The Work of Art Collection Official', 'WOA'), + (0x47d17beac7fef7ba43240e5db90beb4214c0abd9, 'HOLA Q', 'HLQ'), + (0x47d570b2df285ad084100ea680145c13460af827, 'We are ducks', 'DUCK'), + (0x47d5d8ae31a7ed3ea4d42cd0a6494222c118f1d0, 'Siva R', '61bc7b71afba0107d314789f'), + (0x47d768eb1940d187337104a62c5d7aad118c38b8, 'CryptoCrypts', 'CC21'), + (0x47d82af1cbdbaffcf8f52292baf21436b483dacf, 'Simple Mintlab NFT', 'MNT'), + (0x47e07538514912a72f61515ebcb707abeddf7427, 'Rebels', 'RB'), + (0x47e2e52bf25447bbfda933f661a1b20ab250e58c, 'CrighSchoolGirlsContract', 'CSG'), + (0x47ed2a778ac6dc5f8341cafe130f0156a7f7e0ed, 'TheArtfullyDachshunds', 'TAD'), + (0x47f666d2e54e40b00da43d3c01ac24cce7d5bda9, 'Anubis Social Club Collection', 'ASC'), + (0x47f8b9b9ec0f676b45513c21db7777ad7bfedb35, 'Metadogepunks', 'DCL-MTDGPNKS'), + (0x47fae0155f418f7355b1ca8e46589811c272a7a8, 'Taco Tribe', 'TT'), + (0x47fc3b27dafd1a89531dba8f9b8c4664d070bb3f, 'SCALING', 'S'), + (0x47fd27eafa42aec0da8e72ff096b6f1dc0a5c6bb, 'PlanetNFT', 'PNFT'), + (0x4801f8fd1243ea9a089870de96e6c07a962b378d, '[DEVELOPMENT] Le Go2022-03-14T16:21:29.336Z 811457', '[DEVELOPMENT] Le Go2022-03-14T16:2'), + (0x48035779874b48e70ce261241330f80a61d06c4b, 'Manimals', 'MGOR'), + (0x48125e71f6cddd49ddee81568c8ad65a84fb5673, 'International Ape Kids FC', 'IAKFC'), + (0x481359631df4821f2001748bc5de1757474c4d9b, 'MetaMen', 'MM'), + (0x4816e41748a2a6f318d37f9ff5f26d6b619ecefa, 'Smile X', 'SMLX'), + (0x48199892ee19a045b2310c0ab39c39de55bf76fd, 'StackOS NFT 5', 'NodeNFT'), + (0x481a7650ebf122195610f3090c263a46f1dd07de, 'InterestingGuys', 'ITG'), + (0x481ccddfaa45f504ddefb1ea088dd2395a95e6f7, 'META MARTIANS FROM MARTIAN TALES', 'MMSFMT'), + (0x482086153b780f8404e213e52bbf12d368cb33c6, 'Spongy Snakes', 'SPGSNKS'), + (0x4821d83ef98a956c664ed645ab313fa983c2b8fb, 'HeHeDa', 'HeHeDa'), + (0x4825380f2fda4cdd9cced400d50a97bb1a874257, 'Digital Art Collections', 'DANL'), + (0x4831fd7afd41d502b6a98975983ecd9fc1922d3c, 'jiajunsfriend', 'jiajunsfriend'), + (0x483c4523f0348f8d8b132dcc6918b1e500bea88e, 'ONE X APES', 'ONEXAPES'), + (0x4845af3431019dc6d43e4d79fd553c0277204a7e, '20220321026', '20220321026'), + (0x4848c92c2d6f7192faa4e586c54f15bc18c78909, 'Mystery Boxes', 'MYSBOX'), + (0x48501b21549969bc8b620ca5abd53f1514c6cc72, 'DAOnative Core', 'NATIV'), + (0x4855cc08211df7c6b5718bd96705d778ed67f63b, 'Daturians4Ukraine', 'DATU4UA'), + (0x485ae65b8a3c908030194292621b5d74f84e8165, 'CFD NFTs V2.1.2', 'CFD212'), + (0x48665bc7d05c63673e63a6c64f7eb18c260de8bb, 'Fractilians Hoodies', 'DCL-FRCTLNSHDS'), + (0x48679e8b22648e8ca1177a7dd0dd51b841912cec, 'KawaiiFriendsNFT', 'KFNFT'), + (0x48697417f102663bea75a52cccc7bd5da9e8705f, 'DEFYGenesisInvite', 'DGI'), + (0x486ca491c9a0a9ace266aa100976bfefc57a0dd4, 'Screensaver.world', 'SW'), + (0x48766a6894e2b435f231ec860fb579496b3a8c6a, 'GothPartyBats', 'GPB6666'), + (0x4878453faf92e7fa6385ae2e5eb157c14e239c48, 'Rami Kleinstein NFT', 'RK'), + (0x487d695ca8e0f870d86609198c5c170d457aec9a, 'zzzzz', 'zzzz'), + (0x4880b756e54c4791115d63fe2ca9aa4db0541e6c, 'Hahhhsis - 「 Star 」', 'DCL-HHHHSS-「STR」'), + (0x48854ca410a6dbf6965a07c89d109202a6711442, 'bearBrixel', 'BEARBRIXEL'), + (0x48864ff6ae091c7bb48a88d1a25e30ab31695f51, 'Got Scottitude Clan', 'GSC'), + (0x48949ec4afe63b8d32758d3056df5d0d3eeb22bb, 'TheBlobfishes', 'BLOBFISH'), + (0x4896f0a10477f5d9a1d0749793c11cf23f650bee, 'Couch Potatoes', 'SWEDC'), + (0x4897b105af8d91f06dbc48d0d978c1acdca993bc, 'JohnDoeNFT', 'JDN'), + (0x489b79f1be574da9faafcf60dcd24823f73023f7, 'Majestic Apes', 'Majestic Apes'), + (0x48a253423b5efc31803ed1c8fba617b327431ecd, 'H0xDLERS', 'et0X'), + (0x48abba957447bd27301d99f7800e1a0dee2c725b, 'Crypto Monk', 'CRMO'), + (0x48abdf615989089771311e3f1a31eb6cd0f10e9d, 'Girls Collection', 'GC'), + (0x48ae4d3da3d66ab7cce50f19e922bbc14f72852b, 'AFROVERSE', 'AFRO'), + (0x48b0d5544dc0d9bac7507cc65dc7e7f63814222c, 'Doki Kicks - 1st Star Edition', 'DCL-DKKCKS-1STSTREDTN'), + (0x48b1cefa8064c23cd50d8f27f636768b4c30e5eb, 'Non Fungile Punks', 'NFP'), + (0x48bb1f9da84c382828217db7ae50733c725f2a60, 'Panther Pass', 'PP'), + (0x48bbdbaa1b434ae257581bdafe471626f685b2b0, 'Formes de couleurs T2', 'FDCTD'), + (0x48c52bf91b8bbbab0d178d7a461d48fa9b2c50ac, 'Metawalls', 'Metawalls'), + (0x48d34ae590b0ecfc53aba39d2eac1dbc2770521c, 'Pig War', 'Pig War'), + (0x48d43e82831a5667658176c5c818ad539119e4e4, '2099 Genesis Bag', 'GENBAG'), + (0x48df05867921b2758d4a83a8910dd1df692ecb7e, 'MadPandaCollection', 'MPC'), + (0x48e4bb42ea97fd2ddee533f1caed11a600f54d6a, 'Cigarboys', 'CB'), + (0x48e6ed1c3c13d8f8dd58e8201658bbe40d5218ca, 'Greed Metro Hunter', 'GMH'), + (0x48ecb208188901da78650917136a9a7cdcf0bc48, 'Mistery Fish', 'FISH'), + (0x48efdeeaa3dc4f73079f6716feca84ce9ec2a507, 'PAPAYA', 'PAPAYA'), + (0x48f732c473d6488273d04cd40af90fdfc871b2d8, 'SmokyRatz', 'smk'), + (0x49054737a2e734b685062d7121db9871e3d06e3e, 'Clay Nation', 'ClayNation'), + (0x4909fcb0f7f41d1d11f3ab3af12be7eed7c4432a, 'PixelLifeArmyBronze', 'PLAB'), + (0x490afa1794fc2499bec59b309c3e2212621fe2a0, 'DEFYGenesisInvite', 'DGI'), + (0x490d7e3c011b446e35e24e5f5d1544c04bd4b3d6, 'PickleFamilyV2', 'PF2'), + (0x490fcb0c7db0d5597a1457df41862f947bbc2b28, 'Tweak Wearables Release 1', 'DCL-TWKWRBLSRLS1'), + (0x4912feeb05d89fffba0b61d8849bf699cd404a11, 'ftxcool', 'ftxcool'), + (0x491d8034805113d49b0d68595316777cfbb1adcd, 'S2TM Simians', 'SS'), + (0x491f3f108cd4a455b1bd3c924c9825d66b960062, 'Space Kids', 'NFT'), + (0x492259c0509ba4edcae1950887bd987fa668b8fe, 'Dokkaebi Alien', 'DA'), + (0x49306589fbf3c2e374fca7a4a880536db7bf05ae, 'BearScape', 'ZKPR'), + (0x493711707a4a396c4f58ec446348452f845bfe96, 'The Vogu Collective Model Lines', 'DCL-THVGCLLCTVMDLLNS'), + (0x493a5bad290b6f5a750e180d48074f1de31aec47, 'DAZZLE Fashion 2022 MVFW Catwalk', 'DCL-DAZZLEFSHN2022MVFWCTWLK'), + (0x4940518549391f8c4f9bfd1a480e55278ab54f30, 'Azuki', 'AZUKI'), + (0x49418fb53831697b6c8dfdfd2508fe415e7f98da, 'Pixple Collection', 'PXPC'), + (0x4944f412e52f626910de7c8c2b7e56bffc34fb86, 'MiniRFTs', 'MINI'), + (0x494eb00cafd34a9a9eda4f7423347b81c1450195, 'saving Rhinos', 'SR'), + (0x494ed26766e6caad2f8155488eccc2921902bf8b, 'Vivid Perceptions', 'C'), + (0x4959beb0d1577981d8925e044c411c494b49a716, 'Radioactive_Nuke', 'RC'), + (0x495a16cd69571c14ee2e7cf08a5e7a2489d471a8, 'Veritas Zoo', 'DCL-VRTSZ'), + (0x495ac00f058866c64fc412438616c80a3ba45165, 'STEPNJPNPreEventFinisher', 'SJPEF'), + (0x495c419a27e248c4c0e111bd528b644c758c1143, 'DarkFlux', 'DF'), + (0x49621e881b5f87dbd6a02f4581fe067bcc0f847d, 'CryptoBlades Key Lootbox', 'CBKBX'), + (0x496b615d2b6982a67779bf8950df14db91acadb9, 'The Waddlers', 'WADL'), + (0x496ddf10d96d4da2f33d2aceecdea4914d240099, 'funky guy', 'FG'), + (0x496ec198ea4c328154a0751f89e48c72cdd3b493, 'Emerald Sun Warrior', 'DCL-EMRLDSNWRRR'), + (0x49717d37804016f5bb64df57f229bfbb640c6ae2, 'Toadverse 0', 'TV0'), + (0x497734b1be4b09c9e758ff20fafc5c9bc2a4ce97, 'Iconic BabyBuddhas', 'BB'), + (0x4977d56cbbf7e3e80229a0881656cbdd763b95da, 'AAA', 'aaa'), + (0x497b4aed2a013f579f8d750851e9f771fbe83c02, 'GEN-T40', 'GEN-T40'), + (0x4981589f3836fe18bdd6221ffdcd775f4b7befd5, 'FKHZY', 'HZY'), + (0x498ff33a2548de99b3761fea3789554421a9e27d, 'PMPKNZ', 'PMPKN'), + (0x49929dd52386da3c726d1a42a242ddbb940ca31b, 'guys', 'gy'), + (0x49b533788d6fa7cde7222c83ddf6b2666c2b584d, 'EyeMyth', 'EM'), + (0x49b80eca0d9a8dd2348dd0d50b5a710c7199512b, 'Kraken Secret Society', 'KSS'), + (0x49bb73b257592bb68cce4e89125482ec5263f17f, 'NFTSprites.com', 'A NFT Sprites'), + (0x49bdf746fa9e726ce03078e32b115c1ed53a778a, 'Skulled Pumpkins', 'SKPZ'), + (0x49be16c84acc0abb432361af97bb358ad4756a25, 'Occhi', 'EYES'), + (0x49bf878a7e0ea39795448e1820281c6fede4cbc8, 'nftblobs', 'blob'), + (0x49bfafd76fcf3baca64ba35d37bec3049a1800cd, 'Collection Of Rare NFTs.', 'PRO'), + (0x49c25df730d9e4baa25c0634f0e995f8196ae1de, 'Official Machinedog Shoes', 'DCL-OFFCLMCHNDGSHS'), + (0x49cb83b4c4980029200b6759d5fb7d3b21f10134, 'ICE Beach Club', 'DCL-ICEBCHCLB'), + (0x49cc23d0b5f61002c2844d0e3d96a8eae71e3604, 'Evil Club Lords (Matic Mike)', 'ECL'), + (0x49cf3172fc1fbdb8f1e7d825a8d7d57150b303f5, 'The Last Halo', 'DCL-THLSTHL'), + (0x49cfeba167474e6b151a20f80f9906454574ce78, 'O-Bot Game', 'O-Bot'), + (0x49d7bbe173127fdc14dcd191d7034096e2ffe3ff, 'Boodles Bunny', 'BBY'), + (0x49dae21264111d85a79c8fcb3222ae307b36a52e, 'Eco Bear Originals', 'EBO'), + (0x49e68379505b6790c03eb99b5bd031b51449cb74, 'CryptoGogos', 'GOG'), + (0x49e92a164f0a94ff8e745fd712c3b7bda8469f4d, 'The Polygon Punks', 'TPP'), + (0x49ec95962d86cb2ba7403d3d805e34f9a62c405f, 'ⵣ Tribes Alpha Access', 'BUIDL'), + (0x49f71d9ade15089f8d2451cdc83091793a7ad29e, 'BullsandBearsStackerCollection', 'bbSTACKER'), + (0x49fcd512d835d8c229cf5d3e40a4e76e4938c062, 'OnChainCanvas', 'OCC'), + (0x4a04b886f20d43641799c91abca5477901756261, 'BelugaBayVampires', 'BBVamps'), + (0x4a04ffe80471572679604d7a4841e98e0be3562f, 'TryingNFT', 'C'), + (0x4a12fcc1b5e189ac10f870eb720a95b44eb4dce1, 'Balloon Crypto Pet 1', 'DCL-BLLNCRYPTPT1'), + (0x4a13bcbbab89a6d0a14c602f117455134c1161b1, '20220316023', '20220316023'), + (0x4a191eaca093c9016b6b1139a8280f955d756332, 'Magicaw Murder Girls', 'MMG'), + (0x4a1c7c69e038474003a82af0771047850a63d156, 'fMetacat', 'Metacats'), + (0x4a1e9d68ec88e16edb4001b5289ffc91f71d952b, 'Elf Fight Club', 'EFC'), + (0x4a27bf7828ffa56623b79e27414ff16c8e37fa18, 'Bored Beast', 'BB'), + (0x4a29898281c0604d6f51bd6a8ca679509ee6ca06, 'Astrominers OfficiaI', 'Astrominers'), + (0x4a2e55537a6b974e980a9ff6d73b2c4a008400f4, 'ElonPhantMETA', 'EPM'), + (0x4a433e85dd0136460427908ec27a2d45a59cdfcf, 'The Bulldog Society', 'TBS'), + (0x4a45cd3fffc862e05d6af19af40c7e24d98658bb, 'WhiteboardElephant', 'WBE'), + (0x4a4d7cb1d3f98c953880d6bcd87a55684298f9b1, 'Souls', 'SOL'), + (0x4a65c550e2c2e461b2b85f901de66d629a980e4e, 'CorgiTheD', 'CORTD'), + (0x4a735c79d3f883e6e660b36e0f743fd1e0cf0498, 'Bored Ape Panda Enclave', 'BAPE'), + (0x4a779aa6f702a07839df646d37e44bd67da05000, 'tst', 'TST'), + (0x4a77fbc2450397bd5fc4083001416b0defcd8828, 'Zed Run Glowing Top', 'DCL-ZDRNGLWNGTP'), + (0x4a7c4c7a86c9ed4736d3e22299a3bc5f45e85fa7, 'DBNFT1', 'DBNFT1'), + (0x4a83c71c061c8fb1b9c2773fdc063c0df8bcbb08, 'Dry Koala Land Club', 'DKLC'), + (0x4a9748b691f2c158cf5d983f605a1809568d36ee, 'TIG: Phrases', 'PHRASE'), + (0x4a99c814945fe609e982b47c45ad0096f573cacc, 'HornyCupids', 'HCNFT'), + (0x4a9c7dbf9c991b1098e895a27bd5a4cf86975507, 'Mfer Gifs', 'MFGF'), + (0x4a9db9314685367c36e670ab5af202e35058cf07, 'MetaBulgaria', 'DCL-MTBLGR'), + (0x4a9df84cf03fea06c0ff741a0f6c0cc6d83b4416, 'MCP Land', 'MCPL'), + (0x4aa120fb27212755a1d8de9336e247ca06e0298e, 'Lip Conqueror Lipsticks', 'LIPCL'), + (0x4aa177f1428a1d0325f573b5f67aa1ec6727ff34, 'ZeGarden - Operation Smile', 'FLOWER'), + (0x4aab97c3d27ba025e1e9aeaa5746048a5f52b0ea, 'Degen Gang VIP Card', 'DEGGNVIP'), + (0x4aad1fb3d98fdfe7130146cc16a08b8414e6a971, 'DooDoos', 'DDS'), + (0x4ab373747e5262293f998962dadcbb58f951ea25, 'DecentraJacket´s', 'DCL-DCNTRJCKT´S'), + (0x4ac120548fd9d0d6add398bed4e004de3fa53ed3, 'Angry Chick Official', 'ANGCHICK'), + (0x4ac2c6ba71b43cfdaa6a503217ee7a5554688721, 'SirDropBearTV', 'DCL-SRDRPBRTV'), + (0x4ac926fd0debf7b343bb27d03b4154891f9a3d69, 'YNFT', 'YieldNFT'), + (0x4aca348e88470b096cca691e8792b7937fce8c2f, 'Grenade', 'Grenade'), + (0x4adb4fec29943861a15fa21a4f369e460c2101e6, 'WordPress Plugin Demo Site', 'KEY'), + (0x4adfd9a007ea1abfa324c98ef8c4647c4a16f5c3, 'Clachy', 'CLAZ'), + (0x4ae1d4b2fff7d75cd284c77bcd5d3c40dc4d65ef, 'Pretty Pandas Yacht Club', 'PPYC'), + (0x4ae38b958f6ee8a87752d70b365bd69798e4e8bb, 'Every Minute', 'EM'), + (0x4ae6506e5071afb0d0a2d6365dc87f214ce7d943, 'BullsandBearsFansCollection', 'FANS'), + (0x4aec44a7c6a32c19bf0f80d6f943ff41baa69db0, '3LandersPunks', 'LP'), + (0x4af65ba90ecb16a3b6bbd18c5859303b079f9fa9, 'JeeperNFT', 'JPR'), + (0x4af9ea1291785d19c2e70fc5e2d1654302980965, 'Moonkey NFT Legendary', 'MNKL'), + (0x4b119cc1c9f8b953654f01bf23e6f4ecd680ba7d, 'Crypto Biker Punk', 'CBP'), + (0x4b12facbb9ef0b9ea9db11cd00657b2e1ef34310, 'Puff_the_Pufferfish', 'C'), + (0x4b1697e805542ef7195b2be5b71cda811204b628, 'PokeChibi', 'PC'), + (0x4b22a01fca0b86607504661362bfb1df3e097bef, 'GEN-H15', 'GEN-H15'), + (0x4b23187b8765e2e81ee2fe5be9f1630e3f8904e2, 'jetkei', 'JETK'), + (0x4b273ce2f498001238d1828a066bc2d8cc399ee0, 'ChubbyDogs', 'CD'), + (0x4b289c9660ee86ea7bf9e37ae9aa2a018d368a2b, 'Moody_Ghost', 'MGHOST'), + (0x4b2ae7489750bad5330951bffa49456bbd9fe5b3, 'Neonizers', 'NEONIZER'), + (0x4b43af7539241099f9454802fc2b8f117bdce8ca, 'ChainArtefactArmer', 'CAG'), + (0x4b46380f2efe8d48dafbe521fc983295e581ab60, 'UniqueAsset', 'DOVE'), + (0x4b4879f01a2b54d7f21b37bd8c4d4971b15fe5bd, 'Svalbard Money', 'SM'), + (0x4b50b5b5f65121bf4b3e916d0f5e977f17086dfc, 'Happy Tom', 'HPYTOM'), + (0x4b542419615c82560b83ba68e060c639c94bdedd, 'DotDotDot - Tiki', 'TIKI'), + (0x4b5978482e442924d7983829627f9955f89bd936, 'TT', 'TT'), + (0x4b5acdb26a3fb18a0ee42e084161d5ef56c71f08, 'Digital Kings', 'DKS'), + (0x4b7a65b07da2809a664a3d3702645eb3c6fc6c40, 'AlpaCrew', 'AC'), + (0x4b7e10ee0a429962c1842e56d3a78097c188c307, 'Steampunk Closet', 'DCL-STMPNKCLST'), + (0x4b7eed98ed33f126efc97ce793daf6da310c0da2, 'Zocto World', 'ZOCTO'), + (0x4b8a793a1e0932e009c8aff71b44fe4ce551c158, 'War Snails Airdrop Satoshi Salt Seeker', 'WSG'), + (0x4b8ea7edc72c4d5457e7ca510f4a8738642c3682, 'RIBBON', 'R'), + (0x4b914e392a963a2a1f60a5a89e9352d64af4a15f, 'BetNFT', 'BetNFT'), + (0x4b9b703ba4ace1264f7681bb53caa81fe706dc15, 'Snake kingdom', 'SK'), + (0x4ba7404893c1bd48ca8a080b4c80e748517a8ad3, 'Furucombo NFT', 'fNFT'), + (0x4bac28c70e41d914cdaee746d10a8ef5deac0129, 'Riot Racers Mechanic Shops', 'RRMS'), + (0x4bacb5a8aa52a32191f7a9868a8b0adc89617c48, 'AFC', 'AFC'), + (0x4badf103cefee00e9fda2708f0358d1ee47cfc0b, 'nanakusa', 'nana'), + (0x4bb6782e260ffaa7ec7ee25de89ee1daac0b6c54, 'TreasureTurds', 'TURDS'), + (0x4bbaff7a477ac5dab184dea9946dfbb9e9a38b5a, 'tvini_moityna', 'TVNM'), + (0x4bc76ddbb39442f671107a2b99bb16ebaa8ec95f, 'URBAN BITCOIN CRYPTO SNEAKERS', 'DCL-URBANBITCOINCRYPTOSNEAKERS'), + (0x4bca2c2ece9402b5d4dd031b49d48166c40b7957, 'BillionaireZombiesClub', 'BZC'), + (0x4bcc6e2e278551bc8b40902f453a02d59434a6e8, 'CertificateMinter', 'CM'), + (0x4bcfc166804d51827fa8831e69f447fa887175f0, 'CoolAye', 'C'), + (0x4bd2a1a3aa176f3221c6ab79e27de732ba7e47bc, 'Baby Ape Rug Club', 'BARC'), + (0x4bd57514e114d8841b40d672d76147556116efed, 'BearsinCrypto', 'BIC'), + (0x4be3e86019f5cef3b660213deb4eee8119569810, '100k Loot', 'LOOT'), + (0x4beb149457e7da7c814f2f170f6daa43535cc9e7, 'MetaFrogs', 'MFS'), + (0x4bf70a21c0f02b26ea888628e37b41f8f16e8355, 'KANJI CLUB', 'KNJC'), + (0x4bf7e4bb01ddeb84810388f154902d759040fc16, 'Chase’s Real Signature', 'SWEDC'), + (0x4bfced9233007c5f7d53d0c45022d6fd573fd939, 'Weird Catgirls', 'C'), + (0x4bffd0f49329e2c57bbffeb85dd55fadc2c40c3d, 'CryptoPizzaParty', 'CPT'), + (0x4c01947857e1dbfc9a7c151305808df4ded79426, 'Darkthrone Skin', 'DCL-DRKTHRNSKN'), + (0x4c0f350fd636ece499c8be47bcd126802b40ad3e, 'Django Dino', 'DD'), + (0x4c1625bf9874d60ebb6f6053b0fa3011f386dffa, 'NFT Granter', 'NFTG'), + (0x4c1ea50ddef8c5a2556995fa68f7631cab31438d, 'Pajama Llamas', 'PL'), + (0x4c1ed2a12a3dfb7b97200bbe87ced06b2231a306, 'Big Burgers', 'BB'), + (0x4c21f8e7f8a60c1a0aefb9b5b9ac5d0955ca1156, 'Save World NFT', 'SWNFT'), + (0x4c30a31902ce64c40090aa5a43d4b1f4deed0d8d, 'Bored Punks', 'Bored Punks'), + (0x4c3df89b407dfe205fa59bad80da8b0cd890c356, 'Sausage Rawars', 'SARWS'), + (0x4c442253ee14977242f66a0e11783ae1a16bf40d, 'Asymmetric - by Cielo', 'DCL-ASYMMTRC-BYCL'), + (0x4c4c71a1f6b9b227191a3418f8604dd686323395, 'Emoji Americana', 'SWEDC'), + (0x4c51a216ca472fa0b01ea595831304d0f3dc809b, 'The Sneaker Factions', 'TSF'), + (0x4c52548145a99eacde86561ef30cd01c103cb579, 'CryptoBearSClub13', 'CBCS13'), + (0x4c573c38f450620628a6a9e78a649f03fc186767, 'White Tiger', 'DCL-WHTTGR'), + (0x4c5b114cd058687581f31d0e5386b02cb82db9b1, 'JayDee', 'JDSMAG'), + (0x4c62173bd99b9939913d5ddabd8a3eec48571966, 'Bulldawgz_The_Dawg_House', 'NFB'), + (0x4c62fe07052b966d2499b875609f2cdb9277f164, 'Cool Geometric Shapes', 'CGS'), + (0x4c638cf0cb7cf8e384c1c2f4d43c2dde5950fe01, 'MathNFT', 'MathNFT'), + (0x4c6477d1c9e1dee5cb4c256f955644602b9937fa, 'Uniqly Generator Polygon', 'UniqGenPoly'), + (0x4c6b2301dcf73eb67b72bb5b9974633ddd765728, 'LANDERS PIXEL', 'PXLANDERS'), + (0x4c6cc727fac3a81ed32670b15451bb93d60eb434, 'ConfidentGirl', 'CG'), + (0x4c6dd51bbbf0f66a219bbdd1b9f749bee007ca26, 'History of Crypto', 'HOCNFT'), + (0x4c748d06afbbbe34696c351f0e76ed0e16e75031, 'Troll Freakz Social-Society', 'TFSS'), + (0x4c7fe0d2d62320c74e1c5de8a8530fbf23a27e0d, 'AlphadudesNFT', 'AD'), + (0x4c825fb4cab7143f7e374bdd9f40c7db185648a9, 'Galactic Society', 'GC'), + (0x4c884967c69bdc0b7cfb40e69d49c1f520ae985d, 'TheArmyOfCards', 'TAOC'), + (0x4c8d582acaad233973a2da91462e80a2196f098f, 'MyNFT', 'NFT'), + (0x4c8ee70dc5c789225ce4bb9223f5832bc6fe66fb, 'MiniSpringGirlsCollection', 'MSGC'), + (0x4c923f2809dde33ae139ea62790e26bb7498a128, 'Unione''s Club', 'Unione''s Club'), + (0x4ca05afd3a3a6dbc644f30aa2d7f49e27cd85cf7, 'Weird Catgirls', 'C'), + (0x4ca5ec27655e99457d918aa9c16d06060cd29589, 'Epigeon', 'EPG'), + (0x4cad03626345b74b6a6d02c9a6ca59e9a70b4f95, 'Crypto Monster Inc', 'CMI'), + (0x4caf906e5a0faea9f69b471d51411df14015f85f, 'MODA BRONZE', 'DCL-MODABRONZE'), + (0x4cc6731eaf192651f9372d042cb8c6713097d1b9, 'AVATAR', 'AVT'), + (0x4cd15dcd96362cf85e19039c3c2d661e5e43145e, 'Party Host', 'DCL-PRTYHST'), + (0x4ce6b26a8d3cf7e441e1bbf768bbfdd00def0ffe, 'Viaminer NFT', 'VMN'), + (0x4ce80e914603f2d30075243c67da1b64c93b1b3e, 'CHATTER BRAINS NFTS', 'CB'), + (0x4cedf908f8c6e545fe920e8f503a99a50a72f29b, 'My Dinos', 'DINO'), + (0x4cf0aab117b745dd7536e84dd715db6dbdadf33d, 'Jinni: Girl Next Door', 'JGND'), + (0x4cf4a052637af5423f598f34a14c8c2085236ffa, 'DEEP JOKER', 'JKN'), + (0x4cfeacd0e8a6b78f5eff81540a2c405cf8b2baf1, 'HeartInCage', 'HC'), + (0x4cff838fce36ba2decd6ced6434048e0bd316103, 'iBaatar', 'IBTR'), + (0x4d074273bd44a3c9149a5e10cd2378d34d47bed6, 'Pride Parade 2021!', 'DCL-PRDPRD2021!'), + (0x4d1e6ade7118d7c3c29ecacdc212e4069fb117da, 'InBread Catz', 'IBC'), + (0x4d1fa374e1d303805eecf1d2aab2ea540e883ac0, 'Crypto Furpys', 'Crypto Furpys'), + (0x4d2b6362495b5d81955c850b87fb00ce40aad6d0, 'NFThicc_Lucid_Ladies', 'LULA'), + (0x4d2e1ab0e1c2d5c00b27bb782ec74c31d2977088, 'Sweet Halloween!', 'SWEDC'), + (0x4d2f7098e2630b0856b21d5f58288254d754d85e, 'HODL CAPSULE', 'DCL-HODLCAPSULE'), + (0x4d3081ee8f3a638e0555416fa9ea3018b3a75f53, 'XETA Rubberdoll', 'DCL-XETARBBRDLL'), + (0x4d37858e7ab9e15646727685fd846d89a83f9c2a, 'Million Voices', 'SOSINDIA'), + (0x4d3cbd206e1a4a000e0abc01b443e2585dca5f14, '22RoachGang', '22RG'), + (0x4d3df9f626648db83522ce60b74950143837cd73, 'Hailary NFT ART', 'HLR'), + (0x4d43f61628b8657c33df4f9f506ad8a1fd66c890, 'KoD Tournament of Champions', 'CHAMPIONS'), + (0x4d4475e5591c00525069c52f3489be59b321ba64, 'Digi Cube NFT', 'DIGICUBE'), + (0x4d4c9c4b98ad710319941492309e26463fb5a2ca, 'Blooming Lotus', 'Lotus'), + (0x4d544035500d7ac1b42329c70eb58e77f8249f0f, 'League of Kingdoms ITEM', 'LOKI'), + (0x4d597b3f1d39c44cf0249dfc2bb7fa63ada9ef50, 'Project: Geometric', 'GEO'), + (0x4d648251cdad34d5ac1002a20d2241599a2beb65, 'Shoto Todoroki', 'ST'), + (0x4d67d5dd0e32a1fecc0e4efec07f1beb589886ce, 'Bad Punks NFT', 'BPNFT'), + (0x4d6f03f0c6463382dd095c180f3a10b0b83e68f8, '微信扫码', '微信扫码'), + (0x4d75e0be12dcce26f5b6361f87bf1a1d7c796b84, 'Apes 3D Backpack - Santa', 'DCL-APS3DBCKPCK-SNT'), + (0x4d76dd496c95e1a75f7f9d48a1debafbfa8e5c4e, 'Glow Shirt', 'DCL-GLWSHRT'), + (0x4d7765024953569463dff19dd7cd6b8ea277696c, 'Brainbot #40 Choonyee', 'SWEDC'), + (0x4d7b8e1ebdcda9a0bc84911a6d2676e15cdf34fe, 'John', 'Jn'), + (0x4d7f3d696058945070fec65bffef9dd41c7021b2, 'Glastonbury Festival 2022', 'Glastonbury Festival 2022'), + (0x4d8154ed9d786c6459df4d86fbf4abfccf7e7244, 'CodeBadges', 'C'), + (0x4d858c7316d3b0cdd306b5cc17b63360708a4d30, 'BATTLE DROIDS WEARABLES', 'DCL-BATTLEDROIDSWEARABLES'), + (0x4d90111c75929207e71ed76ccb75f039b78bc376, 'Animo.Women', 'Animo.Women'), + (0x4d9148ddc28ced4d41c1458fb10ad657ced071bf, 'Trippy Gum', 'TGNFT'), + (0x4d9db55f8c127a7118f4d48b52a05619dda046b2, 'adidas Originals Bored Ape Yacht Club', 'AIDDIDIDI'), + (0x4da19eeca48d8e88353ea07a851422a32a687799, 'Cats in Hats', 'CH'), + (0x4da8f0148c495d3f4d314ed5cceee683852b9643, 'vollys', 'volly'), + (0x4da989d04eb546b000a12f7cacab01cc0ce04564, 'Suave chic by Keching', 'DCL-SVCHCBYKCHNG'), + (0x4db0deaff80b0388c0a14c0954c0215b9c24ea8b, 'Sizziers', 'C'), + (0x4dc5d002b70148851969ca2f8d539fff0a213a4f, 'PEPE PFP', 'PPP'), + (0x4dc9ec63e98ce3b565f3e13b67f922399ccabeff, 'Midnight Maiden Dress', 'DCL-MDNGHTMDNDRSS'), + (0x4dcd1b9801f926422dc3d16ab0fa1d879ffc4f83, 'Chibi Labs Merch', 'DCL-CHBLBSMRCH'), + (0x4dd3e9ea466d749ebd908256c9e61e87889e0711, 'The Warlocks NFT Collection', 'WARLOCK'), + (0x4de0881ca95106a3fa01007cd2e4fe773fc8ac99, 'NinjaDAO', 'NinjaDAO'), + (0x4de165d065edcecf39c3509cb93483b9c9222014, 'Vagina Saver', 'VS'), + (0x4de1aeb442908476fa7cd2161f8fbac1a75fe1f8, 'Ugnu Merch S1', 'DCL-UGNMRCHS1'), + (0x4de43b091d12af2bdd31bb453f1726b07329104f, 'DonaldTrump', 'DT'), + (0x4def9222f04561ae506ab02e8092c1486d27b1ea, 'Sweat HighCo', 'DCL-SWTHGHC'), + (0x4df126268b701133d4951586641556f6107e3b72, '21G', '21G'), + (0x4df3f229ade6a2fc0204c4c92c5d24dab6cdd5b2, 'Tasty Toastys Official', 'DCL-TSTYTSTYSOFFCL'), + (0x4dfb75c55f2c9603eae8f0d2ac6c67656ae4526a, 'Ape Punk Club', 'APE'), + (0x4e018e06579cb34967bd152d916375a5c869040a, 'Fully Faltoo_KYY', 'KYY'), + (0x4e0c8ab47174443311c9ab105c1e0b8d73168a79, 'Drippin Dudes', 'C'), + (0x4e0e75b54a895381fbfbf4332000a368043ba00b, 'metaPASS', 'SDKMP'), + (0x4e1f64f89f8497d7b3a89284dc47414e2cc28fd4, 'Love Potion', 'DCL-LVPTN'), + (0x4e2035ea9cb90fac9bbe5969b06b9598af1d2f0b, 'Visions_Wear', 'DCL-VSNS_WR'), + (0x4e203c5822ac781c5bf8cdf3f36cc346457f7306, 'LostGravity', 'LGTY'), + (0x4e21e16e86b66d09875f96707a1f95a606fabd73, 'Alpha Apes', 'AA'), + (0x4e2441888a39a33d61d34c6d5c1fe0fa0285e067, 'Voucher GOBT Exchange', 'GOBTC'), + (0x4e25f574f1d59d756a29aa8b4e1044e6bd84b829, 'Azuki', 'Azuki'), + (0x4e352f2ddebd78c8269bfd9187e5fb492c0cb0ee, 'New Crypto Heart collection 8', 'NCHC8'), + (0x4e35a3fa67002502e8eedabbb97f85b468d315c2, 'Oklahoma - Rudy', 'SWEDC'), + (0x4e37259b90415d1f6b9797a559c2a41eace4563f, 'InsidiousJoker', 'IJ'), + (0x4e37e1a0e319c6e50d0f819ca9b188ca386f2b43, 'Snail Lads', 'SL'), + (0x4e4803268deb3446f13d976407ebd1c42f51c47b, 'Grim Reaper', 'DCL-GRMRPR'), + (0x4e4c124eb3e759cfb5611b2232d044a6ceb3a46b, 'Cyberpunk Iconic Wearables', 'DCL-CYBRPNKICNCWRBLS'), + (0x4e560645f04d8c0da2a7a2d45c43f41a3e829ee4, 'San Diego, CA Silver Edition', 'SWEDC'), + (0x4e59b85d1762aa15e0562a7aedf9bcf6cf6a8629, 'Creamons', 'CMS'), + (0x4e61b3830bbf46ccefc59ac0b809201e1001e509, 'GEN-T05', 'GEN-T05'), + (0x4e6313f8534c83fab5054a42e3d72fc4254091bd, 'HyperID MultiPass', 'PASS'), + (0x4e72439d00f0031bd88447e5505597e4de86407a, 'Playermon NFT', 'PLAYERMON'), + (0x4e7a97946c27b2a07d0b384649a689d985f348b0, 'Rarible Fresh Drip Merch', 'DCL-RRBLFRSHDRPMRCH'), + (0x4e8b6cf3f03446dea5ba051e879158f4ecff2a16, 'Anime Corps NFT', 'ACN'), + (0x4e93be3b52aae86372380d69056ffa4552450a45, 'InaPinks club', 'InaPinks'), + (0x4e993c6c3c001e14589b1a5910e51d2dbe089496, 'NFTs', 'NFT'), + (0x4ea452dcc577f826a087078b16606ff6b93c1bd9, 'WhiteboardDucks', 'WBD'), + (0x4eb590f5e9a58445204899f630581654df212535, 'MCP Pet', 'MCPP'), + (0x4eb81a3773f0cd560329f8f6845d8226e9eef3b1, 'Kangaroo Punch Club NFT OfficiaI', 'KAN'), + (0x4ecf418bbf685d6280c2db823534e844dd271b6a, 'GEN-L26', 'GEN-L26'), + (0x4edb4c94085596cfcd9ac1ac233564acfcb27df1, 'GG Jeans', 'DCL-GGJNS'), + (0x4eeb9747218d060c4cd744e58758734a5b21ae8e, 'PolkaFantasy Game', 'PF_GAME_NFT'), + (0x4ef28f91295312829351011f2ee3fe9a59f84d49, 'Sad Bots', 'SB'), + (0x4ef82784dc83a4d40bc2a8a0def6af0efe6a2ecd, 'Nifty.World - Moments', 'NFT'), + (0x4f0380e347b0f36be45715bc8a26212c246bc2d6, 'shanghai', 'shanghai'), + (0x4f0a8e5f8e0e22137833bf708b98ae77aeb03334, 'Purple santa hat', 'DCL-PRPLSNTHT'), + (0x4f0b08813dc38aed45ef3f9cc0c4a3678aeea794, 'Bills', 'Bill'), + (0x4f14483e16d9b2ad82f5634d694f3d29d4261ee5, 'Bullish Degenerates', 'DEGEN'), + (0x4f17c6514b9ca3abccfdefd12df2dfa195a76dc4, 'TrumpChick', 'TrumpChick'), + (0x4f1e6318acc9ee33c88f0e3e3578d5ad62e19285, 'BOSSChick', 'BOSSChick'), + (0x4f33f38c6ffd7c83a14e15cbf5fbda37ef44a222, 'MiniGoros', 'MG'), + (0x4f38d4020dbd857e057fc90be94386a7351905e8, 'Crypt0Knights1', 'CrKn'), + (0x4f57fb102d709bb8dbf9a61cb3c29741d9c8a4dc, 'GG Leather White Jacket', 'DCL-GGLTHRWHTJCKT'), + (0x4f5dd0548019f99d906c81dacb8169a883681701, 'Hightaddy', 'HT'), + (0x4f62364fb0a2483ddd9ef977b2cf8387a6bcc964, 'Xenokicks', 'DCL-XNKCKS'), + (0x4f6b53e7290f3a701caa4007825e327142cbb4ab, 'IKONIKS® Wearables', 'DCL-IKONIKS®WRBLS'), + (0x4f7bb4064f4472a06f4749fc2efbecfd2e4279d0, 'Insomniac', 'INSM'), + (0x4f82264ea1034d5b32e46d86c17f725e84de540e, 'WWCD Genesis', 'WWCDG'), + (0x4f96bf08d11688425961bd127698d991790fbc70, 'Web 3.0 Hackathon Participants', 'web3'), + (0x4fa1e55964f8ed101466a949ab6fd45f17cd7d0a, 'Swampers Official', 'SWAMPER'), + (0x4fa4d3f907a62ef365ded54d3ed702fa55163e0e, 'The Cupcakes', 'CPCKS'), + (0x4fa6d1fc702bd7f1607dfee4206db368995e1443, 'CryptoBoss', 'CRYB'), + (0x4fb1d368189b06956874d5b5fdcc2beb0960ea3b, 'Moody Monks', 'MM'), + (0x4fb8cc277daa88cc2109cbe4c0245bb6f3a21e07, 'Human Hypostasis NFT', 'HHT'), + (0x4fbb199c26b60eebdf719b36ba81a7617b3c05ad, 'Parasite', 'DCL-PRST'), + (0x4fc11d681ba1b9c0da6410844e46fcc188f00e06, 'Tubbie', 'Tubbie'), + (0x4fc2330f17ffce78cd5eaee6a1acfb95a2b75da5, 'The Barbarian Wolfpack', 'TBWP'), + (0x4fcbdddcfab5e8d298c7614870e5edb2572fbad2, 'BullsxBears Hybrids', 'BXBS'), + (0x4fd32af0c0264a27bfca6fe7dd1b9c8d73dd699e, 'Karmaverse Zombie Box', 'KZBox'), + (0x4fd8fb3f67a9ca247c1838ffa8f396b448ac6a52, 'Nyoki Club Official', 'Club'), + (0x4fe6940afef627c93bd9b8f06509bfda706497f9, 'IPFS_NFT_Contract_Opensea', 'IPFS_NFT_Contract_Opensea'), + (0x4fe765dbcca9efc11dee3c85c74c0e952293ee3f, '3Landers Official Polygon', '3L'), + (0x4fe7b65b3f6a6e2a6f69165a4e9509ab3df9abf3, 'Mr. W & Mr. J Wizard Collection', 'DCL-MR.W&MR.JWZRDCLLCTN'), + (0x4feaaa2016fa1d1b6e652d91c6e92afc8d850de4, 'CryptoCats', 'CAT'), + (0x4ff0eece34313a3f7cdd4763770a6c4d0c70af2d, 'Junior Bored Ape Club', 'JBACS1'), + (0x4ffcbfa35c9f06738c64842c57f3dbd466180a0e, 'Fish Gs NFT', 'FISH'), + (0x5012ae1368a0a084326a6bf2d00fce36d21c0c3c, 'Orginal NFT', 'ON'), + (0x5014fc0963394b2b382ab08bf47599a205ca5458, 'Pre Rolled Coins', 'JOINFT'), + (0x50183e4a203f898fe771b249c946eb21b5aa5f07, 'Crypto Musks', 'CM'), + (0x501ace47c5b0c2099c4464f681c3fa2ecd3146c1, 'xsolace lock', 'xsLOCK'), + (0x502ec3a8e189bac92d45266342faf1aa4294cf4d, 'Skull United Kingdom', 'SUK'), + (0x5031babf3246268956025354cc4ee234082ded12, 'IPFS_NFT_Contract_Opensea', 'IPFS_NFT_Contract_Opensea'), + (0x5037fb3b21fe69a4dcc563873306dcf8b7322417, 'The Crazy Pixel Apes', 'TCPA'), + (0x5039c9a6b212d209252c0d0ef37cbe6574d65ff8, 'BOXYV2', 'BV2'), + (0x50480f858791fbbc1149a66af7fb983f2e1114e5, 'Fuego x Doki FW 2022', 'DCL-FGXDKFW2022'), + (0x5049c82975a08f4373b321cb0d2e4ed56ee117ed, 'PIKA', 'PIKA'), + (0x505320b3ca2f24277fbc2c2df82e722d478d6887, 'Homies For Life', 'HMFL'), + (0x505a51f6f4aeb0d68b33015146781be34c93f685, '随便交易', '随便交易'), + (0x506533b9c16ee2472a6bf37cc320ae45a0a24f11, 'Celsius X Ada MAI Vault', 'cxAMVT'), + (0x50664f072fcdf0d4b01bcc75fa01c26291ef6e40, 'Crazy_bug_eyes_cat_club', 'CBECC'), + (0x5066efb46617c29e8b8eca119cce846d8eafce06, 'MuffinsNFT', 'MFFN'), + (0x506a59275ebfe9dd99655971579ccbe6d41c2dd6, 'Crypto Bears', 'BEAR'), + (0x506ac9d49f95d94dbdb88c94dda0a8e3dca22cf6, 'Sweet Caramel Apple', 'SWEDC'), + (0x50792f9cdb00c9796eb8dcb36935cf98423f5abe, 'BladeWarrior Collection', 'BLADE'), + (0x507b8770204f86052d5397d36e2f5984a4a290ad, 'The Honest Lawyer Paris', 'DCL-THHNSTLWYRPRS'), + (0x507ba6f32a3cad8fb71fdf7c142d2406318fd074, 'Rebel Bots OGs Heads', 'DCL-RBLBTSOGSHDS'), + (0x509159ebdb2f6c014546803b70a001fd77be9782, 'Fluff & Tuff Warez', 'DCL-FLFF&TFFWRZ'), + (0x50922c65cc0bb948d28492a6cfafe693f28b8733, 'Anti-Spooky Club', 'ASC'), + (0x509b171501acae8e0c5f6bc9d219003e973a2be2, 'giiirl', 'giiirl'), + (0x50a31225c0da3f8d763d71da3e6b865dd1af0606, 'Lemur Kingdom', 'LK'), + (0x50a95c5e045bb757af374414524e972d442443a7, 'LilRockstar Token', 'ROCC'), + (0x50a96e5ee894a9344c82a3e41f4cb786f046ebaf, 'NinjaValentine', 'NV'), + (0x50b36becff2312f1a999f1672f033cb63505d625, 'My Collection WPjqzVvjMvi1XR12IVt9', 'my-collection-wpjqzvvjmvi1xr12ivt9'), + (0x50b88955c82a6768a78ad30b02af345f61ff3986, 'Hiro', 'HIRO'), + (0x50c026d7c1a4f2862afaa092cf5e94f11fbf136c, 'taotao', 'taotao'), + (0x50c031d46ad4ad9f4fef4842b8e12c54b180abe3, 'Bearpocalypse', 'BRAP'), + (0x50c0c06cf223a358e147dd7a851157153de0beb2, 'Warriors Eagles', 'WE'), + (0x50cfc579b126f970bcbeb294db5f3bf5e1df9e79, 'WalrusInc', 'WI'), + (0x50d2333ae4454a23c34a1cd3bc4c2cb96773bb07, 'Omaha, NE Pop Art Edition', 'SWEDC'), + (0x50d4d74db3d17a314031fae985493825679aad39, 'Skyverse Metaverse', 'SV'), + (0x50d5d8e83bb24cd9ea0f883d5b9c40627554b6cf, 'Small Bros OfficiaI', 'SMA'), + (0x50dca82583e8e14c92b9ee855c0ba2c104a9c251, 'CryptoMonsters', 'MNSTRS'), + (0x50e06e0e61f34cc8fc3fe57f31c95a6511f41a75, 'Perp Finance', 'Perp'), + (0x50e82c74a5efeec364835b77759388a607cd5869, 'Universe Of Blacks', 'UOB'), + (0x50eae59e791eb7512915aaf9fdabe1a7f2bf969d, 'Aeron_Treasures', 'DCL-ARN_TRSRS'), + (0x50ebbeb9fe6a4f206f2c44f1e36748400b0b774a, 'Project Galaxy Space Expedition', 'Project Galaxy Space Expedition'), + (0x50f35eb05c92a62b0b60ce0c628a0c9dc36458a0, 'CreepyEye002', 'CPE'), + (0x50f4d59172ec5edc54b7fd05350372d00b154ccf, 'Decentraland OG Avatars', 'DCL-DCNTRLNDOGAVTRS'), + (0x50f70612ccad953966cebb40aa5dfb81abf8b09c, 'ChyZheShow NFT', 'ChyShow'), + (0x5105ef25cac80bb4585566553a1eedcde378ef20, 'ubd', 'ub'), + (0x510bcb8c20c045952677cfed86fbc3f6a1b6cd5e, 'HelmsKids', 'HK'), + (0x51180b3b8479be38d3b56804a6d49f90bc40d364, 'BigMetaBrothers', 'BMB'), + (0x511b96fc13bf75c852e5c9d3696ab894cde8ca9a, 'ledi 1', 'ledi 1'), + (0x51234249a392c22809f55ea3da6d394f5cbfbcef, 'Olafur Frens', 'OF'), + (0x512be48b1e54fb7ca3734cf21281c75a676a73bd, 'Happy Tom', 'HPYTOM'), + (0x512dd59f2d6be7986d320a03071b67bea80606aa, 'Poker Hero Club', 'PHC'), + (0x51307d90ec56ec5c0c4f1eab04f3e8debc88e40c, 'TonikgakureNinja', 'TGN'), + (0x513c04876807b357157856317b09f9beeaa61a83, 'Funny Shark', 'SHARK'), + (0x51439185e74bb31a5b8113b09f144d1900c52bc0, 'GEN-H05', 'GEN-H05'), + (0x514f1a432e33db18d159991c9e7a097dfeb76c77, 'Treasure Quest', 'SWEDC'), + (0x515392a267505b844b958095520dce934a0229db, 'Super Monkey Club', 'SMC'), + (0x51566e70833487c0ada5d30587f3f81efc8e8bf9, 'Cyber9', 'C9'), + (0x515ba493a4f82396bc16af5b807a49ca7c8209b1, 'Chubby Turtles', 'CT'), + (0x5168c0d53ed2477947891bf5c878de7b15359715, 'Tingana', 'WILDEARTH'), + (0x516e480b4c2bf78be0bc07f80c8bf5a886ea5943, 'TFA Moments', 'TFAMOMENTS'), + (0x517edfd0fec56073ac1d67ab7de2a6be2a144a0f, 'The Perfect Halo', 'DCL-THPRFCTHL'), + (0x51897b81cd47995d165e99f91cd8607d045ca235, 'ExperimentalRats', 'ER'), + (0x5197f793b54d5d912650597bd8d95122fc3105db, 'Refinable721', 'REFI721'), + (0x51a3d0349c619a5de0f6d0003bd0751e8ac36943, 'TFA PANDA LOGO COLLECTION', 'TFAPANDALOG'), + (0x51a9a83f8121fa5b1d548b80ceb33382d14b7c12, 'The Stubborn Ape Society', 'NFT'), + (0x51b47f2979d7bc37c99292171e56a07a41a85516, 'Ghost Gang NFT', 'GG'), + (0x51ba525e2cad541db4d6bc4cee3c98eddd0f7171, 'GEN-L24', 'GEN-L24'), + (0x51e55e71b7f8e7fcf7d05534de24f3c24d423d16, 'Eddaverse', 'EDDAVERSE'), + (0x51e9b66855ae2ff2b9f08ba262fd85a5c9119e27, 'ROAR', 'ROAR'), + (0x51f8a8a6da8eb686d7d1ee5225ca3a1d177f95e9, 'Invisible Friends Collection', 'IFCT'), + (0x51fd7267f11030a7263017c167b51641a3152955, 'TGMC SHADES', 'DCL-TGMCSHADES'), + (0x51fe90b262bea4478035e19b67ed7298926420fa, 'HFH Labs Access Keycard', 'HFHLAB'), + (0x5208aa7726813af1c2c1c1ff18b961cc0fda3364, 'Polygon ART', 'POLYART'), + (0x520a32678e4906fb791ae8849ebdfc79e0b64c18, 'Camo Bomber Jacket', 'DCL-CMBMBRJCKT'), + (0x5217182640e5141aabdf35d50baf2f51999b4614, 'humo', 'hn'), + (0x522546ef44060598de2725d4dab86377f39f28e8, 'MCP Land', 'MCPL'), + (0x522e8991ad6d638910863ce973cc3aaf66443844, 'Fruits Collection', 'FC'), + (0x5237515b4e029dcba0f6538eb00002eaa5d26eea, 'Bored Husky Kennel Club', 'BHKC'), + (0x524305c9e16ce00ca02ba27a5b0499e908758095, 'BonBon', 'BONBONP'), + (0x5244142f12b0b988afd8eea53e2210f38d603239, 'DCL Ninja Headband', 'DCL-DCLNNJHDBND'), + (0x524e96215d45c3a6840a1447d793a82e04220128, 'Crypto Family Girls', 'CFG'), + (0x5251ade8e6bf1419a62b42527693dd0df2ab1f25, 'Orange Classicpop', 'SWEDC'), + (0x5265535c70664ee54c8584bf7fe62bbd2558a25c, 'The Greedy Bots', 'GBot'), + (0x5268224a5d1b99826baecd8816f4da90e74fdce5, 'Limited Edition Distressed Jeans', 'DCL-LMTDEDTNDSTRSSDJNS'), + (0x5268df0214da46b9c00f47f9df691a2c5edd8d79, 'BullsxBears Bears', 'BXBS'), + (0x52692ac9af231a6fe7ea0a2b0950b73a8489b557, 'mePRAape', 'MPA'), + (0x526cb5fea6ba7d2bfcf6aba086e97b3ea84ba8d5, 'Sour_Pups', 'SPS'), + (0x526d60592806e63d1088bd6ca74956a63d965254, 'MetaSpecies', 'MTS'), + (0x5275384e142f7f0cbc5ab2abad304c53b17dc201, 'CARS', 'CARS'), + (0x527e7fad4fe94ccb01b2650577773fc73305d672, 'AstroMartians', 'AM'), + (0x528107ed5212eadf260b86b1da10f6a63ad44365, 'AaronLeupp.com 1', 'DCL-ARNLPP.CM1'), + (0x52817784e7f9b8ac7bae706c4c8aec2c6065ae6f, 'Foundnone Artifacts', 'SEARCH'), + (0x5282fc682415fccd89d90f33c78717be3c9d6183, 'Close yet far', 'CYF'), + (0x5283884167054d48e75b673b0e85fd57dfb13801, 'Bananaverse', 'BAN'), + (0x5283caf37f6f06a8dda1f4073561318ae0c0c47a, 'Guys', 'GY'), + (0x5285595e4be166e47ec05b4020a040f4311467dc, 'We Save Lives Ukraine', 'WSLUkraine'), + (0x5294a3a32c710c0bd257a24a9f78eca6cfa3d7f2, 'GEN-T45', 'GEN-T45'), + (0x529594748aa28e7598b3e66a827d7228e9ec0a05, 'Kitty Crypto Gangs', 'KCG'), + (0x529eb75e98ed3287de0b9585fb0cf00b63f66a40, 'cc0DAONFT', 'cc0NFT'), + (0x52a575f779be53dbac9d92279e929898931d2d99, 'NeonzMask', 'NZMK'), + (0x52ac1e7fae44fb0271131185fc55dbd026e455c3, 'Biden Legacy Collection', 'Biden'), + (0x52b3bf0f9d9c8ce38afb489663aa6a1fc1c84e69, 'ddd', 'ddddd'), + (0x52bbda1546789e77e5394457830e631d4bc29661, 'Dapper Turtles', 'DT'), + (0x52bc2feb8e74ab342652043c966360a511d089c5, 'Indonesian People', 'IP'), + (0x52c06e9ede0a2c1b9ec994acdc78fb8ee2539ffd, 'Eddaverse', 'EDDAVERSE'), + (0x52c417c21ee422b1d265bd2d453d40c92a792e12, 'SoftEyesGirls gene', 'SEG'), + (0x52c9fca26f42d02ba13faba341af0022e9452c70, 'MetaWear Community Pants #1', 'DCL-MTWRCMMNTYPNTS#1'), + (0x52d8b7f43869bc1505fd098ed907feb9de854cfb, 'Honolulu, HI Gold Edition', 'SWEDC'), + (0x52db4520cfb0d4e92557fa02455cc44433683844, 'É gol', 'EGLBR'), + (0x52e037160c70be63c1f79dd507e4879c032207d0, 'AlphaAstronauts', 'AA'), + (0x52e2539c3a883406e6ce5cd7a380256df901c4a9, 'Tactical Tigerz', 'TT'), + (0x52f6b3f103ba701548f1b4a36c44de421e8180d5, 'ChipPix', 'CHPX'), + (0x52fccac454de7ff622fbd2c3535e0f004a5f00ba, 'MyNFT', 'MyNFT'), + (0x530ad12e85a5d99786dec7ba04e8283134faa30d, 'Popman', 'Popman'), + (0x531690badbe6da4dc770ac70d88d058c57a477b5, 'Dunhuang Grottoes Murals', 'DGM'), + (0x531da04d558645a6ce98bdeca6551d03bf1239c4, 'ToughTeddezAirdrop', 'TTAD'), + (0x531fe44e1c78ae0d84cde566012aabdffebeb398, 'Federated Reserve Collection', 'DCL-FDRTDRSRVCLLCTN'), + (0x5323fc4bae9e32f211d0e2e9aef961eae2986d07, 'Particlon', 'Particlon'), + (0x532ced832ee5c80e61c73bc4d4617f0b590504c9, 'RED SQUARE GEAR', 'DCL-REDSQUAREGEAR'), + (0x532dbdb63edcd0e3e11a9857f5f37d4a936230dc, 'The Scimmia Family Vault', 'APEMAFIA'), + (0x532e010a89045ff13e31b20f61ac80eae12ac52a, 'High Fly Tribe', 'HIGH'), + (0x532fd934e002b5a31574e47b642992494c25e186, '贾克斯', '贾克斯'), + (0x53364fcceef12733b4c64568a07c8bf2ad260984, 'Serial Entrepreneurs', 'SE'), + (0x533e3e7f3ef9dd30236ec4677f770fa13cc05cf9, 'Uncomplicared_Duckcs0', 'UDCKS'), + (0x5343af57a265ffd9b64762d692528b87c1286053, 'DJ T RAX Collection', 'DCL-DJTRAXCLLCTN'), + (0x5359b8d3229a8a076e522e7f94c450143dc2af29, 'Bola de fogo', 'FGBLA'), + (0x535ded8ded5b6845aa8e7175acb92bf408e2575c, 'Knitoadz', 'ktoadz'), + (0x535ff52a444d38b1bc870aca14bd5a155e2fdf24, 'Virtumon', 'VRM'), + (0x53630cc8603bc2bcd04efd93156cef9c6e0c3f3e, 'BoredClownsClub', 'BCC'), + (0x5365aa2f5f7b555797307568c499f29246ce09f3, 'GEN-L01', 'GEN-L01'), + (0x53668f593280f7f7f8da1206e0ca14dab1915c12, 'Bones Defi Club', 'BonesDefiC'), + (0x53697b152706fac8a60dec345658eedd545a2d38, 'Nuke Eternal Tree', 'NETC'), + (0x536fbc4ee0a9a48b0407046fa31c102568be1efe, 'Soulless Vampires MATIC', 'SOUL'), + (0x537282c5d8b12f37e28cbd7b44b1b39a5e4806bb, '#CryptoBunny', 'DCL-#CRYPTBNNY'), + (0x53742def58d5bb0f3aeb7575b4bbe57f2584f8e7, 'Banana Factory', 'BF'), + (0x5375c4ebb822b9ce6f0a75e1570ef3bfc8c70a7d, 'ConeSkullsPolygon', 'CSP'), + (0x53773e613fddd0e11c9ddff873accef104c8963a, 'CloudHeadCarl', 'CHC'), + (0x5377ddd3ea34b72eb74dd22018de81ae11cfc6cc, 'WallStreetBets #2', 'DCL-WLLSTRTBTS#2'), + (0x537b193c2b04949becd46061acacd6d160940d7c, 'CryptoPsyKitties', 'CryptoPsyKitties'), + (0x53830746df8e79cc0cb31416d4b66c7e5ab43391, 'Samurai Monkeys', 'SM'), + (0x53883f4e8ddbc80f797e324d261eb85d0cdddec5, 'Naked Nukies V1', 'NAKEDNUKIES'), + (0x5388b00677a0c0624dd0dc8bcbbf5b388599c9c6, 'Nafstars Cards NFT', 'NCARDS'), + (0x538f08966c691e93a702dae7bd43adeb97bb09e9, 'NonsenseFungus', 'FUNGUS'), + (0x539c866b7b1ea6c92afead4b2bd974951098fe3a, 'Weird Catgirls', 'C'), + (0x53a7c4bbb0f351f3b1f3f09a3e8288e1528611b1, 'poti by Tobik', 'DCL-PTBYTBK'), + (0x53aa84a8bff5ebe3bff88469439c7f41a85c8c3a, 'Magic Marker Cat Club', 'MMCC'), + (0x53b0643efd3103425d5d550f6b6126026cb2bec9, 'Nuts Farmers', 'NF'), + (0x53b28509ae3b591f8c3c296630a1b129d5fb2cba, 'NFTs', 'NFT'), + (0x53b8a4aacabdec757bbc9849140a28ba779d93ce, 'The Hamsters Universe', 'HUM'), + (0x53c05f591a09b74d887b13c99fa060bc1b950496, 'TOKYUPLAZASHIBUYA', 'TPS'), + (0x53c1bde32d0fd33ca87b6c30fc32e66fa8888598, 'Hiroto Kai Ceremonial Kimono', 'DCL-HRTKCRMNLKMN'), + (0x53c3f215bc707a4ace73a8cd2e3af412eb838e23, 'Slow Mo Sloth Club OfficiaI', 'SLO'), + (0x53c74ba3f3b4a56f146974897e85e9542c4ec7e5, 'Fire Planet Art', 'FPA'), + (0x53c97273da872ccaca38da92276b7b53e0838b83, 'Djen Spirit Animals', 'DCL-DJNSPRTANMLS'), + (0x53d2bf721c85978b2cc0706e601d7fc39d3a3818, 'HELLA STONED', 'DCL-HELLASTONED'), + (0x53d7d3d2d29d4b7c67e0434424a9998574c6619b, 'Minty Unique NFT', 'MNTNFT'), + (0x53e158798fc1b13cf5acc0fffd9faac5deb8a1a7, '30 Years: Cory Every Day', '30CED'), + (0x53e7556f40ba4b2533c2e31d7332db294958770e, 'PurplePangolin', 'P'), + (0x53e894d66f773607094ed34c967275e4d1f29ab5, 'Miami, FL Gold Edition', 'SWEDC'), + (0x53eabde2f6e6af9552be8aeced81b8e29ddd9e45, 'CryptoNeoDogs', 'Neo'), + (0x53eb6058abc28d044ef2e056f33fe60ab613fcd3, 'CannaBuddies', 'CB'), + (0x53f31973140a119a2003cca288135f5d3aabc6fc, 'Mutant Doge Academy', 'MutantDoge'), + (0x53f4265fa1325adb3bbe2ee1407b156bc977f9e4, 'PopRoXxX Legacy Collection - Hat', 'DCL-PPRXXXLGCYCLLCTN-HT'), + (0x53fff086e8fff4b225012e221cc1f16fe21b7928, 'The Crypto Teddies Universe', 'TCTU'), + (0x5402cc6faa5ad7b3d251a347dd668e36cb1fa2c0, 'ETHDenver2022Feb18', 'ETH3'), + (0x5404355bc4b3cc15e44181a419c1a697adcaa84b, 'Aspired Hands', 'Aspired Hands'), + (0x540447c43c709dc192a1e9fe3d41bdf4386ee2b6, 'NoWARinUA', 'NWUA'), + (0x541e0d305c39107ee3ebc5911134da40ba5ac53c, 'Crypto Mob Ninja', 'CMN'), + (0x54208c762ac8d3014a5fb074d8c356522be1960d, 'Persephone', 'NFT'), + (0x542373fb6abf9076a0213e8a9a7d770d06f3c5e7, 'Zombie Dukks', 'ZDK'), + (0x5424bd9434abbc30c27c75ea52eabe2f551aebda, '[DEVELOPMENT] Le Sa2022-03-14T17:50:18.375Z 539413', '[DEVELOPMENT] Le Sa2022-03-14T17:5'), + (0x5427cdff192d129922522a3554e221ec5f3f1464, 'OrdinaryPandas', 'OPANDA'), + (0x5432926af7a22faca9dd06d6486871a6afaca6b9, 'Pet collection', 'DCL-PTCLLCTN'), + (0x5437dae7ac1a00e4f2102349fdbc2c3991261301, 'CryptoNinjasOfUzb', 'CNU'), + (0x543c61314b4f85049125d163790a23212106f553, 'Kangaroo Punch Club', 'Kangaroo'), + (0x543e945d4850610919031f5cd4ffcebe3398aa3f, 'BabyFatDinoCollection', 'BFD'), + (0x5445c4050b9c50f96b7588d4dca84aa24419a8f2, 'Deluxe Bored Ape', 'DBA'), + (0x544e8880b65006960f7f80d7b69976fa36972db7, 'Vampbot', 'SWEDC'), + (0x54626d0499cd1998167d3a33c07b8ec9bd847106, 'BNToken', 'BN'), + (0x546688b7be1863c75ff8dbffe485c728cfe68a24, 'CryptoPunks_s2', 'CryptoPunks'), + (0x546b15893c1a7f67150bc39886b02ad2f36db83a, 'Car 22 Pit Stop', 'SWEDC'), + (0x546cb3a1293c124ab1307aeb6a77341c3e4334a4, 'Prophetic Penguins', 'ProPengs'), + (0x547ae02caecc55f1dbe554d2245cccc8593c157f, 'hulu2', 'hulu2'), + (0x54925c87a90850ce99348b14b8ec10ec3c162475, 'Zāna - This Is Autumn (my acoustic demos)', 'SYNPH'), + (0x5492ef6aeeba1a3896357359ef039a8b11621b45, 'Chumbi', 'CHUMBI'), + (0x5493092ac176a07f6b2f31995e40bd1245fcbc72, 'Aztec Crypto Mojos', 'ACM'), + (0x5497ccdd44ab96ca1abfd217a28059b371a44b35, '[DEVELOPMENT] An Rü 490545', '[DEVELOPMENT] An Rü - Ed 550229'), + (0x54a779710e53d4e92d30d7b25b6a8df9816018b8, 'MetaWear - Upperbody', 'DCL-MTWR-UPPRBDY'), + (0x54ae76ee31c11f35b17ce5cb261e1cf0e0c50465, 'Bumbles UTD', 'BU'), + (0x54b6b5210b49c746d661f6f0e4afe81414975f7a, 'TEPPAKT', 'TEPPAKT'), + (0x54b7cb32844c7e10af9487bd5c3ff0ba1cf11e34, 'Day Of The Dead Weed Aura', 'DCL-DYOFTHDDWDAR'), + (0x54cc8f7e296728d78b28add53803439082574f8a, 'Mission Monkey', 'MM'), + (0x54ced3a4f954f7c808225e5487ab9f25463fcfbd, 'Hosana', 'WILDEARTH'), + (0x54cf9d446c364d37e9550db083eee8c9be2ad69b, 'MarketPlace', 'MPE'), + (0x54d171bfb4dd18a9e8bb1f06ff70f0b3c5d76953, 'RetroBox', 'RBX'), + (0x54d3299e65f8c8eed34ccfd4f0487ce9f366560e, 'Blockchain Bandits Official Polygon', 'BCB'), + (0x54db75e1f66475211362878e7ec80bb4d10d96de, 'Pill Heads NFT', 'PH'), + (0x54dc23171fd9ab8afce1f9ff29b6c072b870773a, 'MCC', 'MCC'), + (0x54ddac06a865a765ce37c69c1b112e434dd83741, 'Lazy Stuff', 'DCL-LZYSTFF'), + (0x54deaf7958648067806e6cc8630c325293dfe385, 'NFTs', 'NFT'), + (0x54e3f02bb610728258121dccd2a9d0031d9f4fbc, 'The Fish Farm Series 1', 'TFF'), + (0x54e5b586cfe2e2f926976e65365ed80b1e51ace6, 'Milton Supreme', 'KEY'), + (0x54f33181b1b2350eba287f7130a0ec4b0401274b, 'DiamoNFT Wealth Club', 'DNFT'), + (0x54f6f5e1ab7f5871075d28d196bb56fab6ab43b5, 'Metaverse 7', 'Metaverse'), + (0x55099ce72ef82f6f1ef7da1d4cbf547792895591, 'Average Joe Guy', 'AJG'), + (0x550b02561f0cd1acbc742124dd2f6041b06e99fb, 'Covert Agents K', 'CAK'), + (0x550b7be6d2cc765c19e35af242961e388e0e85f3, 'Boson Protocol x Chubbies', 'DCL-BSNPRTCLXCHBBS'), + (0x550cdd7bcbfa0d1880455b0c9457fcf28f926ffe, 'FantasticLand 2022-dR.X', 'DCL-FNTSTCLND2022-DR.X'), + (0x5514744310e37b1098018a9ca4bd8764fab0c03d, 'CDAA Certification Token', 'KEY'), + (0x551d7072426a3dec7ab821793278ce84a2b3d069, 'Visionaries Inc. Series #2', 'DCL-VSNRSINC.SRS#2'), + (0x5523f36c9d82be697be67cf41148a4a54fb2c50f, 'Got Candy? Witch', 'SWEDC'), + (0x5525444ee45722108f651f4aa2d8cc4096221894, 'Women World Space : Part 2', 'WWSTWO'), + (0x552bfb1a18bf5a7b70bb1b786af33cebd5dd537f, 'GuoChanDanDan', 'GCDD'), + (0x5532c3a043e915b7c7b4574563beb7841c2a75bb, 'HAPE PRIME POLYGON', 'HPP'), + (0x5533760a666c18ab7a704065a04dba1a1a51a9ab, 'Color Blocks', 'CB'), + (0x5537b188b81facd8db3f6da87f5474df94b5e363, 'Fireworksdesigner3', 'FD12'), + (0x5544bd4e96225dafea4c7efebbe30762819fe104, 'ChakraArtpunks', 'ChakraArtpunks'), + (0x5544dd14c3c7ebd75525f4ffd9430ca370f3fc93, 'Cyber Ninja Collection', 'DCL-CYBRNNJCLLCTN'), + (0x554ee14d631b23e0c48520dc2868f2f0147031b3, 'Cool Cyborgs Club', 'CCC'), + (0x5551a22974f5537d045ad2e64ebc767d8a2b3aee, 'BBHoliday', 'BBHoliday'), + (0x55524a46486c930a8dcba3e7d144ce7854b3c05e, 'Generation #21 part 1', 'G#P1'), + (0x55527930152aff21d02f26e5203bbc9da074316a, 'Funky Bear Clique', 'BEARZ'), + (0x55539da84f31f6c68a69d5b95f9446d2dff58fd8, 'MetaPrintz', 'DCL-MTPRNTZ'), + (0x5555fa2cfb93da8913f7e2344d6630fc6144fde8, 'Everai Official NFT Collection', 'EONC'), + (0x555d46e0ca084b17b423134860035fe4b57c3da4, 'Wolf Game Passport', 'WGP'), + (0x555e5562edff975fc5a44eb6958e287844d923ad, 'DUMMY', 'DUMMY'), + (0x5560748edce6eb07d877c7e8dd12b5804149cc93, 'CrazyPlanktonArchean', 'CPA'), + (0x5568d03eccbda77c665bddabd980daaba5395d07, 'Drawomonkey', 'monkey'), + (0x556a64cafb512a35f96dfd0b80cd62d833f43ad2, 'Dice Roller NFT', 'RNFT'), + (0x556a951424cd130f48d456c0197b825c59d6c246, 'MCC', 'MCC'), + (0x556de0fc4f7761da6b8de196eaf95bc5616dc969, 'cryptobatto', 'cb'), + (0x5572cca754b34707b1ea6dabf2683b4f5abcc1dd, 'Boneskin Sapphire', 'BOSA'), + (0x5578bfc3149d2772f103f39cf2eb2a670f26768d, 'Mr B For Ukraine', 'MBFU'), + (0x5578c8c705a1edf9182495b25e1a873f81a83628, 'On the Dock', 'SWEDC'), + (0x55796c9767b2418776f876b5d9623601e6deb2cf, 'BoobsWallet', 'C'), + (0x557ad065a0fa43b390cd1cc9397568c6f3826c22, 'Dark CLACHY', 'DCLACHY'), + (0x557fb0580909b5fbb967bb480f1df3a049e7288f, 'Doodledores: Doodle Lads', 'DLD'), + (0x55821f8e34d27b4c50a5ea544c9dda7346060eb2, 'Bored Vibes Meta 1s', 'DCL-BRDVBSMT1S'), + (0x5589678d69b878067296719820ffc5a3e77b4117, 'BouredBillionaireBobas', 'BBB'), + (0x558a988eda8e1bb7a0be01c5a312cecc85d28ff1, 'My Collection 7w4tNKfAgMUxvz5ZUVwD', 'my-collection-7w4tnkfagmuxvz5zuvwd'), + (0x558dbf2bc132b79f4c8e73eddbefeabc86593da2, 'CryptoPunkStunners', 'CPS'), + (0x5594abf641b99fb91274e9cc8c5f08d2f57af6fe, 'Rabid Doghouse - Rabid Retrievers', 'RDRR'), + (0x559bc179fb0d3a06a8257ceaac44aaf1bf518807, 'MAD RABBITS RIOT CLUB - SERIES 1', 'DCL-MADRABBITSRIOTCLUB-SERIES1'), + (0x559f6a57ba274476d576be7b845d0ce7dfafe5e8, 'Collection Of Rare NFTs,', 'GOLD'), + (0x55a0da39d5d9322b3f34ec538cd53c51edd5a47b, 'The Blind Club', 'TheBlind'), + (0x55a2dd4dadbf0771226fe84c1adf79001b564db7, 'PEA COLLECTION I', 'DCL-PEACOLLECTIONI'), + (0x55a75d342cf835fcbe281e26cfd11b553bbb08ba, 'Loony Therapy Dogs', 'LOONY'), + (0x55ae6d2f184c348efa485d3eeb7ea3927f11cf16, 'Crypto-Virus', 'CV'), + (0x55aff5df5185340505f51e321bd6cd3af32ef7d6, 'Killer Goose Club', 'KGC'), + (0x55b26b17891468315adda0d508ff0c6e999731e5, 'VDay2022', 'VDAY2022'), + (0x55b488aae48cd5904d152a87c5b36c904f7826c7, 'FriendlyGhost', 'C'), + (0x55b69f8cfc42888788aade7df50691406ca554b3, 'Metaverse Hyper Paintings', 'MVHP'), + (0x55bfb8de8820762ad9911467eda615a89f561860, 'StackOS NFT 9', 'NodeNFT'), + (0x55c3d6bf05897a946eb6a094ff6f208e1d8e3803, 'ChainArtefactSowrd', 'CAS'), + (0x55c7747ca409a26f5ca5eb04ad4d9ec905594553, 'Wolves of Wall Street', 'WoWS'), + (0x55d3baf0693eecfe6e177ebec369d6f3db3796c4, 'ThirtyThreeTwentyFive', 'TTV'), + (0x55e4d39e78581746b4031ba6dd38d45c6f003941, 'CrazyPenguin', 'CP'), + (0x55e525d6c46307bdc7f2162446cf94601111d18d, 'Gags_v2', 'Gv2'), + (0x55e59c43f0b2eea14d5126fc8d531476fbd69529, 'MetaDoge', 'DCL-MTDG'), + (0x55e778e76fd987b03d34bba31df43c0b5eb5a8e5, 'Oklahoma City, OK Gold Edition', 'SWEDC'), + (0x55ee5a4381cbc40b8bf5cedc6ceeb9b02d8c566d, 'GrimbutterflyNFT', 'GRIM'), + (0x55f0f760994860cd01665352d0aadc1d581d0642, 'Pêdra Costa', 'PC'), + (0x55fa77bf8686df9d2c43372f521ebbf6f9c6e65c, 'Lone Square', 'LSPT'), + (0x5602097e3938bf117f5a23f42ec4882e1c21cdd6, 'Pulsr Community Badge Special-Edition 001', 'PULSR'), + (0x5604864c1a1c42d1bde59b723b99201dc9a6d9cc, 'CryptoPin', 'CPT'), + (0x560a4c432fa538d98d43cf589a78a0bb1cf7dd65, 'Caravaggio''s Bacchus', 'CBNVK'), + (0x560b0f40ded31b0ba3d48f0775dbf1711e961e44, 'KillerBeez', 'KBZ'), + (0x560da7d8e488670981178863383325295a091981, 'NaughtyTigersPunk', 'NTP'), + (0x561177955a43554ed4ef6848b662faafd64f2480, 'Punk mutant Ape', 'PMA'), + (0x5615a19780dc0d0d62fd9cd2938239e8f1bcf758, 'Coastin’ 420 by Jim “TAZ” Evans', 'SWEDC'), + (0x561cd58ea3064eba61a51ebefac6dc56e0ff3e2f, 'Mutant Ape Yacht Club metaverse', 'Mutant-Ape'), + (0x561d60051108d4d4a82beb5d2be7a07b08de1cfb, 'OddAliens', 'OA'), + (0x561ded8c9fc278f0a14faaae29945ddd2194a7fa, 'Tiny Ponds', 'TP'), + (0x56221a9be6e90cc09f726633327c6c9f62550fd7, 'Shinsekai Inc', 'NFT'), + (0x562861fa392cafdb302e9536157265cea1db1346, 'Omen', 'OMN'), + (0x562917885a0ff1c87333c7ed2bb4925d95f34b0d, 'GrowForFuture-NFT', 'GFF-NFT'), + (0x562ea5cfd4349b9e0f2f52e28529c302f7e442ef, 'Kool Aspins', 'ASPN'), + (0x563e2081b3cd716ed76fc0993b7e49939cb342a5, 'Black Lipstick', 'DCL-BLCKLPSTCK'), + (0x56402ba6ff3c53b91d4dfb2747b6a19bfbfd37b0, 'Non Fungible Characters The NFCs', 'NFC'), + (0x564e6588dafa2f79c5805e07860cb869aedb33d9, 'AwakenedMushrooms', 'AwakeNFT'), + (0x5652caa40a7395e7903c629fdd745a1b9742e57e, 'PolyPeepsBatch001', 'PPEEPS001'), + (0x5653d0ac8951d0b8047b8e01afea3f71697936bd, 'Angels & Demons I', 'DCL-ANGLS&DMNSI'), + (0x5660c242d78991dad5dd919e129c8979bd74eb0f, 'ekdfjkelfjlwe', 'SH'), + (0x56639072be3598a61087f405b1627a112d48c82f, 'Moo Originals', 'MOO'), + (0x566be3ce7982971d8665440a623e41f2321b406b, 'MrPickle', 'MRP'), + (0x567ca82789feb37253aef81bdfbfb8caabf03c9c, 'OkCat', 'OK'), + (0x5694f636e03b9ba068d56a169ce153ae188a137c, 'ceste la vie', 'CLV'), + (0x56995111c4659cb30a2f0a0a61cb206acc7d497c, 'Weapon''s', 'DCL-WPN''S'), + (0x569b70fc565afba702d9e77e75fd3e3c78f57eed, 'CoinCollect NFTs', 'cNFT'), + (0x56a1f8371da2178c772a6daeedab4c3f31cf0610, 'MetaTravelers Streetwear Vol. 1', 'DCL-MTTRVLRSSTRTWRVL.1'), + (0x56a736c05dc58cacb8e7f1319aa2b8166bc5844e, 'GEN-H32', 'GEN-H32'), + (0x56bcf12873f5cf9b08aa848b904b4adb1bd4cd12, 'Monkey NFT Crypto', 'MNC'), + (0x56bcf9f957a26d614e040ebf7321aa7aabac692e, '0XHOVERBOARD', 'HOVERBOARD'), + (0x56c385bb499075b5ea5134a1819bdf23f7aa2d8a, 'Cornell’s Real Signature', 'SWEDC'), + (0x56d6fec4f25bcf60381e5e554d4fbd494f14762f, 'Pixel Rillas', 'RLLA'), + (0x56e20f3c8fa6acbeaccfdd3391256a0016a108c5, 'Kaiju Frenz Official KF', 'KF'), + (0x56e3d06c465997916c4741db71063923961e2dd9, 'Property Heist Ape Club', 'PH'), + (0x56e7944b4fe5b72148713853b5ed4a51d8da593b, 'The Funky Chicken', 'TFC'), + (0x56ea9685930b166ea0cc7f5e29d616eb52076bf7, 'Wealth NFT', 'BOSS'), + (0x56f28638fdc476e216dfda87cdffb05656bbd748, 'Mutant Skinnys NFT', 'MSN'), + (0x56f88d3c0c10827cc90356a5c2e0506a736ec8fc, 'Frawwgies', 'FRAWG'), + (0x56fed8b2f18fc2354bf0992294fbdf5966a78cd7, 'Fundacion Pequenos Pasos NFT', 'PEQP'), + (0x56ff7c5dd59ecce5895bb9a361a7f6a30e8049ce, 'Trippy Lions Club', 'TLC'), + (0x570cb061c1c445cf842d6c693d40e6c67e9b8d84, 'BeatLoot', 'BEAT'), + (0x5719eb657ffca0b3989ee14feec078e0e15e760b, 'GET PalletFactory Contract', 'invPallet'), + (0x5722bb16d4f759249cafccf24a580ebb297e9556, 'CryptoKooks', 'kooks'), + (0x572b0e3b719ced8f4198f6cfdc9b798dc693d7a6, 'My Collection M2cCaSCTUCL1lx3LYa0b', 'my-collection-m2ccasctucl1lx3lya0b'), + (0x57336f3ee65be8fcaa4f28f53b10c1294e98cf74, 'Fantasy Three Kingdoms', 'Fantasy'), + (0x5735ca61e0f12c2e79d69291ef90afe4f4ec5502, 'MERCE NFTS', 'MCN'), + (0x5743d070255a6a4a335705ec84ec6c58d71cb3ae, 'MutantApeKidClub', 'MACK'), + (0x5745430a9ed7adae161f1d3eaa6087c5e3f9c0c8, 'Brainbox', 'B.B'), + (0x5746f53e1be6b0cc4455a24a2ca6b98b34aff466, 'New York City, NY Pop Art Edition', 'SWEDC'), + (0x5747db92216f1111b8a27c9e6d058b3e0cbe32cf, 'Generation #15', 'G#'), + (0x5747e9416788f8d41584e61119210112d86dd940, 'Fingery Club', 'Fingery Club'), + (0x574909d10917d4a3ff03b9fac6a6e67461487069, 'BittyBots', 'BITTY'), + (0x574e32cba4bd775fdc0b79a16025217671e939f8, 'The LoveKittens', 'LVKT'), + (0x575945bbc2fdc9d25cecd0a8f283b7d0131bed5f, 'Albany, NY Silver Edition', 'SWEDC'), + (0x5766e731a897cd9e0fa9abb9ba97d9cc765d531e, 'Melancholic Girls', 'MG'), + (0x576763fdf5aabee12c0587612d714813b6e3a1ec, 'SpoonCave', 'SPOONCAVE'), + (0x576b1ab4876ae1455739924af075c1320911832e, 'Kefir', 'kef'), + (0x576de55ed8ce7b90213aaf35cd011fd758dc853d, 'Bear Dude Club', 'BDC'), + (0x577aeaff7a3713ea324fee9962bf41de6dab033a, 'Lucky Owl', 'C'), + (0x578375c3af7d61586c2c3a7ba87d2eed640efa40, 'camAAVE MAI Vault', 'camAMVT'), + (0x578945b61c97f6c4e3371dc215ec866f170ff9cc, 'Billionaire Zombies Club MetaCrystals', 'BZC-MC'), + (0x5792a8c5da977f82a7146b7a6cf1f7d6679ce4a8, 'BabyPuppies', 'BAPU'), + (0x57a602b2dae5048864db855487f52c55ac84719a, 'Crush On You', 'DCL-CRSHONY'), + (0x57a8d59eff06381a9b0d709271871187ee1b418c, 'WiV', 'WiV'), + (0x57a9a371accb5f6f6b38ef9b018e4a0ba3684e1a, 'shiba55', 'SH'), + (0x57b41f3e7e29cac73d4cdbdc36f3b5ac17f25a7e, 'Dapp-Learning', 'DLDAO'), + (0x57c2af61c3cafc46ce43886efb623ea12fe6fd8b, 'Sleepy House Keys', 'SHKEY'), + (0x57c97bbc163a2ddddbbae3e6828acd4ad6520802, 'Dark rich', 'Dark rich'), + (0x57cbf36788113237d64e46f25a88855c3dff1691, 'Stake DAO am3CRV Strategy MAI Vault', 'SDAM3CRVMVT'), + (0x57d0a0199cee2ae7eb0f5cf4bcb892ad58085560, 'converted spaceships', 'CSHIP'), + (0x57d1814be35f2f041562b05993ead98507449576, 'SPD - Helmet/mask', 'DCL-SPD-HLMT/MSK'), + (0x57d39e1313c9cb3254f6130eea7e9884448efaa5, 'Squid Game NFT', 'SGT'), + (0x57d926d465248e2adc823447157f7e97734aff66, '0xPandemic Lab', '0xLAB'), + (0x57f6b307f601a2814ed863e031614d09cc9c27e1, 'Kulture Baby', 'KB'), + (0x57fb367513a999628cffca3e3cc3c494a599647a, 'My Collection EOYtxgQYr148K1BVyhTm', 'my-collection-eoytxgqyr148k1bvyhtm'), + (0x580b0da12fb3b37422b1dba1bdf63759fe885363, 'GummyBallSquad', 'GBS'), + (0x580c23dc85172ab3282df9f8974d09d2b0b41679, 'The Crypto Womens', 'TCW'), + (0x580c9b751ff264e417806d32d14f186ef5e38ffc, 'Molten Men', 'MM'), + (0x581425c638882bd8169dae6f2995878927c9fe70, 'Courtyard NFT', 'COURTYARD'), + (0x582038338b0352402ffa8d030b5b71aa08fa5d10, 'Meta History UA', 'MHUA'), + (0x5821fee0a3cb4cd9e960c00e6a35c6c4f3bd64a2, 'SUPERHEADz', 'SHNFT'), + (0x582543f2a5cfc807b29a8a980f5885baa2de28e5, 'MetaTriads', 'MT'), + (0x5826b29e8a2675928cc32ebb3dbd656e9b5c53c5, 'Cryptos Alien', 'ALIENS'), + (0x58380d5639bd5a408c04412e4d697e78d56fe263, 'Artefacts by Ethlas', 'Artefacts'), + (0x583ec96c0420e167a902035eb64ef008549bcffc, 'Gravis Finance GRVS Warrant', 'GRVSWARRANT'), + (0x583f495de36dd3d1b0dedfe9580eb7368625ce3b, 'Lazy Alien Polygon', 'LAPOLY'), + (0x584666e270341cee2c2d41c23821a568a9068ac8, 'MRST Mining PET', 'M2'), + (0x58475e11148c51736abc53d51d10a438224acf1a, 'Rain Raiders', 'RAIDERS'), + (0x584f40fa4b166d6da8ef7dc0a08b7b028e870d33, 'DinoHats | Wayable''s Meta-Hats', 'DCL-DNHTS|WYBL''SMT-HTS'), + (0x58530e43b89234fe08fd20ed06ef536233b6dd69, 'NFTokin', 'WEED'), + (0x5853fb56beab51da5611e4f867c2f157d624743d, 'Isekai Truck Hero1 Juvenile', 'ITH_JUVENILE'), + (0x5855105c4172d281d96c857e8ca7f40057f5be40, 'CrpytoClocks', 'CCLK'), + (0x585a5b69513f09527737bc20acdbba55bb34d412, 'Dour Darcel Punks', 'DP'), + (0x585aa5801411bf22f9ca1544dfa3de99f121112a, '[DEVELOPMENT] Em Ca2022-03-14T16:21:29.523Z 969311', '[DEVELOPMENT] Em Ca2022-03-14T16:2'), + (0x585be7d05b62bb4df74c91582df53c8f955236b1, 'VRmetaUmiverse', 'VRMU'), + (0x586a0ef0953043a9b045221152b7de50655f6861, 'Fireplace', 'SWEDC'), + (0x586fadf46630c767e09e9b085ababd6861ec1f9a, 'CJO:Arts', 'CJOA'), + (0x5877cfd7ec64ee8414a5794b2927221d3cba738d, 'Pixel Sharks', 'PIXSH'), + (0x587b20c515c7d29ceea14916e74373e40eaed127, 'EyesKonjo', 'IZKON'), + (0x587ba40dbf67efd4468b3eafa56b19725e0c9da1, 'Monarch Aura', 'DCL-MNRCHAR'), + (0x587c236bc85fe2e0eb98e674daa7502ac845320e, 'metaani_airdrop003', 'metaani_airdrop003'), + (0x5883b65f9e1e61c57c13fedae1531ec14b741dde, 'Galaktika', 'DCL-GLKTK'), + (0x5885c86b8be7a348251cb5ffbf9010d1c9c20dcd, 'AndeanMysticWarrior', 'AMW'), + (0x5886eb02fc76fba849d463a779096f17b970fa73, 'Angry Bulls Club', 'ABC'), + (0x588aa1d9de303d64b0950be9fc1b7f43b56db86f, 'MicroMachineWarBots', 'MMWarBot'), + (0x588adab62e81a9379322a0b928f1497d5ccef212, 'Bored Punks of Society', 'BPoS'), + (0x588c06d6b15cb6d6f3428fa589a8fff1b6ba226b, 'Angle Protocol - Knowledge NFT', 'ANGLEKNOWLEDGE'), + (0x588d7d53ce0b887de117a7d71efeddb5a6359150, 'Japanese Mask', 'DCL-JPNSMSK'), + (0x588dab7702ae280e7c8967de8999eb635e4b5c2e, 'Atari Hotels', 'DCL-ATRHTLS'), + (0x589587eaea52fd46dda8a295389162418f0876f0, 'lapuetroricko12ieee', 'Astrominers'), + (0x58983d944d03b02fc0eecfb3d43dac0474022536, 'Kool Bear Club', 'KBC'), + (0x58997a6cd9b5798a6e4cab7e0665c952c7b0a398, 'CRYPTO METEORITE', 'METEOR'), + (0x589a6610f3efdfc999cdf616b6d6cb9be00a12d7, 'Gorilla Club', 'Gorilla'), + (0x589eeb97af8c305d5a1a59971e714ae725c660d2, 'Pixel Red Pandas', 'PRP'), + (0x58a15701ed1ad95bba625a05f41e50dce62aa14e, 'MicroBuddies', 'MBDY'), + (0x58a66966bc0c90625f38ba4acf7b56638d2e3cda, 'Loot Accessories', 'Invitation'), + (0x58aba370d28fedbde79827df83d9fd37c5da92b9, 'Dinoswap x DG Hat', 'DCL-DNSWPXDGHT'), + (0x58aca46284e830949ff6aaa24f59bf5dd9762eec, 'Taco', 'tco'), + (0x58b452745551b4fb2e4c4453d918bd709df0cbfd, 'The MetaFriends by DEVz', 'MFbyDEVz'), + (0x58b82ee5428071727bf49176f283e0d07cd24233, 'Greancy Character', 'GREANCY'), + (0x58c69706c9b6463efaf2d73f195f9e0207f09cb6, 'Nyoki Club Official', 'Club'), + (0x58cb06ee7786439f9ecec5150976c29450370494, 'Altcoin Radio New Years Eve 2022', 'DCL-ALTCNRDNWYRSEV2022'), + (0x58d543f34a3c4df2acfcdfca473c9af5da14b119, 'Tesla Giveaway', 'TSG'), + (0x58dc76b97be302759871c1c05895565833bf6f01, 'CrocodileSK88k', 'CSK88K'), + (0x58e3828d59e702886320886ff6646f32cc8c782b, 'DuckFi', 'DF'), + (0x58f99a06df3e50bb233ba637a73c421f08a0de03, 'BEEWiN_NFTs x Sup365_IcyLutein', 'Sup365'), + (0x5908e4a66a76ee7453eabebaac551ddc1b6fbc15, 'LittleBadAss', 'LBA'), + (0x59190714cae4382beeb68701946b9bc042d33176, 'Roundox', 'RX100'), + (0x591de9976dc4f3ef2ce376db977d50da268c4df8, 'Quest in the city of Ruins', 'Quest in the city of Ruins'), + (0x591f0b8431b968226b46628dfb6771762a9ebbd9, 'OGLilDevils', 'OGLD'), + (0x592ee91211e08e77515e8abe4db497fb3d6438d0, 'InterestingGuys', 'ITG'), + (0x59334880ae8920bf85f9e29bc1fc6baf23137cb3, 'Hot Tub Music Volume 2', 'HOTTUB'), + (0x59366521e6cc12d1512abe6233daafd2311953bf, 'SuperPunks Yacht Club', 'SPYC'), + (0x59481594552ee6d2e982cf109f097d47fb0d51a7, 'App Icon EveryDay', 'AIFEDU'), + (0x594d154222b8d33213e61c11aa1088cdd9e7f319, 'VC3Membership', 'VC3'), + (0x5954b98895b641d75687fdd5421f834e772311fc, 'PixelBandits', 'PB'), + (0x595c9b55cd94b33a64994d6fc0292b2d987e6772, 'bobolah', 'bobolah'), + (0x596fe4bf78b60b4764671b1ac51c0271c5416500, 'Baby Tiger', 'BBT'), + (0x597712b78ed38a00dc189a47ca6aa92211b33c63, 'First-MATIC', 'FST-MTC'), + (0x5979e22299bd5ff85e809361dfb900b024c9bb55, 'JinGil', 'JG'), + (0x59844a3902810da424bb7eb07cb9cb98bb791ce1, 'Bored Matic Fox Club', 'BMFC'), + (0x5991247180849ff7263fa32c91ed05fcebb3299a, 'InstagramPost', 'IGP'), + (0x599430b65befe01f48d2705e25d2bcb9fe0d6680, 'Blazed Kennel Club', 'BKCNFT'), + (0x5995b531ebba6064bc92ed4e5334eb0baae6c670, 'aaaa3', 'acf'), + (0x599735f8db84b1a548c4e663a8c4422fbbcf88a8, 'AngryBois', 'AB'), + (0x5997bc9d6b2228dcaf25276344a10de670bd2a9f, 'Horseshoes', 'HOSH'), + (0x5998acb94fd4f341a712ad7977a3f5c83fe480f0, 'Water Egg', 'Water Egg'), + (0x5998c9c07ba4ec8a736e83b224c4f875ee0a14f6, 'st', 'we'), + (0x59ade5ef707593678ff0318e7f72e5640e010b82, 'Invisible Friends Matic Collection', 'IFMC'), + (0x59b57336586a92e095742de6800769458b33292c, 'Lumpien', 'LP_C'), + (0x59b5b9f114161cd14f3ce20ae14e31caaf6acff6, 'The Rainbow Gang', 'PRIDE'), + (0x59b7f83650673701003a35d5256aa0a86d54deea, 'OBATALA the Creator', 'OBATALA'), + (0x59bcf3f72f35cbe7badb02f27e6067fa3f0483b7, 'Star Trip: Bob', 'STB'), + (0x59bf5851865150400aeb2e3a7811b150b5e6a5ff, 'Collection', 'c'), + (0x59cadb140bffdcbe2d29fc7624e138fd3f112a4a, 'My Collection YD5DTJJD1GgPd2msQ4GC', 'my-collection-yd5dtjjd1ggpd2msq4gc'), + (0x59cb8b4e01b49bf569b42e7ce02c6cad78fe7e19, 'CrazyThumbzz', 'CTbzz'), + (0x59d1c8c6aa16565d17280d09019789e3d7cfdb43, 'Moara Brasil Xavier da Silva - Povo Surui', 'Povo Surui'), + (0x59d3a36754d961eca320f1b7281fe9b046b2975f, 'Golfcraft - Oh my Deluxe!', 'DCL-GLFCRFT-OHMYDLX!'), + (0x59eb60bd8647c4b59d7649f437cf7df6486a1c24, 'MOCKLand', 'MOCK'), + (0x59ed23ab0ab7c44ee86681b6c64a12e4f25f3a38, 'fMetacat', 'Metacats'), + (0x59f0c67345a62d747ca70320517f64dfafdd88f0, 'Bunny Hole', 'BUN'), + (0x59f3bbbaa651176e1f189174e4b926ad6aebd5da, 'The Cyclopes Teen Crew', 'TCTC'), + (0x59f76e0d2ee1c6f5bf0a7dfb18f7f4a05f9ed0f5, 'PlaNFT_Character', 'PCT'), + (0x59fee1b5267c95eca8ea6ddee711c8a38c0b17c5, 'Meta Teds', 'MetaTeds'), + (0x59ff1ff948bd6a8959f72bfbd3d6a9b1c2c20f43, 'Brilliant Panchas Neon Sole ETH', 'DCL-BRLLNTPNCHSNNSLETH'), + (0x5a00a5f49c000c103599c35a99212c1a282d202d, 'New Lock', 'KEY'), + (0x5a11e8757b20d244bd343bdd4bab639ac35f83b7, 'Meta Wish Lady', 'MWL'), + (0x5a14ff96d0c4ba3a47b886bb852d5895f95effae, 'INSTILLATION SERIES', 'NSTIL'), + (0x5a298ea97659c587012714aad1e13eb88458ae90, 'Garbage Friends Official', 'Garbage'), + (0x5a2ef27d8916170d7180750de20aa42bfb06f80e, 'Anime Corps', 'ACN'), + (0x5a30229bfbe5a22343ae67d4c077c101768fd757, 'Safe-Hand 90-Day Note', 'SAFE90'), + (0x5a43d33b797a7432b935850070474c100a1cc309, 'Kangaroo Punch Club NFT OfficiaI', 'KAN'), + (0x5a451069ecb677490f87f6f0b7e0829bbef63705, 'PolygonLow Golem', 'DCL-PLYGNLWGLM'), + (0x5a4dac85160a86fd63f5d0b2d55aa9b5c8542548, 'Galactic Society', 'GC'), + (0x5a588e225594a9e3a333f4806a376579e3360b70, 'PETAVERSE Streetwear', 'DCL-PETAVERSESTRTWR'), + (0x5a6273a5b62ededceab10dcf270ff53f1bb5af47, '[DEVELOPMENT] Ma Gi2022-03-14T15:37:35.098Z 850285', '[DEVELOPMENT] Ma Gi2022-03-14T15:3'), + (0x5a6961ca06a902a75eecc8658fb0e2391e30672f, 'Simple Punks.', 'SPN'), + (0x5a69d3cab0202a845cf91f1c5fd73c588ca681f8, 'Anime Corps NFT', 'ACN'), + (0x5a6a54d376589b03aecd18c8a7de7bcd0c80fc40, 'Sannin''s Mummified Sword', 'DCL-SNNN''SMMMFDSWRD'), + (0x5a7a07c0c226fc9c06d85bd7d419664f71cd4453, 'EDOLENABLE#3', 'DCL-EDOLENABLE#3'), + (0x5a80c2dea48919bb52374277de01e6385da7c096, 'Ol', 'o'), + (0x5a911531a3c4d6675a1389fcb4a3f6f531bf4440, 'RAFTCERT', 'RTFS'), + (0x5a95c58a613b014f2e82cbf5b7fe44038e91fe02, 'IOT Cap ''n'' Hoodie', 'DCL-IOTCP''N''HD'), + (0x5a95fc53f5865568537c4c8a11a0aeb10f080d0e, 'leaf million collection', 'LMC'), + (0x5a9bbdcc5fa89c048e4c57c9ea7396d37b2b3679, 'Weed Nimbus', 'DCL-WDNMBS'), + (0x5a9c50684dfc8a41350a2c99b97a7e9c2c021ddd, 'Weird Catgirls', 'C'), + (0x5a9d353f3b5ab8ce8ea15393e151383a77364a25, 'OYA the Catalyst', 'OYA'), + (0x5a9ed08aea1e4b32014ea558546e344ab68b58c9, 'WormU Collection', 'WormU'), + (0x5aa0e5b124a490d5e203f246f316f6cae1e2425b, 'Comfy Cat Crew', 'CCrew'), + (0x5aa378e0af0caaebc2bb6297c56acc2ed60dee18, 'RAIR Streaming Token', 'RAIR'), + (0x5aa3b40b904a109e240debbf402c74da532f3382, 'Hogeman Game Key', 'HMGK'), + (0x5aa6c493b9ee6ef995e851216f20943d08178ae8, 'Cyberpunk Owl', 'DCL-CYBRPNKOWL'), + (0x5ab53d80afc3624d33dc0c684605ae56eff3f689, 'Alien Ape Yacht Club Collection Official Polygon', 'AAYC'), + (0x5ab7721bbcd2462029eb78b665f98f9a0858548e, 'Eka Pada Rajakapotasana Under the Moon', 'YYH1'), + (0x5ab871b7c1e500f729fb3d93a67f4b375b75321a, 'CryptoMories Gallery', 'CryptoMorieG'), + (0x5abb214e33c460ece071a2a911b7feda16b2f5dd, 'CloneX', 'CLX'), + (0x5ac0ced6d1361a59dcb35f4b2336061608cf323b, 'LuarnM2E', 'LM2E'), + (0x5ac17652dbd1b44da8d2409670c2b682a1ec6ae8, 'KuCoolKan', 'KAN'), + (0x5ac9bd49bc2285ea69936f98693fc0d3f35acfaa, 'PMBC Skate Puzzle', 'PMBCSkate'), + (0x5acb0b60ad9283c91c187842120b8edca2aaa3fb, 'Archis Sagittarius', 'Archer'), + (0x5ad3b43064d1fcf6c936f3d6aebc35ac3da0399d, 'Toxic Skulls Club Nft', 'TSCN'), + (0x5ae2b8c03d0490520b98e234a308e407365439da, 'Meme Eyes', 'DCL-MMEYS'), + (0x5aedbe5726602396a69ef0943f1e81ddfb3fe5c9, 'MSBNFT3', 'MSBNFT3'), + (0x5aedcfef212ee39746675b27683341f21b2a8eb7, 'OG-Eggdomes', 'ce'), + (0x5aee8c645106eaa670525ba8cb15e111896640a5, 'Through the Branches', 'SWEDC'), + (0x5af43e3dd4ef8ae902797d9d96c7050957ecf742, 'Official Notorious Runway', 'DCL-OFFCLNTRSRNWY'), + (0x5afb3fb5e495f5f3a025133ea724504053f8f46e, 'VoxBoarder', 'DCL-VXBRDR'), + (0x5b09b98e26ffc0640305ea384b4c65d4bad598df, 'CableMonkeysNFT OfficiaI', 'CAB'), + (0x5b11d2f86ef7b45fa0ab7e690ecacc69f189734c, 'CryptoAlien', 'CA'), + (0x5b16cc6fa50670e1915e01ea7f18f14c056fd2a4, 'CryptoSharky Lovers Club', 'CSLC'), + (0x5b1c09e306e7ebd392d687cb889d7a4b245179a7, 'NFTom Multiverse', 'NFTom'), + (0x5b26e7cc59e72633887e539575d754d034886133, 'Cloudy City - Breathe', 'DCL-CLDYCTY-BRTH'), + (0x5b26e8912648be1618078f29d892ac114e9311c0, 'Women Fans Club', 'WFC'), + (0x5b285344a7f86a2a6fda4ba360ea6baa0a9d0424, 'Blue Peekaboo Dress', 'DCL-BLPKBDRSS'), + (0x5b2d60db65d80593bd5c5d36fcd99717ef03e850, 'ICE Poet', 'DCL-ICEPT'), + (0x5b2de79bba5c680e5a3453a20b00268c5e21d917, 'TPH Early Believers', 'TPHEB'), + (0x5b3fc215b3a8780040154ebbbd8d52b7991144c9, 'NFTs', 'NFT'), + (0x5b45c42db2efd3121efe52c61f60cc1346729fa1, 'purrcat', 'PURRCAT'), + (0x5b46d1252e67bb03ae1f60da92c52d20a68bed30, 'M5NFT18', 'M5NFT18'), + (0x5b4a3a6ad397c7ae6f9710d6c7123ec40fa54a6e, 'EAGLE DROW', 'ED'), + (0x5b55dbb657af12573aaa02b1e9993feae78e3bc8, 'Collection of Rare NFTs.', 'NFT'), + (0x5b620c94a05a582b55d4e141f649893f464b85b3, 'Big Booty Yacht Club', 'BBYC'), + (0x5b6d626b58ee1ee3455bf57eb19322b6e4829feb, 'Space Shorties', 'SHORTY'), + (0x5b6f04bffd8651860461736a498f584b2dc3af28, 'New808Punks', '808Punks'), + (0x5b80beef957ab48d872d79ce2b764fed9c945dba, '1 of X', '1/X'), + (0x5b8147c602b4e650424bf3bf948c69a56e1c49cd, 'Firearms of Glory', 'DCL-FRRMSFGLRY'), + (0x5b824f66a3601ef3b9d9130967f59f1d546339cc, 'PixelRoaches', 'PXLR'), + (0x5b85b3db3fa13e69dc9e793d5f0b674a1ed3c80c, 'Creepy Kawaii Girl Club', 'CKGC'), + (0x5b8ca0442fde430b074f8ee69eadb000cd15deac, 'Dino', 'DN'), + (0x5b900793f2c012f8ccadd15a80cc178f2c037113, 'Fun Guys Shroom Club', 'FGSC'), + (0x5b9237277682d9a7b3a0f8881dfb69b784fd20fb, 'OhmieDay', 'OHMIE'), + (0x5ba22d5c86db40dfa25d60bf762b456152c87f1b, 'Peking Opera', 'DCL-PKNGOPR'), + (0x5ba3597a007102a84464d91de38ff508db037698, 'Animo.Women', 'Animo.Women'), + (0x5ba8719accec5a99d83b411b8a84b59a7b0895dc, 'Skimmies', 'CP'), + (0x5baac6adf398f3eb08a979bc442aec18adf782b7, 'Supreme x Bored Ape Yacht Club', 'SupremexBAYC'), + (0x5bb00ee7af84b989c5636b14b8d7bf4b4fe57c5b, 'LUCKY FOOT CLAN', 'LFC'), + (0x5bb38bc4be88de4f3c001b5657e4a65b35157ea4, 'Moonling Heroes', 'MOON'), + (0x5bb3b8e98a4e27d2b14494f94eb705df0d1f3964, 'Exclusive', 'E'), + (0x5bb576a980cdeac3c6c5578f7d682c5596029826, 'FunnCats', 'FCNFT'), + (0x5bb73096e72f07038833a11aa81d242f000c5281, 'thebfedao', 'thebfedao'), + (0x5bb9052a8eaebb60e2fddfda221cec198658a1b9, 'Game 2', 'SWEDC'), + (0x5bbf33a409477629199892733f4d51f8f3a14803, 'Ghostbot', 'SWEDC'), + (0x5bc0835f864f72d6400b6fe577d0620bf15241f6, 'The Greys TV', 'TGTV'), + (0x5bc2ccda0cb1b49252e2711ff4e2391f22bdefce, 'Future Alien', 'FTLA'), + (0x5bc59f9608deb7d2d8ef60306e5a01f327742ee3, 'Rihanna''s Fenty Beauty NFT', 'Rihanna''s Fenty Beauty'), + (0x5bd1d76564c9fc639be63c5fe953907fc86e81ba, 'ENTREP', 'ENT'), + (0x5bf66322590a6f6ce72c10a74ec79c5b1a4e3248, '“Behind The Pen”', 'SWEDC'), + (0x5bfa9b7926b0a11bb33be8ffcb517899b8bd0624, 'CryptoDudeNFT', 'CD'), + (0x5bffb2d6ea8160cba5613dbd91d1a9394c4a056b, 'TinyCatsHouseClub', 'TCHC'), + (0x5bffbae8a5f9b926c3ba80f8f2ccc2cd7b7435e5, 'IDIDI', 'IDIDI'), + (0x5c109c15fcc4ffaf5dd37cd83399833010d05ce6, 'Invisible Pets NFT Meta', 'Meta'), + (0x5c1afcff0a3f4ca32d7a284ed4641e47825c88c6, 'Harambe Club NFT', 'HC'), + (0x5c20f4a31a4c99668fda1696f656a5061cd516ff, 'NFT Friend', 'NTF'), + (0x5c2b28a35319caa84abb99f0c2323af700052a85, 'Nine Straight Wins', 'SWEDC'), + (0x5c32307ca2fc98565b4c92e02fea4fa499568230, 'RariLend BLUE PILLS', 'BLUE PILL'), + (0x5c3232279a3b85ba970f48a8408bf8b1379380fb, 'Party Cracker Hats', 'DCL-PRTYCRCKRHTS'), + (0x5c3b49272f8dc77d3ae65991a76d9ca6dfd48d91, 'CryptoDuck', 'CD'), + (0x5c411fd0e624fa351aa6bc93fc0a6606046cc3ed, 'DG Host Uniform', 'DCL-DGHSTUNFRM'), + (0x5c45512c39958c73bddcdcc1179c049d0d079b73, 'SUN & MOON LAUNCH NFT', 'SaMLAUNCH'), + (0x5c4c5eee2d5dd47b897b1d55b3e1cbc2e014e0db, 'GEN-B15', 'GEN-B15'), + (0x5c58ef7f2e84f64b675d564675fde62e6279cf77, 'check', 'check'), + (0x5c5a47eef7c5e825ef05b4964d59465ba5d94064, 'Monke Doods', 'MNKD'), + (0x5c5b7f4cf057484c2f72e929748029d2de590fcf, 'NFT Grannies', 'GRANNY'), + (0x5c6068453d6e761426669e5f12358491086f66e2, 'Late Light On African Elephants', 'LLOAE'), + (0x5c63b0c8a5057a64bd5cc00c1262502163dc892a, 'Dizzy Alien', 'DCL-DZZYALN'), + (0x5c691b3eecf9eca4ef4c1fb45143f3f226d91cdb, '"Live from the Ride" VIP Laminate', 'SWEDC'), + (0x5c78d138f33a363a82735d2e9129e86fe3acdfe0, 'tet', 'test'), + (0x5c7c5a634a67c7c1619918cc92b63626725017c0, 'GuoChanDanDan', 'GCDD'), + (0x5c7ed488d2d3f6da0f299286d51c8f3613bd30d0, 'XOXO Glow Walkman', 'DCL-XOXOGLWWLKMN'), + (0x5c840dc3761e0e580cab3b836578ea3b6f80a33f, 'Clipto - @bobburnquist', 'CTO'), + (0x5c87d75a5cbd9afdb614a68156dd17d87666e915, 'Lenny Bear', 'LB'), + (0x5c89e28b3ac6e09a702dab7d35859b2af2ddc0ca, 'HELLOWORLD', 'C'), + (0x5c90deef15aaae4c1f05a74887aa7596ade1f520, 'Merry Christmas X 4SkinStudios', 'DCL-MRRYCHRSTMSX4SKNSTDS'), + (0x5ca009d400cd16c2867f516d3f4fdd2ee4cb6766, 'Everai', 'Everai'), + (0x5cbd0130c4aec8ff7e638126757313fb6caeb2a2, 'Everyday Sloths', 'ESLOTHS'), + (0x5cca51156c202be4aaa4db3e90235e54daec0e4d, 'Pirates LEGACY', 'PIRATES'), + (0x5cd3025de5aa6e1cf1b218e1dbd03b7bf32762ba, '0xLarva Lads', '0xLARVA'), + (0x5cd63ffa0ee2ba4f6459674c4b1452c8c032a33f, 'BetNFT', 'BetNFT'), + (0x5cda5598a257a5a300e48d1761a8488d27102653, 'CreepyCrewNFT', 'CCNFT'), + (0x5cdaf21379609b366d388c7943ff15ebaa99ba3c, 'Bangsaen21', 'BS21'), + (0x5cddb0e10d90c4fca54ec2398fc3bf878b889039, '20220321031', '20220321031'), + (0x5ce314cdc39dbd087d99905c15a244ae53ab0ff1, 'Manga Azuki Mfers', 'MAFERS'), + (0x5ce7cbd9362cf42ca2b79a5026a7e2746d3271ba, 'ANGHUB', 'ANGHUB'), + (0x5cf0aa6fe585b7cd2ab53c8f00af62b1049f7a27, 'Big Money Hustlaz', 'BMHNFT'), + (0x5cf0bc02a9b32242806fb313fa1f16d3fe8d86fa, 'Black Dragon', 'DCL-BLCKDRGN'), + (0x5cf8107cc90f900fc048533459a6c406883c65c6, 'GEN-T25', 'GEN-T25'), + (0x5d06abc765cd8a7544f7fd500cab57b0fa905f23, 'Kiwami', 'KIW'), + (0x5d07b2421a20b79a9a6fb9dd28eaee10a66b0ded, 'TAT', 'TAT'), + (0x5d093e823105bf83fad05bd8c71a26a9eacebddf, 'HeroLootBox', 'HeroBox'), + (0x5d12b43b6eaed1f5985c4c239b2c98870752dda3, 'Cloudy City #8 - Sweet Pink', 'DCL-CLDYCTY#8-SWTPNK'), + (0x5d136e93d873a63e2a1323da352bb5efc472ef7c, 'XNFT16', 'XNFT16'), + (0x5d17c13f6e74c7380f25a0c2e0204624465f5296, 'BakedApes NFT Dispensary', 'BAD'), + (0x5d1848b11623628be368ec3de1ef10af93b09f67, 'Ferrari', 'FERRARI'), + (0x5d1904407ffbef5b830c580871bc039a7eca0382, 'Koalines', 'KOA'), + (0x5d1bbfc2d4e4692d2464770725e62ce4ce45b66d, 'Tory Lanez - When It’s Dark', 'TLWID'), + (0x5d1d9a94a33cec5446014fca67a05160c71c09c9, 'BitmongUs', 'BMNGUS'), + (0x5d262f9155004686b6f6ac3e44830ec8bb294594, 'ooo', 'OOOO'), + (0x5d297eb6ff31988314dcfec9c7e9eeaff43b94ca, 'StickBob', 'BOB'), + (0x5d2a71162bbfe108584ba211a083139d9a85b752, 'PolyDAO', 'PDAO'), + (0x5d36808b195be9d153f89ba3cc9d5c0c6a386705, 'HarborBcg:TreasureP', 'HBGT'), + (0x5d45937deae074887bcf07e896a345fb2c646782, 'Black & White Cats', 'BWC'), + (0x5d4a52e550419eea2ee647e9914bea78b6b476f3, 'Metapoly.org Crowd Fund Junction', 'MetapolyCFJ'), + (0x5d5a5380a514192d09c680ef312b350e76edd6f0, 'S&P Global Strongest Link Award', 'SPGISL'), + (0x5d5aa8298b83a56ebd888b84a1ae6108fb494566, 'AnyIce', 'AnyIce'), + (0x5d6667338faa4bb3ed2df93b75ccf48f26e8801c, 'Bullitprimegorillas', 'BPG'), + (0x5d697349c2d6aaf5fd5f963d0df61ada89bb8c06, 'Bunny Hole', 'BUN'), + (0x5d6b32f90a287f0deea9f7cb35ef3cc20020dbf5, 'Ginger Strong', 'GS'), + (0x5d7abf5a305a43523e7687c21d1c8d0cc2315f2f, 'HB-Wallet', 'HBW'), + (0x5d7fce335495bb0266e2ed0a81937d90adb7f670, 'Republiqe x Monnier', 'DCL-RPBLQXMNNR'), + (0x5d83bfa504c7ec063de45d2496b7151735a3b794, 'Chroma Shark', 'CSHRK'), + (0x5d85c545ee720ed6847f7d2f5530324460a57ad0, 'Zpunkz', 'Zpunkz'), + (0x5d955f8c4f2c1740f5ae610654d26ef5e39215e9, 'ThePossessed', 'pssssd'), + (0x5d977feb9a4c8c2a03a17ab6206500e8baf775ed, 'JTV''s Wings', 'DCL-JTV''SWNGS'), + (0x5d989ecdc2d45a00020b6f6eeec4c01b74506044, 'ROLE PLAY', 'DCL-ROLEPLAY'), + (0x5dab1368b6919799e121114abc9cecc757377961, 'jokerdeep', 'JKN'), + (0x5db4c0ab6c5dbee8177300164750f8d828871596, 'Dapper Dinos', 'DINOS'), + (0x5db610816d4a2700598558661396777dea0dcf39, 'Mutant Shiba Club', 'MSC'), + (0x5dbd591ef8034e10fab5fbedd061027da19c0354, '[DEVELOPMENT] Le Go 085284', '[DEVELOPMENT] Le Go - Ed 022776'), + (0x5dc6a6823a8042b4268ce3a9b4d62f1428d384f2, 'Laser Eyes Collection', 'DCL-LSREYSCLLCTN'), + (0x5dc74099e285e7a59129932d030f0c00edc90891, '8 Bit Stoners', '8BS'), + (0x5dc9d7285cf7192be349e7d8b6484bc17a0c7d4d, 'Pegasus Rider', 'PR'), + (0x5dcb640be243ad3967649a4e85f66d3d7c1208ff, 'Dumb CryptoPunks', 'DC'), + (0x5dcd1fbe4a6573c589bd615f41d4fe11bcd3a863, 'Bored Vibes Hoodie', 'DCL-BRDVBSHD'), + (0x5dd40a36b27d276e8ea095f8e4642bfcb7408236, 'Ethereum Hustler', 'C'), + (0x5dd90959c25b62dffa67021c4bbde928a0bd6863, 'DarkEmpire', 'DarkEmpire'), + (0x5dd9396492e2f09bb8bd7ce65846634b2d6caa40, 'Kissy Missy', 'SWEDC'), + (0x5ddbaf88a534189e97a53c7e73b62752c1c21679, 'Cosmic Ape Club', 'CAC'), + (0x5ddc074614d94a425601d52247142942315b078c, 'NauGhtEd', 'NGE'), + (0x5de5ffa62ffde74fcc7ec4acff9c0121ea2b796a, 'Female Wearables', 'DCL-FMLWRBLS'), + (0x5deaff021c44890d58385228c95363b2cdfc846f, 'Crypto Mangoz', 'CMZ'), + (0x5df4b7dd8b3ceadef1ed937a88d56b6647bf3015, 'STEKKEL | GENESIS', 'DCL-STEKKEL|GENESIS'), + (0x5dfc17529b5b4e4ecba66271f276f1642113f168, 'Blazin Armor - Ember Crown', 'DCL-BLZNARMR-EMBRCRWN'), + (0x5dfd0baed99ad3d2dcac4c874b81721680a2c389, 'Rock Sloth - The Punk Collection', 'RSPC'), + (0x5e096d6b3fd28b62755a9a07f357db4141c579f9, 'Hog Mob Society', 'HMS'), + (0x5e0b57c82ff7565583eb7f68a42f0bb9c4a03fcc, '0Xzone Apes', 'XZAPES'), + (0x5e0cd3b237dcc625081fbc458fd431222ac69f89, 'Plodding Pirates Plunder', 'Plunder'), + (0x5e2011ccf85121fb4afb5f436a9a8bcafa7c8a7e, 'Bored Otter Club', 'BOC'), + (0x5e2113418aa3027d5c59ac3363490d08253f61ae, 'WomenArtworkRocks', 'WIBT'), + (0x5e217c15cbd45bf09fb6fbf6c31d6b3495433ec9, 'Safety First', 'DCL-SFTYFRST'), + (0x5e26ba62d190e380bac24c0b6120e3521a715a90, 'Apathetic_Space_Chimpz', 'ASC'), + (0x5e2daa30b49c78563c065ea39b5387e38861fae2, 'Ballz P2E Game', 'BALLZ'), + (0x5e2dfa18bef12d45164d181628bd8ce2220ff498, 'Who Is The Boss', 'wtb'), + (0x5e30888d9a5894777ed83400390c2eaecf52991d, 'The First Qi War', 'TFQW'), + (0x5e30d8515e69fc04dca93f133bcd8a60255cd4f7, 'BoredApeLuxClub', 'BALC'), + (0x5e33664b0153e0e17b3105097decac089ce88683, 'NinjaNounPunks', 'NNP'), + (0x5e34460d36e8c8e85bdd81afa07d405e37948942, 'Holy Knight Cards Token', 'HKCT'), + (0x5e3ac508df6b2f8effa1aa9ca21a09fc1cd2df4a, 'BitBears™ - Bear Max "Ultra"', 'DCL-BTBRS™-BRMX"ULTR"'), + (0x5e42071021870b2e23a3cb98cfb2a6ff0d614aad, '[DEVELOPMENT] Th Mü WRXWL', '[DEVELOPMENT] Th Mü - Ed CVTUXO'), + (0x5e44f8c804f43313e05dbd78a5d2b8f319cf6b15, '8bit-coin', '8BC'), + (0x5e4509382995ae158b2febde1fe6b232aee4e83d, 'Bear Gang™', 'DCL-BRGNG™'), + (0x5e4a2b8987fd9115783bde0b4377f94c9d267452, 'Martix', 'MRTX'), + (0x5e4ac8fd7c4e61df6ec4baa14fb88b03767be440, 'Malfoys Owl', 'Malfoys Owl'), + (0x5e4b740311f4c843bd31e2acf203a7ca62b57744, 'Weird Catgirls', 'C'), + (0x5e52e6dbec7f551799f9e09e8ae457f854e30369, 'Geo Abstract Art', 'GEOABS'), + (0x5e559c23628a3d96d9533d9389ed7856c046633a, 'Monaliza Official NFT Card', 'CARD'), + (0x5e5b7b0e069aa0c5c406c28c31c5e5e3da82d183, 'LLD, LLC - Business Card', 'LLD'), + (0x5e5d8250a1e3f507ca3c166c06aac3bb2db61e14, 'SaveTheMatrix', 'STM'), + (0x5e5d84cf8561cc9f43c9c9deb96e4c02ce71cda3, 'Golden_Tiger_10K', 'GT10'), + (0x5e5dedfc49c18f0e97263489913b78b1d0588637, 'Crazy Guys Club', 'CGC'), + (0x5e5e002fc21930cf8216bcd49e3036d03fa7cb49, 'Polygon Ape Community', 'PAC'), + (0x5e5e76818ac3d1c032ee7844c9f23f099026d558, 'soft Eyes Girls', 'SEG'), + (0x5e61bf4e1a00c8ffa8ecde24190874d799ba7435, 'FunPotatoes', 'FP'), + (0x5e63fbfc5b597e9ae9af7c68ff72ff6900a03700, 'Choco-Strawberry Pop', 'SWEDC'), + (0x5e6910778014e175c2c608a87fc4fcfe397238cb, 'Big Emoji Nft', 'Big Emoji Nft'), + (0x5e695a71b4f8817c49fc1520d061397717171cd3, 'Royal Runway Suit', 'DCL-RYLRNWYST'), + (0x5e6b4bfd874c3f4d602372e6bc7331e9d861a01e, 'Citylife Series', 'CITYPK'), + (0x5e75e71394d44abb77ef9a712810b07ab3790101, 'Weird Bored Pigis', 'WBPNFT'), + (0x5e7fc9e42be1da1a4353709beb77ccbadfd065cb, 'Celestial Gammes', 'CG'), + (0x5e83c1c82cbd90cbd2932d7eadf0b1391a7826d6, '0xaAF03a65CbD8f01b512Cd8d530a675b3963dE255', 'Seeker'), + (0x5e959c8ed38380e84d3ae38e438e7728678084aa, 'Camiiiila', 'CA'), + (0x5e96cd77e315309d8de3df400ddda5944190aa17, 'Mad Eggs', 'ME'), + (0x5e9e84c6ce78b6b9243d97dd63c2157f99ae1b66, 'Baked Bears', 'BBBC'), + (0x5e9fade96b8a25771a42be4839ed1eb9c1300771, 'Greenville, SC Pop Art Edition', 'SWEDC'), + (0x5ea263e2ac9f7dd50eefb2efbc497fb7594a4a61, 'Mutant Shiba Club', 'MSC'), + (0x5ea9a8dfe18fedd6df37f4c163d3bd733066108b, 'Demons Can''t Draw', 'DCD'), + (0x5eaa8e628659b474320773ffcebe3756a5df76d1, 'seallegends', 'Seal'), + (0x5eaae66a84072616a0088b851420fe5724bf9dc7, 'Scotty Beam Prime', 'SBP'), + (0x5eb407d1048f996f4c79a13e585531472ba2dfb5, 'Snakey', 'SNK'), + (0x5ebb18b34352e32ac10a3f7046009e67defe3f76, 'Dollar Sasquatch (Gas Free)', 'DS'), + (0x5ebfd0b0320cb0bb639a07e428f4aeddea8e15dc, 'PaperCars', 'CARS'), + (0x5ec5146b731f170d8796e7c5b40228f5798db0b4, 'Ship Age NFT', 'SAN'), + (0x5ec7cc16dda0414b1e84ed400c960bcf638658a0, 'Bored Expressions Yacht Club', 'BEYC'), + (0x5eca2b9f7828c05f58e0cae02156e3086effe45e, 'Dickulls', 'DSNFT'), + (0x5ed220a6490e8db5a6d6322484d711e189a36319, 'MetaMechs Official', 'MM'), + (0x5ed70e7965c0a26b6e2778d8c0a81d478c02509e, 'DoomsdayDolls', 'DD'), + (0x5ed789d94cbede8c24746f780af800720604212f, 'New Crypto Heart collection 2', 'NCHC2'), + (0x5ede0da28a4f6248d55cbce0d5110a821bc904b4, 'Hypernova', 'NOVA'), + (0x5edecc16dcbcc474d1b57960467c571ad3561718, 'Sobriety Squad Token for 60 DAYS of Sobriety', 'SBR60Day'), + (0x5eeb6afb69747ac7fe7fb78d36c9d457db760542, 'My Collection 1Wimx4stYL1oi6uBdYee', 'my-collection-1wimx4styl1oi6ubdyee'), + (0x5ef9770ecc59d2f8fa0c88f93b9273492d12d063, 'DoodleDudeYachtClub', 'DYC'), + (0x5efc029062a306591bd555c42a5f756fa61afdd1, 'GalacticMonkeyFederation', 'GMF'), + (0x5efd65440cc2843cd230b5096e595e9c3d63bd67, 'Crypto Beaner', 'CBNFT'), + (0x5f1151ed0fef4cda96d0821a3a1abb6f0dfc39a6, 'WarMatreshka', 'WM'), + (0x5f1b46258719548fbebaee78ef37758c81177822, 'Bored Ape Football Club Official (BAFCO)', 'BAFCO'), + (0x5f1bda99bdbe50abb6b06928d9cfaa0523bf06dd, 'Weird Catgirls', 'C'), + (0x5f1c9eccc7d04a48412cb86497c7ccb1f4596f14, 'Tiny Cat House Club', 'TCHC'), + (0x5f231c9be0c50925d5c94400dc895d4ea4c5bf7b, 'Embrace The Journey', 'APAEJ'), + (0x5f24001e7bdb59e3862bf72cd1bbfc5a3b0c7cbb, 'CRMoustache Lad', 'CP'), + (0x5f2a4c082dfccb06012f878085d2045670978821, 'MGMNFT1', 'MGMNFT1'), + (0x5f2de6754bc0cdc70ea03ac8ac6f91def5e5121a, 'OG200', 'OG200'), + (0x5f30bdbbb7fda466a5db8e8c47d1b76360baf6f6, 'Between the Lines V3', 'C'), + (0x5f3562bc69f71578d6b74f4d73cf78f86b410848, 'SXV Potter Cards', 'SVPC'), + (0x5f3acf66bf14f0fce0717cde6ba63466ba3de86d, 'Larissa’s Real Signature', 'SWEDC'), + (0x5f4b66e089f0c788f81a526bb7396b899038abd3, 'Account', 'WonderAccount'), + (0x5f50028e3d68bb9f26b837229212dddbe5f36a14, 'MemeToken', 'MEME'), + (0x5f5536fcfbb1f9dbdbef4c0fcee246f0e083374a, 'Eggplant_Mania', 'EM'), + (0x5f60c8c405856d8864c53ba93bed8cecc29caeac, 'NFTs', 'NFT'), + (0x5f6bf6b45c812e5793ae04c48f54dd5192df3304, 'Elon x Triple 777 Tribe', 'E777'), + (0x5f6c053734bc5f7bb6817af357cbe9007dddcdae, 'C3: Verified Carbon Units', 'C3-VCUs'), + (0x5f6ceaad29038435a764b59d716717500135a609, 'DeRace Opie', 'DRCOP'), + (0x5f774496e73c2edddeb70e93b1a6e02383bd789b, 'Little Green Men', 'LittleG'), + (0x5f7aeaea84ffb1b4506dab830dc2915cc3059d48, 'Robotars Polygon', 'RP'), + (0x5f7c22c66a9034a877eb6548ddcb24e3dfb694f0, 'Final Fighters', 'FF'), + (0x5f8348f5c51796d3e38a511dced0976686c22538, 'cryptoshiekh', 'CS'), + (0x5f87221b48f79376ce66956a3cab8f15487829c3, 'Águila del Graf Spee', 'aguila-del-graf-spee'), + (0x5f87fc06ec6932a5c7a0517efa57f5394f8a0d6e, 'Meta Jacket', 'MetaJackt'), + (0x5f8a708363c5aa444ddbcf7e41addda807c8e11d, 'Abstract Sci-Fi Collection', 'ASCIFIC'), + (0x5f8b7b32c0b62b65564c203b32a92f4a2712de85, '20220319025', '20220319025'), + (0x5f917018585cfc50ab2cedfa4a071ab0b20cbfab, 'Anime Metaverse Genesis', 'anime metaverse'), + (0x5f97397857d19ff4fdd5943baf70a4a344d2d539, 'laopan123', 'lp'), + (0x5fb0ed6d5341f5073f814e39e3556d0f94d75a84, 'BumpoBean', 'C'), + (0x5fb74ce3a15a27617c76ff4234281b1727582ef0, 'Zen Storke', 'ZeStoNFT'), + (0x5fc0327b95070eb34b2687a7cf412465af909541, 'Garden Gnomies Group 1', 'GGG'), + (0x5fc3838760cce49794182fec82e43d02abe5b408, 'oniboy', 'ONY'), + (0x5fc72c066d1bea4b8f1382b1c1fdee393a9e3808, 'SHIBUYABlockchainRecords', 'BRT'), + (0x5fc7d117204dcc95805888a972d7438eb3a7f609, 'Baby Lander Apes', 'BLA'), + (0x5fce1aa0989e0e679d795566b2b5ec11c27bbf73, 'Kaiju Kingz Turnables', 'KAIJUSPIN'), + (0x5fd1e0783d516686d145a730c33253f52e593520, 'Womanoid Official NFT Collection', 'NFT'), + (0x5fe831af8a790e73d93f4116a7cc182c8a5c53e6, 'CryptoTeckels', 'CTK'), + (0x5feb5fcea4b75fc7169a5bfdfc716c67e8e471b4, '50/50 NFT', '5050'), + (0x5febad9783abcb4aa537388fba2bfd2a5d5ee58c, 'Tamago Meowchi', 'SWEDC'), + (0x5ff238e33c165cb6c89822ced38dbe67a18783c7, 'LuckyFoxUniverse', 'LFU'), + (0x5ffb7a99f0fbd7eb7c4aad3606a67d1fbb31eae5, 'MGMNF10', 'MGMNF10'), + (0x600d71c44a32e1581a1cb9b8310593637cb51e38, 'Donate Ukraine NFT', 'UKRAINE'), + (0x600e033a4cb520fa48e081c3a791abcacf4fd31f, 'Ra Giraffe', 'RaGiFi'), + (0x6011b77d2dcba999f837d6609124fbcdc4ac3a4e, 'Hermes Heroes', 'Hermes'), + (0x6024a59f0d686800ebe21484e57e595f68619c13, 'The_Chosen_Ones', 'TCO'), + (0x60259fb929a6a1075acfdfb74bbdc1eb03536cd1, 'M1NTY - FS', 'M1NTY'), + (0x602e7bf8cba962c40cc3674a49b8fe9e2077cacd, 'Abu Crypto NFT', 'ABU'), + (0x6032f0324360eacd4a6d84e0087e6ef909ea0d65, 'Fluxtopia Diamond Alpha Passes', 'FDAP'), + (0x603858b863a297fef9451e3afd864738a560b1d4, 'Sailor Gary PreMEMEium Coin V2', 'MEME'), + (0x6039761717f4411075d4a8217418bfde78e525e8, 'Bored Ape Crypto Club', 'BACC'), + (0x6044ba37f95bd489e3c64a6e4fe07434fb98f3d2, 'JocktopusCentral', 'JC'), + (0x60493a42cd5969f2621f29d41450b05b78b4a344, 'Shamanzs NFT Official', 'NFT'), + (0x604b368f56780bcd72f06bdcac526f46fc6309bd, 'Emonkes2', 'EMNKZ'), + (0x605a090f3922bb033bcda4ca74cc11a7ffab74d6, 'NFTs', 'NFT'), + (0x6062e7ca5da02ca72b63793dc50012a5cccf8bce, 'PopMan', 'PopMan'), + (0x6063599aa5d7366e1b7da086ae39a473f98e36f2, 'CREEPLINGS', 'CREEPS'), + (0x6063959d39ca69640efa4171ecdb775b0d5ca37f, 'Metasharks x Stone&Robert 21''', 'DCL-MTSHRKSXSTN&RBRT21'''), + (0x6071f0f3fb1c895d96d461b63dc3983d878a71d3, 'Crow King', 'CK'), + (0x6078ea4072a886d1a1595866065fea7528efdc56, 'Poteleche Throwback Collection', 'POTE'), + (0x6082e224ddc226abc980b56691e20f1c45c2a073, 'Dolphin', 'DLP'), + (0x6086e6e9a2cd60fb5f08d75f632a37a79ec5173d, 'Dusty Old Bare Bone Feet', 'DCL-DSTYOLDBRBNFT'), + (0x60879ca99b4b9fb01460bbbb92b257c3db102b87, 'Loaded Baked Potato', 'LBP'), + (0x608dd13644a00b1795be2c756684f746950b3c53, 'Penny Piggy', 'PEP'), + (0x6093b18ca05346c73a3ae95eed33b4c0df2ea5ab, 'Music on the Moon', 'Mus'), + (0x60961b6d8b444948dc176f2eb76ce6d537282687, 'Web3Builder', 'Web3Builder'), + (0x609937a2986adfcb00b3fec1a15e41129a7b1a34, 'GeometricShapes', 'GS'), + (0x609a5b8c4208d6acb1898d1a2d142554e875389b, 'Back Then, Right Now Single Art', 'SWEDC'), + (0x609bf2d1ee1a6decd6e7d498db28495f71d86a36, 'CreepyEye003', 'CPE'), + (0x609f2ab4c8e5edb2232ba118cc86f75528f4fe47, 'Kandy Girl Hat', 'DCL-KNDYGRLHT'), + (0x60a38bc2cce2c420adcc73b10e8d0fdc0737ae39, 'Robotars Official', 'ROBOTARS'), + (0x60a8f7901c3aea9dfb12477500879ca639af75b2, 'TallNecks', 'TNNFT'), + (0x60b16510c145c24a2285ed74353b3af90b1f22e9, 'Groundhog Earth', 'GRND'), + (0x60bdd208100cad8ac3a6ff568def2223d40bbf85, 'Timepiece Ape Society OfficiaI NFT', 'TIM'), + (0x60c6e412e63c7d8fd83786a263b23d568b0bca6c, 'MfrstNFT', 'MFRST'), + (0x60c806c1fcbcdc717675c5bd4c806ff0cf1894c7, 'TacticalBanana', 'TLB'), + (0x60cee9bf9de8b988f43b677e7121d104d5a1ea4c, 'Cryptodogs', 'CD'), + (0x60e39b84d8d4846597e2c604ad3ac80617630d5b, 'HELLA DRIP', 'DCL-HELLADRIP'), + (0x60e4c0a422312879ea1438a616c9451d2c536f2b, 'Sobriety Squad Token for 9 MONTHS SOBER', 'SOBER9Mon'), + (0x6105f0f5ef8b28cf81e64551588d13221d4151ad, 'MetaZoo Intl. Spring 2021 Line', 'DCL-MTZINTL.SPRNG2021LN'), + (0x6108283d10af04c9d03daa6320dd062dd9c6e695, 'Crypto HodlVuittons', 'DCL-CRYPTHDLVTTNS'), + (0x6115a511851d11abe77c6b6a33491daa74696769, 'ZERTI 2', 'Z2'), + (0x61167073e31b1dad85a3e531211c7b8f1e5cae72, 'LINK MAI Vault', 'LMVT'), + (0x611d0a9099f360a2fd9596da6736bb459b17674b, 'PlanetHeadz', 'PHZ'), + (0x612f4d25f08e1b935a55451cc32dd23229dd04aa, 'ShockingLittle', 'ShockingLittle'), + (0x6137762be4343abd6d6a6dfe48c1231efd0838a6, 'The King', 'SWEDC'), + (0x613e5674d130a36245efca6cec90308bd2723717, 'MetaParty Clothing', 'DCL-MTPRTYCLTHNG'), + (0x613f564873c38481d136fd2f9f45ee1db5f1a80f, 'DesignLAB Drip', 'DCL-DSGNLABDRP'), + (0x6146f7bb130188e26684aa3a15d13baa25dfe89f, 'Coinario', 'CO'), + (0x61470a133a8a2e9851fa3cb0a2d169f69ca831fe, 'ZENTEA DAO', 'ZENTEA'), + (0x6158a0ad87e8e806f92079f74f602c104cafd1e1, 'SonGoku', 'Goku'), + (0x615c6e100b2e2f13b1c4c0bf3b2e23141e76f18a, 'PlanetBeastNFT', 'PBNFT'), + (0x615db460b8eb49b8d1ddd99bf47a1d9b20e907e0, 'Neat Doggos', 'NEAT'), + (0x615f0b004b156eeaa0ba79970c187dce86b78476, 'GEN-H07', 'GEN-H07'), + (0x616c1209d6d896e667b82f0ae9baad3aedad306e, 'Alien Fat Boi Club', 'AFB'), + (0x616e9dd45cdb6202b21a3c02ac6c73165f6a081f, 'CorgiTheD', 'CORTD'), + (0x61776cae3cd4307f960c56eea984c12bec27da01, 'THEMYSTICMUSE', 'MM'), + (0x6177ce896bac757d3d9c31f52f059e7886d81df8, 'Emperor', 'EWC'), + (0x6183b91f140148bfdeec6a2365e32b9a64b61127, 'Roman Soldier', 'DCL-RMNSLDR'), + (0x618514dc33e243582ae5ba2b486254c125d60452, 'Angel & Devil', 'DCL-ANGL&DVL'), + (0x6186aa2212ea784ffa0260535d7f8c66d4ca8e7f, 'Mutated Broccoli Club', 'MBRCC'), + (0x61924a63908a5214c012793919a182bdb264ac06, 'FunwariShihTzu', 'FUN'), + (0x6193c879220dc31d65a9f9490713f8c704b850c7, 'Skanky Skunk Club', 'Skanky'), + (0x61946d3d14f9011bbb58af9d5e06306c8308e44a, 'LuxoBvlgariSingularity', 'LUXO_BVLGARI_SINGULARITY'), + (0x6194a7e66ca48e096cad6c58c925e3328262d87d, 'Raja(rt)', 'Raja(rt)'), + (0x6194f1b3574d0a032e089e93e1d50f8413ed4ad4, 'Cicesspert Collection 3', 'CICESSPERT3'), + (0x61978a934dabb8355ed6ae9c7a1d47a46d5ba977, 'Hobo Drunk Zombies', 'HDZ'), + (0x619b95cc7c6d0d30f846fad98b226898d7b45fe9, 'Tickets.sol Ticketeer 1', 'getNFT Ticketeer 1'), + (0x619cd7e43787c4d93559ce1dcd969d1326611a7e, 'Troll Game Lands', 'TROLLGAMELANDS'), + (0x619e8bfd6bd8eeaa0db0436edf5c293d6437792b, 'Fortuna', 'Fortuna'), + (0x61a970888957607639a0f2354f9877ce2900198a, 'The Furry Jelly Bean Mob', 'TFJBM'), + (0x61a9dd33847a3cf5ef4605c843fb8255bda3d2ce, 'Tan', 'SWEDC'), + (0x61b51940678327e74be4af3d8fdee64d8126edea, 'Geeky Gatorz', 'GGZ'), + (0x61bb162f3e468ce3b99027e6f4c05c57767470f7, 'Gold Pass', 'KGP'), + (0x61c2ce8b25fa2aa40d7139fcda005fbbc284fb9e, 'Dominoes NFT collection', 'DS'), + (0x61cad3175c9381172caf346612341e84802b772f, 'Crypto Lion', 'CL'), + (0x61ce6d94caceaee27f694d3798a370fd2bfde7c4, 'Glow Trousers', 'DCL-GLWTRSRS'), + (0x61de429def5dfea6e76cc0c2eca69ced650795f9, 'ChinaChic', 'ChinaChic'), + (0x61f82c8bd9269bad5fd44e014d80a8d2bee438af, 'Sku', 'Skulial'), + (0x61f8479e62d42cf90ffdb09d359902735c6e3ed1, 'Romboid', 'DCL-RMBD'), + (0x62035e698b3621ebc7f9fa9b07deb89084e5a298, 'JTV Designs_', 'DCL-JTVDSGNS_'), + (0x62040348c071a9ad7b90f69f485a411d82e72140, 'Fishlegs “Leg Day”', 'SWEDC'), + (0x620850399b1edbd8c0d26c7e47d13ea5bc177339, 'Tough Teddez DAO Pass VIP II', 'TTDP'), + (0x620a9e521b40b05e44509dc9f92cfd1f12367f6e, '[DEVELOPMENT] Ti We2022-03-14T16:21:29.884Z 173181', '[DEVELOPMENT] Ti We2022-03-14T16:2'), + (0x620b1afe85dd6a6acf49262813aba4fd79d43ce8, 'BoredBramYachtClub', 'BBYC'), + (0x621032a220eb66a2e69ccf064033348718fdc90e, 'RSS3 - Part of the Family', 'FAMILY'), + (0x62212c123a7cfe1fa86beb574fb818e8caa7d09c, 'Crypto_Eyes', 'CE'), + (0x622b4990b87d434a64af225686f888e7936da14c, 'CryptoGala', 'CG'), + (0x622cc23dacc2ccf5b6aaf385d0e1fd3988d084fd, 'The School Girl', 'TSG'), + (0x622f8773af2cf8188fd2e1ff0ff4d34a668ac0da, 'ANGRY CHICK OFFICIAL', 'ANGCHICK'), + (0x62324fbd31efa865c081367b26fdc7349e5486cb, 'Toxic Skulls Club', 'Toxic'), + (0x6241cce4bd2b00abfa8776266d183dada34d40ce, 'DEJAVU NFT', 'DJV NFT'), + (0x6247f0b3a8c7957c5671470f5692a5ea24cb9409, 'PolygonPunk', 'ppk'), + (0x62482999529b084aa9472d9142bae3d6e6429dae, 'Wealth Squad', 'DCL-WLTHSQD'), + (0x624d8010376cdfca2f62a56658c5667c0891da3b, 'PSP A', 'PSPA'), + (0x624ee09912b5ff8f882834fc087ae35946303335, 'A_Big_Bowl_Of_FU', 'ABBOFU'), + (0x6255a94e85f876d8f8c9aed056a5a8a185027e1d, 'MetaFest New Year''s Eve 2022', 'DCL-MTFSTNWYR''SEV2022'), + (0x625a3d84e7f167484478121750e325fe93cea502, 'Battle Droids OfficiaI', 'BAT'), + (0x62615ace553f6bb73fa6336cfedc0b57c49d5642, 'StackOS NFT 8', 'NodeNFT'), + (0x62658d4e54fc05c8d5af396f9e4d052493eee208, 'Aurory', 'AURORY'), + (0x627024c4ae78ee6990a05868803f8f9b6b1fae3b, 'tudaBirds NFB CBO', 'NFTCBO'), + (0x6270e95d9f9224e4f50dd4ba134cb9bcd50a5188, 'HelpfulBabyClub', 'HBC'), + (0x62756c2713ac951b2cee38038f26e44e67508441, 'Fortune Monsty', 'FM'), + (0x627f6115d39bf5ebf7f31bd05d1cf8fe528e1643, 'Viaminer NFT', 'VMN'), + (0x6280debaf950b6b2ace6ae1ed74ed9551a2d9339, '1980s Court', 'SWEDC'), + (0x62820727a4d781b834ce7323daf149ea94d4eff0, 'Fish Bowl Frenzy', 'SWEDC'), + (0x6284f87df3e11343e71f6c6dd6d56c9e1cd3d119, 'Pignoise: Pignoise Pigs - Exclusive Content - "Gotas" by Pignoise', 'PGN'), + (0x628551ecce35d37a961b97c17199a6d017e00117, 'Bola de fogo', 'BOLF'), + (0x628768c8bed061f6d7f8279a6687266776465b47, 'PixelArtKrowleys', 'PAK'), + (0x628e8d2aae45616dcf88988e52428990dc013a92, 'Pot People NFT', 'POT'), + (0x62945d29375e48bfd9c4c358d7163bb821aef28e, 'LovBugs', 'LovB'), + (0x62946f7d00da29b4cc1901122ff92fd2bc7704ba, 'Rave Wear 2 by Artemis Moon', 'DCL-RVWR2BYARTMSMN'), + (0x629541a941cf8e2332ca1e513d382140611a28ab, 'Lostra NFT Sneakers', 'LNFTS'), + (0x629db997d596002d8f17a50614345db65410d77e, 'Sad Skinny Demon Kid', 'SADK'), + (0x62a7a7fe63fee58bf7b765358c6bd5b8a945c26f, 'NFTs', 'NFT'), + (0x62ab029ea69fe6c89416fa298563b00321e2f79d, 'Tiny Power Robots', 'TPR'), + (0x62aca284483b509734df76820e04bb01a9bc7e95, 'XRPUGS', 'XPUG'), + (0x62bac0d2343df94f8e0bd71eb723de6d52ed8335, 'post', 'POST'), + (0x62c6c5572ba26b6d1e4dcd2de38a07b450e73c13, 'PARCEL PARTY - SERIES 2', 'DCL-PARCELPARTY-SERIES2'), + (0x62d2f13fffa2d94e0e77a4d2aa55e8d388167691, 'EyesToken', 'ETN'), + (0x62d7e2484fcfc6752b9473260efe1b86cabac34e, 'HoneyFarm Deposits v1', 'HFD'), + (0x62e6fe4b77c8bfcb77fe9d32bf728abd6d5931b3, 'DCL BabyDolls Heart T-Shirt', 'DCL-DCLBBYDLLSHRTT-SHRT'), + (0x62ea8080b2fc7dc4c7337920866afd242a1443cb, 'Digital Fight Club', 'DFC'), + (0x62eb182bb35c5c3d6a346ad0366958d9434867a8, 'KittenPixelNFT', 'KPN'), + (0x62efaf5ef5284e3958aa3b0be8d1955d7f935f8c, 'PixelTots', 'TOTS'), + (0x62f760d121c5bb2dee0fbc6c428fe2f3dd8220b9, 'Xolo Evolution', 'DCL-XLEVLTN'), + (0x62f796cb8418cdc891cfd4fbbb3fd2494566f458, 'Akumus', 'AKM'), + (0x630a874e6b24731d988053c82560bf31f45f0c0b, 'Multicolor Decentraland', 'DCL-MLTCLRDCNTRLND'), + (0x631b32be1ab45ec81fa735228d47132d0ba2797e, 'Putin_Rush_To_Space', 'C'), + (0x632057f491d0561d29d2c58b1ba9a3c564fa26ee, 'Splurge on Spurge', 'C'), + (0x6320ef12387e57ad68e7f20ca93f1b0fac03abe5, 'Yolee', 'YOLEE'), + (0x6321fedcf280a5a8cc3b6057cf45fd45c2b33901, 'Time', 'C'), + (0x63264fe3aca4ab31d6de44801c00c03dada1aabf, 'KYUBU EGG NFT', 'KYUBUEGG'), + (0x633b028fe99424e6c3f4949bbe09932c67d3d38c, 'Mutant Ape Inverse', 'BAYC'), + (0x633f54a348c426326c4f75ab125bae01119e3376, 'Cider MVFW 22', 'DCL-CDRMVFW22'), + (0x633f8cc8df3f05ab649c0aa8585fff2aefdb218f, 'CryptoTurtles NFT', 'CTNFT'), + (0x6346cc1eb7d3866ae2f5a000c0b94ba246abf575, 'Mermaid from Dead Lands', 'DCL-MRMDFRMDDLNDS'), + (0x63531f9d516c95d40fa6593c46c64a45fe9ca6f8, 'lostcontinentmu', 'LCM'), + (0x635ee1cbe839ef45ab5dd4aa959eb0561065adf7, 'Ninja Xolos', 'DCL-NNJXLS'), + (0x635fc872cd1c5a8c25b4b8ef457a62617e67f215, 'Adolfo Sayago', 'adolfo-sayago'), + (0x636b66aa8c32dd9ab658eba1bea5ede9411ea5fd, 'ZOMTA', 'ZOM'), + (0x636d0ce8eba692cd28cacf9561634684e077bab0, 'BestBoredape', 'bba'), + (0x636ddaee542578182540749fbaa7b500c440ecec, 'Badasspixelapes', 'Badasspixela'), + (0x6378d2f200f15f61696dc53799d23fda1f76c8b9, 'GameOfDragons', 'GOD'), + (0x6389292df6ece0b1548bd5f09cd23515de149e62, 'Wilderness Auras', 'DCL-WLDRNSSARS'), + (0x63898104f680999b38b97ad5f4da7fe3d9958ed1, 'PurposePups', 'PP'), + (0x638a103cdc93795a299da74af463bd70a8d275e2, 'Carl''s First Day on the Internet', 'CARL'), + (0x638d3375546e6074e9c74d12c1d25c6c4f698639, 'ill Face Masks NFTs', 'IFM'), + (0x6393a1eaa4184c457898d69c6864cb388f3a5eb9, 'Stoned Panda NFT', 'SPNFT'), + (0x6394f90c3b24004d538975cbd34dc543edb22291, 'Axolotitto Egg', 'AXLTEGG'), + (0x639bb403c8d11fe9f61941863b4387925d760491, 'Meta Game Fox Club', 'MGFC'), + (0x639cd4a36af769a1cbc6c9dfe1b89d5732a9e6ce, 'Funky Frank', 'FF'), + (0x63a833a9c2c86e6e05ea653cf1f596e36e47f19f, 'Ella', 'ELLA'), + (0x63ad9b86279c4c103fd93479a2ae33244f9d29e6, 'Amazing Luchadores', 'ALDM'), + (0x63ae3d08462820081b3737e8a0cd6ca2c7aba8a9, 'BOTZ', 'BOTZ'), + (0x63b2df406b30680e338d8e14d4454b9254ac07c4, 'DCM SWISS Launch event. November 2021', 'DCMSWISS'), + (0x63b3871dcd62afd947337689713601040b16d2b2, 'PolyCube Punks 3D', 'CPC3D'), + (0x63b740fd9f1aa32ce2bc83533fadb17337335fc7, 'TeslaSerbian', 'TS'), + (0x63b826442631608c37cb64542c3ab8181be1dc93, 'EthPetz', 'ETHPETZ'), + (0x63bc55e6316a69d46809a8438e07e0389cd3dd5e, 'PeaceLoveNoWar', 'PLNW'), + (0x63c1006262f089933af296ebebf77c121d3f629c, 'Dallas Mavericks', 'MAVS'), + (0x63c89c7c0b8e236cfe079d05df369ef24be5bf62, 'SXSW 2022 Artists Limited', 'TNTSXSW22'), + (0x63cf7b3d5808cb190aa301b55aafd6b4bb95efbb, 'NFTU', 'NFTU'), + (0x63d33c935909b9a355b8ff64d6d939f048b76395, 'Safe Face Army', 'SFA'), + (0x63d3f3493c2985f215d1970d43a40112d8bcdb9f, 'Loot', 'LOOT'), + (0x63dee47211cac4dae39b469e5893745febc03a76, 'RBX-4000', 'RBX'), + (0x63e053fc5019fe20af63a6d3e8addabb5e025a95, 'Mutant Shiba Club', 'MSC'), + (0x63e5d6014039a0144d6e60661ec1ae5969d65385, 'ZHEN. Token', 'ZHT'), + (0x63e66aa6c33c695672181da0c21f7de05d64db31, 'CFD NFTs V2.1.1', 'CFD211'), + (0x640fb57f9e47ee50bb76b225516e05e01fb4890e, 'Of1 NFT: ERC-721', 'OF1ERC721'), + (0x64191ffdb553904372ef8fe02e7887a9272437c5, 'Survival Pass', 'SPASS'), + (0x641d1a2c1e23ce6083512d6639726553c125f37e, 'MTNFT1', 'MTNFT1'), + (0x6433c41007a58300471cbb2d4711241189f854e5, 'Pickle Family', 'PE'), + (0x643b1f6ba8a32d053d4f763a32784159a9afb01e, 'Celestials', 'CELES'), + (0x643be296536dde31001a04933728b338bb24388c, 'Moto Cats', 'MCATS'), + (0x6447e2e71b1b6dc53f9c60e9814c43f4ca85e03e, 'Polyramid', 'PLYD'), + (0x644e655077d17a52e6029fb4681c5774fd3606ba, 'FACE Electric Series V.2', 'DCL-FACEELCTRCSRSV.2'), + (0x64592fed65eb19d8e773cdee249d155221b92da0, 'Soberliens', 'SBLS'), + (0x6459701058e1c646b87887de09f1eaa67c73dfc0, 'TraderAiz', 'C'), + (0x645ab4b46c440bf13b613e43d7a7c29300aac59a, 'The Sandbox Season 2 Alpha Pass phase 1', 'alphapass'), + (0x6463ca3d2cb9db4f90f6e9439713eb8d079ea0dc, 'fruit', 'LET'), + (0x646661ee7e41977fc4ffe386d79428dd9cb2e683, 'gfdaghhjdj', 'CB'), + (0x6467f3f1d9267964b68e3637f61d9b39f981b3b5, 'Columbus, OH Pop Art Edition', 'SWEDC'), + (0x64697e3b7d746bb3176caff712112a7d31832568, 'PIEBALD LIZARDS', 'LZ'), + (0x6470f8d1fb3c757e878a7ab8231cf45d0d752fa5, 'KudasaiAMA2021', 'KudasaiAMA2021'), + (0x64738232a9593097a8bef6f633ed94611b723aca, 'WorldPeaceNFTfolkgirls', 'WPNFT'), + (0x647633345a301ba6e07da29871069cde1250b639, 'Dope Heads NFT OfficiaI', 'DOP'), + (0x6483effd4d0f77d68a633bc952c35078930b4046, 'Mega Mutant Ape Wrapped Matic', 'MMA'), + (0x6486ea421453d2dafd11f1dfb4514f44de7dc8a0, 'Bid Birds Wealth Club', 'BBWC'), + (0x648ea0be9dc4f99c467268d5b384b251e1be77e7, 'EXIPDOMAIN', 'EXIPD'), + (0x6498fbd80cb7f5a4ffe560a30cb845cb5b182fce, 'HeHeDa', 'HeHeDa'), + (0x649aa6e6b6194250c077df4fb37c23ee6c098513, 'dQUICK MAI Vault', 'dQMVT'), + (0x649b3459c38600fc82595f61056e15c4c8d43082, 'San Diego, CA Gold Edition', 'SWEDC'), + (0x649d0f615b07895841ff8ca54743a401132f185d, 'HeistLife', 'HL'), + (0x649daea08fa0d9ee20151611600b2a5868f3ee04, 'Wonder Bear Club', 'WBC'), + (0x64a3ff79e11da65d39a422b217f627927cea5a52, 'Enter the Dragon', 'DCL-ENTRTHDRGN'), + (0x64b99cb534737635534e70303d8cac3e79a715d9, 'simis', 'sss'), + (0x64c573bdda3e2afea8d9eb0e6677a1b9b4772f14, 'Hemp to the Moon', 'HEMP'), + (0x64c730a81e60c40abf6ef0dbf28bfce797380ef2, 'Fallen Wings', 'DCL-FLLNWNGS'), + (0x64cf7484a3ba7047bd7094f190c3e85b94cde3d6, 'Crypto Gentlemans Club', 'CGC'), + (0x64d6694af64b33ad86169b19502527f96c058862, 'TixPix2', 'TPX2'), + (0x64d75a552ca55ab3daa6c8a798bef906760a4db9, 'StickBob', 'Bob'), + (0x64d7f86de7b1477cee6ca27d0424126e8a8f6ba5, 'black', 'erc20'), + (0x64e4e0541f6be4549284bd413cdd0c41c0da5267, 'FISH BOWL HEAD', 'DCL-FISHBOWLHEAD'), + (0x64e9b0a20b8b75ede2e5004de3590eb944add4c3, 'Moneyverse', 'MONEYVERSE'), + (0x64ec3bb054a3fcb181b39086924c9c95c0d6e37f, 'TrippyPants', 'DCL-TRPPYPNTS'), + (0x64ee4c6f2ccfabb9978ab0e9388a25580380ca3b, 'ccc_pixel_heroes_x', 'CPHX'), + (0x64f49246bb9f13d96cd38370c5e2e0b60255faef, 'Murgi', 'Murgi'), + (0x64f71294b875128ebeacc5611ee3aa1f326aabf3, 'BattlePass', 'BATTLE'), + (0x650049b70c8382d85c003bcf84e7812183fff85b, 'goat nation officiaI', 'gno'), + (0x6519080b23f9d6a0ac787dc33c80210bb453b3ca, 'ANGRYCOBRA', 'AC'), + (0x651d2fca68bc4a446ef764cbbaa3e771c5c61a26, 'Weird Catgirls', 'C'), + (0x651fa103e616bfca36523ab2c1895c40d1853bd7, 'Wonderzone X-mas Collection 2021', 'DCL-WNDRZNX-MSCLLCTN2021'), + (0x652af319305cf8dd9282f3a5e2a3e4341d45c528, 'Generation #11', 'G#'), + (0x653b07c58669bc335fc9cfe2f9afa68f7fe94fc2, 'SpazGang MiniWizards', 'MINIWIZARD'), + (0x65421baf9f8c7f6f8dbdb97bfd827fc7ef29f961, 'CoolTreasure', 'CAT'), + (0x655114beb7dfffa0bb910a9055b01edddc4801fc, 'Museum of Doge', 'MoDoge'), + (0x656474e96c29ad893d84b73c7307b363c74ef1e6, 'YHNFTLA1', 'YHNFTLA1'), + (0x6568e8e6cd2860a740ea98dc01cd6cbacf79ffa5, 'POSI', 'PSI'), + (0x656920c5e4dc44b9057a978e9e67ac72c7be66e3, '2022 Glasses NYE by Portion', 'DCL-2022GLSSSNYEBYPRTN'), + (0x65692d3a0287e08e563d0f77bb4f8269e72a968a, 'Espresso Box Club', 'EB'), + (0x656dadcc8dc234d7eb4c6279bad6c8e868122064, 'Vatom Marketplace - Shared', 'VATOM'), + (0x656fbd5b57e3781fd06efa79dee9d8f148f2bb55, 'AdRunner', 'Runner'), + (0x6572a80e3ff7c34cc5076b25b7224c6d365907e2, 'Dry Koala Legends', 'DKL'), + (0x6575bed051ec9ec3e9aca2ec19b6e1f040e67a7b, 'Bosozoku Boot''s', 'DCL-BSZKBT''S'), + (0x6575c221930fb451d697a5eac4dd924b26ce1cc1, 'THEOBUTTER', 'TTLB'), + (0x657fcf7fd8b3f5457bac4f1754d3756cd0da9511, 'Ferrari', 'FERRARI'), + (0x65863793c427587c82e20068cddbb641fe081a56, 'WeedPunksBanner', 'WPB'), + (0x65877655568e07bb1e024217382640935d1a77a1, 'BabyFatDino', 'BFD'), + (0x6588919ef08aaf176403406539d34fcce873a35b, 'MulletMaxiCollection', 'MMSCI'), + (0x6592eb5e8c4e56567e1a17a70973897bc94d6b53, 'Cartoon Hands Yacht Club', 'HAND'), + (0x6598cbbd8cc5e81e5ba69b0370782af67eebf4da, 'MIINTMELABS CALVET COLLECTION – 365Days-Week 4', 'MLCC-365D-W4'), + (0x659b190170872aede0614e83203d15f2dd7146a0, 'Collection ABM', 'DCL-CLLCTNABM'), + (0x65a5505c5ccb1f5615171fead83bb6941bfa7521, 'TacoXBeluga', 'TCBeluga'), + (0x65ab8292aef9af710acd43cef56619bd3fc64933, 'Support Ukraine', 'DCL-SPPRTUKRN'), + (0x65b1aeef4ebf544edfe2ea3ca1aeff03df06a5dd, 'Diana Clark Photos', 'DCP'), + (0x65b1ce926fd31c0db3a16bfe0960d2a87b0482f0, 'The GumBall Gang', 'TGBG'), + (0x65b571183d35cd53e1f25a9181667a5b4496bd00, 'Aheki', 'Aheki'), + (0x65c07987cb7e4f9ed498a12439a424ca99c82c78, 'BIONIC APES', 'BIONIC APES'), + (0x65c2a90a3a2192eaaacc797208c993ed410ff695, 'CCC - RED - DROP #1', 'DCL-CCC-RED-DROP#1'), + (0x65c457426b235cdaefa58303732cfe947ab0220b, 'AlienX by NFSpaceX', 'AlienX'), + (0x65c5161534658d3f26f52c6b05f7b6fd6a032f24, 'Just Me^^', 'JMP'), + (0x65c71ac787cf0a7d9850c295c6c6b611864f0583, 'STACKr', 'TS'), + (0x65ca9183a3caf388f1c93abb24d6f748421641ff, 'Generation #22 part 2', 'G#P2'), + (0x65cedb299fbe61e0ce4a2956b417432e4e9b6834, 'MGMNF15', 'MGMNF15'), + (0x65d34db7e91fd93167bc87a62c0efe8699ce77df, 'Savage Hearts', 'HRTS'), + (0x65d40fad88d1bdfc2cd9441c6b71de23f9578e8a, '猛追💦WEB3✨✨✨', 'MOI'), + (0x65dcfdd3a3679f9b5e75c4427075d35e24f4306b, 'mutatnt', 'MUTG'), + (0x65e0d273d092401e36f566c0d39773032b85e85e, 'Elon Punk Yacht Club', 'EPYC'), + (0x65e7dff17ccb2ed01506fb40e2e24615793ca3f5, 'Download my Heart in the Metaverse Album', 'C'), + (0x65ed61c4fc2d1102ed574a48e664b90b7a300ea8, 'Demon Wings from the Abyss', 'DCL-DMNWNGSFRMTHABYSS'), + (0x65efef84bfd7217608cfd6978f4dd4190d8e80e8, 'PIXLBirbs', 'PB'), + (0x65f01093c530052a4a4b8fa9d7c378b3a00947f6, 'TEDSSSRRCVOOOX', 'VOXSWER'), + (0x65f5a7ccd7020af1d18a8879b9320ad61d16f007, 'SCNFT2', 'SCNFT2'), + (0x65faeccd020de4a75e0ec4fa41920bc9a8ee8416, 'RECUR', 'RECUR'), + (0x65fe6d4778ea6656f508b31f28cb43d9691f073a, 'Anime Corps', 'ACN'), + (0x660074af5eb19d5480c5409b3c0247df84fc92c5, 'Loot', 'LOOT'), + (0x6602130b9bd31733224a5a2c3d0f6976e227302f, 'Animak Token', 'ANIM'), + (0x66082eeb72af6ec492e5648ef29a6b1e9f86114b, 'Shit Happens Apologize', 'SHA'), + (0x6609330d836cb64adf8fb54434e22a0323a11b4a, 'Genesis Curry Flow', 'DCL-GNSSCRRYFLW'), + (0x660dec2e3a19fb5534afe02b5c115dc4905bc9f9, 'KryptoTrees NFT', 'TREE'), + (0x66125902cc444313294e18a86b4c1a76394796c0, 'Bumper Car', 'DCL-BMPRCR'), + (0x6612ddc4b5ccbb23e9eb1bcc2d441ace5232035d, 'CryptoPinot', 'CP'), + (0x6617e09e261c6de2b08cd527710fc3c2c6db9db4, 'Denver, CO Silver Edition', 'SWEDC'), + (0x66194b1abcbfbedd83841775404b245c8f9e4183, 'CCC - Gray - Drop #1', 'DCL-CCC-GRY-DRP#1'), + (0x661ecfcc9483ce08772279f75b0e4b52bfff3d06, 'StreetCuts', 'STREETCUTS'), + (0x6626c9b89aff2f8a391ea3ead13a123cfe3923fd, 'HuDroidz', 'HuDroidz'), + (0x6628e8cc84db21a803c5e7306bd1300fd37621ca, 'SkinnyNecks', 'SN'), + (0x662fd02c7753b18b3a876b31389e9010f27d95a7, 'bdfbdfg', 'dfgdfg'), + (0x663d95bece2626bfa33ac945883b48714bf3dbd2, 'Luxe ShibaInu', 'LS'), + (0x663db669127d213839d7d1d51ba2c0126566f598, 'Dickulls', 'DKnft'), + (0x6644e538fd6454a5034c3ccb2ed16ed94c97f079, 'Bloktopia', 'XBLOK'), + (0x664551cbe7de4ff5263e83ec2a1b1adc547b1add, 'Angelic Collection', 'DCL-ANGLCCLLCTN'), + (0x664c2ebc792c1ced481f96c046845d7d1ee3a5f6, 'ElonMonst', 'EM'), + (0x664ced6bec7ed16eb686fda4c7944027682e2e8b, 'Mutant Serum Pixel Party', 'MSPP'), + (0x6652e01b23b3e6ec42f81ce2a8189a8e140b77d2, 'Creator Nft', 'CRE'), + (0x66605f8d1937a4474fbcbaa3c89cabf0ff30930b, 'NFTLatinoAmerica', 'NFTL'), + (0x66650d9e3f0cd467fbe41b75d1e30be7a95be0b9, 'Developers Punks Club', 'DPUNKSC'), + (0x66652b2a358bc2c8d460eb9fef94ee520da680f1, 'Badassdogs - Rottis', 'BATOTT'), + (0x666597d4f404326f32769dbcdecb02776df932e8, 'devildevileyes', 'ddey'), + (0x667e6c3c7400e17d609bd9b75393e1ecf9dd3a54, 'LIGO Official', '$Matic'), + (0x6682541209751553ea08f9c7d7eb0f257e9a0900, 'Uncle Mervyn', 'MARVYN'), + (0x66834336ed3f9b6191175e356810e4a5564b4e01, 'Lander Monkey NFTs', 'MLA'), + (0x668eead4eb04fc54bc58ea57017a8c47799bcd54, 'Ring Planetze', 'RPZE'), + (0x669dca45b679db41fd9751e8182b100d9e6cc353, '2MGMNFT', '2MGMNFT'), + (0x66bd200136fec2f835284a0e9fee91a17f294e00, 'Avocado Hodl', 'AH'), + (0x66cbee9798daa6da8dd00c40cfb7da4d8554bf56, 'DOCTORdripp Walkman', 'DCL-DOCTORDRPPWLKMN'), + (0x66cbf3d701f8c5887e806adbf5ba1268bba16189, 'The Roommates', 'TRS'), + (0x66cee22fbb35faf889ca98bc5d9e4c0f52f34b8f, 'te''resa_PIECEOFME', 'pom'), + (0x66dd4610330dda356bb284e226d1c1a531901d67, 'Sexy Apes Girl', 'SAG'), + (0x66e7bfba2ffce2dc20ae3a38c40e5b6cbd6668e4, 'Magic Wand', 'MGW'), + (0x66e8cf093271f13c4c8b59d3aea29fc5a6a8a49a, 'TinyDecks - Origins v2', 'TDOs'), + (0x66f40f7377cb03d74115b0c44b9a9434b877c58c, 'NFT Garden', 'NFTG'), + (0x66fa69188c52dc62f0fa79727740a451d0d7bb29, 'Meta Nanos Alpha Pass', 'ALPHAPASS'), + (0x66fd70bf0dfe293516fe26d474a4d66444b814da, 'DeadHeads Official Polygon', 'DEAD'), + (0x67057f9223d4f29e4d01a5aabd09580d44719d25, 'NSTAR', 'NSTAR'), + (0x670c82827c64fb40f9dea54f2db9e4873ea88d1f, 'pssssd inc', 'pssssd'), + (0x6710e0f18270be32f9590503e306997b3162b83e, 'Logo Pabrik Roti', 'LPR'), + (0x6716b35f12b16ecf6b3667dfd49a65060943b7fe, 'É gol', 'EGLUS'), + (0x672296bb17dd4bc49972dece7f8ba0165989018b, 'Personnage Gris', 'GRIS'), + (0x67234ceb991d3de906a470a9d858366565b2d900, 'QuickSwapOffsets', 'SPE-CC-GROUP'), + (0x672a39a95db4aa635c950ab595d1ce42b9d677c2, 'boundless:aliens', 'BOUNDLESS:ALIENS'), + (0x673164c4ed7fed9047ea89e65754fd90a83ff68e, 'Magic Antsss', 'magicantstestss'), + (0x6747ba70ca67a72059685ae66be362ff205439e9, 'The TrollVerse - Poly-Troll''s', 'TVPT'), + (0x674b8009a73d147359e2cd2bde99dcdc72507409, 'The Happy Aliens', 'THAS'), + (0x6751d366820d9022624cf0a543a734467b8a6a73, 'Teoria de la evolucion culinaria por Ferran Adria', 'EBFTEC'), + (0x675855efdfaba7a34f066cb44f6d611e4c28dab7, 'Lara Anto', '6184c72c10cbaa0c8b2eb928'), + (0x6769011583ea15db2d747c7a4dbe601d79dda013, 'CoolTurtles', 'CT'), + (0x6769308101b6dde89b0833172548a6d6f02a2a5b, 'RAFTCERT', 'RFTS'), + (0x677196f3912a138215d1e73edcd9c28e94817912, 'GEN-T29', 'GEN-T29'), + (0x677396eac084eda21647119aa6d16c677b71bc46, '#Ghost 1 ~ Halloween 2021', 'DCL-#GHST1~HLLWN2021'), + (0x677420b9987ed0a2ca493b89426e3beea67ed6e6, 'Frosty Snow Pants', 'DCL-FRSTYSNWPNTS'), + (0x6774f788f13980d6a7a522af6e1ab5623211dc55, 'Aterium Universe', 'Aterium'), + (0x67753c1e6f3cf6bbcab3d05584899d1099197355, 'Crypto Battery Family', 'CBF'), + (0x6776d88aab6d9e5345d8c4553599f64e8cfe8e1a, 'Skull Shamans Collection', 'SSC'), + (0x677c62c32df89e09ac24d88490dbe1716b33d1b7, 'LoungeLoversNFT OfficiaI', 'LOU'), + (0x678034e291dec035c0629a661f3444f7f869ba45, 'Got Legs?', 'SWEDC'), + (0x6786edb9c7a1ab1db25b6dab8d6108a2511c26fc, 'NFW Pixel', 'NFWP'), + (0x678b3b73da10115a8bb4e2d532b90f2609640df6, 'adidas Originals Bored Ape Yacht Club official', 'AIDDIDIDIs'), + (0x678c942a12d41ed8de1f0f52cbca743f49506fd1, '0xHeaddyBears', '0xHB'), + (0x678de1f94d8efbc5b33bdfad1d020e2dd0bf9e09, 'Mine1', 'c'), + (0x6791839d47147e9faf4ca683f7cb6cc35ac677a0, 'Ganval Collection', 'GANVAL'), + (0x679422bc8d4c16bd55a229a3c59d9f0523ed4b11, 'Ali Ural', 'AU'), + (0x679c1710f9f879a49af90f78c7c6c45579fff26c, 'Fishlegs “Fabulous”', 'SWEDC'), + (0x67a42c9a0eb5fa7c2556daf0ee0122ea3ba0da1a, 'ScareBears Official', 'SB'), + (0x67a69fdaa179cdb116c1c93b55e3e6c55ad75be2, 'Huntsville, AL Pop Art Edition', 'SWEDC'), + (0x67acbe39fb497e56e7ef1840f441ad6b7de090b7, 'BTC AF1s', 'DCL-BTCAF1S'), + (0x67ad4650b50bb4646e93faeccf6b3796e8780f18, 'BusinessBuilders Employees', 'BBE'), + (0x67b3a0b364a9cc5cd3ee80d7a3ac9dfb22da64f6, 'Love Birds Gang', 'LBG'), + (0x67b3b10d2bee8a84b26f4ce8e806423353bbb0c6, 'NFT Anime Avatars', 'NAA'), + (0x67b819876dfba4346c830caf07ac189c5796640b, 'guys', 'gy'), + (0x67c48796919f28b7596305309eed19d7e4bc09ff, 'Baby Roach', 'DCL-BBYRCH'), + (0x67c9e8cab4f10ee3096e36064f6be84733247b3d, 'LittleBigYAITSO', 'Yaitso'), + (0x67d23175bae3767bfc04f3b71757225384a48322, 'Fractal Voyage Assets', 'DCL-FRCTLVYGASSTS'), + (0x67da13df66f8c6b6494b2e9cff7d6d3c6fe5d0f0, 'Pixel Orcas', 'PIXOR'), + (0x67e17f36f139c2d1049bc44a18b42f7a3bd73cdd, 'Dickulls', 'DKnft'), + (0x67e7621d649b645f1b0283ab6e7e8bd6cd7ce9d4, 'Crypto Apes Collection', 'APES'), + (0x67e999e1cefcbf39003e5cedaf57078653dc275a, 'Small Bros OfficiaI', 'SMA'), + (0x67e9f7f5a397a803ee72a7dc8c2326de1f0c55ac, 'AzokiAnimes', 'AZOKI'), + (0x67eae47e7b8966b0d3812726c2ed7a5ebec6c7b0, 'Sparkles Hoodies', 'DCL-SPRKLSHDS'), + (0x67f4732266c7300cca593c814d46bee72e40659f, 'ZED Horse', 'ZED'), + (0x67f7f7b2c82a430b3f7d19093e23ec56950425b7, 'PolkaFantasy - Game NFT', 'PF_GAME_NFT'), + (0x67f8fe3de867f17fe293864d4710cf7a2bc50d6b, 'Punked Pups Game', 'PPGame'), + (0x67f9c538c93094dd0db1bbf9a4b9c49282e25385, 'Little Cute Mold', 'LCM'), + (0x67fe66d9f2fc7cac4799427a16c34b814a79af51, 'InvazionPass', 'IP'), + (0x68021729e6dc78a7cb28307ffc41516cd0edf016, 'MUTANT KOMODO YC', 'MK.YC'), + (0x6802ea75b27562b2bbcb3cc28b5be03f99a16ca6, 'Noodles', 'Noods'), + (0x6809b3cab428245722e612c357d5d6e2b147a88b, 'ARTS', 'ART'), + (0x681884233f7eccc842831e7747b9eb397386ef71, 'yoloBeta', 'YBETA'), + (0x681ff812276c708ee4e068a96db617e4cc779ad1, 'Garbage Friends Official', 'Garbage'), + (0x6820034877b90f7355af9e8b49188c94116c220a, 'Trash Panda Gang', 'TPG'), + (0x68269a7ea82f5bfbf412e1119d5b7c2ba8e1d425, 'Attack On Titan animated GIFs', 'AOT'), + (0x682ecaa74c31bf98e8ffca60b171f109b814fa3f, 'from the letters of happiness', 'opera'), + (0x6830213283b2771b81f093b70ef4a6609b3169c7, 'Mr. W & Mr. J Wizard Collection', 'DCL-MR.W&MR.JWZRDCLLCTN'), + (0x683ea7aa0761df7d9bf760d2bc3a61844a805290, 'Puppies Punks', 'PP'), + (0x684cd10b02cdade20f1858c6315052d66d1eafc2, 'Cryptovoxels Names', 'NAME'), + (0x684d7ef0a839961361653f3fdb6554f8b1692a85, 'Fancy Drink Club', 'FDC'), + (0x68535414a5c0706249a901d97b026d21b54e7a0e, 'Gorilla Marine Squad Official', 'GMS'), + (0x685b4b44b824f002ae95f7d4d6bf806554d11cfe, 'DontBeADrag', 'DBAD'), + (0x685cb3386ff291ddba4d1b99721db604b7c4ca86, 'No Rug Pull NFTs - Crazy Faces', 'NRPNCF'), + (0x685f62773ee0498ed860aeaca6a43fc8a772311d, 'Secret Weasels', 'SW'), + (0x6863a7aacd14242544950f14d75ef4e244844041, 'NFT Club VIP', 'NFT Club VIP'), + (0x6864caa38390340ae83ec0e4c67308733393ad90, 'Hiroto Kai Wooden Katana', 'DCL-HRTKWDNKTN'), + (0x686d1e7b64ebff68b0657b41736a432e7ec6227f, 'Elite Kitsch House', 'EKH'), + (0x686e1a9164864ffefce1ee6ab733248bf5e5e512, 'Digital Kush', 'DKC'), + (0x687f79058da0689d7715f9bb6a95f4d9190168cf, 'Open NFTs', 'NFT'), + (0x6881a5c420cd0994aabf1fe29f316fe0a8451a4c, 'OnTheBeach', 'OTB'), + (0x68827197e82f9511212501c6d97592c103f3c614, 'CHELO', 'MATIC'), + (0x6884e7657d203ccb1f1f4c4bca59cb94a538955b, 'BusinessBuilders MultiEmployees', 'BBME'), + (0x6885a07bc46af458b0388a2c38268af730900a64, 'small bros', 'SB'), + (0x6885f4db3b69e895d317fb0e439770b2b636a89e, 'Knicks 75th Anniversary Banner', 'SWEDC'), + (0x688d311b30d6121fc7354e7b5d8f5c83bb4fe92a, 'Monzter Minions Genesis', 'MMOG'), + (0x6899df2a9ec9815143378e166081bf73ba7d645a, 'DAOnative', 'test'), + (0x689d5b78d83a4e554ba397b1e58ddb44a3d59d2f, 'Joker Yacht Club', 'JOKERYC'), + (0x68a288c2a96e2cd5c45769e02f2bbc2e90bae39b, 'CryptoBlades shield', 'CBS'), + (0x68a70e9d46f1bbb9e492579f29e956ac1d32c558, 'Three Stranded Jackets', 'TSJ'), + (0x68b3ab366642956ca5d0075f6a4f7659a04ced69, 'EX ROYALTY - White Leather Hat', 'DCL-EXROYALTY-WHTLTHRHT'), + (0x68b53ff23d0ba3c09717442ab9784581b3fd4e93, 'Dragobete- Your Love Story', 'DYILS'), + (0x68bc06704793b1bdc8a1d538e2bd70a84f7056b4, 'Bored Blue Shirt Aliens Club', 'BBSAC'), + (0x68bdfd72410e4dd39438057e40470b2c0e867003, 'DsgMysteryBox', 'DsgBox'), + (0x68c46af1f95cb64d1e5137781019f51a8608f15b, 'Ninja Squad Polygon', 'NINJA'), + (0x68d060c2985f5287f61d2fc835a76b574abd2ecf, 'Pretty Cat NFT', 'PRETTY'), + (0x68d953c22c43b03d2f33f7c33a2e2fea45d90d26, 'HELP''s K.O! Collection', 'DCL-HELP''SK.O!CLLCTN'), + (0x68ddb415d672850217469cbaeb058bc1ef8d317a, 'Brewsters 3.O', 'BBBB'), + (0x68e57a66662bfe45b29a48adbf53b9689f291ef0, 'SOF SOF', 'SOF'), + (0x68e6631ce37f5195fd5c48c2bf5f48e7f74fea51, 'AlienApePixelParty', 'AAPP'), + (0x68e8117161c3a5cd875be32d5d23cf1bb4b88227, 'Myrtle Beach, SC Pop Art Edition', 'SWEDC'), + (0x68ea25e5d8edf7059093b9ca39df4850ad1422ec, 'PolkaFantasy - Fantasy Building', 'PF_BUILDING'), + (0x68f41b3e5ad838fe91ef0b790b6ee6130be82af1, 'Tropical Fruit Yacht Club', 'TFYCS'), + (0x68f8028210d23fe9e557fd8ed0204bd2c464eea5, 'Itsme Avatars', 'ITSME'), + (0x68f9c3dd0366b18f5fd20f76e754cedea562bcc3, 'Dragon -Cherry Blossoms-', 'DCL-DRGN-CHRRYBLSSMS-'), + (0x68fc2224b0ddf261a77d4f9b1a3b1c9ec79d94d2, 'BB Blobs', 'BBB'), + (0x68fc707c54971e138aae52746f628fda901f3c41, 'Skulls', 'Skull'), + (0x691eaf5fa8d46194f594c14de96a3b32263f9762, 'RareType', 'RRTP'), + (0x6922afd75450e4f745c8cfc2bcd7017facd92f4c, 'XETA S&M Hats', 'DCL-XETAS&MHTS'), + (0x69262b2c9836aa71671dffa85cf20f57afd1b5fa, 'Bear Doodles', 'BEDOO'), + (0x693572a79824db0ac9b6f705bd3c5eb5db53c243, 'MrAndersonMax', 'MAM'), + (0x6936235017416a04fe17f2ff2347812f79aca0b1, 'PoganVerse Characters', 'PVC'), + (0x69369c2577f45881ac5579d2cb6d753df00d963d, 'FaithConnexion x MetaverseFW', 'DCL-FTHCNNXNXMTVRSFW'), + (0x6937adbf37132e941aa598a8f956a237b9f4d277, 'PolyDoge Genesis Collection', 'PDGenesis'), + (0x6937e21ac77f9e23f737f272aa916965f84b9a4d, 'PolyNFT1', 'PFNT1LS'), + (0x694227dd83f1de8182c61290e2956f473deee1a3, 'CF ART', 'CFA'), + (0x69436aa8f96248f1c64d99c33e2e7a602db553be, 'BabyBiker', 'BB'), + (0x6943926a7864984f13488e88eed3fd6eaf2edd06, 'DOTTEDPUNKS', 'DP'), + (0x6946591f97b1f670b9b0dcb1018b8bb66c69a632, 'Atrovenado t-shirt DecentralBr', 'DCL-ATRVNDT-SHRTDCNTRLBR'), + (0x69469244ef146b0379c5d68d0d804dcc8b71d720, 'Prime Mates Boards Club', 'PMBC'), + (0x694f0198d6ce9558187e07ac36700cd048e6179b, 'Meta Investor', 'MIC'), + (0x6952b67267bff8ac8854b36888b483e24f3efb42, 'Bored Strippers', 'BS'), + (0x6953cd4e62ee469293df92b350a83177b722e77d, 'GHIDORAH GODZ', 'GODZ'), + (0x695baea4f898567493693a6d91cab339df93ccce, 'Superheroes', 'DCL-SPRHRS'), + (0x6970bd114281cec7e8ec804316d4425f8c45248a, 'meow', 'meow'), + (0x6971f64afe147da39295afb6c2109a749db7224d, 'Project Meta Planets', 'PMP'), + (0x69720645fc799d4a46859c5d21fd2827edca242e, 'Shroom Squad NFTs', 'SSNFTs'), + (0x6973f9f0b096e39f41713cd070e712c6835e5d9d, 'Crazy Peach', 'Crazy Peach'), + (0x6977a6eeb1addff005271564fbd88cedd8cce8bf, 'Ai.Morpheus', 'MORPH'), + (0x6979a5e3364b639968e65cc3d4aff6acb8771509, 'Mutant Guys', 'GUYS'), + (0x69890c1c7ff10c7153ce3de25596a99e5552a33e, 'Hemeta NFT', 'HEMETA'), + (0x698c16c8240d8af548c57d19837b41e799ad8409, 'Elite Squad', 'ES'), + (0x698c47ee122abcea31c251370c70e1feaf5545f2, '3Dium x Charles & Keith', 'DCL-3DMXCHRLS&KTH'), + (0x698ff465578812d03626296120d2f7acd25ef69f, 'Inferno Sneakers', 'DCL-INFRNSNKRS'), + (0x69936dc8c22d803010aa1f1e027cea9bedd1c6eb, 'Chiptos', 'Chiptos'), + (0x699b7896d8869fcab00919dd59879057b175982c, 'Pixel', 'PIX'), + (0x699ec58a71d9124306031819a5f3801924aef759, 'dogrockproboss', 'DRpb'), + (0x69a2299767ae27ff9a34010c555ce65886569b63, 'Washington, DC Silver Edition', 'SWEDC'), + (0x69a35f30fe5d00576ea50bbb767d39b736fe78fc, 'Trump_contract', 'TC'), + (0x69a74afe261040334ab2299007d4998e5c67c4a1, 'Anonymous Fiish', 'AF'), + (0x69abe24632c5d360c1af51d5e91944f132d00a6d, 'TOTOS Discord Server Invite', 'TOTOSDISCORD'), + (0x69afb3530835fd3ef7a2e54ecc0d3a361e597790, 'Grandpa Apes Polygon', 'GAP'), + (0x69b337be8e4e5caa08e5b511f1fe758db473309e, 'PociverseNFT', 'PV'), + (0x69b558806cbc2266896c3a2363adb21d204ab582, 'Doodle Box', 'DOODLEBOX'), + (0x69b77fbd66141bb47c3bee4e0d489828a935f09b, 'Indigo Squares', 'IS'), + (0x69c00b741c294f29d4cfc96f5d4cd7f10f8567a5, 'Crypto Doggy Punks', 'CDP'), + (0x69c3b060257621fd0309b5add0722fb4bada1bb7, 'MuffinsNFT', 'MFFN'), + (0x69c860f5809a267980e7a8175c3ab4b365524212, 'Cheeky Shiba', 'CHSHB'), + (0x69cc6b96b9e5501c9cce77080031cad6d6c98ff3, 'CyberEyes', 'CE'), + (0x69d33c948215584ea906952d4b37f24c6458c4a1, 'KonjoEye', 'KEYE'), + (0x69da8612bea792e86ac5e58462621d88f18f40dd, 'sweet', '11'), + (0x69dd215a29b66b7ea910bfafd526d91ab31bf97d, 'AI collection arts', 'C'), + (0x69e462cf595165321fcb8b16275e152b8ee1f6e5, 'FasaMalikVann', 'FASAMALIKVANN'), + (0x69e8cac56d01f535faddaf67e8d72e96c4cc1c70, 'Providence, RI Silver Edition', 'SWEDC'), + (0x69e8f5932a82ba77aa6447f0a6f6027c34338d58, 'Crypto Ninja Chaos Generative vol.1', 'CNCGv1'), + (0x69f113102b0da48358868568c6b7c9b43c45a5ff, 'RunawayFoxesClub', 'RFC'), + (0x69f4a6331539583c401bbc4a9e2d2bc94952cbc1, 'Artsy Ape Club', 'AAC'), + (0x69f4c060bb4772b637f7cf1723f60e266b06751a, 'Shroom Shoes', 'DCL-SHRMSHS'), + (0x69f55f0e8b2d60f4ef79ef28ab930b1983443a7a, 'Lazy Sloths Social Club', 'LSSC'), + (0x69f75bc12439c0d8dc54ef24baa0406421a0f6a5, 'Royal Hearts', 'DCL-RYLHRTS'), + (0x69fd8e8718256030e9306180577abd05b969ec08, 'Hunk Ape', 'HAYC'), + (0x6a02b7dd0a354288dba06bf332337a594d2489d8, 'GastroArt', 'GTK'), + (0x6a04ccc1dd231f4d862e68aef5066e85b1805613, 'Bored Groots Club', 'BGC'), + (0x6a0976e0bebbb2894f367b3dd29aa611ba9d8976, 'CryptoSpunks', 'SPUNKS'), + (0x6a0b9d24eb0ca2556ad12729318e5353484f6da1, 'MiniNaut', 'NAUT'), + (0x6a14441bb00c899f415ecf615e850bf40567f603, 'aquarium', '0x00193b33D943528fBde4fA6aCffC299D'), + (0x6a188e5d6cee5a692d9745ef9c565b05dc2a679f, 'yesmybooks', 'YMKS'), + (0x6a1f6ab34e94c486b58e574883e386f85ce62b9f, 'PIECES', 'EVA'), + (0x6a284c515fdb41ccc860b9926601348132c2ab2a, 'SPANK POP SHOTS', 'POP'), + (0x6a2c245796e513c2c0dcaa71a9056831cd960ceb, 'Bird Beach', 'BB'), + (0x6a349b1b44410584d0f96be736c485548857dbc9, 'Gravis Finance Reactors Collection', 'GRVSREACTORS'), + (0x6a36a59c977434aa12fea1dae10d93dfdb94ab5c, 'Generation #27', 'G#'), + (0x6a370c94d451bdbcc6002789ddf708272b7c8293, 'CryptoElephantDick', 'CryptoElephantDick'), + (0x6a379e774c575b43b498c1634e5b9b11d0279c97, 'Hello World by 11dAnomaly', '11d'), + (0x6a470624a9df171ca1b1cb4d85a3b58d292460b7, 'Burds of The Colour Dimension', 'BOTCD'), + (0x6a515e9ea4f22a12761358bbff7e5f927177ee1e, 'Legends of Asians', 'Legends'), + (0x6a586aa46daa20c1c7d44ab6b23dbd4b966fe495, 'BKBEE', 'BKB'), + (0x6a60675c1c03e9bbb8334a7e93fc6ccaaa96e906, 'D3Vinc1 Art', 'DA'), + (0x6a621054cb643f374ed57a725d977491de74fc6b, 'Account', 'WonderAccount'), + (0x6a64ffdefa171437f07b46682622b24f8969400e, 'GDN Membership NFT', 'GDNM'), + (0x6a69627417654e9951731113dbe68395a15dbe72, 'Cryptoboxers Official', 'CRYPTBOXRS'), + (0x6a6a7b153dc33a98c7d5430b40dcf66cb6badc21, 'GET PalletFactory Contract', 'invPallet'), + (0x6a6ebffc9f94fd0628475c7a845422254e413de9, 'Grumblins', 'GRM'), + (0x6a788b023adb8ae226d53cbcd2ae009c2ae22c31, 'trans', '11'), + (0x6a7ab192e44b4510eab19dd0daffe0e193aad956, 'Metaverse', 'METT'), + (0x6a7bd4af00017562d28b0d880a7bc49053744f2b, 'BestPunk', 'bpk'), + (0x6a82aa243b71a8fc3a677e895eeb125443718622, 'lucky bunniesV2', 'LB'), + (0x6a879ee1693505aa5ec612886b7524de203370fb, 'Rhino Protection Mission', 'Rhino PM'), + (0x6a8c327aa1ab8de2090d0f81f90ac01a1c4aa7f6, 'CoolestAlien Vol.3', 'CTAN'), + (0x6a911b3f7c16b96be96916093c4791917093dbb8, 'Secret Coin', 'SECC'), + (0x6a969447f77122456c898c7a90705199e367beec, 'Bad Santa NFT', 'SANTA'), + (0x6a96dd1fbd65e4db034e51862e4e63a14e1283cb, 'MetaPixel', 'MPH'), + (0x6a9ab6e747699fb80e53b21b3bab24ee840fd1ff, 'NonFungibleTimeCollection', 'NFTIME'), + (0x6a9dc2661ec535baff7dd00ec4a79514d5e9755e, 'HouseOfHawks', 'HoH'), + (0x6a9e43fb43113b272fcd4ca1882df663ea818959, 'Ugly Birdz', 'UBNFT'), + (0x6aa6f1473f0b0d93ea66fac155ecbb2828249524, 'Cyber Rabbit', 'DCL-CYBRRBBT'), + (0x6aa8586b21a7337575895875bdc56266dc981a05, 'Show Me CN', 'Show Me CN'), + (0x6aac3413d5d01416bdd3de5b24e7d139bd424ec2, 'Decentraland Fashion', 'DCL-DCNTRLNDFSHN'), + (0x6ab4a8f903b2f755e4c810f642b5e79a7382bf66, 'doodlebirds', 'DB'), + (0x6ab548da85c81843f7356bd22a1f1de127c75a85, 'Tickets.sol Ticketeer 1', 'getNFT Ticketeer 1'), + (0x6abc4654a75edde9f3c0e6e6f6599ecfe57d5145, 'Tronno', 'TOR'), + (0x6ac46f08f0b7793cb3acae1886136d1fbbc1cb35, 'SpaceFullPeace', 'SFP'), + (0x6acbb3e2730bc74c7e1626075d2a951179e2dbf9, 'God Anubis Yacht Club', 'YCDA'), + (0x6ad041e268d787ce7ba713c9b934e166b45a237b, 'Classic Maasai Morans', 'MM'), + (0x6ad07b4f82085ab0d56f93172bdd2acb4158f94d, 'Project Bottle', 'PB'), + (0x6ad67e4a617d944830b195c2d397970a7a60d8d7, 'NFT Colle', 'NFTb'), + (0x6ae43f0f31b2585a5a84c13e33355a204f5d7b46, 'Go!Bots by HealthHero', 'Go!Bots'), + (0x6ae57253191fa38d6079689f7c0b77dbff7802d6, 'Fanszoid''s Launch Event', 'DCL-FNSZD''SLNCHEVNT'), + (0x6ae6a97ac5d3242808861a6820f5299465250d34, 'Phoenix, AZ Silver Edition', 'SWEDC'), + (0x6af1d9376a7060488558cfb443939ed67bb9b48d, 'miMATIC Vault', 'MMTV'), + (0x6aff9dbbd80f5ab9d77705544c517533b51e23e6, 'Disco-Llection', 'DCL-DSC-LLCTN'), + (0x6b01fef520818a439d281cf7b03ee2e1e0a32c4a, 'WeirdosSpecials', 'WS'), + (0x6b043307071171116e8efcbd66874e8549f15001, 'STEPNJPNPreEventFinisher', 'SJPEF'), + (0x6b057b31af354bc5ac02219da2f0115255e676c8, 'YSNFT1', 'YSNFT1'), + (0x6b06a62f8c8f3f51dcef25c98a13e02dc1816cdb, 'Smart Glasses Detector', 'DCL-SMRTGLSSSDTCTR'), + (0x6b08ec4f8d3e550d7a34ae349b4cf1128a83b48a, 'Ring Toss', 'SWEDC'), + (0x6b13db72888a54ad37c878b49e9b05a1c5ce6728, 'Terminators', 'C'), + (0x6b1732d6d506f6ab8dcf72adf13bf3e52716416a, 'Bettyverse Zookeepers', 'BVZK'), + (0x6b1b639af7b684c0743a2444a4f370babb8608d9, 'M5NFT5', 'M5NFT5'), + (0x6b1c3fa45c1fddacf42b23c3d9111863d35f163a, 'Delivery Apes Club', 'DAC'), + (0x6b23ac18e5e939b869fcbf96667f0f40bb76dadc, 'phoodlebears', 'phoodlebears'), + (0x6b2de6bf30806e168d125912e372c2e2869ac853, 'Groove With Jamie32bsh', 'GWJ'), + (0x6b2e5befdbb1d85104618ea21301a5dd8e5a74a6, 'SimpleFi (badass Lisbeth)', 'LISBETH'), + (0x6b3667ca1a8354a2e20f34fa9c4bfb226e9a0524, '21G', '21G'), + (0x6b39e751fe9ab5ebeda55239fe392711852400aa, 'Afrimen', 'C'), + (0x6b3b619c4cdf31846347f35a9068c45ea9b6bf1d, 'BDNFT2', 'BDNFT2'), + (0x6b40484589ca3d202f833c037653bc6245d8e17c, 'ENFTAD', 'ENF'), + (0x6b4c14b83d1343c2db2b6b95d5f65a146e39a1c6, 'Mythology Apes Club V2', 'MACv2'), + (0x6b5d888fc073bfd7a00b89f903a572620366eed8, 'Apes Go To Mars', 'AGTM'), + (0x6b60c93c937da0d16dc1c6caff449ca13afe860b, 'Marvelous Outlaws', 'MOM'), + (0x6b657e07afe4de20499cc3152c91468cb8c335e0, 'Osushisan_Ninjart_Generative', 'ONG'), + (0x6b6cc0e8e2a0509139ad9d9c5c3421e06ac81893, 'Trail', 'TBC'), + (0x6b6d144ad5d967bf3f543c6504222384a1d8a7f5, 'IconicEggClub', 'IEC'), + (0x6b7050a672082d0ebcada70b2d25005bddd84d47, 'Orginal NFT', 'ON'), + (0x6b71a81a3a310829a69597020e33964ce1c1e0f6, 'Statement Owls Club', 'SOC'), + (0x6b743480f2431b1f9e30ebf286fe4ef331b9293f, 'Meta Pet Two', 'DCL-MTPTTW'), + (0x6b781e674c6c16716f103e65e3adc8bad2debeb5, 'xxxx222', 'xxx2'), + (0x6b7a7a918ec980de756774e507da84cdd45a4b7e, 'Ensin Hub', 'ENSHB'), + (0x6b7cf37f948d975b71fa23f69de84e02dfbc88d3, 'V1_5Matic_Find Silver and Gold Bear', 'V1FSGB5'), + (0x6b8d9e42043baf84363a0d5e8ca2930fced45be5, 'IS PUTIN DEAD YET?', 'PTN'), + (0x6b9556b96a4b36542e277e9d860535eb010b8672, 'Budheads', 'BDH'), + (0x6ba096e923f5aa43fb578756c846d8fa5d8150b1, 'WowDalmatian Lucky Bones', 'WLB'), + (0x6ba2b2f95a95e5a5e9a81b8d43025d97aaf40174, 'Nashville, TN Silver Edition', 'SWEDC'), + (0x6bab62a185980f96bbf83b0b80013962c3b2772d, 'Priority Pass Birdez Island', 'BIRDEZPASS'), + (0x6bac3d62ef5d886b20ef4d3e137d90de23342bbd, 'Panther Pass', 'PP'), + (0x6bb56c95dc2d2b3da94b0c43dc6703e757d61338, 'Artefacts by Ethlas', 'Artefacts'), + (0x6bb58a5154b5ff60d77f72fe30ddd2a98fd78ab6, 'Happy Tom', 'HPYTOM'), + (0x6bbb0c6b059688ef11ecd7ec2aafe01e899d4364, 'NonVisiblePunks', 'NVP'), + (0x6bbf732b5d9d364116a10b248b3e09b9ce580c54, 'Proved', 'PROVED'), + (0x6bc1949728c63e74ab06d641796ec875fd1fc7c0, 'ANime', 'ANC'), + (0x6bc9abfc6701d8d171e14c015548d76f3c371091, 'Oklahoma City, OK Silver Edition', 'SWEDC'), + (0x6bd43ed4e4b70b7818be32ad6c6b96e965e630f8, 'SHAZU', 'SHAZU'), + (0x6be760bca3f59a425681fe459548d58eadd71610, 'Wonder World of poop', 'WWP'), + (0x6be9e4e6bfb4cd7955e4cbb6863d526bcfefcc2b, 'Tough Teddez V1', 'TTV1'), + (0x6bebe79b09402d7fc0bcc17046755e93628ce8dc, 'Brokoli BROs', 'BRO'), + (0x6bf0a0604b2290fb438d73b2b7f086379de0c276, 'Sneaker Heads', 'SNEAKER HEADS'), + (0x6bf711ecbedd09103aca03d134a5649672e2003d, 'CBirdz.xyz', 'CBZ'), + (0x6bf7b8b3e9c32e7e5d45458ff20ea3daba91238d, 'WeirdoPlus', 'WP'), + (0x6c0eb99a377c6f99703dbbf12b1fe184c56d3c21, 'CRYTOMOO', 'M'), + (0x6c1457f1e87f6d9d1bef41e8aa69848541551ee5, 'Caked Baby Apes', 'CBA'), + (0x6c15030a0055d7350c89ebbd460eb4f145462fbd, 'Clones Never Die V2', 'CNDV2'), + (0x6c155dee34e818b870c0dfbc4cca58f21acdfba5, 'Bang Toto', 'BGO'), + (0x6c2ddef4f7f5738cb67e5bd2a5ea372f9723a5c6, '8 Bit Pickle', 'RPickle'), + (0x6c2fc41a2a343dec80a5fe5a6b48d43bc5f35c12, 'CryptoPunks Art', 'CA'), + (0x6c2ffb3dcd36b52321db5f3dca19f2b8d6cf92d9, 'É gol', 'EGLFR'), + (0x6c3a5fc642aaee7ff3ac9f031523acd717e5a0ad, 'NFTBULL', 'MFBULL'), + (0x6c3ca91dbac390d60d4267fdcf48576f6c051dbe, 'AvatarNetwork', 'DCL-AVTRNTWRK'), + (0x6c3e6d044393f5690300a943e14cfffc90a8623a, 'We Are All Boxhead', 'DCL-WARALLBXHD'), + (0x6c4c29232c7a9316a3a6fdc126849bb70db69cb1, 'Meta kicks V2', 'DCL-MTKCKSV2'), + (0x6c5786822c67b22b2e2b1a2b577016d3c625d923, 'Weirdoughs', 'W'), + (0x6c6314f865d1e0cf6816fb449578a009ebbaccb9, 'Bengaluru Yoddhas', 'RAGEBANG'), + (0x6c6ff56854b4086d6e936503b36569413f9de73c, '[DEVELOPMENT] To Kr 940995', '[DEVELOPMENT] To Kr 656394'), + (0x6c7040848b3fa2e88a2b8f8dbfd192c8e679d5b3, '1990s Legend: Jim Courier', 'SWEDC'), + (0x6c739d024ccd29deb4d63472d5bab72a1f0157b1, '666 Panda Club', 'PNC'), + (0x6c758f93b71d8bcf74535f0d85d36573a0a28e71, 'Punk Immerse', 'PI'), + (0x6c783e86e966563cad036d07b34fbe6d35405999, 'Spaces Kids', 'Spaces'), + (0x6c7a23d391c7403a20cb458877a05b9ae6d639e3, 'Pop-O-Lantern 2021', 'SWEDC'), + (0x6c7dc662606a17e8f17677ab4f1d84cb6da9a613, 'Cyborg One', 'DCL-CYBRGON'), + (0x6c9b5c2854f72a870ed9c7e28878f376b321e2ad, 'Feet Marika', 'DCL-FTMRK'), + (0x6ca5d4bfb80f13cdcbba13505f04c1dc6fff68c4, 'Wajan Serbaguna', 'WS'), + (0x6cb497ab37edfda45d89bdd42a7afaa96f8634da, 'The Kimoji', 'KOJI'), + (0x6cc419f307d2bdb787dfb7633ec792002a72a4c1, 'doggydaycare hats', 'DCL-DGGYDYCRHTS'), + (0x6cc8e5d506c740c9a16ee741dea48dbc095cbd11, 'Gaming Ape Club Genesis', 'GACG'), + (0x6ce35fdbcd3c0c2d25694467161640d558c38d5e, 'Cryxel_Dragons', 'C'), + (0x6cea1de750e0f4b37540e678b58ec389bcb3aafe, 'Non-Fungible Talks', 'KRWD'), + (0x6cf22bc965a31634b68a4a5b09a31d1577615519, 'kenny', 'ken'), + (0x6d0471b04988baf6b50b2cdcfe6929636a68fe86, 'ETHDenver-Envelope', 'ETHDenver pigeon envelope contract'), + (0x6d0678e987e71d6bc864ed990a0ba4974d9c4577, 'MutantApeYachtClub', 'MAYC'), + (0x6d0a3f08a6f14145cbcb3a48e18fe8f689df73ad, 'Space Goblins', 'SCG'), + (0x6d0acce456018340d5f1cbbb954631945f0bff5d, 'CityRoots', 'Vault'), + (0x6d0e78fd737f5a494216ed903ab0032bf30199da, 'The Moods Of Phantom', 'TMP'), + (0x6d0f0b552bbc0836db8f0627832a8399c021460e, 'Syracuse, NY Pop Art Edition', 'SWEDC'), + (0x6d0f0db99cd7090ea9ef16d1cec8c489e1d415a9, 'Floki NFT', 'FLK'), + (0x6d149afdd4397d7cf5ad9a93d23f739e9034ea7f, 'DEADPXLZ Galleries', 'DEADPXLZG'), + (0x6d1ddb2ef78cd025ba4a23119fe31157f6b2a54f, 'Timeswap Collateralized Debt - USD Coin (PoS) - Wrapped Matic - 1647615600', 'TS-CDT-USDC-WMATIC-1647615600'), + (0x6d1e1fafc239885866f08198a4ab466d4f21df45, 'uehs lightning bunni pups', 'UEHS BP'), + (0x6d1f8d0c6501ec2663be50fdc57d796f51ef35aa, 'RUDE KIDZ Metaverse Wearable', 'DCL-RUDEKIDZMTVRSWRBL'), + (0x6d2707ff45b128b25ddb982f3a037e881d090141, 'Hero Ape Gang', 'HAG'), + (0x6d2723cb02c558cf67473dc959ac08737b6129a9, 'THE ROTY BROI', 'TBR'), + (0x6d2a4d72dfddd2e5f7cfa6ea154ebd0627b90fd1, 'G Riff Raff', 'C'), + (0x6d30fc0c5e888ac991a170230e944996df2f42b4, 'Membership collection', '$THC'), + (0x6d3584ef37c43374151f5aa7928f7201914ea811, 'Creatures', 'CRT'), + (0x6d358d40637fd687c4454c0692ed247f695eaf70, 'Apes 2 Punks', 'A2P'), + (0x6d361f889d0db0ed7dd9080c70602e8492f351ed, 'Tulsa, OK Silver Edition', 'SWEDC'), + (0x6d3ccbe6ce6feab26d1cda324830b9e67a9bf7c8, 'Fish Heads', 'DCL-FSHHDS'), + (0x6d49472f7311f8a0488b305ad37ea5ea344a2766, 'Samurai Saga', 'SSAGA'), + (0x6d4d0b9eacd6197b31bec250c0ad6cec98f8b83f, 'PODE', 'PODE'), + (0x6d4fd89bcdf06cdb3e2a86dd8e8c2fdb15a62067, 'BlockBoyNFT', 'BB'), + (0x6d535ae74911010820377a698a09e96e54a75353, 'GorillaPimpSquadV1', 'PIMP'), + (0x6d58d54bb456dc25f03cf1c39c7518eafa5700b8, 'Cricket Stars', 'TGG'), + (0x6d5a0af449274072d3aad242b2bf0022ee86122e, 'digital Eyes', 'DMC'), + (0x6d5b7ee89d9e9656449711819d22234ba9c6a927, 'Dragons Of Midgard', 'Dragons'), + (0x6d6b8548c1eba571c0b374c61a9931f796cc7bf6, 'Poly Punkz', 'Punkz'), + (0x6d795c37817f222dfef8b81f34f09772314ced76, 'Kazi', 'KZSNAG'), + (0x6d7b87a608660989da26332db880af78df00a532, 'Amazing Luchadores', 'ALDM'), + (0x6d7d2900ddd867e2eabcd6f881708da99897664d, 'Cyber Cosmos World', 'Cyber'), + (0x6d7e4ea657a840023e55d8d3aa8429543cd07bb5, 'putinIsABaby', 'PIAB'), + (0x6d8a4aa6ddcfa4514908cf56d2a0c7de8f24b038, 'ANYDINGS Ambassadors', 'ADA'), + (0x6d940cfbe6c8491c53ab8428be1b628183ebfa59, '和', 'HE2'), + (0x6d9895b080b4434668c3157bcfd22ed3f9037c9e, 'Lounge Lovers', 'LoungeLov'), + (0x6d99332c611d251a17e4ecbf6f1c624a7549ed89, '0xF18FC10053679ac67ee40e748E88473E167D714B', '0'), + (0x6da080fce8c0823be4a20141018f621391b49e8a, 'NFTCLUB', 'NFTCLUB'), + (0x6da3c4db636c82cb27ef0e7f0e6ce124b777ff38, 'Cafe Racer', 'TBC'), + (0x6da5a89ce1f9af2f60ebfbce0825ff958872acce, 'The Wonderquest - Quest #2', 'DCL-THWNDRQST-QST#2'), + (0x6daa1d912b2225e9d4bdf7304da638d7499148fc, 'Psychedelic Dose', 'PDose'), + (0x6dc0002e3171afc7437d9e9feb5d21f45b5ad879, 'ToughTeddezDAOPass', 'TTDP'), + (0x6dc9280bbb1b6620b26b0309a68c484f1deb3a0b, 'The Sevens S1 Metawearables', 'DCL-THSVNSS1MTWRBLS'), + (0x6dcbb9d68a8c82685a3b6ad4ec92b264c16dcfd9, 'Timepiece Ape Society', 'Timepiece Ape'), + (0x6dd01d1a4076fa8c21038e2659267204faa10a1a, 'Polka Fantasy Land', 'PFL'), + (0x6dd7724cfd7ab56c2147752b683eddf44e9d4fff, 'Nike x Bored Ape Yacht Club', 'NikexBayc'), + (0x6dd80d796105b122945a31a3b40f9ffadc958eff, 'Blood Thirst Dracul', 'BTD'), + (0x6df4cc4fe1067f66277112122ff7a9a9713509ae, 'Close yet far', 'CYF'), + (0x6df8c0409b41ac2d4c6fa138899daa79790952f3, 'Hero Ape Fam', 'HAF'), + (0x6e04c775ad18930b5755358b082d947abcdc6dc3, 'Tucson, AZ Gold Edition', 'SWEDC'), + (0x6e0ace423d39bebfc2d2bf9a0c9de1fa4f641308, 'Zombie on Premises V2', 'SWEDC'), + (0x6e2c3df2121a88fe640abd0fe5082136fc72580f, 'BEEWiN_NFTs x Sup365_IcyLutein', 'Sup365'), + (0x6e35477c74b756e4428cc351a2711618f97437b4, 'THE SKULL WARRIOR', 'TSK'), + (0x6e372a2bc48e810d91bd30464ef603d722809519, 'IslandsMVP', 'ISLN_MVP'), + (0x6e3bb4d44f84ef959e3ec56e291227324b038291, 'The State of The Open Metaverse, Jan 2022', 'OM2022'), + (0x6e4693738fec38d076be9183ec98d608a0a68161, 'jkewnfineuwifu', 'MSC'), + (0x6e4730f59b410528b691df0d18732aceea4c183d, 'Kuble Items', 'DCL-KBLITMS'), + (0x6e47fbe0c0c05613db881d8f57e37790c778e3a4, 'CryptoBears', 'CB'), + (0x6e5078b361632db3e73d4609c74bca7e9653ed05, 'Insect Rejects', 'insectrejects'), + (0x6e63ccda9c0471a1a15c25eb2c8fd2e0ff964300, 'Meta Diva Eyewear', 'DCL-MTDVEYWR'), + (0x6e660a9bd048b3293a7e16e9ef48dddd98a8c7b1, 'CC lock Polygon', 'KEY'), + (0x6e6822505e35250332ce4ef809f8b6ab4ead3aa3, 'introverses', 'introverse'), + (0x6e68c586317692f86b70a9d6bddf7cfdb71d76e5, 'Network Pioneers Founders Series', 'NETPIF'), + (0x6e723362a984bf8ada02ac5246d1e57ba246c7c1, 'zzzz', 'zzzz'), + (0x6e75ece67b73a6e9399b7dfaeb778c3fd316498e, 'Crypto_masons', 'CMS'), + (0x6e79e908a600b75f7ef6f636d9799191a57ae87e, 'DadBodNFT', 'DB'), + (0x6e80979f56f8a9a8238068a3850ed68f8b40403c, 'Polymancers_Goblins', 'PMNCG'), + (0x6e83cafb785f2dcc88d957d14e6b2711c4510a5b, 'NeonzTeenAlien', 'NTA'), + (0x6e8a9cb6b1e73e9fce3fd3c68b5af9728f708eb7, 'Otto', 'OTTO'), + (0x6e8c54469de106313272d63dcd399f83d5255a0d, 'Zombie Guy Club Collection', 'ZGCT'), + (0x6e8dfee0b2d86dda9fce58f8e0f728f1ba6eaafb, 'CryptoMonsters', 'MNSTRS'), + (0x6e8e5f7aee43bd0e288bbf5bdf48c3b4a9dbc0b5, 'Seattle-Tacoma, WA Gold Edition', 'SWEDC'), + (0x6e972a6c4e2e244b9f10297763e357ab05e82cf1, 'Polygon SuperBeez', 'SUPERBEEZ'), + (0x6e9cbdb9e7851112458be13857418a0b1e3f6b19, 'UncivilizedChef', 'UC'), + (0x6e9ce6a1d248e866de06f89aace04e299cdfce51, 'adidas Originals Bored Ape Yacht Club Metaverse', 'INIINKKK'), + (0x6ea03faed46d76f4e2062522a63aac1af4a97659, 'EvolvingPenguins Punks', 'EPP'), + (0x6ea62ed647c1e193877d038593c351c68165c773, 'Metaverse Elephants', 'METAELPH'), + (0x6ea6c2b23c20db0f6024d39c5f61c56c4ab4e5f1, 'ID', 'ID'), + (0x6eb6cabf7a6a5bef410f66d88200a8ba5531863a, 'Houses', 'BDL'), + (0x6eb864e88c8ff5d5f6535339f8fcbe5745f0a61a, 'Incredible Shape Heads', 'ISH-NFT'), + (0x6eb88de0416f2c0b8280fe4cde9ddb83294f785e, 'WoCM', 'WoCM'), + (0x6ebbc695d6bf4f75dc18bd9e90526c0384981551, 'Ragnarok Kings', 'RKINGS'), + (0x6ec171da466a9833d45ab263214c2028f0c7868c, 'Bored Matic Foxs Club', 'BMFC'), + (0x6ec5b5ed27a4f96812f63c3da9030a73914dca9f, 'Baby Otters', 'BO'), + (0x6ecaaceca5245a9d1df1be20cef0f3a9efeb7f51, 'XU Luxe Disposable Mask Noir', 'DCL-XULXDSPSBLMSKNR'), + (0x6ed19059604fdb8f5abafa02606f95845f27b2e0, 'bold skulls', 'bsnft'), + (0x6ee3bc276ced3c8df41284e532e6dcebde2d1707, 'Galago NFTs Club', 'Galago'), + (0x6ee68051e585b36c0eea48f4af058154d74b3291, 'YUNIMETA', 'MYUN'), + (0x6eeda0dd7d5c2079d392691f366a00dc7d83234b, 'XR Couture x MVFW Login Rewards', 'DCL-XRCTRXMVFWLGNRWRDS'), + (0x6ef49620847bb26bdaf1ee3fda2c4c1d8a9b9661, 'BANCO MALO', 'BM'), + (0x6ef5313594c9680070c597ee8536eed5d02aae85, 'aiskacanglim', 'AIS'), + (0x6ef70f4e243bb20787652046f21bf3229658d192, 'Animal Genetics NFT', 'AGNFT'), + (0x6f02501f0db0273570727481eb1fcbb4c288efed, 'Mutant Shiba Club', 'MSC'), + (0x6f02aa6792257343316827519c04e9527ec036bc, 'Chang Gang Fire Flying Suit', 'DCL-CHNGGNGFRFLYNGST'), + (0x6f0c9de737f0a0dee308b469edb0edb6cd4a892e, 'aaaa', 'aaa'), + (0x6f15ee5345b8921fecd6f5e9a4d4653c623ce7dc, 'Trees', 'TRE'), + (0x6f1c7c5dfa9a1684a22ddd4cb2588d5b3352bbb7, 'MaticMonkeyClub', 'MMC'), + (0x6f1d86d66bde08654271119707cecaa6747411e3, 'MightyTigers', 'MightyTigers'), + (0x6f1eed7079ade0fe8ce554126d4290b394291656, 'Confident Bears', 'CBS'), + (0x6f203a02f352d7a3a416b565eb55d7fbadc7ad98, 'Madison, WI Pop Art Edition', 'SWEDC'), + (0x6f3042d7640ffb63822e547138eb32a6a1445d36, '8BitJunks', '8BJ'), + (0x6f35656109340e48b4266cc128913088ec14a73e, 'PopArt Ape Club', 'PAC'), + (0x6f3b5df0973230aa4dc8fd34a2b97a71689db699, 'DarkFlux', 'DF'), + (0x6f46fc2bc4ea03f95f80cf059f2de65fb76fa650, 'BabyBull', 'BABU'), + (0x6f4b9bc4a0410e762cd27c21c2976bf770888409, 'Moonstone Boots', 'DCL-MNSTNBTS'), + (0x6f5232a73ae16a7f26f7aded3e297cf77cbe2ad7, 'SNW Hero Cubies', 'CUBIES'), + (0x6f5410272d65cf3ef2ac01459e8175887aa58982, 'IrishPlayersClub', 'IPC'), + (0x6f544b9b643fa9fbef284dd4b09c5e010d4c2faf, 'Trippy Gum', 'TGNFT'), + (0x6f5512af4ff4719df081bfe0a050abb104d0ae17, 'LeavingTiles', 'LT'), + (0x6f5d369fbfc680c2ac42c25382ee843fd673e0f1, 'CryptoAngel', 'ANGL'), + (0x6f5d7ba06ad7b28319d86fcec09fae5bbc83d32f, 'MetaSoccer // Players', 'MSP'), + (0x6f6a31ed2a53ac591cb9e07329aa7f5bb407d206, 'Breadbake', 'BB'), + (0x6f702f20315cfa043e72b03b11645ca719e075ff, 'Sunset Wearables Collection V1', 'DCL-SNSTWRBLSCLLCTNV1'), + (0x6f7c7627886e55b47d0489bf1eba251b07729aa6, 'Autograph Username', 'AU'), + (0x6f90f707f0282cc99f6cd82a8863d12d1652bdf3, 'Kewl Kevin', 'KK'), + (0x6f9147c605fab0410037ba763e6500fe8ae80c24, 'Project Meta Planets', 'PMP'), + (0x6f9bea7719c02db1bd00e3ba4f04923525859dee, 'ReferRocket', 'RR'), + (0x6fa48601dc9de03413f4d56d0620b2ff61e9ac40, 'Don on Bike with Steve', 'SWEDC'), + (0x6fad95cc9cf0a565c0bd981e8641e5658129004d, 'Crazy Crypto Cats', 'CATS'), + (0x6fb3de1b5bd1b17da71c9dd4a4bb1514b72a408e, '[DEVELOPMENT] Ni Sü2022-03-14T15:45:39.943Z 193380', '[DEVELOPMENT] Ni Sü2022-03-14T15:4'), + (0x6fb92b0eb0145768d94cff282af1a744a007a569, 'Formes de couleur T5', 'FDCTC'), + (0x6fc5008a0f3dec0974f7049fda12d4320805ef6e, 'Eye see you with love', 'ESYWL'), + (0x6fc567b67bc345f2ae3b713fa2736668f098c174, 'Stopping War Collections', 'SWC'), + (0x6fcd45373321a904006cc270943cc1d88c28667b, 'NFT Garden', 'NFTG'), + (0x6fcf822bf5e465ec24a12fed88c9a581530a9a0f, 'Apezuki', 'APEZUKI'), + (0x6fdcc1008ec101e68761637ec0a05ee85209ab10, 'HunkApesYouthClub', 'H'), + (0x6fe192b999fa864033b6dc0cbe8068df4a556cf3, 'TeruTeruNFT', 'TTNFT'), + (0x6ff0888483d196505704d303038c39819b999a0b, 'PucciBoos', 'C'), + (0x6ff6766424c32e89c5a9503d4bb4fc4b2c91a691, 'We Are Metarsius Not Ape', 'WAMNA'), + (0x6ffa11702e5969946c533741782113c0a798c055, 'The Unicornverse', 'UCV'), + (0x700193b6e90d575f5dcbbf7c7b69e5f2659b7722, 'Hodle Whales', 'HWT'), + (0x700320a1c1e7dccf410ca5597d4c1ad3bc623e2a, 'Mafia Gang Game', 'MGGame'), + (0x700d1efd6408866a4623febcb7272338f0d3f6a4, 'GEN-T50', 'GEN-T50'), + (0x700dde074b40fc38b2abc0d87dafff38df9d6b6b, 'Tempel Tuttle Zip-Up Boots', 'DCL-TMPLTTTLZP-UPBTS'), + (0x701277098976083c36ea7842ab3da663505daff8, 'KleverHunt', 'KH'), + (0x701a1824e5574b0b6b1c8da808b184a7ab7a2867, 'BAL MAI Vault', 'BMVT'), + (0x701e6d474b7b524ffc57a66cadc7c901b1b7f77b, 'Ben-Eine', 'RKN'), + (0x701f9f0bf8d599ad57fe363f36f8b726199345b4, 'SUNKISSED Wearables', 'SXW'), + (0x702337f1fefac708815f8b24ff6acb843f0030e7, 'CollectibleFootballCard', 'CFC'), + (0x70234c42a3ddfd1e32838c759172a22433aaca1c, 'PunksLookingLeft', 'PLL'), + (0x702b75c586d039e5f390bc3169821af7bc60cd5a, 'in Love with the Med Supporters', 'ILWTMSUPPORT'), + (0x702c12290d21089c2c6d11889cfb32422b62642f, 'Bored Ape Matic Club', 'BAMC'), + (0x703064bcbfa0b1ca1d49365cfcd6c4261d64f23e, 'CFD NFTs V2.0.8', 'CFD208'), + (0x7031d12460d50bc871eb14c40393bbaa56cd9a60, 'Flash Flame Set', 'DCL-FLSHFLMST'), + (0x7035455a32a0f0e5152a18a9c5468327e606c0ea, 'Crazy Kong', 'CKG'), + (0x703c31b82d480a66a49aaa5d12ded83749fbf57c, 'OpenGods Official Club', 'OpenGods Official Club'), + (0x704a7855da992b2741dda8f02791bff399eb1b23, 'Original Gangsters Marshmallow Club', 'OGMC'), + (0x704f490840b32b3754639c5abb1b99659a3dc1ba, 'Official Skate Goats', 'Sk8Gs'), + (0x70500d6176d71edc04978e52dce724ce060884c1, 'PARAZEN - Pioneer Series', 'PZ Pioneer'), + (0x70512c7f3d3009be997559d279b991461c451d70, 'Founders Crypto Card', 'B21xYGG'), + (0x705652b66a12dcf782b0b3d5673fbf0c1797eba2, 'Vogu x JustHype Fashion Show ''22', 'DCL-VGXJSTHYPFSHNSHW''22'), + (0x7057d99989626a27bf6fdb548c03032c66342d16, 'Famous_Fennecs', 'FAME'), + (0x705d6b0c912a33a8643b5f7e42b5c7ca386a3b32, 'iZi Vesting Voucher', 'vviZi'), + (0x705ea5f4a50fcd8ef5cdfa9d3647b582a196cb5a, 'Thumbs Doing Things', 'THUMBS2'), + (0x7064a747b0f435d755b1cea4e35184f9bd1594d2, 'Hero Galaxy Artifact', 'Hero Galaxy: Artifact'), + (0x706927cfcc704113bce6e958bf2ed21e765f6ea5, 'ANGRYWHALES', 'AW'), + (0x7074f8eac64065741c22e76a45cf5b9a69e887a9, 'TugApeNft', 'TUGNFT'), + (0x7076c5483fd3110e7f46b7b9dacaab2f50c03cec, 'Art - Galeria Kogan Amaro', 'A-GKA'), + (0x7083459141558ace6be6d2914416fbb6b178a5a1, 'NFTONCollection', 'BGS'), + (0x708a5410bef962b17be57171e564d7b8ff5abc0d, 'SOBRIETY Coin for 90 DAYS SOBER', 'SOBER90Day'), + (0x708f8c40ff0a7a8edc4ba8c3db3890b55bf82391, 'SHROOMS', 'SHR'), + (0x7092cd4150f7d2fea144cc730b2265f78ef1455c, 'InnoMinter', 'IMT'), + (0x70959712f75aa9d7cd2cebadd16f86e6a9da1baa, '0xCdC44df7ba6366355bA661D4a799C83B9ac048d1', 'XCd'), + (0x70960e586c2cf66bbac8bd263984b837a6d31d50, 'UGLY PIRATES', 'UGP'), + (0x709767003ca4809406dda38b301946c613189e6a, 'BadassRabbitz', 'BADRABBITZ'), + (0x709b09da4450bae33038757f9bdeecb96180f26a, 'Project Galaxy NFT', 'StarNFT721'), + (0x709bdf2e4f1616f25a902537d8e75a33409c6fa9, 'Wonderful Memories Epilogue', 'WME'), + (0x70a3cacc543fb1398c436a4852d677c5ecda4c73, 'Dreadfulz Genesis', 'dreadfulz'), + (0x70a6cfdbe0ad508c391f44e4134cf97a39a26cff, 'GEN-H09', 'GEN-H09'), + (0x70ac07c50131b7bb2c8bd9466d8d2add30b7759f, '.poly', '.POLY'), + (0x70ae45f70983e2f7ea95328bc6740c7e03f00eaf, 'PolyFriendsClub', 'PFC'), + (0x70b872aad239df8bc3e328fd36a554a4ad4a1bd2, 'Meta Bounty Hunters Official', 'MBH'), + (0x70bd4856a6a731db52dce8d7ac58bd888bb3ac0b, 'Nyoki Club NFT', 'Nyoki'), + (0x70c6a81628e6fcd37c07b9f4591be105de0dcdac, 'STEMbits', 'Sb🎶'), + (0x70c6d6b03e560a0f79ebdebae21567a4eb24cf48, 'KIWI', 'KIWI'), + (0x70cdc04fea09bae95befa2f6541d20f50fdf5ff1, 'PoolWins NFTs Collections_LuckyBunny', 'C'), + (0x70e8d2b5753569378473e0589021e3b81efd304d, 'Crypto Bean', 'CB'), + (0x70e98da6200ec5787945d5537eebd01e0a994475, 'Lil Ninja Guardians Special Mints', 'LNGSM'), + (0x70ea6d1757f7e7b1eb98835c729ab2b1c3e5f632, 'Billionaire Kids', 'BK'), + (0x70ee6d43892325509e0b16e762bb7ba8376635f6, 'JANSBOY', 'JB'), + (0x70fb99c357824da7f6b2e24b9135f89d002d895e, 'Pixelated Head', 'DCL-PXLTDHD'), + (0x710cc98ad7927e6287f0450aa0a5a57aefa5766b, 'Prime Ape Athletes Genesis Collection', 'PAAG'), + (0x710dce41dceace2f0e06c0cffee25fe65ad6f64c, 'Throne of the Quantum Dictator', 'DCL-THRNFTHQNTMDCTTR'), + (0x711a6ed1456b7037f3c0d8fa656c272456817537, 'Tesla Doge', 'TESD'), + (0x711b355472f84183bef28e2a3660f26dc898b6d9, 'DoOrDie Skeletons', 'DODS'), + (0x7122c9c9a3813f77053fde4a01fc2f01f54a0496, 'NFTs', 'NFT'), + (0x712382cabba567554e506c7ccff28c129b37501a, 'Minereum World Metaverse (Polygon Chain)', 'MWMP'), + (0x7125bac95ce41da72852a271eb6b01e2e978d71b, 'RunawayFoxesClub', 'RFC'), + (0x7137da5f060aed0de5b996d06aa612db0fcacbdf, 'MetaWear - Feet', 'DCL-MTWR-FT'), + (0x7138548bc034ad12f988ce29e995e513cd498590, 'TheFineTigerClub', 'FTC'), + (0x713a00009cbb7a881d67d1725e436c0bf0e9ab1f, 'Moonkey NFT', 'MNKY'), + (0x713ee9958de2d3d288a935d73ad37b302f240a75, 'Polygon Riot Of Colors ART', 'PRCA'), + (0x7140da30e9e041ab52e2ca4df8afadc5d5adb265, 'Sweet Cocoa', 'SWEDC'), + (0x714947939d3c4055d16670ae8fa4b1cefe68f259, 'Your Love Butter', 'YLB'), + (0x714e084ae50386fc29c8962826d5b5a2e91f6281, 'J&P Supply', 'DCL-J&PSPPLY'), + (0x71595145ae7d10cd40fbecfea89e17fcbf959efe, 'Secret Weasels', 'SW'), + (0x7169c201d082043f40b65922f14873afba39d3da, 'ballers', 'ballers'), + (0x716d2ad920661bcc78725d5c6dfb1975d2a7a5e9, 'Cyber APE Club', 'PP'), + (0x716d3793af04d514d56fa90d06c2d77899bfd0e7, 'CRUNCHYFURYWORLD', 'CFW'), + (0x71710f4625120cdde10681933cdcdf6dc4a9d907, 'counting.sheep', 'CS'), + (0x7172bc55cff480059dbf49479992ce2de4aae570, 'Gears', 'GRS'), + (0x7175c12efb24c0f8e13cbab6d7287751ac388422, 'Ft. Myers, FL Silver Edition', 'SWEDC'), + (0x717a0542437a3ee5d123422827d43ba623ad0ad6, 'Car 22 Racing Action', 'SWEDC'), + (0x717bd73461e00189f505e617ac1b44785ca5fda2, 'CoronaGenerationMembers', 'CGM'), + (0x718526f74cd27bac8ae256d2b94db4a8c640c283, '1329 SVN 10/16 Party Collection', 'SVN'), + (0x718d2d89d4b9fb1e67eca197b9bcdeb6602b9d62, 'Aztec Xolo Warriors', 'DCL-AZTCXLWRRRS'), + (0x719d1e86195e918771e36d4ab23c666cefa197ba, 'KaijuFrenz', 'KF'), + (0x719e9d47c098490cfcb7bc444c45d0a86124c796, 'Pussy Hair', 'DCL-PSSYHR'), + (0x719f4aa8457a004c98c08acda8b48e3013ba8f69, 'aaaa', 'aaaa'), + (0x719fdb3ba074c9fff753b654a6e9fa0f53f3d9a8, 'Winged SaberCats', 'WSaberCats'), + (0x71abedc4e0f8c2f8739036d6d3f830f651e0d97e, 'MFT Classics', 'DCL-MFTCLSSCS'), + (0x71b13f61e084cca4e8bc32c942ff6ef088f684c6, 'JeepersNFT', 'JPR'), + (0x71c769540823369608afc44e6a01fa5d17a82877, 'Vintage C-80 Calculator Watch', 'BSPC80'), + (0x71c9dbe447255f05fadf52834eb91b80f17ae819, 'BabySharksGuild', 'BSG'), + (0x71ce8b41618eb8dfda5bfaa6ba3348f25f7272a7, 'Bored_Ape_Art NewLook', 'BAAVS'), + (0x71d30bed480f85f7d96f07c8c59c0cc214fbcea7, 'Pirate''s Crypto Bounty Outfit', 'DCL-PRT''SCRYPTBNTYOTFT'), + (0x71dc3049cd060aece04b6028a6ebf35301f2ee5a, 'IslandsWelcomePass', 'ISLN-WP'), + (0x71dcb50f861217b02512431e4f325104f19a8e28, 'Mardi Gras by Mana Witch', 'DCL-MRDGRSBYMNWTCH'), + (0x71e4413d3f2cdae8cbb48ba82a65c6a17ee32aa1, 'Tribes Alpha Access', 'BUIDL'), + (0x71e82749efaca31a449402db76054a27c514ee7c, 'N12PunkClub', 'PC'), + (0x71e9f2f945d8c58b8a869f56573fc24e05bf526e, 'XNFT8', 'XNFT8'), + (0x71ed79052ddc00145fba23b0595ba0b81e671310, 'Atlanta, GA Pop Art Edition', 'SWEDC'), + (0x71f153f9f9017ef29c436f19370d1fd8689424e1, 'Dark Genesis Blacksmith', 'DGB'), + (0x71f41ccb2b1d4f069a976edff22293e68bd65c66, 'ChristmasPunks', 'CP'), + (0x71f4b9c94622f7d17abf0a56ccaa5faca0942b5f, 'Sinful Mew Bubble', 'DCL-SNFLMWBBBL'), + (0x7206d126e5b50b6d76889fb5bd2beaae774d5206, 'HANUMAN FASHION HOUSE (H.A.N.U)', 'DCL-HANUMANFASHIONHOUSE(H.A.N.U)'), + (0x720e16a4880a05c60e806c07191ae936682cadb8, 'Tier NFT', 'TNFT'), + (0x720e921566b065f897febc5b0127945706bf6303, 'a', 'a'), + (0x7227e371540cf7b8e512544ba6871472031f3335, 'Neon District Season One Item', 'NDITEM1'), + (0x7239d51f7fc1b37ca350e3ad816dc32b2f8764d6, 'LAMO Airdrop', 'LAMO'), + (0x7243c51c24b302b01094785f3c826f9311525613, 'FODL Positions', 'FODL-POS'), + (0x7246dc5485f1945bb7ef8be119a60ba024893dfb, 'CityWinnery', 'CW'), + (0x7248752431a0a148b380818abf9650c21148a852, 'Lionia Club', 'LCM'), + (0x72537156bcfb61c8a58850a970a58601c8ee1d91, 'Snoozie Invasion', 'SNZ'), + (0x725c083a44bfe5cd31feee5ec30b7c6190c52a7f, 'Fully Faltoo_Wingesh', 'Wingesh'), + (0x72686dad12c1b24d458812c88533ada7ddbb5dd6, 'BlockHead', 'BH'), + (0x726e1b4841968c0c3eebeef880e60875b745b3c0, 'MCP Citizen', 'MCPC'), + (0x727067a5df5551198063a37bc1136ba9d4f894dd, 'Big Eared Apes Club', 'BEAC'), + (0x72715aeca72de28aa470d55d4dd6dcdb38419139, 'Battle Droids', 'Battle'), + (0x7273dee88bea1f99dbb4585d891f275921d3696c, 'AO', 'DCL-AO'), + (0x72748629a31336b1e165db3048ae43125ec25790, 'NotNormies', 'NNN'), + (0x72757eab7ac088caddbc89195f518f1f4938a239, 'Crunchy Fury World', 'CFW'), + (0x728d45ad3b73e6130242ebad0791b1a51431741a, 'FingBastards', 'FB'), + (0x72901078deadd7ff09b50090091852133cb6e939, 'GossApe Girl Collection 4', 'DCL-GSSAPGRLCLLCTN4'), + (0x7290fbe5f8d702d998bb406d9e12a33d154295ec, 'IFNX GENESIS NFT', 'IFNX NFT'), + (0x7291968ce2bf86e864368972829b7cefb07a3575, 'CRYPTOBILLYSKULL', 'CBSKL'), + (0x729a1e6118948eaf89b4ec19ac41e835676c9592, 'Pokemon Collection', 'POK'), + (0x72a1fadb4947694fef92ae0885047acee25f6111, 'The Luminance Project', 'DCL-THLMNNCPRJCT'), + (0x72a2f909ededde275de0b7373efcdb6009183467, 'Pinkslip NFT (Matic)', 'PNFT-M'), + (0x72af415c09e282536865ee2072a8275004f1ead5, 'Boba Club', 'BOBACLUB'), + (0x72b091bfd027ec14b60febbf91590a1518914c47, 'Zixel Launch Party Wearables', 'DCL-ZXLLNCHPRTYWRBLS'), + (0x72b6b4a457d6aebbcd2ef8a9c7754490cb3f398a, 'RFC', 'shap'), + (0x72b6dc1003e154ac71c76d3795a3829cfd5e33b9, 'Non-Fungible Matic', 'NFM'), + (0x72bc9ffbf2a2d1b9fd72352e47a655a3fade5c29, 'Armed for Freedom', 'AFF'), + (0x72bd108ca4ee6a7ba4072886aba7d20cfb79abf7, 'MetaC', 'MCC'), + (0x72c2f9b31b2bbc079355daf80fce6ea7771fcb2a, 'Bored Ape Plane Club', 'BAPC'), + (0x72c5d63ab5828f6206038aa48ac8612daf9977bd, 'LASC Wearable Drop 1', 'DCL-LASCWRBLDRP1'), + (0x72c5f207a6e56f1959c91d1826c9aa3e8fdcf466, 'PolyFarmer', 'PFARM'), + (0x72d5bdbb1a4f9d583a7e4c2e2f4fdd1c84b96abf, 'Doodle Ape Club', 'DAC'), + (0x72dbd77a3033677d4db6f656b3934200ea8e909b, 'GEN-H22', 'GEN-H22'), + (0x72dbf5310a9a75a7bbdc8fd94d237f5055815356, 'MetaDroid Jet Pack', 'DCL-MTDRDJTPCK'), + (0x72e18d02321a63ea0e12ccc7266db9cf41d60fa3, 'Doodle #9', 'DOOD#9'), + (0x72e1a9bf632bfa758075ee3d4c5c1be6ac22c65a, 'Johny Smith', '623818a1ce3b1552f47beaba'), + (0x72e8bf0dee1bdbeac242b4b66b9538ac6f112cb0, 'Veme Genesis Dao', 'GEME'), + (0x72e976d0d33ce10e111742011aed7d4b0b6e96d0, 'nft', 'NUNDEFINED'), + (0x72f6a441fe1ad6886aeccf1da8e21d9881e998f9, '2010s Court', 'SWEDC'), + (0x730a503fe252138f2698e86325bcb3ed30ddc63f, 'Julie_AI', 'JAI'), + (0x730dc246fc2484b1688ee36e754b435b94410ba0, 'Cool Cat Sport', 'CCS'), + (0x731c7d792ad479183009cd744b7063aad115c314, 'Moonfall', 'MNF'), + (0x7324b9140cbc3f1ec85b943505a3f618274e58b3, 'DegenerateApeAcademy', 'DegenerateAA'), + (0x7324dc03786cc0e1b478a85a343449345a768980, 'Prime Mates Board Club', 'PMBC'), + (0x732daa7adb0f5711930c5635678c5e9cb7ef1869, 'GEN-H04', 'GEN-H04'), + (0x73321b54e22a8341fbd5cbe79c07faa1527952db, 'CLONE X - X TAKASHI MURAKAMI', 'clone-X'), + (0x7339ce1a0d037cc95712f29788b9d3caebd9a435, 'Healthy Egg-plant', 'HEP'), + (0x7342d22c897a83c323eed3948fab38c3f68313ef, 'E.T. The Extra-Terrestrials', 'ET'), + (0x7345e2b5b8e857de9ed52ad638727d1f3ae87d8a, 'BabyDragons', 'BD'), + (0x7346561ba613bd8f0b3a7e8ea058593e8a5f897e, 'SevenDots', '7DOTS'), + (0x734ad92b06967533cdb8893db60266c527919022, 'Baby Apepunk Club', 'BAPC'), + (0x735000e783bcb55f2fa602dadf403568f437a0eb, 'Space Budz', 'SpaceBudz'), + (0x7353675a469e3b746805da181f6e9279cd709062, 'Party Poochz', 'POOCH'), + (0x7358c73c466fc7ca4046ca263c37f657c8da61ef, 'The Fabricant Promo 03/22', 'DCL-THFBRCNTPRM03/22'), + (0x736026d056048af655b145000d4e3ce6d659a160, 'PixelSun NFT', 'PxSNFT'), + (0x7363ed78eaa0ab8df06e2dd1114a3e184ffcf62e, 'Small Bros', 'SB'), + (0x736701275c152a8c5ff134e9857218ea19c6066e, 'Weird Faces', 'ic'), + (0x736c94018d0480069ba7e04a554d5fde6f9abb09, '[DEVELOPMENT] Ti We TLSWV', '[DEVELOPMENT] Ti We - Ed OGEWJO'), + (0x736f9bfd1eb61887c75cd0162eb2f0e64455d19e, 'HorberfamPixel', 'HorberfamPix'), + (0x73709db6f59e18a4d462a22b8e39ce68b3f043de, 'Sweetbot Gold Card V2', 'SWEDC'), + (0x7372f36988c360ac713be8574ffd6251fa2a9cb9, 'MartianPunk', 'MartianPunk'), + (0x737ffddcda4ef559be3ef9349b74e495bf784952, 'Quirky Unicorns', 'QU'), + (0x7383fab7f56818cffcc8c0d81d2183ccc513d781, 'dscadsf', 'asdf'), + (0x7388f85daac12e529dac365f6f39b6fe969c8e99, 'Weird Catgirls', 'C'), + (0x738a423c94a4c2457cd40fcab7050f97a4ff13c2, 'Chufy''s Wearables Collection', 'DCL-CHFY''SWRBLSCLLCTN'), + (0x739b68567e54cb1b13fa28550d7cad4d694d28c8, 'CryptoKhaledsClub CKC', 'CKC'), + (0x739e91cd15eeda91f2f0202acd244f5e1520f9ed, 'Lazy Bears', 'LB'), + (0x73b399ba9aae6477e7fc1794ca5e0e78e2ae3942, 'TheTribalGents', 'TTGs'), + (0x73b501f9769e73d83e028d1e4a11434b869f1887, 'Metawomen Dao', 'MWD'), + (0x73b509577380384ff04c51b5322116f4df860f1c, 'Photopop V2', 'SWEDC'), + (0x73b7a343695edefcb9e306ab7bf4f9af4ba72a7e, 'Small Bros Genesis', 'small bros'), + (0x73c075138241ff2527bfc8d9f1b0ab52fa58a988, 'Split Roger', 'NFT'), + (0x73c32bf5613d47e8ea68ecf09337ebe109d33332, 'NFTs', 'NFT'), + (0x73c7b51f9d69548b6cd5f8f44556aae5a5d45f7b, 'Next Generation NFT', 'NextGenerati'), + (0x73cd4ad4a85774eec4c789d79e3986400692b8f8, 'Fuck-It NFTee', 'DCL-FCK-ITNFT'), + (0x73d2ef21f05a538accef7a61a5a4553ad3f4cfcf, 'Misfit Clowns', 'Clowns'), + (0x73da7685c54886b96694f803ac851349ffd8e3bf, 'Web3Skills SmartLaw Clones', 'W3SC'), + (0x73e65787cb01cf92c8b8648a3a76aecbe15ca4b5, 'user', 'user'), + (0x73ec73bf3e6d7429b482caaaf125b9d5aff54430, 'Aliens Army', 'AliensArmy'), + (0x73f050f6960ad0aa465c8ab019fa6de4fe31376b, 'NFTs', 'NFT'), + (0x73f24971905d477da249d449805e9f90e79ddd2a, 'Genesis DSO', 'GDSO'), + (0x73fc6b30cc5f82d74e820f3c13108bc07f387065, 'Cthoodles', 'CTHD'), + (0x740765cdea3c1c0424dde027ddc0256f75417457, 'PresidentNFT', 'PREZ'), + (0x7409a1f9b98f1d095d4beed3be56855f7aa6bb7b, 'Independent Girls', 'IDG'), + (0x740ab75a3c1531f67d3be6b7fda6cb433f64e47e, 'First Nunchucks in the Metaverse', 'DCL-FRSTNNCHCKSNTHMTVRS'), + (0x74173a701c2f728eee361c25f927231a8416f0d6, 'SQUAREHEADS ISLAND CLUB', 'SIC'), + (0x7419d569e77f130c3dc45032f429dd626a3138c6, 'CosmicLizards', 'CL'), + (0x74205738c9d74a12e62212d39d5dcf2b294807d0, 'YourFirstNFT', 'YFNFT'), + (0x74212e707d7969553f1b25ceaa636eff227daffd, 'Camila AI Club', 'CAC'), + (0x742276f179f080be50d5cebb35c6a91e81fbb8b0, 'Poarch Dolls Club', 'PDC'), + (0x7432a39c8b907b2162ca8a7522c2c82d5cde54cf, 'Eggs of the Culas', 'eggs'), + (0x74393d1794b313c72f09c4bc5d2cfc5c5d55f95b, 'Big Burgers', 'BB'), + (0x743a88dd130131ab9b4d470221ca57207abde932, 'Space Riders OfficiaI', 'SPA'), + (0x743d53144b05ce889f97842aecf0bb6cddb4720c, 'NFTs', 'NFT'), + (0x743ead8594b122334114ebb0a4852cec70f64c4c, 'Crazy Friend', 'CFR'), + (0x743f554f6accd4e452af6c96c48b78e849d87316, 'TheEndLess NFT', 'TheEndless'), + (0x744418761efbd3e7239d76e429d6df7f18fca590, 'MoonieNFT', 'MOONIE'), + (0x7445efc8b5e9815f080f611ad23ef053136b9949, '8Bit Parrot', '8BPnft'), + (0x7445f00896f32520384844bb6d22543f94a11c20, 'Australian Open 2022 Accessories', 'DCL-ASTRLNOPN2022ACCSSRS'), + (0x7446c0baca5dbf658f617bd00f97bf01b58cedf1, 'VAFFA_CELL_MYSTIC_NFT', 'VCMNFT'), + (0x744c6541df3c69d2e2bfedbb9b82a483710e5e9f, 'The Great Numbers', 'C'), + (0x7452e1c34f423b185468c19ddff4bb944df564ef, 'TridenTech NFT', 'TT-NFT'), + (0x74572ff1b7701bc13bb0b5d66963844626676236, 'VIBE APE', 'VAPE'), + (0x745ac7d6019e0c37496c28230a3b5f9189f24f40, 'HodlTurdler', 'HTDLR'), + (0x745cf0759004acfb43973a09e2c89b56d1ce2c8d, 'Braad The Monkey', 'Braad The Monkey'), + (0x745e5ca6a17b049459ee4096ea7c61924fb7110e, 'BCT_S3', 'BCT'), + (0x7475d11d4c667216358b078c8d063de3291acc03, 'Citiverse Reborn', 'CVR'), + (0x7477b162380b844ac9dfa2b7c3d09b403ac9b9a1, 'B.O.S.S. Balls Of Solid Steel', 'BOSS'), + (0x748472b2037ae1f46bd2a07fb7a9a6ccb98603a1, '[DEVELOPMENT] Ro Go 505189', '[DEVELOPMENT] Ro Go - Ed 889907'), + (0x74851dd1b8f214aa442c13fa1bd1510af8abd2ff, 'EthereumFace', 'EF'), + (0x74853cd2d5e448b3c48c6a249bb72bb940a51d27, 'LUCII', 'DCL-LUCII'), + (0x748858dc0818a8d110a5e75d4e9d736105dbf217, 'Genesis Collection Ethereality', 'DCL-GNSSCLLCTNETHRLTY'), + (0x74933901de018ee76e28cf8cc572c33a7485901b, 'PupworldCyberpugs', 'CP'), + (0x7493745d8372558e08532115e79c38590c5847f3, 'HAPEPUNKZ', 'HPZ'), + (0x7494070ca2cbb34a8e7b5a46944cefd988f85f40, 'SkvllPvnkz Merch', 'DCL-SKVLLPVNKZMRCH'), + (0x7497c8809d6c350fdf97aee81f078f29d3d8146a, 'CryptoKhaledsClub', 'CKC'), + (0x749f23c14b98a451a723532a37b125069e069681, 'Sane Robot Overlords', 'SRO'), + (0x74a5c53d1c9a7daf38b789a3b37cc9c1e8f95363, 'JTV''s Fallen Sword', 'DCL-JTV''SFLLNSWRD'), + (0x74a680dc67a680f2ad7bcc558a2c0c6cf6db030f, 'Sphynx Cat', 'DCL-SPHYNXCT'), + (0x74a6ad029ec14fd8ede631c0aaced561cdfc32e8, 'Pixel Carz Official', 'PCZ'), + (0x74ad5297c36f7fceb8bb421db3c9864a611bc946, 'G.I. Toadz Armory', 'DCL-G.I.TDZARMRY'), + (0x74b08487784ab96976d5b65f9278a3bc537edbe0, 'Chiptos Official', 'CO'), + (0x74b3017735840d79cd31997e45d261249b3286f2, 'BeMetaPlace', 'BMP'), + (0x74b60a75f7635080ec141a21d9efe07740984476, 'Hanzi of Chinese Zodiac', 'HOCZ'), + (0x74ba28aefa8ca07daeae26fbe689070148c809a1, 'DKNY Metaverse Streetwear', 'DCL-DKNYMTVRSSTRTWR'), + (0x74bd5cb9435d36570bcdf6e001ce3d4b97de2021, 'PlasticMan Collection', 'PMC'), + (0x74c1189029f0ee8d81a29d79018e5c906867eaf0, 'NFTs', 'NFT'), + (0x74c63e1e81d6025196c8fc591926a579ad8fcf26, 'Crypto Beaner Frenz', 'CBFNFT'), + (0x74d4ea4d2a2c28aea23e623ccd13552186147668, 'Flag People by NikkiF & DocGreen', 'DCL-FLGPPLBYNKKF&DCGRN'), + (0x74dcede89ea2f68dbde1c248197846528b0a0c33, 'Genesis Alpixzca', 'GNPX'), + (0x74e9ef1d44a43dac8ff78a6e4b93d6744955fff5, 'CableMonkeys', 'Monkeys'), + (0x74ec09809a596c7b78a9d69f9a089487a93e05b6, 'SaDe', '3K'), + (0x74ef3c962fd95fe2ef660a63b1ed982cbe67414b, 'Adidas x Bored Ape', 'jadr'), + (0x74f24dd16d282bdbfe312d28cc31a5dec43c5e21, 'Lion814NFT', 'LION'), + (0x74f3cff69e60ad52a4ce72ade2e64727ac2d5578, 'TheGentlemanApesClub', 'Tgap'), + (0x7518f487927f912f23cbe925768dd6780133f8a4, 'ROCKET NFT', 'MOON'), + (0x7519b837665a545220c4d7495242d6b41a1da223, 'TheGlitchyDroops', 'GD'), + (0x751bb1f1e612a362ba55b81cd92628713d03cee1, 'MAC', 'MAC1'), + (0x7520cf9396d414b001f2d767e6fa6a1416edd0d7, 'FckU', 'FCKU'), + (0x75263d6ecb92e62502fd736e554546addaa6d5f8, 'Angel Wings from the Ice Kingdom', 'DCL-ANGLWNGSFRMTHICKNGDM'), + (0x753044b213d5bdc5fb543108b96403d160834762, 'NftElimination', 'ELM'), + (0x7532a506678060a6cafc0a332f0ca905947fdb74, 'Poly Cocks', 'PC'), + (0x75392aab786ed51b611c53e19f19a66906abd0f8, 'ElementaryWorld', 'ELW'), + (0x75442ef24561df6b24648e548fc5ee76b4886858, 'Bracchus', 'BRA'), + (0x7549604ee199c5983068e552b4fd13fabffb3b7e, 'Bitbones Nemesis', 'DCL-BTBNSNMSS'), + (0x754ac5536c6c7cb79ca7080eb4a39a06c4a9901b, 'Emak Univers Phase2', 'EMAKV2'), + (0x756c207e38f2a0028106be1302145219c1df89b6, 'Lowtech Manfish', 'LTMF'), + (0x757083f90089c1a94f16e8d70017b21cb0c71ca8, 'MyNFT', 'NFT'), + (0x757486f0ee2ac40354b68f22506266696c2f5173, 'Bored Dilfs', 'BRDLF'), + (0x75803096cdc685f76cfb8d41d01a72ffe5605428, 'MUTANTPUNK', 'MP'), + (0x7589b8a27e17ee05a4237dff0537516565acfd7b, 'Ninja Fantasy Trader', 'Ninja'), + (0x758d50d35eb0a88c3bba46f9a008b0420db693d4, 'NFT try', 'NFT'), + (0x758f071fcfdc7194c3964517369953a178653229, 'GZO - Elite Mask Club', 'DCL-GZO-ELTMSKCLB'), + (0x7591f80d8283df185f1caf5ffa606dcf12982157, 'NickPickles', 'NPZ'), + (0x759352eff5e683ec3a8d54f44b728c831ea6bc34, 'ffffff', 'C'), + (0x759a4f9acbf63f2bd49584a1a2083371e9677e6b, 'Enhanced', 'Enhanced'), + (0x75a54110cf043542091038cf55a3149fcc7af0be, 'Digital Kings', 'DKS'), + (0x75a5dfee71e02eb31d489b51abde881009e0640e, '8 BIt Parrots', '8BPNFT'), + (0x75a7f20f9e1c8dfa59436f4a2aef23152ce5aa1c, 'Lollipop Candy', 'DCL-LLLPPCNDY'), + (0x75b07bfdae05982b2ef753f8e5398e758a679add, 'TheDebtGame', 'TDG'), + (0x75b0c979f0a2caed6cd3f102df1921d7ea3cd65e, 'Cake Havoc', 'CH'), + (0x75b323886d39f10841354c79d6fafeb66902301e, 'SaveTheMatrix', 'STM'), + (0x75b37a6d11d741fa444988727deb8d5448768b99, 'Bullied Bearz', 'BBZ'), + (0x75bb2049db5e0f6adb082ed49ff678e4c3063d2f, 'monkesbro', 'monkesbro'), + (0x75bc446621fc4449a51884c1393f3ddb4fccbdd8, 'Eyebuddy', 'EBC'), + (0x75bc4b01e81a1d50ac85e20288f9cfa480effdc6, 'Moon Bunny', 'MOONBUNNY'), + (0x75cd0e836d1a720245d343f5a6d3142eec2ef253, 'Weird Catgirls', 'C'), + (0x75dc20b7799a21165cad8f76a359020cc718fd3d, 'YokogaoProfile', 'YPT'), + (0x75e0a9037e0615cecd230bef07851fc58b8ed879, 'Covert Agents K', 'CAK'), + (0x75e3261a65aa93dd178a3bb664518aca98e840c8, 'Cat Made Cats NFT', 'CMC'), + (0x75e5d92e4095eff4f4e8911a6617487d61cb9a36, 'The_Punk', 'TP'), + (0x75e93ac621b38ae11e5c95a383a37ce8d657b19e, 'ALOHA NFT', 'ANFT'), + (0x75f577142406d46a9c21f6009a8a117c0a711134, 'HYPEVISION4K', 'Hype'), + (0x75fd5e507e807d98e248dc32e470c91db98a623c, 'Nafstars Packs NFT', 'NPACKS'), + (0x76064e64e106d61f7f84e46aa2684c027a589697, 'MURIbyHaus Official', 'MURI'), + (0x7606a56aabe840b215b73defb2b4946be2099202, 'Superstars', 'SS'), + (0x76139276e6c4aa16dc5dd50d6916befe8b8aabb9, 'LFG Recommendation', 'LFGR'), + (0x7619ce0787a1a1f23a87c1dad39d451f3438af86, 'Bezogis', 'BEZOGIS'), + (0x761d294a2a7bb7fdc2befa308154fad3a6d53df1, 'MuffinsNFT', 'MFFN'), + (0x7625b8dce28d16ceee3c730c04558dc716101d0a, 'Squaredium', 'SQ'), + (0x762c38c1e21eb6ab59b9fef96fa4bb73b355d6b7, '0xaE6E11fd018f6455eCe03E3Bec12B7f1CB73d42E', 'XaE'), + (0x763742ac0d7fc4d5ea1cef962cb1d976135eedb3, 'FountainHead NFT Collection', 'SST'), + (0x76388442604cfd3194a27602f9f7b3da318e68f4, 'Fully Faltoo_GreyPanda', 'GreyPanda'), + (0x7642b2d9697e7d3726bbf84c5c8fe0bf42eef00d, 'MachineGen', 'MGen'), + (0x764e00ff5eccc1bf2992c211bc0f19da941168bc, 'The FIRST Faberse Hoodie', 'DCL-THFIRSTFBRSHD'), + (0x764e240efb421c7cce5d987f6e23ebcf665cd791, 'CryptoDJs Pig&Dan', 'CDJ-PD'), + (0x764e5a8c9ca14b456f5afbf31bfb2fa7f1e002b6, 'Voxters', 'MFV'), + (0x76612a984328ff537d24b146b495ca744a5baab4, 'Baby', 'BB'), + (0x76618dd12d23d300e4f4d67e2117d54f36ffc364, 'Replica Kanji Flowers', 'RKF'), + (0x7663bef0a3fbd0a2a833f715a69a18bc2aead61b, 'aaaa', 'aaa'), + (0x7664d6c848423edb940e9b4fe91a858eeca0afd6, 'Mihano Momosa', 'DCL-MHNMMS'), + (0x767f008be3c1d66e806c5ad16b742c02887eb29f, 'WNFT', 'WonderNFT'), + (0x76825a73ce83a8801f03166aab7aced77f1af6ca, 'CRYPTOPUNKS', 'C'), + (0x768402cd1438a131cb3aaada41516e338a2c4c3f, 'Entropy', 'C'), + (0x768d13262d584993c50993083990919e42e77f33, 'Portion - Iconic Collection', 'DCL-PRTN-ICNCCLLCTN'), + (0x768e7f999121e1e2530b4462b7870dc7110471e8, 'Skull', 'C'), + (0x769b66eb8f5e0d157cbf4f5006546e0bdef2e3e6, 'MotherEarthNFT', 'MOTHEREARTH'), + (0x769d57d2e2523b2e5d336c6f177d9d92412df1f6, 'Crypto Mugs #', 'CM#'), + (0x769f69ccf2cadc37372de3e367daecbe862480b2, 'Tasty Monsters Balloon ABC', 'TMBA'), + (0x76a625f9ebc3676d51fc037327abd1e264895392, 'MultiverseVM Official', 'MVM'), + (0x76a69210672a61ee61882be41c5cc88ab97f4140, 'CRYPTO_LAWYERS', 'CL'), + (0x76a80dd611222105c0918368a4b6031707697aec, '$WCM Gold Joint', 'DCL-$WCMGLDJNT'), + (0x76c149d2641241b43822209fea58dc9ecd2723ed, 'Complete NFT', 'NFTC'), + (0x76c52b2c4b2d2666663ce3318a5f35f912bd25c3, 'MaticPunks', 'MPNK'), + (0x76c6d3376b9aa747cc26abc1365a51523521ebbb, 'C.r.y.p.t.o.C.a.t.P.u.n.k', 'CCP'), + (0x76c915fbd2455aa21e225beabb64938fce2a6958, 'Panama City, FL Gold Edition', 'SWEDC'), + (0x76cdace66dcb8cee97b56af39ba8f4bab2e4662a, 'ACFCCrest', 'ACFC'), + (0x76cfea0698f6a89a1188bbfb0d8147b0d37a1d0e, 'Brainbot #45 Bullzorn', 'SWEDC'), + (0x76d2bc6575d60d190654384aa6ec98215789ef43, 'DEFYPGGenesisMask', 'DPGM'), + (0x76d4b12b5887fd2ecc7aab2044f5a639f4cfcdc8, 'Crypto Boi', 'Crypto Boi'), + (0x76dada7c4c7994e02b6122d13799b9c36438fa39, 'META VARBARIAN 4', 'DCL-METAVARBARIAN4'), + (0x76dfb3cc761b510eb5ca98d7798fc245d8df4aff, 'Bored Ape PoIygon Club', 'BAPC'), + (0x76ec3fb521599f2e736e27e1efb164593f1a31d3, 'fg', 'gh'), + (0x76ef199c0feea6da1278212bc8bf06d76ba3233f, 'CybeeDAO', 'CYBEE'), + (0x76f8b550018842e0a62f30bdb7950f411e7c7827, 'Lazy Chameleon Club', 'LAZY'), + (0x7712c23e1757b201925e8cebd03bf93385bdc58d, 'Cute Flaminglets NFT', 'cF'), + (0x7713f144555b862013effceb891452914ea5a15a, '1970s Court', 'SWEDC'), + (0x77311d5893c44ce4c78ff85d48613cacaaa1fabe, 'FROGG', 'FROGG'), + (0x773f5d22b7734bdaea939e1f09ed95e75841d2f7, '[DEVELOPMENT] Ja Mu 235642', '[DEVELOPMENT] Ja Mu - Ed 494841'), + (0x773f82f35e08d365254b7f9330fc616c42be2ed1, 'PolyFarm Land', 'PFL'), + (0x774475cf43000a06ab1165b79ee3958ae0648f62, 'Cold Blooded Creepz Official', 'CPC'), + (0x77580367f2ba4a20190fe4c8bee8a020527bc807, 'BearDudeClub', 'BDC'), + (0x77585599dc36b4267e5be8bc9e0183f9c363f4d9, 'GEN-T32', 'GEN-T32'), + (0x775c91fa7979c1f27b31be29b74474c3d7290f95, 'Devilpop', 'SWEDC'), + (0x776490fd5d7067d2c23867a3cb5b0dfe203b0946, '[DEVELOPMENT] Se Gn2022-03-14T15:45:39.415Z 723854', '[DEVELOPMENT] Se Gn2022-03-14T15:4'), + (0x7769b20b6be6ad2f2defb667bffee6c02993da57, 'BestPunk', 'bpk'), + (0x776cbb6eb76aeca4ae4e20336dc2526db54e9eff, 'gaofly', 'gaofly'), + (0x7770ddc4c9bed5b0cb224f63251fcd51f284c192, 'AIR SMOKE ZERO', 'DCL-AIRSMOKEZERO'), + (0x7770fd8abd6d0615a716ffadd183c92e0bae94c7, 'aaaa', 'aaa'), + (0x777a33d3094678afb9798682b5e966f2008cbd65, 'TincCatHouseClub', 'TCHC'), + (0x777bc4c63d8670b1db023c8b76514ef483fdc94d, 'WOMEN AND WIM', 'WIM'), + (0x777cdea72334f2c4e5e8a32cc508db20aab9fde1, '#Monster Hall Ocean Messenger', 'DCL-#MNSTRHLLOCNMSSNGR'), + (0x777cfda094b12474e683fbe90548b0196db0640c, 'Itchy Mask Undercover', 'DCL-ITCHYMSKUNDRCVR'), + (0x77805c71553374939c200beb29bc3d226ce40cfd, 'Crypto Lifestyle', 'DCL-CRYPTLFSTYL'), + (0x7781871199163082c70ab1f93987314e396611b5, 'Dumb Ape Honda Civic Club', 'DAHCC'), + (0x7786301e3408132ad4c8fa39fc31638c2ee77c99, 'Black Panthers Gang', 'BPG'), + (0x778f23d6d97df02b43a99647f0f099244d354691, 'SweetCockerto', 'SC'), + (0x7792335fe06971351d9c4d08d5f8222105c696da, 'DoodleDoggiesNFT', 'DD'), + (0x77a525ca8a10477ea40736bdb36d754de3374c8c, 'EtherBunnyNFT', 'DCL-ETHRBNNYNFT'), + (0x77ac661f8bdf705788bd3f3d625e4733162d55de, 'Troll Freakz', 'TFSS'), + (0x77aee449cbbffaa759fd24ed7656799365d596f1, 'flysamurai', 'FS'), + (0x77b1fa10e0af09687d2f164b1c6def6096b75aeb, 'SRAFFLE', 'SR'), + (0x77b6dd859d2716fba4dd9f01450115fe64aa8b8e, 'Marsault Presidentielle 2022', 'MARSAULT2022'), + (0x77bb93453ac9cdab122efdf670657f38b7d1fe17, 'KryptoKarma', 'KARMA'), + (0x77bbfced92aeeddb1efbc4a062447a7c45155a22, 'Epic Giveaway of Spark Era', 'EGSE'), + (0x77c0804f86383b5141d0bcb073c4f9f221a307b9, 'TheUniquePunks', 'TUP'), + (0x77cd42b925e1a82f41d852d6be727cfc88fddbbc, 'GFARM2 NFT 2', 'GFARM2NFT2'), + (0x77ce275f21e30a400b12f6b239431e64aab73d36, 'BLOCK X WEARABLES', 'DCL-BLOCKXWEARABLES'), + (0x77db4f969b833ed0c881b8b9c7f14005582a42c8, 'Lycan Glitter Freeze Rave Choker', 'DCL-LYCNGLTTRFRZRVCHKR'), + (0x77dd347d99d74d8c72e1f4906b73a075a3ef8820, 'PD Helmeteer - Drop 1', 'DCL-PDHLMTR-DRP1'), + (0x77e46cc37243b82fc88a07768134049b43a6aed2, 'Warp Starship Parts', 'WParts'), + (0x77e5051d3d4bddfa9fb1a7bc7bf063449b4cc165, 'BAD PROGRAMMER', 'BADPRO'), + (0x77e6d8b69834c5c8b5b7446511c6828cb1a50adf, 'Who''s House', 'Who'), + (0x77e955737b496c312bdc21727f5310a202366335, 'Basthet''s Designs', 'DCL-BSTHT''SDSGNS'), + (0x77fa2c70dbe9550013c70fad69e6fcc751fc8b5d, 'New Stickers', 'NS'), + (0x77fb0914e8eaee1cc7a6538f09fb8151beab105e, 'HalfSucker', 'HSNFT'), + (0x77fb85203847bfd7ed98ee94794bae3816544600, 'PoorSadLion', 'CL'), + (0x77ff812aa26ea09fb58ffbc3d4d7ee2b846cbe16, 'THE STANDARD NFT CLUB', 'the-standard-nft-club'), + (0x780825c68052ccef4172715c0d1674fd877e7c39, 'BohemianGuitarsClub', 'C'), + (0x7809a91c17b5439cae42d984a465b7c9abc15780, 'SmilingBobCars', 'SBC'), + (0x780d301b75fe9e43d2c372a97dcac8e126cb89b4, 'Blocfox', 'BLFXX'), + (0x781aadd3b36d33624de11cc6863393435fd61c37, 'WinglNft', 'WN'), + (0x781bf75092b6d0ff382861e578519773c26c131b, 'DeNet WrappedNFT v1.1.0_beta_2', 'WNFT'), + (0x78234a740517c2f9a98eaaf8bfcdd9d6cce831e5, 'Ayame''s Fleet', 'RCKT'), + (0x782523a8d393b8edb1825e5cafb8bea5aedfa3c8, 'BoredApeBasketball', 'BAB'), + (0x78276eb062c7195ce66ee5938002e5fd60929343, 'Monkey Head Collection', 'MHC'), + (0x7827cc6cfd476754e702e4aa055593f147e641ef, 'Metaguardians Epic', 'DCL-MTGRDNSEPC'), + (0x78306a498516d75a76beeacea04fe772d20fe41b, 'RichGoatClub', 'RGC'), + (0x7830fd1cdad6751bd9f0f582f3598084d7148a9c, 'CryptoPunktin', 'CPT'), + (0x784099d52ee32121fe57b0d763777fad82515747, 'hello', 'hl'), + (0x7841fabb4290386df2b51a6ea08f2e13eba177d9, 'bemular', 'bemular'), + (0x7858e114126accd396cdb98e4711f658203e4c58, 'PolySmurfs', 'BERRY'), + (0x78611cd344a3c04f71b1c35e2d1d7111acd55f19, 'VenomClub', 'VC'), + (0x78701a581346932c66013c252501d4c302ed0870, 'CryptoDonkeys', 'DONKEY'), + (0x787d79d1458675d0f31f6ece1a0d50e36f9bc767, 'Duck Bills', 'DCL-DCKBLLS'), + (0x788315b88dce1d9dfab3fb4bab60fe72155d05bc, 'MintMoney Mini Two', 'MMMT'), + (0x7887426cc953020fa55c662cfc7e339fa7aea05f, 'Metamars NFT', 'SMI'), + (0x78876287f4ba403371be9a87289ed450ac8a1030, 'M5NFT7', 'M5NFT7'), + (0x7889ae591856c6712c42050fe80bbe772a26e1fd, 'Bulldroids Official Polygon', 'DROIDS'), + (0x788bbaf97bd349530636dbda72716460fcaee600, 'Gravis Finance First Mates Collection', 'GRVFMATES'), + (0x788ddb32da9b92f192e7a5fd49daac11a14292f0, 'Apymon Warriors', 'APYW'), + (0x789574d6b5f92d96792f5a950db55af56ee45a56, 'TDN_0001', 'TDN_2'), + (0x78970d0c6e8cf87f8ccb70755ee395c4478e0cea, 'MetaTokyo Merch S1', 'DCL-MTTKYMRCHS1'), + (0x789e143c4adaa08b51e73361c58e2fee5aa7a946, 'Weird Catgirls', 'C'), + (0x789f2d3cb520f846cea6ef0e0c0290d96c3994bd, 'Popping Pops', 'POP'), + (0x78a1ef235f859ee402ccd0b7d38c0559b566ebc5, '[DEVELOPMENT] Ro Go2022-03-14T16:19:48.339Z 730510', '[DEVELOPMENT] Ro Go2022-03-14T16:1'), + (0x78a268c4662f2993b23569ed32244906f7f2bd50, 'Blazin Suit', 'DCL-BLZNST'), + (0x78acf9551a9f4ebca9695bb1715dca12a31a68b8, 'SkulledNFT', 'SKULL'), + (0x78b2fe2abf89c2e60a95c906a14dea6dca0a5370, 'nANIMALs', 'NANI'), + (0x78b5b02b80d4000229c461fac76621782d647bcb, 'EstateRegistry', 'Estate'), + (0x78c8be93e07cb0673c18e090405fb3214a099c3a, 'CRYPTOPINES', 'CPIN'), + (0x78cac6e03a1794578140cd2e4919cffa1204aa6a, 'Sexy Bunny', 'DCL-SXYBNNY'), + (0x78cfa53ac1de634d9268c317269867f20c04ea76, 'Space', 'SPACE'), + (0x78d0cb9d88fb092add953d1d0f899da6db299b96, 'Jimmys Horses Club', 'JHC'), + (0x78dd7736497641d6bde32dac01433901f9ea9de1, 'aaaa', 'aaa'), + (0x78e47e1eafdf1ea7a208dd18f85a2947a91db7e7, 'beezal.digital_ZeroX_PfPs', 'BDZX'), + (0x78e6b9eb37e1d41ca6b99fe954c9e1f82436c72c, 'Grandma Cat “Love”', 'SWEDC'), + (0x78e6c8b8dbf700195afa7b687412223217a5c725, 'PaintedChickz', 'PC'), + (0x78eaeaa2f6ed2c1799677e430e2591b281f0c17d, 'Dream Own Home', 'DOH.'), + (0x78f1112212378bcb1d843c32cb4468de5249235e, 'Altcoin Radio Gear', 'DCL-ALTCNRDGR'), + (0x78fddac426fcb701c2890f51e6a83241080434a5, 'NFracTals', 'NFTJ'), + (0x78fe66675d17a83528d4a751404f051cc4743323, 'Garden Gnomies Group', 'GGG'), + (0x78fe77d696a6b7bc21fb352bec7f8fca0de6c865, 'Nifty Crazy Lizard Army', 'NCL'), + (0x79104beca59cae0eeedd5ecb9fbc1aad90ca40fe, 'HeroBabies Club', 'HBC'), + (0x7913f1c0a07102c988d807d283496dc9c52a8802, 'Omaha, NE Silver Edition', 'SWEDC'), + (0x79161c741379c1bcc815fd73d37b91cd8e159b6c, 'BoredHipster', 'BE'), + (0x7918c2922cdd3baa24d0ab0afe0f8051c370d917, 'Polygon Packs', 'PACKS'), + (0x791fdb70275c10633ceca3eaa030cfa993435ec0, 'CrackedOutCats', 'COC'), + (0x792124b88a63abcaade8bda7eae56e3e8706a212, 'MetaTravelers Nibiru Prime', 'DCL-MTTRVLRSNBRPRM'), + (0x7926ffab05ae9bc196248120238ddc0f85aed9ea, 'MyBiasSwithNFT', 'MBS'), + (0x793574558a088cdf50ffa392981282c80f70d0ab, 'Only 90s Kids Know', 'DCL-ONLY90SKDSKNW'), + (0x7938c971c0c2acec748bc6e764470765e207517d, 'JANSBOYS', 'JB'), + (0x793a65d9bd5426d728a9cef9b4d37f6c51cdceaf, 'Artefacts by Ethlas', 'Artefacts'), + (0x793f6c8492cdfe8fb050b90f9eab452a4ca63788, 'TRIBE X', 'TRIBEX'), + (0x794167c281be8c0f5553970896ad4f5608d608a2, 'HypedApe', 'HANFT'), + (0x7943a66d46dade822f2f8e209979a07a2bb05e54, 'AviAvocado', 'AVI'), + (0x794a8390d94e32b086908d2ba9d66300aa163c62, '.ape', '.APE'), + (0x7950ddfd2b476632f3f7fb5300a47286432269f1, 'Maribye', 'WILDEARTH'), + (0x79576fec4482e9884d8d852c62fb4d4ca58d2131, 'RugSurgeonTrophy', 'RSTNFT'), + (0x7977b228998337ab72a6e068766946521cf5a224, 'ChammiGon', 'CHAMMIGON'), + (0x79853680c884db3eed9c40414a8d93e17f464869, 'MeeBits', 'MeeBits'), + (0x798fec7754638a218534ef398e2428a5a7451c21, '20220321', '20220321'), + (0x7993701ecb07fcf0eeeef0735fdfa96214fbf944, 'EPICBEAST', 'EPICBEAST'), + (0x7993a8af29c930bd472a1a37b3af2d7855a441ee, 'Subnation', 'DCL-SBNTN'), + (0x7999e6cc611e76ec8f05f2bab7dbd7db6399e580, 'Akumus', 'AKM'), + (0x799c02b111fa622080e26a696bdfd79b4ccb4d9e, 'LostTurtle', 'TURTLE'), + (0x799ddbe7262590a258ade68793ce4f987f5b22ff, 'MintMoney Mini Six', 'MMMS'), + (0x79a1743a039f00be411e1523b48320baaa7c8898, 'Fly on sky', 'Fly'), + (0x79aa04c69531a25a882ab107c31ce2c902f140ce, 'NftHunter Access Cards', 'NFTH'), + (0x79af66c01d3092dd687186a1307cc4ab26793f89, 'BUNS.LAND Alpha Giveaway', 'BUNSAG'), + (0x79c776543cd94e30f117be16653d2b32fff3f694, 'Sweet Turkey', 'SWEDC'), + (0x79cbed473efa0e8ca16bf0da99c06d037fc5c65c, 'DIGINOOR V2.0', 'NOOR'), + (0x79cf7f15617a1261c4649047ad0ac3dc7ab0b90c, 'The Aquarium Streetwear', 'DCL-THAQRMSTRTWR'), + (0x79daa5add3ce26c9922e6e564268b56a5fbce520, 'TensaiStudio', 'DCL-TNSSTD'), + (0x79ddca24e8b5c4f874b04618b2b5098a94fcfe1f, 'DeRace Liquid Love', 'DRCLOVE'), + (0x79dfe43b4761ce37a6afb723ebda7b167bcd9834, 'Bored Ape Fan''s Club', 'PP'), + (0x79e205f52a6b0fd8c034b9887a59d87675258df0, 'Fiendish Friends', 'Fren'), + (0x79e96926c42e4a83eddd741ee2a9088e1df84181, 'Kaiju Kongz Club Official', 'KKC'), + (0x79f1786aa735dd665805dd025f7c1ef741ecc72b, 'StonerSquad', 'STNR'), + (0x79f2c6be87f63a4e3ff62643bf092762e57282f6, 'bapetea', 'BPTV'), + (0x79ffbd1d9f8269b41eecedc85be2b900fd2c9448, 'Lurk', 'LRK'), + (0x7a05c41ce9f2893df69548786f8e43ea4de8f9b6, 'Cuna White Witch', 'CWW'), + (0x7a05d682fd3a8b8484135ed7d3b5d3835af3bddc, '0xTastyBones_V1', '0XTB_V1'), + (0x7a0a794f4306daa6913ec2a9b2b6ca89eb2ffd02, 'DreadFulz', 'DF'), + (0x7a0aa592d3d725492ef994759140d585765c5799, 'YEMAYA the Protector', 'YEMAYA'), + (0x7a0e60317105fd3d63f651d8ecdf5c1321506e61, 'BigFatMonster', 'C'), + (0x7a0f147c34a5391e43040d457ce344deed9e1a17, 'Django Dino', 'DD'), + (0x7a1481dd75c18297a4d38899c0f17e2822fb4be1, 'TheYielders', 'TY'), + (0x7a2d4a8933c2a7db5ec1d00110aa732fe0884c7d, 'Generation #26', 'G#'), + (0x7a2fc4c004d04ebc1e252311c28171c897e8437b, 'Astrological Punks', 'AP'), + (0x7a366fba5d1c005fbb2b454fc55f16cb3613ec1d, 'Mister Otan Club', 'MOC'), + (0x7a3a0e16c6bc0a723cecc7bcc0e2d0a18fda6d4d, 'Ice-Ice-Maybe?', 'DCL-IC-IC-MYB?'), + (0x7a45486a02e105de7b65533bd28cd52303d1ec4c, 'Collie Buddz', 'Collie'), + (0x7a45f1e9589454ce5ffcf04a43074ad6ec57d5ed, 'Braad The Monkey', 'Braad The Monkey'), + (0x7a4841cd0cec1e2ed8e639e6145c271511cd6fe6, 'Hands of Hodling', 'HOH'), + (0x7a486dfcf82538ca7743428a571d82be70105dd3, 'Expressive Human Board Club', 'EHBC'), + (0x7a583dd800925799ed9a761bb46b776e3aaeb53f, 'Spaceship', 'SSHIP'), + (0x7a583f49699065ffaef1db5b2e8836cd644fbe46, 'TCKTS', 'TKT'), + (0x7a5c46d77a9dff0b4b4c668dcde72f1ad14d5b94, 'The Grand Canyon Bone Club', 'TGCBC'), + (0x7a639496d1f636881d3abcf93b9bc3438ddbbb58, 'Bron', 'SWEDC'), + (0x7a663fd86b03a4a8672b9b522ae54f728080a246, 'verycooldeer2k', 'vcd'), + (0x7a6c95602cfc751220781a00dc695bad9745b7fb, 'Mandolin My Keeps', 'KEEPS'), + (0x7a6f8020d3f991d7fb56d1434a35d134aa073fbe, '2D Ape Club', '2DAC'), + (0x7a714e52b8870214dde285cbfb08c3099fc0e4ae, 'Particlon', 'Particlon'), + (0x7a766fdf79a608051e6a28e8249c6e0cd4d8475e, 'Gooberland', 'GBLD'), + (0x7a779432d80f7ff51f4cff2a4891ffd60dbf9bcb, 'KIWAMI', 'KIWAMI'), + (0x7a7bfbe46f8d1f77a33fa1e7bdbaaf14b022da37, 'Dapper Turtles', 'DTC'), + (0x7a7c970483002a7162b5831f53b347f437035c9a, 'Lion BUS', 'SINBBA'), + (0x7a7faafe1bd04e51d16dd773596a229cfb31f5db, 'ConsenSys Wearables', 'DCL-CNSNSYSWRBLS'), + (0x7a80e0b9992d1a5d2a10082d30ed653b9ac061f0, 'The Fallen Wings', 'DCL-THFLLNWNGS'), + (0x7a827e03d5a33401d5f18e294737d98a6579c77f, 'JAWLINE PUNKS', 'JPUNKS'), + (0x7a87696fda9a6a30f4230c3c3cd441a3ca3b6abe, 'Unoriginal Punks', 'UNORG'), + (0x7a9452e7b285a19816b513fab30a85af6a14781d, 'Stoned_Dragons', 'STDS'), + (0x7a957c05e570a6726efd1f1c3abd8f1ef0177046, 'Saiku Take Shrine NFT:Token', 'SAIKU TAKE'), + (0x7a96e93686004b54067060b5c5c326dfb74238f9, 'Canverse', 'CANV'), + (0x7a98c11d8c3e599b0624ba352641144b0f62ba9c, 'Samurai', 'SAMURAI'), + (0x7a9e1889ce1d78c4e8dcb511ec2c0185838753f1, 'CipherShooters weapon', 'CSW'), + (0x7a9e82cd910eccb732e46e4a6858ab320a79b69f, 'Big PeePee NFT', 'BIGPP'), + (0x7a9f222f0ba7028a668a8b1e81d2f704935815f4, 'CybeeDAO', 'CybeeDAO'), + (0x7aa8a32a0be9765cbaa5e5c945bbf72a0e704877, 'Explorers of BARC', 'DCL-EXPLRRSFBARC'), + (0x7aafaa1fdc8a7a1d2112f6d160e3a4a7522757be, 'IciIci', 'ICI'), + (0x7ab24c81f8e2e6e6e7ff7f95f8d7b27b29317821, 'War of Lands', 'WOL'), + (0x7ab6ae6a130ae585e6182f256356612047612d98, 'Gold Drip Collection 1', 'DCL-GLDDRPCLLCTN1'), + (0x7ab7d77a4984860ebbc6e189d970fbebbe723427, 'Quantum Accelerator - Gamestate', 'QA'), + (0x7ac0509a91d3e33346c10ed804f8ffe7208090e5, '[DEVELOPMENT] Kl Bü 509082', '[DEVELOPMENT] Kl Bü 212777'), + (0x7ac71adc499d38fe046f713e22edf124e7531eae, 'NFT Garden', 'NFTG'), + (0x7acaa60137108e89bd5449c8a2eff6cdfc4ff20a, 'The LoveKittens', 'LVKT'), + (0x7ace20c7c8eca78f7f4b8438e025790a1aad036d, 'RADICAL DAMES', 'RD'), + (0x7ad13780a90680f0d211b31e304230c08084d328, 'Every Minute', 'EM'), + (0x7ad66ac79dc6d89eaa5f27cd4693b2130110377f, 'NFTasha', 'TASHA'), + (0x7adeb2000d0e1f5e4edf9b57378246c8cd312de5, 'MG', 'MG'), + (0x7ae18223a4b91ee349576fb217ff855d4ed56982, 'a', 'a'), + (0x7ae3f8ed48eb3c25e53500a518d41bf45b838d9f, 'Waifumon Fairy 2', 'DCL-WFMNFRY2'), + (0x7af23d5ac1b10e762630cc308876fc7233f047fc, 'Space Cadets', 'Space'), + (0x7af829835383dcf8d3e0172b273b32302377c75a, 'evilbunnies', 'EB'), + (0x7afd0b2331ff89b75863cccd2756c1d3cc0194b1, 'Bored Ape PoIygon', 'MPC'), + (0x7afe398ceb7864ee111ba9946034873d8d53c95d, '1', '1'), + (0x7afef06ab04d9210c3c6b3802ce3061dc2993e09, 'Election Integrity', 'KEI'), + (0x7b00bab9201d99cb08f3a45c5731a42defd24f93, 'BENFT1', 'BENFT1'), + (0x7b06e1abe1522dd1d065853e2cac393bb28fdcab, 'Crypto Dicks Club', 'CDC'), + (0x7b14167944eec8c86a7d223552b4ee8c536e0556, 'Helpful Baby Club', 'HBC'), + (0x7b1659b0d16f90f2672cffe2b71ae595cb1fc135, 'Skylinez Official Collection', 'SOC'), + (0x7b19ccded23c9bd023724176590693bdbe94e369, 'DDNFT1', 'DDNFT1'), + (0x7b1a43f43a632c23b59c5975b911d866c232a2bd, 'CoolFoxGang', 'CFG'), + (0x7b1b6d51194a58018547180573995102580b37c8, 'CryptoCabz_s1', 'CBZ'), + (0x7b1db984a2f614e16ec6f690fa27b44086aa05d4, 'Corpus Christi, TX Pop Art Edition', 'SWEDC'), + (0x7b1ff3b0822b7a24cdbda8ed9a5a271149dd1baa, 'CryptoTurtles NFT', 'CTNFT'), + (0x7b23dd6c2a64c3b858ec9d7a2f516f75a677305d, 'Dunhuang Grottoes Murals', 'DGM'), + (0x7b263a7546170682d459041444be8ddf66cf6b0f, 'BUTTSY NFT', 'BUTS'), + (0x7b2a989c4d1ad1b79a84ce2eb79da5d8d9c2b7a7, 'DigitalaxNFT', 'DTX'), + (0x7b3640c750ac7a75babaa2d3919173929c657ce0, 'text', 'test'), + (0x7b3f1756b56c1be44de76cbce70050f291ae7517, 'Woims', 'WOIM'), + (0x7b412f41f9b0ecd89f69f0f728c6928fadcbd108, 'Killer GF Polygon Official', 'KGF'), + (0x7b419e2151db595502d5149b538873b6dbc61ca4, 'FrogzNFT', 'F'), + (0x7b44f24b5ef3adb2b1228ebd46ea7e598df2955d, 'My NFT Token', 'MNT'), + (0x7b46b3f63ffb8703a0051eecaf4d2dcdcd8c7585, 'Vox inWonderLand', 'VOXINWDL'), + (0x7b4b9433ce6327510ab35ec5b87a7b3185108dca, 'NFT Garden', 'NFTG'), + (0x7b4bb9629357b2ab279b523ffee1e040f02ed1e2, 'Vikinggar', 'TTKN'), + (0x7b53201d55edc7d9a7de3dc7732ae6c7d735313d, 'M5NFT6', 'M5NFT6'), + (0x7b5d5844f007117c6d080624ff46523d968f9286, 'CryptoCatrines', 'CALACAS'), + (0x7b63346d442daf91934d3026e21230e34f2baab3, 'Plagued By Polygons', 'PBP'), + (0x7b6648b0b53d76b6c5057951def6dd9c6af506de, '1970s Commemorative Ticket', 'SWEDC'), + (0x7b6cf23cc57d12f5f77f48c1db54c2d5246f1f9d, 'King', 'King'), + (0x7b7347fc5e5f3e00ff00882dc2bf021bcb47f9a0, 'NFTWebWorld', 'NWW'), + (0x7b76c378cb26e31e92e4f1394e900bd91804213e, 'SG Pre-Season', 'DCL-SGPR-SSN'), + (0x7b77acae7cfa21efcfb0afee77106a1dda78632d, 'CryptoBear', 'CB'), + (0x7b7df6744ad6b889785b3ddda50da2184aa11b07, 'GEN-H14', 'GEN-H14'), + (0x7b7e2454f6e4ee62b5f855222554aee4979aa743, 'The Forester', 'ESTER'), + (0x7b92b48b03522b07a052b017341389ba93769b0e, 'RocBabiesMatic', 'ROCBABIES_MATIC'), + (0x7b9e9926157172ed8c59bf4e831837cbf7a8725b, 'Wake n Bake Robe // FBRN', 'DCL-WKNBKRB//FBRN'), + (0x7ba69573b753841ce54ec3843bf6aa2ad7453521, 'The Aquarium Menagerie', 'DCL-THAQRMMNGR'), + (0x7ba82c70d7b0bf415756a3e58fa986fca68392df, 'Dogelon mars social club', 'DMSC'), + (0x7baef2ab63a2d6bc68f4dd3ff66fe69008fcf3e5, 'Neros', 'NERO'), + (0x7bb052992465598b114e01ef0686b582e049fc63, 'Mirtat', 'MRT'), + (0x7bb0557bbc8028670898685a23f19b11f22a2549, 'Orlando, FL Pop Art Edition', 'SWEDC'), + (0x7bb6172175eeb3e96f35e6d1e022ce41e8b69ff0, 'matejci', 'M'), + (0x7bc5bd168dce76499ac2d5fec397201c20576694, 'Beyond Realism', 'DCL-BYNDRLSM'), + (0x7bc854cd4a8a9ae13fc32d8faa586441b08490a5, 'Passport of Spark Era', 'PSE'), + (0x7bd9001556a2c66fc507e22cd9dafd7fc473d044, 'Metaverse Monkys', 'META'), + (0x7bdfbcd72bec49fde3bf0f027acaa3554d999c3d, 'The Impossible Game: Words', 'WORD'), + (0x7be4c2d348fc08591ef7ae15f2326cfb3ee6f371, 'AQIRA', 'AQ'), + (0x7bf445691e759c878ad64cce1445c282d176f009, 'Alien Ape Mining Club', 'AAMC'), + (0x7bf4484ea3a83b5b9ecdd66b042d519494fdefa2, 'Lazy Goat Club', 'LGC'), + (0x7bf6cb7984f741003d2d270316fb03a6ef10701f, 'Diamond Hand Cards', 'DHC'), + (0x7bfba2925b19c60f28523025858daebc0fc73aa7, 'ABC - Never Ending Feather Token (NEFT)', 'NEFT'), + (0x7bfe20dc2594f739bb1ff25c94b7ea278eac5ecc, 'TGNFT7', 'TGNFT7'), + (0x7c09194d33686e9b4dda51a5221340f484919446, 'Matic Mike', 'MIKE'), + (0x7c104bf6ea067d2e4a953e97cef766e4efe18899, 'Leather Bucket Heads', 'LBH'), + (0x7c19b6325cd5cafb878de7c56974c9c975d3145c, 'Audiograph Founders Collection', 'AGFC'), + (0x7c1a1c1e540e6c6f59f1748c3c2edf39f8cc06ee, 'Furry-Hand 28-Day Note', 'FURRY28'), + (0x7c1ca1d5e57f4484f7487bc7998fe59dfdf1f305, 'CFD NFTs V2.0.6', 'CFD206'), + (0x7c1db4a702b4877edc6b8564a527cccb0185da4d, '*ThePizzaSlice*', '*PIZZA*'), + (0x7c1f2e0ea8ed9013ea9ac6daea70447c5475b9fb, 'SLeN faces', 'SLeN'), + (0x7c1f7652da8fbc04713ca9547a577b8f0edc29e7, 'Travel Punk Official', 'TPONFTV'), + (0x7c2c55a9a1f1270743fa12dc5d1a8750163bd299, 'MetaBunniez Holiday Season I', 'DCL-MTBNNZHLDYSSNI'), + (0x7c38fd66a5bdd0e3104b1567ab408392fd7c06f9, 'Proved', 'PRV'), + (0x7c45cec9bc1ee1e33d543b5d12b082c189bd9597, 'Ape Doodles', 'Doodles'), + (0x7c48ef92591b3de91aa7f4b97c812d0b935f2a2e, 'AlphaNFT', 'Alpha'), + (0x7c508be9fa3828de35177b798164cc07bd5155cf, 'MetaFest LSD', 'MFLSD'), + (0x7c545ed4475ff295a467ac9812d8264023bf983b, 'Digital Kings V2', 'DKS'), + (0x7c55d5999c1eec6fee686704234d6abbe7e1ca02, 'Gala Music Coachella', 'GM'), + (0x7c5afa8d354a14441868ddd6857c259c4724db6a, 'Polygon NFT Standard', 'PNFS'), + (0x7c6bcfb33f949931ad20d5802af694ae714024f3, '#NFT_IZMIZUM', 'IZMIZUM'), + (0x7c6f0f94783fd3a979467b3c449035c25c7a2fa5, 'Typhoon Attraction', 'SWEDC'), + (0x7c7925acfc36e51a5949f35e2f3ab7afa92943e5, 'Pixel Ape Money Club', 'PAMC'), + (0x7c79af9ba6fe70aeadcd6bb0b8428f930389050d, '[DEVELOPMENT] Lu Wa2022-03-14T15:42:51.190Z 675601', '[DEVELOPMENT] Lu Wa2022-03-14T15:4'), + (0x7c81a74286bafbe011cb1b8606b2c44ddd96e218, 'SeekNFT', 'SEEK'), + (0x7c942e1d49cdf5ba117d4b37f6e5e4f5c1c43848, 'tet', 'tt'), + (0x7c9478590817bc0b648fbe9d16022f0a217c1f2c, 'PeacefulBaymax', 'PB'), + (0x7c96d581657a5b19595edc0548e8a7c8fbe75daf, 'KALEIDO by Mr.B', 'KALM'), + (0x7c9fe6d2493f13b0705758c6990de59f09d10f42, '7HEYWAVE', 'DCL-7HEYWAVE'), + (0x7ca1196580788e5d0bae2581c9b1a8f6dd11fc96, 'A Colorful Experiment - Morpheus Art Lab', 'ACExpMAL'), + (0x7ca3b8e00123c359596b016c6d06e9aff75d5c13, 'SpaceMan CREW', 'SMCREW'), + (0x7ca4b7273d1a7864c6c22ab740164cbe44c5fc74, 'IMOJI', 'IMOJI'), + (0x7ca53130fe63099f15e21022cbbc6b988a8863df, 'AO 2022 - 70s', 'DCL-AO2022-70S'), + (0x7ca58496d235425b28e8d81f6c7a35b7a05291d3, 'NFBeats', 'NFB'), + (0x7ca5ebf8f8ca81a80e2086094de4a8d99aee8b9f, 'Mortiverse LKRV Alpha', 'DCL-MRTVRSLKRVALPH'), + (0x7ca8a0b1f8abbe29feec6b5180c515f8decdd300, 'MINIMALISTART', 'MA'), + (0x7cad85f10e9cc1fbd35a59a0ef0ef2a95bf2fc59, 'The Bored Camel Club', 'BCC'), + (0x7caf4959d37620242783945a8e34a91c8ec23730, 'CringeComics', 'CC'), + (0x7cbf49e4214c7200af986bc4aacf7bc79dd9c19a, 'Celsius X Doge MAI Vault', 'cxDMVT'), + (0x7cc72d70d04d617695155048690664abbe64265f, 'Cornell’s Real Signature', 'SWEDC'), + (0x7ccb1f543a640358b829ff041cc7c0cb7364aedc, 'Daniele Di Donato', 'DDN'), + (0x7cd2de665c243a8a51f694e9c1cffa8e28edfe42, 'SockBuddys', 'CP'), + (0x7cdcbad0f36de833aaba7ae7f6d279a948272cf1, 'Skulled Pumpkins', 'SKPU'), + (0x7ce509ea1c7c269c88628c63de05498a14c15418, 'MaskOn NFT Limited Collection', 'MASKON_LIMITED'), + (0x7cf7492a3dc0b29b8cbe0d41b57b451b82a0d972, 'TheHumanPunksClup', 'THPC'), + (0x7d013cc0f4f70653b9b292101f26fc12007ddbed, 'GEN-T31', 'GEN-T31'), + (0x7d0b965cc7ee43a65500feb8e0b50be5cda53c20, 'bapeteaeeeee', 'BPTV'), + (0x7d163316e2b73ac1f0fe6ddf0f81337714eb997f, 'ShirokumaStudentV1', 'SKV1'), + (0x7d1f38813edfb29cc3d950c4d0ab74f30ca7142a, 'MonkeyBarJungleClub', 'MBJC'), + (0x7d212e9a5b16e7f5df6e617abe9f82231131b633, 'Gray_man', 'GM'), + (0x7d2bce28ebea6141a6e53cf328a330a0be3880be, 'Stop The War', 'STW'), + (0x7d36999a69f2b99bf3fb98866cbbe47af43696c8, 'Celsius X ETH MAI Vault', 'cxEMVT'), + (0x7d37884e024bd7d6849ad92e10f4dc8d2eb2c29c, 'Red Sea', 'RES'), + (0x7d378f618ccaa6a0cb1772e1053c181232396bd1, 'GS CryptoSpookies', 'GSCS'), + (0x7d472746a2d11eee364eb37cd07686e482b72ea4, 'MintMoney SVCC Game', 'MMSVCC'), + (0x7d48ce550062315f9836aff77375c9a3b0dc5f54, 'befitpilatesgal', 'BEFITPILATESGAL'), + (0x7d4b99f83b38b788c62d515e6b67fc62cde2b0ac, 'Oops I did it again! Meta Skate2', 'DCL-OPSIDDTGN!MTSKT2'), + (0x7d5bd8dafbe972fe0cd450f6ba64df291168ae49, 'Crypto Snow Leopard Club', 'CSLC'), + (0x7d6c5e60ed27a8171ccdc263b7f68b3780bcb2e3, 'Hero Ape Gang', 'HAG'), + (0x7d76dd35ea6673e555ebf7e5c34fe7c092131571, 'Super Xolos', 'DCL-SPRXLS'), + (0x7d837e1c857575cfcdd97a76ef1af39564667bb2, 'JokerCharlieClubVoucher', 'JCCVOU'), + (0x7d86fa2dea66d01ae496d076cbfae92b26b305a6, 'The Hellpit', 'HP'), + (0x7d9078a628a8aaa442aff5606caf0f1b92571ce6, 'DigiCivCiv', 'CiK'), + (0x7d9c470ab55cd24df357e393b38055419a742309, 'Nativz Key', 'NK'), + (0x7d9e429cd005e23da2933f71e77f31ea2c2cbdf5, 'little girl', 'LG'), + (0x7d9f9b71f23017d1d4d7dad5fa18c2411ed30966, 'Dark eyes', 'DCL-DRKYS'), + (0x7d9fddcf47b0455d45837509273583ed9c291e76, 'Rich Man', 'RICHMAN'), + (0x7da2309cb399aa6438aed47d98b9560d26f7e510, 'BittyBots', 'BITTY'), + (0x7da4a57dc3f4660a2cf843e8badd21835b394c22, 'Warp Starships', 'WShips'), + (0x7da5abfa777cef3e715b2e34e8cb2aae421584f3, 'vrido5', 'asd1'), + (0x7dac95d3af6636f5cb3867d04b26686bcbccdba9, 'Solana Doodle women', 'SDW'), + (0x7db448ff56ca849a74a9dbce5e5f653834005b3e, 'TokenTraxxNFT', 'TRAXX'), + (0x7dbdce9421e140db4592d8abf84685cfdaa63c3c, 'LILNFT', 'LILNFT'), + (0x7dbdd24137d3cd90c29044b05d4817d73a5eecb0, 'PXL HNTR', 'HNTR'), + (0x7dc1afd77f9b9df2cf1724484fc6f85e75573532, 'zuixin', '21'), + (0x7dc8a88ac5edf58797784de58da18f724f630711, 'Golden Girl Pant Suits', 'DCL-GLDNGRLPNTSTS'), + (0x7dcbf335b88b4b83285274e152d23ec60e0a8f2a, 'Goblin Mob', 'GOBMOB'), + (0x7dcd9f025b82c656bd1443d2ad3c95d416f70575, 'POLYKITTIES', 'POLYKITTIES'), + (0x7dd1385560df0b576234f688c246ccb51d6c05ba, 'ROTTS Revolution NFT', 'ROTTSNFT'), + (0x7dd64b5c51f84c0a72aab93f82f2f148de7642e2, 'CATERPILLAR 3.0', 'DBNFT6'), + (0x7dd6da9f609c8a1b079d6ca36b2a886c18a2112f, 'Dalgona Candy', 'KNDY'), + (0x7dda5e1a389e0c1892caf55940f5fce6588a9ae0, 'camWBTC MAI Vault', 'camWBMVT'), + (0x7de96909ff1a1587f33532987ce774ee6e3e10f1, 'American Indians Life', 'AIL'), + (0x7dec38e3874ecbc842cc61e66c1386aca0c0ea1f, 'adidas for Prada Re-Source', 'AFPR'), + (0x7deeb8a261aa81d874ca4011e821f8725b93f0fe, 'Film Crypto', 'FC'), + (0x7df0751eda01b68bb5a4818828606908f4c424c7, '8bit tiger', '8bt'), + (0x7df8d865690f37b9af131c42915706e4b256a9bd, 'Exotic Centaurs [Trendscrafters]', 'DCL-EXTCCNTRS[TRNDSCRFTRS]'), + (0x7e220be562ef8203da670764eae9488c4ff1ac6a, 'MetaMuscle League', 'MML'), + (0x7e2af195a83fdf57080a118fd497daa479bf60d2, 'DoodleGoats', 'DG'), + (0x7e327b36c72173824eff938302e00faace26f2f5, 'Australian Open 2022 Costume', 'DCL-ASTRLNOPN2022CSTM'), + (0x7e38ab90c1f3547f09682ec094de2ec8b17c5ae6, 'TubbyTabbyz', 'TBTB'), + (0x7e3f56f51fef293a3ba01a8d98a9e44112541296, 'Ancient Alienz', 'ALIENZ'), + (0x7e472bbba9c8eb560eb97d4c3b76bc945e1b4b10, 'R200', 'R200'), + (0x7e4d2eb0852ca208724775ebcb67be7b452901ec, 'Troll Game Mines', 'TROLLGAMEMINE'), + (0x7e51bc54bea889332f6bfdac820c525430a803cf, 'Putin Huylo', 'PTNHYLO'), + (0x7e553ede9b6ad437262d28d4fe9ab77e63089b8a, 'Summer Festival 2021', 'DCL-SMMRFSTVL2021'), + (0x7e591606263fda69b7e37f8c8c799e3f48e76c5d, 'CryptoCatsClub', 'CCC'), + (0x7e5c9d01eb9b44fbd3e6946c1c68e38b956e63a7, 'NeoPawns', 'NEOP'), + (0x7e6320e422f87de70e6a39b4107d0997665e1f48, 'Degen Dragon Cosplay Club', 'DDCC'), + (0x7e660b3656067aee5397592d19cd65e7819bbf6e, 'Nike Bored Apes', 'NIKKEKE'), + (0x7e7620449b0de00fd28abffc545c47bfdde5c10a, 'Molfoys Owl', 'Molfoys Owl'), + (0x7e7ee50a425fbe96c550d703267781b050162c65, 'monkeys', 'TTKN'), + (0x7e83e43bf89acbcdc56f314c455bb966bb4cdb4b, 'PEYOTES', 'PEYOTE'), + (0x7e85c7b4f4dba43798d9ad9466492bb228b0c732, 'Extinction Fighterz Collection', 'XTFZ'), + (0x7e867e639e5ddb1ef528c033a0b7a3d5a9d849f0, 'ETH Goats', 'ETHG'), + (0x7e8f7b7d67fd531f59b658ba7a3f9e38756b8848, 'Ferrari', 'FERRARI'), + (0x7e8feb0d46f6b821e7de4879579fbbde84b66547, 'Guys', 'GY'), + (0x7e8fef7bd8c6f3b3c0d56cf6cbae8ae08a6dbf87, 'Crypto card', 'Crypto card'), + (0x7e948ae3318e5d644f2e671fef6e1c543b2ef746, 'DBNFT8', 'DBNFT8'), + (0x7e96a589d7ca7554fcd5f1a997cbd00338e4ce34, 'Astro Tux', 'DCL-ASTRTX'), + (0x7e997c5bce5af277987dcb6debe32252df90bf37, 'Northern Sleepy Pack', 'NSP'), + (0x7e9bc2bab52d59186f529c176cce3ec36a3e09b8, 'InterestingGuys', 'ITG'), + (0x7e9fcf5a6e8e004f3e7ee706ca1bb91877f8dec2, 'Cubi NFT', 'CUBI #1'), + (0x7ea7add8fe2bf9fd92c33c0fc0aa8620af31b1d4, 'Web3ConferenceTokyoProofOfAttending', 'W3CTPOAT'), + (0x7ebe82671cfffa98791633268a9523ffaf3dfe13, 'Capsular X-Genesis', 'CX'), + (0x7ebf76b815c616a642718e7313207026e054e8a1, 'NOYEA FIRST', 'DCL-NOYEAFIRST'), + (0x7ec5458ca4d2b2f771daa9876a558685dd3bb0f0, 'Formes de couleurs T1', 'FDCTU'), + (0x7ec57a64de734ca01bc667294aea7bac92b19ae5, 'Crazyness', 'JG'), + (0x7ecb29c25a36cb853a55c371b38f07a1922f1581, 'cheomoto', 'https://remix.ethereum.org/#CH'), + (0x7ecee1977846a676d345632bd5a715bb6eb3e105, 'CryptoDocs', 'CRYPTODOCS'), + (0x7ed5a214d364820938f02d6f9e1046606da23d14, 'BDNFT1', 'BDNFT1'), + (0x7ee256bdee18870320666bb61dd3c33c64025c78, 'TOKENIZED TWEETS', 'TOKENIZEDTWEETS'), + (0x7ee2f3c9d49e4e39e1fbf06519eedd1e4a6e17f7, 'Toyz Official', 'Toyz'), + (0x7ee879825b4942e2c1dd4a1ec18a5aa1afa35dda, 'NFTs', 'NFT'), + (0x7eedf032a24579935043b1794c0eeb00872a1e5d, 'CryptoKaiju', 'DCL-CRYPTKJ'), + (0x7ef42d94db0e21e7f0b8e19dfd4c6f3018c4738b, 'Motobikers', 'MB'), + (0x7ef9179f012543365135e010f4b2e3a0b16d5a22, 'Avacat', 'AC'), + (0x7f00ee49e2128192fec66d3dac94dcb07c728a81, 'FancyMonster', 'FM'), + (0x7f01c1d1c6f2381ad11bc1603a4ee34e6d095ff5, 'SeaCrypt Egg', 'SEACRYPTEGG'), + (0x7f02ca537bebe0c927f71365d80330ec042917c2, 'Polar Paws Fish', 'PPF'), + (0x7f076c85f511d24185a49bb6667fba487395c6fc, 'Rebel punk', 'Rebel'), + (0x7f17e122badc842cfd063d8ee5a472e4e9fa7b16, 'KaijuFrenz', 'KF'), + (0x7f200f4bfb8c9418743d2626ad0e625fbe73924f, 'Crypto Vikings', 'VIKI'), + (0x7f20559214b8d66736b24c44e8fef57ca6f4e16c, 'Simeon', 'Simeon'), + (0x7f20b7e48fb3281a83c413a9e79db48110646bbc, 'Shiba Marker', 'SHIMA'), + (0x7f23c624987e0bb4bc1ca60813b4fdfb2ff30ba3, 'punk11', 'pu11'), + (0x7f26f16db7cd225dc76f9548dd8f05b36ab4c56f, 'bitSoup Labs Moments', 'BSLM'), + (0x7f2bbfadd51a7717171d8f12fd5ed15e25f652c3, 'VeggieversXalienfrens', 'VXA'), + (0x7f2e8b6c55fcc5c52df495065d2147b9eab2cc54, 'CryptoRaidersMounts', 'CRMOUNT'), + (0x7f33b35ed70f0c685424d7210a836b82b76b32b7, 'GEN-B08', 'GEN-B08'), + (0x7f3f160b047fbad2c14214d0ed6f3fcbd0e1593e, 'MGMNFT3', 'MGMNFT3'), + (0x7f45084ebe0d8223ae8636d61eff650a3967a92f, 'NinjaDAO', 'NinjaDAO'), + (0x7f4607e8e286737a90ef391e78b1785796de2a2b, '4th of July 2021', 'DCL-4THFJLY2021'), + (0x7f49d3d876f5e8c7b1bf920b0b3369924b1fea12, 'Cyber Brokers', 'CB'), + (0x7f519db8ee0d35931bda208722cb0450fb749054, 'The Galaxy', 'TGXY'), + (0x7f52f8844ad166ac916d546d5c4ae90bf4c6014b, 'Sealenza Banner', 'SLZBanner'), + (0x7f546cd1f4858a597f69cd0ff0900da2ec21eb8e, 'Grenade', 'Grenade'), + (0x7f581b9c347b21289eb06bc26bcefbfa7a574d1f, 'Glitch', 'TAPG'), + (0x7f5942102b0dee63b17ec9c711bc0172502a9a41, 'Earth Invaders', 'EI'), + (0x7f5dab2bf74a3c2af0a23cda2fb9d0b0ed2551f1, 'Tea collections', 'DCL-TCLLCTNS'), + (0x7f62916d7c645a591be9972e84a641dbb2b4cf4a, 'Cool Tigers', 'ROAR'), + (0x7f63bb986fa2a690a7df3d308be19579e6fdff15, 'The Cryptic Society', 'TCS'), + (0x7f6488b6abae6f3d6256b4ce8e780f082552f847, 'MetaParty Wings', 'DCL-MTPRTYWNGS'), + (0x7f683fbbffad8bf4529a981c752aa17ac10c77be, 'ColorfulSoccerBalls', 'COL'), + (0x7f747aae23096122eb1d7c1980300b403c415412, 'Golden Sand Jeans by M.S.', 'DCL-GLDNSNDJNSBYM.S.'), + (0x7f778ef3e4889ff56ecc5a529d541d2504792c7d, 'Sabertooth Motor Club', 'SBC'), + (0x7f7a7f99cb75a1d490a0db6894c2097df992547d, 'LuckyHumans_NFT', 'LHNFT'), + (0x7f7bd1b003f2e5178daba9fb450a70845842f283, 'Rebels by Night Nft', 'rebels'), + (0x7f7d1f90a13d6f63d8116f485eff005135e49ba1, 'Top Down Pyramid', 'PRMYD'), + (0x7f7eff6650137726b0fc9853f7d5291ecb824ee8, 'Little Owl Company NFTs', 'LOCNFTS'), + (0x7f8484bc38f8472bc583cdd0570dc5dce6639500, 'Mothers Of Earth', 'MOE'), + (0x7f9f33ec992936f9c60fe3ef4f9feeb8fa3a693b, 'World of Ether', 'World'), + (0x7fa5430c371e525f60c04f9d6d333a4e987f4d66, 'FriendsOfOursNFT', 'FOO'), + (0x7fac9d86e8e0fc1315295d8d05ef76a2bba944b3, '3DD Factory', '3DD'), + (0x7fb5a9968ef1bf6da3068aeaf7c3261591397180, 'XNFT6', 'XNFT6'), + (0x7fb62a0b167b9aeca0f83f2417c872768b627e7a, 'MoonDroids', 'MD'), + (0x7fbdbde89ea309332c7bb47d908978aa352826f8, 'Queen of Hearts', 'DCL-QNFHRTS'), + (0x7fc0344254e1663c2ef24e3c063cbec231525c20, 'Saw Chapter 1 by Autograph', 'SAW'), + (0x7fc63709b9d8f621e6cba7d5afd39352d16f1960, 'Paco', 'PW'), + (0x7fc96cec611171f27c233f70128d04dd66c7a8c8, 'NFTIZ', 'NFTIZ'), + (0x7fcb4375189e6b48e577d4fc0d41c05017d1c0f6, 'Doodles', 'DOODLE'), + (0x7fd5507865ef48b3da4f29685fe24ea87154f94c, 'Holy Psycho Peng', 'DCL-HLYPSYCHPNG'), + (0x7fd68268ac24042005fabb52e36f367acf915bde, 'Buccaneers', 'Bcs'), + (0x7fd919a152db6b1852b32dc6185c346534c882de, 'Ancient Dragons', 'AD'), + (0x7fdd1e6a8bc1e6b1b9ae2d7e008cebd72fd7c8ca, 'AK-4D | xTrooper', 'xT'), + (0x7fe038fb65261c430fe0091c5dcb2c8981b2b45a, 'Optimum Treasury', 'OTM'), + (0x7fe0dc24f06b677e2279b50c359920d340f55f89, 'Hot Shot', 'HSHOT'), + (0x7fe1775bf9db68b6d3ecaa96839af3d861f2d08b, 'KUKINFT', 'KUKI'), + (0x7fe9db71c12519c1ce704c1d293af4ce5dd8213f, 'Zombie Baby Chimps', 'ZBC'), + (0x7fefc6afac10fbbec21a3b6bf56d894bfb26716e, 'Bitcoin club', 'Bitcoin club'), + (0x7ff3589ffc2422425a12a59b84a163fc814aa72f, 'Greedy Basterdz EC', 'GBEC'), + (0x7ff6a6c2c9c31d45f64ea84164a13603cadf4548, 'cewqewreee11', 'BAPE'), + (0x80043c35fe955751e1c4190367f9fe60a7c9cfe0, 'APIENS Metaverse Wearable', 'DCL-APIENSMTVRSWRBL'), + (0x8018bdf8ceb5c89d93659ec3030841be9abc01d5, 'Going Ape', 'Going Ape'), + (0x8024061327a0ff05ab0f7c0ff75dd40ccc337f5e, 'Moving Four Words', 'FOURW'), + (0x8025994559b92bfd6c448e0610af7b86dccf55c2, 'MGMNF18', 'MGMNF18'), + (0x8028adea48a41c7a53d750b2c626c8e522b1dc0f, 'SeaWeedDance', 'SeaWeedDance'), + (0x80294ccfa288684c98ed32fc8acf6bb5c2f8a24a, 'Invisible Friends', 'Invisible Friends'), + (0x803a0ecfec42e7626dfc3bf8a5da305a0259d51e, 'YBTSociety', 'YBTS'), + (0x8040df8efbc60fea2723b7e104c0b72d7291668b, 'JACKET - FCK LUV', 'DCL-JACKET-FCKLUV'), + (0x8049fea1ad5555f19293a656b4b6ced16e171f84, 'Travenesia', 'Travenesia'), + (0x804c8cc67ac7e584e0d5bd2bf55e14733d032b32, 'ICY BOTTLES', 'BT'), + (0x804d273c1065d763d21bf0263b08b84c8c861a5d, 'IFNX GENESIS NFT', 'IFNX NFT'), + (0x804ff9c610e1a77fa13110bd31c50ad7ede7a3cf, 'IPFSFINGERA', 'FINGER'), + (0x80500a30f97df7c254e773870e3db4df02ab07d7, 'Crypto Hats', 'DCL-CRYPTHTS'), + (0x805f4923430ad9c4431f9d2e6645012b3166a3b4, 'newst', 'C'), + (0x805fe54a3c5b31c5b46723cec9b4486ec3088485, 'Miami, FL Silver Edition', 'SWEDC'), + (0x80636307d57178ece21baa9c7518ccb0991da805, 'Baby Puppies', 'BAPU'), + (0x80687f464ae72f718e5c078512df40ba9629d1c9, 'Yoga Wear by Artemis Moon', 'DCL-YGWRBYARTMSMN'), + (0x806ad4db0dc72f78c49c7e41c90fe8f16b5e5e04, '0xTastyBones_V1', '0XTB_V1'), + (0x806c44b948144016944b1ecd88c3aa45282a0359, 'IFV Cards', 'IFVFC'), + (0x8071cbbf3ffe83bfe82b254ff6cc808e69a02839, 'Neon Rave Stilettos', 'DCL-NNRVSTLTTS'), + (0x807736c35d75a6a5eb2a8a884607f9ff5ffa3bf3, 'Grandma Cat “Laugh”', 'SWEDC'), + (0x807d2721e905bbe5dddd795caf26cead58b03db4, 'Edu Mar', 'Ed'), + (0x8084b2c88fdfd94b1a8d2f9f7a304c068bcc7add, 'ETERNAL MONKES', 'EMONKES'), + (0x808676154bbcd175415adc4cd648b0bd6a99fe5a, 'BoredApeYachtClub', 'BAYC'), + (0x80935a07f02068c70cd1b2d515e3b8fd12e9adc7, 'VipCatClub', 'VCC'), + (0x8097bffe7c26bc114a136128163b823149c6ae71, '$WCM shoes and ski mask', 'DCL-$WCMSHSNDSKMSK'), + (0x80a44a37b9198f5fa5c2f4ef2748cf109a288174, 'StackOS NFT Genesis', 'NodeNFT'), + (0x80a73c4221198d3f63f7a07160ea3b3ecdeb19f6, 'GreatVikings', 'GRT'), + (0x80a7aa558e75d38426655b9531271dbae7b3ad36, 'ArkenAirdrop1', 'ARKDROP1'), + (0x80ad17776bcfc39dc7f616b27677963dc58b9e06, 'TrustIn', 'Trust'), + (0x80bbc54afef1f471e61a58f2d4f3bd491ed67485, 'Quick Faces', 'QFACE'), + (0x80c3b384c477b479eef230867980bdfe4d7a93b0, 'PERSONA X DECENTRALAND', 'DCL-PERSONAXDECENTRALAND'), + (0x80c6238462d6276bab140c7acea5da946d386597, 'Collection3', 'c'), + (0x80c72bbf49afeaed03b6c5e56aa42a08fe075f12, 'Darkness Egg', 'Darkness Egg'), + (0x80c85aaa4320bd5b475f466d6791de3799927090, 'Angry Puppy Smoking', 'ANS'), + (0x80cae5897d0054dd120c24156053f193b796a623, 'Sophisticated Dinos', 'C'), + (0x80cd7c798d3203a03bca4210aedc9fb3261ed6b7, 'Lil Ninja Guardians', 'LNG'), + (0x80d2630f818e848d1a1aba315d275c0222688d3c, 'Detective_Club_X_GutterCat_666_Trophy', 'DCGCG'), + (0x80dff0e1b87b5ba78b2826f161f24b62446352bc, 'MintMoney Season Zero', 'MMSZ'), + (0x80f17ac7a4364ccdf742f83d3f33cad154d63907, 'Women Unite', 'WOM'), + (0x80f19847aebc045f792eb062501a598bed2dca38, 'Project Phoenix', 'PPHX'), + (0x80fd00e6037cd0745c262d46130a38e7dc596bb8, 'PixelLifeArmyGold', 'PLAG'), + (0x80fe2feb60436b3d076dd04fa3176cbd4cc370c4, 'M5NFT17', 'M5NFT17'), + (0x81073b56960467c8c356a377bfafcb080d024a2e, 'Work Dogs', 'WDOG'), + (0x810ce29a47eb7bac5c0d1125110fa370b2d6815b, 'Rogue_Rabbits_Rarrible', 'RRR'), + (0x810db637985e061defbccb24a87c7cc9bd8071d2, 'Crypto Monsters', 'CM'), + (0x811629008161db3e6d3818fbb64cb106040ab4c2, 'Web 3.0 Hackathon 1st Prize', '1stPrize'), + (0x811937ffa6d94596d03f9f458dc006e43059f321, 'Bulls On The Block Official', 'BOTB'), + (0x8120da59fdc2251970aed41d1de4eff72689bdf4, 'THUSUNDKALL', 'THK'), + (0x81237aa047f4fd127b08331c46ba72e5d3d3f6cf, 'CryptoBuckey', 'BUCKEY'), + (0x812ebf6b24be036bd0edc08c44df442369ecf837, 'ApeRetroClub', 'ARC'), + (0x812f90f456bff98b8f3d38753aa80d759f8a5275, 'SuperAstronaut', 'ASTRO'), + (0x813543b23cd65a95f1c1e4b6a698961ea0c7e263, 'M5NFT2', 'M5NFT2'), + (0x813b1357507f87b37eabbee00a5b64388baee324, 'Censored', 'DCL-CNSRD'), + (0x813fc48c1217f2e85b90f2cd184b8bc3c8e1c23c, 'Just a guy with feelings..', 'C'), + (0x814345ffc77fe33a08859ac49855a596b57d405a, 'CrazyThumbzz', 'CTbzz'), + (0x8146c9f54fa632c1d501478dbb54131baa728d52, 'Bored Orc Crypto Club', 'BOCC'), + (0x814ef8d03091fdb9f5b2f8dc50e11cc245803850, 'Lionia Club', 'LCM'), + (0x815a787b0dfbe0f5db23f3a91dc154074385847b, 'Monster Companion O23321', 'MC'), + (0x815a83030fb317ef1da688a2393bbdb52dfb5f87, 'Aquarium Launch Wearables', 'DCL-AQRMLNCHWRBLS'), + (0x815d152e5aab9174e5a6e702f7de671c4d2533a5, 'NFTMasteryToken', 'NMT'), + (0x815d78d262021d6cfcf11222b06b279d98416a5d, 'MFRM Token Backed NFT', 'mTBN'), + (0x81615e24346c15f469375a0014092ffe55340e75, 'BANCO MALO', 'BM'), + (0x816cd3c16898f96f989fbb3081e2be47eedff39f, 'Amuzed', 'for the contract'), + (0x81706475f965f1eda2b4e13d71d885402130909d, 'DirtyApes', 'DAWA'), + (0x81730d00d122f7fd24a7333fb4ce665090155905, 'Desert Clash', 'Desert Clash'), + (0x817a0eec00a91cf8c531ca84c30e7916a8bf202f, 'CryptoMaskz', 'CM'), + (0x817baabb4d8e48b2eaa6f69b70f47e63867a7ee6, 'PolyFarmer', 'PFARM'), + (0x817c4a811d3458ef46d88a5053f38565b594bf33, 'Higher Life Coyote', 'DCL-HGHRLFCYT'), + (0x817c70c72b170ff750b0d21ce269f0e5b409ea68, 'qwerty123', 'qwerty123'), + (0x817f73e8672355ef80e4d4f4621b819eea772f17, 'VectorBotSquad', 'VeBOSq'), + (0x8182f94dd1842028d1d7ede7e77ab7965b9481f6, 'Download my Heart in Dubai', 'C'), + (0x818e5c79b9b4954c2b15719493bae5fa7a7e41e8, 'Fuzzy Nutz 75', 'FN75'), + (0x8192e03af74f52fba9df6ed675658e575c8e4ca0, 'FFF', 'FFF'), + (0x81949e9ea4c0b4c95ef756ab3252b3e75228461c, 'Crystals of Naramunz', 'Naramunz'), + (0x819549ed1e3a0adf8f6bac0ecd57442ff34d3f37, 'Gentlemen''s Baby Club', 'GBC'), + (0x8195655d6ad25d5e5fc342f78bf748a6ead8af9c, 'Tubby Alien', 'Tubby'), + (0x8195f4c8f86f3484b562b10746fb56b703d15ca2, 'Manga Ape Universe Club Official', 'MANGA'), + (0x819619f929db8c921fd4f8ff0d943166e888e9b0, 'BoredApeMeta2', 'C'), + (0x81980de383dd2b935fc6fe97cad0320732d6c931, 'The_Official_League_Of_Labradors_NFT_Collection', '$LOL'), + (0x819bf9b9d249c266ceec6d20d0e3737a928f13dc, 'TitanVerse GameFi by Shingeki', 'TitanVerse'), + (0x819d46d8713e80df96ff6bfa42356e39515d1695, 'Degen House Club', 'DHC'), + (0x81a8aa486a167a4fc318731f9f90e532e2bc68fb, 'HaiQ', 'HAIQ'), + (0x81ab5211aba6744286b28e13880bb629640a9935, 'NFTs', 'NFT'), + (0x81ba44e1adb7f1f081e35df76b04a7e16e944165, 'Cutie Cats NFTs', 'CCNFT'), + (0x81c0fc7a9a10f75b40a09224e18e3663e54646d2, 'Stop the cap', 'DCL-STPTHCP'), + (0x81c29b9c2b6d918f6f6e3706182e6c7ea1abbb80, 'FSS', 'Farsite Ship'), + (0x81c6d9be4e98d81de65e6be0066eafbef64eaf78, 'Las Vegas, NV Pop Art Edition', 'SWEDC'), + (0x81c9606e79bd68d0095ed3a6325fa9b26043efe7, 'Fanaply 2022 First Edition', 'FNPP'), + (0x81c9bfbc7dcea5e0173c0302679fc377ef47422a, 'leaf million collection', 'LMC'), + (0x81cc2f08d45f6351693ce0e1f2cd2e9e4630953b, 'MB', 'MB'), + (0x81d586f8ff6f3a5899c3b02ba57d900a27af3688, 'MetaswimNFT', 'Calypso'), + (0x81dcb32eccc59a391aa33ee474e75219cd14edfa, 'DizzyPigs', 'DP'), + (0x81df29c79cdd4130c933ca605c1b0c2e90ed2778, 'Hiroto Kai - Acid Warrior', 'DCL-HRTK-ACDWRRR'), + (0x81e43559c7fcc9c9cc9c4a0830fedf11afc431b9, 'Atomic Pixel Apes', 'APA'), + (0x81e6150fc9ea07a68ed830282c9cbd33a26bb158, 'KOTJPixels', 'KOTJP'), + (0x81f1a41a58614a3a8ed792b998564bf89624e0b0, 'BAYC THE OTHERSIDE LAND in the Metaverse', 'baycland'), + (0x81f32982b3a6f1c064f74ff2f04a7ef2d27e7eed, 'Tampa Bay, FL Pop Art Edition', 'SWEDC'), + (0x81f5a1b85e035d97bc841488a4ec869c6f536eb9, '1990s Commemorative Ticket', 'SWEDC'), + (0x81fa7e7a9da05b825e4d9a165516700df4659dd7, 'CLOUT LEOPARD', 'DCL-CLOUTLEOPARD'), + (0x81fca7e9c8080f769f062c2d699724c551b94e7e, 'RealityCardsAchievements', 'RC-A'), + (0x81ff72ee801a144c580f62b0d14527d3456c3026, 'Collection5', 'c'), + (0x82052bdb641a357b98de26ef2fe9a81c2ea55641, 'Pixel Houses', 'C'), + (0x82069637b3abf7701388db163050a42a1984c35b, 'GatewayKitties', 'GWKITTIES'), + (0x8210777dbaa4b68d1606db167f14289b8c8eb913, 'Elite Sapphire and Gold Horns', 'DCL-ELTSPPHRNDGLDHRNS'), + (0x8211d000b81c3a22201aa37cf0e708aca60025b3, 'Voyage', 'Voyage'), + (0x8213870d2414d52c6de96b66b8deaeb57e8e2359, 'CloneXNeonz', 'CXNZ'), + (0x821cab6c95267fdaf04ec7676fefe1e9055659cd, 'Planet of the Grapes', 'POTG'), + (0x822670ed5157eccd5b32324ecd5fe351619636c0, 'Arkhamm Tokens', 'AKM'), + (0x822deba2c8f763b5c927afd53ff84b4c894f9bcb, 'Virtewel x WaltAdler 2nd Collab', 'DCL-VRTWLXWLTADLR2NDCLLB'), + (0x8234572cc3a5c1cc6a9cd3df451c0f280521f69f, 'The Silver Surfer', 'TSS'), + (0x823a3832925997a68f17d5b5f01071e4b7ccb48f, 'META PANTHER CLUB', 'METAPANTH'), + (0x8243a7c58ea6288fda40203ad75861efbe31041e, 'Cloudy City - Sight', 'DCL-CLDYCTY-SGHT'), + (0x82507a8003555a1448dd178d9b8c78e3eacd8841, 'NFTs', 'NFT'), + (0x8258f494cc1b19ed5d2beadc6f56b44ced2a3acc, 'MetaWear x The Bitcoin Bulls', 'DCL-MTWRXTHBTCNBLLS'), + (0x826921c9f80762da9b691807e1116beb01b04061, 'NeoDAO Founders Pass', 'NDFP'), + (0x826950f4fac8f337085d2493c3692ce282ab3ab1, 'ЕСӨН ЭРДЭНЭ', 'ЕСӨН ЭРДЭНЭ'), + (0x826dea370e9f4160c41151b31cf2c0900fbf1821, 'SEMKHOR SNAZZY', 'SEM-SNAZZY'), + (0x8274590c6742d8ca1a8e0ac2ab361f46c956c36e, 'Creativeblock', '$MRE'), + (0x827486af320b244f6508b6d4177052f6226532cf, 'Yellow mates pre', 'YM'), + (0x82751a5571e228d98319826b50767e8378c7666d, 'Weedcommerce 2', 'DCL-WDCMMRC2'), + (0x82764063cc3949c8127e69379dfdd53f1ddd3d3e, 'Meridium Zone', 'MeridiumZ'), + (0x828383b51514873cc937ee83f57fbbff0221700c, 'NextEarth', 'NE'), + (0x8287cc105b928159125c8926cb5a7a1c4339d4b3, 'aaaa', 'aaa'), + (0x828ad09a005c655502e8ec143c13c7c1c4949b43, 'Eggverse Auction', 'EGGA'), + (0x828b55c6baa8753f4c3ad1da4a6688448b0252c8, 'Be Sweet V2', 'SWEDC'), + (0x8292230ed9d44e4baad82b295c30e9ca5a295cc8, 'Anime Avatars Official NFT', 'AAN'), + (0x8297f00806f18856a9851ede334e7f1644c1f8ca, 'PolygonBros Wearables', 'PBWear'), + (0x829a7d49bb32ca88c35835b671c84bfc55acf4e6, 'Black and Yellow Punks', 'BAYP'), + (0x82ac441f3276ede5db366704866d2e0fd9c2cfa8, 'Meem', 'MEEM'), + (0x82ac7bea358dc4bddb57310280c4e293be1e66b2, 'FREE Ukraine', 'free-ukraine'), + (0x82ad67d42679fd4d0cec4a6b4f1ce64419cd2d7e, 'JoMFounder', 'JoM'), + (0x82af4876a0247ffb343dd269d61953f241923f93, 'Phantom Network Genesis', 'Phantom Network'), + (0x82afd3180f31401bac6afa4f942232e2fe6da6a1, 'fMetacat', 'Metacats'), + (0x82b185b716bf917e4192b1efc7e898f6bb8c9767, 'Stump Tailed', 'WILDEARTH'), + (0x82bbf7be0eb9a6024b7a641ba179e00812bdae53, 'Riot Racers Cars', 'RRCA'), + (0x82c2207764f778c775ffe118ff2a638d3bd0a404, 'Crypto Skull Viking', 'CSVT'), + (0x82c26ca12eb77b69d756896539ad5f59b3e88344, 'Holders House MintPass', 'HHMP'), + (0x82c33a8b53ac1c39151336793624cd61318b03ce, 'MetaPets Orig', 'MPO'), + (0x82c7856cb2e506ff8ed47b268a84ec04c620bb19, 'McAllen, TX Pop Art Edition', 'SWEDC'), + (0x82cafddb482ce057e4478659a117142660a195f9, 'AnnImpossible', 'AINFT'), + (0x82ce657c463e3b3d6352b6ac1e02dd07371ac087, '3LandersPunks', 'LP'), + (0x82dcf0cf91f5e3120f2e054df03482dd68b05a50, 'Frenchy Live', 'FRENCHYLIVE'), + (0x82dea7586cedd5511e7de30e8c0008ce71aca43d, 'YongyouTA', 'YongYouTA Creature'), + (0x82e7d85a1abbd1eee9c001664d75836cc74f9bc7, 'Dead Gentlemen''s Club', 'DGC'), + (0x82e8edb607a0f14800bc86b1bb4706b2d8e9300f, 'Perchys Comic Book Store', 'CMX'), + (0x82e976c5368783aa648054af973b6fee05cb766b, 'Punkers Revolution : Doo', 'PUNKERS'), + (0x82ef2e1492e9db6dd410e1589fafcaa90b7b3172, 'TrueScreen NFT', 'TRUESCREEN'), + (0x82f6f4d9e5fa6c4156f5329853c9b3a52b276a56, 'CrocodileSk8E200', 'CSK8E200'), + (0x82f79aa91586ac2ccb5c51c5d3223f6b65b29af9, 'OBOMMAS FORD GT', 'OBGT'), + (0x831725bd8c8d2b9e75b872649f146f88e8a92b36, 'Diamond-Hand 180-Day Note', 'DIAMOND180'), + (0x831cd656a9e5b53878d543d01eae7b0b6526923e, 'Capsule House Official', 'CAPSULE'), + (0x832379f7f42cd0139e833b2ccfd381bd60ecdac3, 'Gutter Rats Polygon', 'RATS'), + (0x832ff53f75e44832ea4928b788d82c7af9a77310, 'GHArt-Honor Of Gods', 'GHOG'), + (0x8335793752e19ef84e9fac11f8380da8dcbcdcf6, 'Emojis Gone Ape!', 'Ethereuojis'), + (0x8338ad30930196bdcab501c70b0bb966d816ea0b, 'KAPE PRIME', 'KAPE'), + (0x833cda6b3185e25ebdeadbf6972731b9128170ac, 'Brainbot #55 Veep', 'SWEDC'), + (0x83421da2deed4037246cdd389a2f3a8d556082d7, 'Garbage Friends Inc', 'Garbage'), + (0x8345d8efe30f9320d0b9a5c47384561631c5e5c7, 'Web3Builder', 'Web3Builder'), + (0x8354e42d88397de17ef7d5d553ab164c7aacde0f, 'MetaLeagueClubs', 'MLC'), + (0x835d50398515c090d9d1f60730adf1146861e08a, 'LonelyBao', 'LB'), + (0x835db2832c186a7d1880ce6c3dc2a376c6f690d6, 'MetaDojo M', 'DCL-MTDJM'), + (0x83630097283d43db38900bf0936d6f2e46bb80ad, 'The Wicked Craniums x Zazz C0rp', 'TWCxZC'), + (0x836f2479dffbb0a225366aa699d3889ddda20d02, 'HalfSucker', 'HSNFT'), + (0x83715503cb555c3fe27808d0703ea9823951134c, 'Nice Frog Token', 'FROG'), + (0x83737473176e2f2767f857800c7ab24139578192, 'OK D00MER', 'DMR'), + (0x837778f1b6f3a634064de32bcb8d0ebfb769f917, 'Bullish', 'DCL-BLLSH'), + (0x8378168b5664e778f4499b49d33260f33232f1a5, 'Bulldawgz', 'NFB'), + (0x837c4325bef4693374054c781e6aa850577024ef, 'Elyn - LG', 'DCL-ELYN-LG'), + (0x838308c99e732bf49b42db623431ad2a7d996e56, 'XMonkey 1nftDigital', 'XMB1NFTDIGITAL'), + (0x838310953f259669ef1d9ae6f9b63d986c48386a, 'PopMonsteeer', 'POPM'), + (0x838ec0cbf71fbacbd047f717c89a8c96526a4680, 'LOWP New Year 2022', 'DCL-LOWPNWYR2022'), + (0x838ff66eb4409de86ca4cdd934f82ba5c14fa687, 'JerrySprinkle', 'C'), + (0x83967464ee8923f06c228166b18c453aaa8872b5, 'Art Gastro', 'AGT'), + (0x8399cef0208fefff0002fc9cd76b41282f09a439, 'marissa', 'M'), + (0x83a600dfb82a4806f60f5ee5bf02c306639fe385, 'Lipstick #1 by Baroque++', 'DCL-LPSTCK#1BYBRQ++'), + (0x83a839d576a1e0645d3622a90f26dea85f7c770e, 'Purple Eye', 'WILDEARTH'), + (0x83b75e466c03a4fc74a9dfdd340a08f0c68ba6da, 'VHC-Deed', 'SuperDeed'), + (0x83bb9b860080722738dd8b02356e6b312c1ca9e7, 'meteornft', 'meteornft'), + (0x83bf8c9b0920c5b871c2bb3d588ad5b51b37f0f1, 'Mouth Stones', 'MSC'), + (0x83bfdae7437a4f1d06f65e742b3ea29850831473, 'MetaParty Hoodies (Season 1)', 'DCL-MTPRTYHDS(SSN1)'), + (0x83c13ff593e9afbbef1c18907ac41cb4cf03da9a, 'Le Papillon by Universelle', 'DCL-LPPLLNBYUNVRSLL'), + (0x83d714e8716aadeacdcce4c4761673bc3a5d5570, 'After_School_Ghoul_Club', 'ASGC'), + (0x83ddd910479e5d6ead9f41afe90574cfe82cdcaa, 'Winter Penguins', 'WinterPenguins'), + (0x83e1074743c9a459280216e3666c9b4883600dd9, 'dorkie-wtf', 'DORKIE'), + (0x83e6180070d56f37b69253d34ab65d3b4f9158ea, 'Masked Patients', 'MP'), + (0x83e64734e3b35740dc04e2493241ff5b05ba8646, 'Chicken Farm Hatching 2021', 'Chicken Farm Hatching 2021'), + (0x83e7a1563c9f33fd8e43eee51bd408d8a1fac706, 'TKK Fried Chicken 頂呱呱 - TKKapsule Series', 'TKKapsule'), + (0x83e9511b687c24f93cd697c885d40f3ebc5d8a50, 'DAZZLE FASHION 2022 MVFW', 'DCL-DAZZLEFASHION2022MVFW'), + (0x83e96bf86f52198b7c5e3a8558574f13af8b47f9, 'WarBeez', 'WBZ'), + (0x840635a74f28dfe0dcc81bcd8529ace2d9e07a19, 'Bull Market Friends Club', 'BMFC'), + (0x84073161ede37ff9e5244c91401f3c5cdac472bb, 'Doge-1 OGs', 'DOGE-1OG'), + (0x8407614db28a20c153c704f7b75309c277d514f3, 'CryptoDJs Simina Grigoriu', 'CDJ-SG'), + (0x84132abcc56f1b46a2442af4626e76d83a261e21, 'BestBullyDogs6kClub', 'BBD6K'), + (0x841918849e6784d7e643837ad59571ea1fc5000b, 'Pool Together', 'POOL'), + (0x8428b94b4b8597c0da4277e048d307d48b049fcf, 'EMOJI CRYPTO ANONIMUS', 'DCL-EMOJICRYPTOANONIMUS'), + (0x84290e38e8606b59827be91f92b7e31a2332f231, 'SEBASTIAN CARRASCO', 'SC'), + (0x8429e42fb35aa7e05485593cb13cbe1c13e3b9ca, 'Women_in_STEM', 'WSTEM'), + (0x842e45155e1085a81225c6732fe7d431d60b5844, 'Blobasauras', 'BS'), + (0x84314003b97e0ca1dfacd38e2ab91b6f29cad9d2, 'Onion Club Classic Collection', 'OCCC'), + (0x8432df03278f503c8570e79190dfeb479d7f1dad, 'The 100 Archive', 'GMN100'), + (0x843af06c5a3132e4bf8756e9e7efcbe75303653b, 'Christicks', 'CHR'), + (0x8442b5fc3321ee98a2e122296715d3982f954be7, 'Global Unity', 'SBGU'), + (0x844a77ca0e982eb1a971c9709d778959e906d902, 'GridZone Fashion', 'GZF'), + (0x8452c3d5739aec0edb48390fded63fb1dbc493c3, 'Chasing UNESCOs', 'indiaunescos'), + (0x8453d4e437a0029ea441d6fc3bf981a2bdf7ec30, 'Hungry Plants - 1st Gen', 'HP1st'), + (0x845f6d0c4b9c2596ec1c2b11bebd5bc43fe2fd59, 'Blue Dragon', 'DCL-BLDRGN'), + (0x846695ae15b0f101e525c5e1b801e7065f8e68b9, 'SheepAwakeningHoldersClub', 'SAHC'), + (0x8467d5d244a594f2e0bbc14f6490bef83f413e98, 'rectanglescircles', 'RCS'), + (0x8468c386d33e080658360f0141696e1b0df4b74f, 'The Robonations', 'Robonation'), + (0x846e6a06d60d28de0b94101cf4613089aa12e298, 'Valentine''s Day Swag', 'DCL-VLNTN''SDYSWG'), + (0x846f7a5dae6e1e335c8c495c67e3ae5bb2000da1, 'Cat Commandos', 'CC'), + (0x8474d755af8d271c78dd098911a65e439fa3b7b4, 'Mhumba Gorilla Farmers', 'MGF'), + (0x8476acdc72ebe43363f6c4fc2a9c8d53b15a2a40, 'Mars Fishery', 'fissy'), + (0x848414ce0f0ddb31595f56d036a324df8dd9018b, 'MonsterRehabReborn', 'MonsterReborn'), + (0x848c329b299500e03d18d17cea97bda8eb20177f, 'IdleKey', 'IDK'), + (0x848d85dd13647601f3e45de7e2191b65b7ae1dfe, 'SHIB NFT', 'MetaFloki'), + (0x848ef0bd0e721db817ad2c4087cc88c18d642af9, 'Inverse Mutants', 'IMAC'), + (0x84927eecc28ab88f28dbc700bd2f9d0277fd71d2, 'Lazy Dinosaur', 'DINOSAUR'), + (0x8494d2ed08c85a6b9014fb298f4373f2e5911b87, 'PLAYZ Token', 'PLAZ'), + (0x849509f72fdd2aec8ac09111fb0599fdcfe23aab, 'Big Ape Club', 'BAG'), + (0x84a1d84f183fa0fd9b6b9cb1ed0ff1b7f5409ebb, 'Metaverse Festival Wearables', 'DCL-MTVRSFSTVLWRBLS'), + (0x84a6d05ca919fa32865855f75c40366dc6fd9a4d, 'more than zero', 'MTZ'), + (0x84abce126a492d99d92015826850bf985ce8bf9e, 'KillerCatBengalClub', 'KCBC'), + (0x84b58782ec0710f42bf1720ac669747c85d320f2, 'BBB Expand', 'BBBE'), + (0x84c1824a135316ba5515d5b365562e0e32eec177, 'Dont Buy Me', 'DNBM'), + (0x84c2c7de5895341cdd13bdd08a0a8aa84d738551, 'GEN-B02', 'GEN-B02'), + (0x84cb4a61c2d7c4a98f93c90c653c930db4c73174, 'BunBuns', 'BunBun'), + (0x84cbe75b9bd46361bc38f6eb92cb57a17a19ac26, 'Indianapolis, IN Silver Edition', 'SWEDC'), + (0x84d7eb528482ac5a26f174c89e04b1c0a1aab3d3, 'PolyBlockHeads NFT', 'PBH'), + (0x84e46bddaf3367117bc48d44a84e07d803258f32, 'Raja(rt)', 'Raja(rt)'), + (0x84f3f6797f5d636faa0185453d3e915b2657e20e, 'Crypto DragonKing', 'Pi NFT'), + (0x84f62dbb16280c8748c6915682b157fc8cc85d2c, 'MGMNFT8', 'MGMNFT8'), + (0x84f83fe0eba1aaab95842443a9a0c7106ccf46dc, 'CryptoPanda Cutie', 'CPC'), + (0x84fd204005cb7b42c76bc9784934a80678c54ec4, 'NFT', 'N'), + (0x8506e7ff16bba3e7402586b53778b22ea1437767, 'Cosmic Hipo Society', 'CHS'), + (0x8507e7bf5e44cfb1ceaf1bb37f13288fd8d360de, 'Wizard', 'WIZ'), + (0x8507f4875dc10593801b488b926dfd9b12ff621a, 'Mr Potato NFT', 'Mr Potato'), + (0x850db91aff035d94aaa29bff9983f7f5cfaedc33, 'Collie Buddz', 'Collie'), + (0x85109beea4714fc0986eb02c74d007fecaab0f75, 'HARD ROCK PUNKS', 'HRP'), + (0x852442603daa32f674c85e7da822d3ffdeea0a4e, 'Cannibud', 'cBud'), + (0x852be2756564b789509f9a04a9a57322a59124c7, 'KoyweTrees', 'KOYTREE'), + (0x8537c035bd148ef238f3132d627a788abac530a0, 'Hoppers Game NFT', 'HoppersGNFT'), + (0x853bf5ad76d3ae766b7c3677fd0819c3a1af3443, 'SPIDOX', 'SPIDOX'), + (0x853fc3065a72e6702c8d97af16c3e3ddaa1dd330, 'HEXROID Casual', 'DCL-HEXROIDCSL'), + (0x85499d278d0c16a44380836e4cb02ad91dbce8a5, 'CoolBoredApe', 'cba'), + (0x8549bad0eacea3a27cb36a6e7082c0b56828484c, 'Garden Gnomies Group', 'GGG'), + (0x8550afdce5bad9694f88e304540173feb6c51d58, 'GEN-B10', 'GEN-B10'), + (0x855a5c9002204790d990d8667dad71edf97fed77, 'Pesum Ice cream', 'PICE'), + (0x855b2168139d188aeeff558e067327b8cccb4780, 'Tucson, AZ Pop Art Edition', 'SWEDC'), + (0x855db6063015b47c20f36468c9cf8bf8555f0115, 'Fund Cupid Collectibles Season 1', 'DCL-FNDCPDCLLCTBLSSSN1'), + (0x8564b75c9c4255b12ea2a7871d923e8f742fecfa, 'Particlon Particlon Particlon Particlon Particlon Particlon Particlon', 'NFT'), + (0x856cec92eeefc01226347cbb6ed3abbd924845ce, 'MicroArt Drop 1', 'uART1'), + (0x8572cca6b99b2fd542bf6e04a1bd1a5913b4f8b4, 'Passive Income Protocol - Genesis Nodes', 'PIPGN'), + (0x857e227e721036582741c559506b6b56bdd8eda7, 'Lazy Potatoes of Society', 'LPSNFT'), + (0x8580a90f6e378db283ddb8af06356a962551e89a, 'LuckyChick', 'LuckyChick'), + (0x858915826d5dcd038b055a9705877682b35838e1, 'Griffin Yard', 'GY'), + (0x858ae1c82e9e6a601132548b0434d45095b87239, 'PixelWorldProtectors', 'PWP'), + (0x858bb82f2294555252845c9d7387f2afc3ecf443, 'Mighty Owl Wives Club', 'MOWCNFT'), + (0x85974a968667b00f75f8a72fbf2f1cda90589506, 'really random emojis', 'RRE'), + (0x859aa2904fda9771bf470f61644ec7f936f0afc9, 'Shiba Vikings OfficiaI', 'SHI'), + (0x85a044143086a7809aee1f37a7376490518a69ba, 'MetaDiggers', 'MetaDiggers'), + (0x85a0edb52f10d093122108f2091ba4040aa7fef1, 'DigitalFranklins', 'DF'), + (0x85a6b260da660f749faccc07d5209aaf2630dd5c, '暴富', '暴富'), + (0x85afb7dac2f80c3c3fc3e410cacd8f5e0dbfe4be, 'NFT Garden', 'NFTG'), + (0x85bc2e8aaad5dbc347db49ea45d95486279ed918, 'cometh spaceships', 'SPACESHIP'), + (0x85bcdba2d7afbd2a09d65fe838bd0d921793b3ab, 'Aliens Nation', 'ALIENS'), + (0x85bfa1c29043314107d232a698bc760616ad8f8a, 'ARNB-Bunny-Community', 'ARNB'), + (0x85c00a27ce0f652e7f0a4108d9100d4eb3c719f3, 'Gin Blossoms Belly Up', 'GinB_BllyUp'), + (0x85cbf58c9d20459339a0b1f586a5fac643a29286, 'CryptoSharks', 'SHARK'), + (0x85d311543ffaa110cacfdb88865d9068cc3629dc, 'KO X-MAS Party', 'DCL-KOX-MASPRTY'), + (0x85dc64cef28e20e1e61fbe6fc177acd331196759, 'My Collection ccEk9HnOhPdxsETuTmoW', 'my-collection-ccek9hnohpdxsetutmow'), + (0x85df1f7332fdc52f4a433e143b17017e2fe2c7fd, 'BarnBridge amUSDT jBOND', 'bb_jBOND_amUSDT'), + (0x85ee8c20f9f21d1327e6127b37989899c83c2c33, 'Mushroom Season', 'MS'), + (0x85f0e02cb992aa1f9f47112f815f519ef1a59e2d, 'Polychain Monsters', 'PMONC'), + (0x85f29ce5f65c89574d773746586a94d14168d72f, 'Cherry Fruitpop', 'SWEDC'), + (0x85f674a768c440fc02f1c06d29760b4e8a4c561f, 'unmapped', 'UNM'), + (0x85f7b7aa216d08495c810a37cedec9f52fcb4bb3, 'LotSkull', 'LotS'), + (0x85f8dfbc601da879d585ca2628daeb2fc6c3a25a, 'Vespark', 'VSP'), + (0x85fe3eb1209f9dbfbdca7075e8057a2acbbbfb00, 'FDS Teams', 'Team'), + (0x860327348fb2cf610501ef4ff34ba0091aa31efc, 'Bored Dilfs Ticket', 'BDRTIK'), + (0x860aac10da318ba3b4a36b229142af49b6c34c3d, 'Los Angeles, CA Silver Edition', 'SWEDC'), + (0x860c7b32e05bbc38da2f2b9314504ef46ad2e914, 'EggSaurusAnniversaryNFT', 'EGGSA'), + (0x860ecbe68961b20db88ab6759dc1b1b01b00f0e6, 'A World Seen by a Vase', 'SbV'), + (0x86165e08444beae6e2052e452f2f82493a936e4f, 'NeiTheAdventurerTurtleLMTTD', 'NTA'), + (0x8617f35155939d667f9bbbdff13312b5c3a90f37, 'Dimo', 'DIMO'), + (0x8619afb00e196f97b03bcee6da787452a27c9c40, 'Hahhhsis -「 Dream 」', 'DCL-HHHHSS-「DRM」'), + (0x861aca5efc6f25ef5cfd48346afc5bf08c30e1c5, 'Hog Mob Society NFT', 'HMS'), + (0x861b5ffe1fa909e82ee3973ba4c35fa090f7584c, 'BTCv2', 'BTC'), + (0x8620e5f703132c8af6c6f21fd4e4f2ed25f7a2c9, 'GirlAndPixels', 'GP'), + (0x862720d01870168d3a6c594963e60bbb068d23c2, 'Amazing Karen Thailand', 'AKT'), + (0x8628c3221bb78d88629af2ff593b615c3cc2312b, 'Pengulionares', 'PNFT'), + (0x862e46f189424620de563112a68c3cc4e77e6dcc, 'YIN Asset Manager Vault', 'YANG'), + (0x863223abf9066b952633d413ef2cdbbaf738543e, 'HRAFFLE', 'HR'), + (0x8634666ba15ada4bbc83b9dbf285f73d9e46e4c2, 'Chicken Derby', 'CHICKS'), + (0x8639cbd0acdd07dd4b9c1ee7d0f39b31d4ce32cf, 'Wipies', 'WIPIES'), + (0x8642d62abcd06bee51b15508acf3f4133d5cb46a, 'DumplingX', 'DMPX'), + (0x86444e09df7b72f5525c96e6af3304d39c03d9c3, 'Dan''s annoying NFT', 'NFT Symbol'), + (0x864d39c068555eaf18f42c4617e4a081e9049635, 'RtistiqDigital', 'RQTD'), + (0x8650851f84261d20da7b18e417f4bcccf7671cae, 'tst', 'tst'), + (0x865210fed5ee89a113d260a80d7fbf7b85255c11, 'Meta Lisa', 'METALISA'), + (0x86577e17e35bc8b79014bf1e65ff3bec9aad6792, 'ILTPunks', 'ILTNFT'), + (0x865bb10281a69669dccc8270a2605cf85ad406dc, 'The Lucky Sharks', 'TLSNFT'), + (0x865e23cb50680933c6a0c4259f253f5d17c15a03, 'OPENSEAXD', 'CP'), + (0x86630eb4d44093ec6882fe146a28e9f9f7b8edc5, 'joker-deep', 'JKN'), + (0x866425fb42ba8c3c830581318e7766a607efd85c, 'JANSBOY', 'JB'), + (0x866e0a05bccbc15fc830f057863c232329706282, 'Garbage Friends OF', 'Garbage'), + (0x8673a15fc31f5ccd8f5239fbf7ade88e65994b6d, 'TheOne.art', 'TheOne'), + (0x867b42d1bf85fef76b29f489f9337cf2643b9e4e, 'PITBULL', 'APC'), + (0x86835c3b8fa69f8f31c72477c7776a3b61dbac92, 'SuperUMAn DAO Governance NFTs', 'SUPA'), + (0x868ed8aad2f4be4ee5fb68038acccac398563567, 'KaijuFrenz', 'KF'), + (0x86935f11c86623dec8a25696e1c19a8659cbf95d, 'Aavegotchi', 'GOTCHI'), + (0x869c8c38351735babe91f244ee5007a0f699de1d, 'Panax', 'PNX'), + (0x86a0829785ccd3d1fb34c13cfe6255f43942a63f, 'ZoniferoInvestorCertificate', 'SACT'), + (0x86af6cb7705fe6456e9eb6ab04e640ea4cca317d, 'SPACEMUTANTZ', 'SPM'), + (0x86af6d728158f7b5fe302e2fe64cd76b151f809a, 'Plane', 'DCL-PLN'), + (0x86b0d7dc6732c526fe02cee11b5a933801a892a4, 'HODL Glasses', 'DCL-HODLGLSSS'), + (0x86b50b81227875cfaeed673f9ee0687d9ebcdde0, 'Generation #12', 'G#'), + (0x86ba07a43a99e238003aa42a69dfa9266da2f7b6, 'Doodles Ducks', 'DUCKs'), + (0x86bed5b8b1a6c4a0fb81152bea53aa628bab720a, 'The Brothers Adventure', 'TBA3'), + (0x86c8d55973e5b5dbc61e50d551134f41b51b51f7, 'Christian Yelich “Batting Clean Up” V1', 'SWEDC'), + (0x86cdfbc051780014af0fb6e3db34ae9c3a90ba25, 'Bored T-Rex Club', 'C'), + (0x86d42fd200e7163a9d0331a70030fead83bf81e4, 'MadMenHamsters', 'MMHS'), + (0x86e2f56dc1360cd35eadce8c2cadeafe9cd02830, 'Fully Faltoo_CatOSphere', 'CatOSphere'), + (0x86e55d01ffcb886ba659e4830b0625d3ce339b5d, 'Vex Cooler', 'VEX'), + (0x86e9eef912ede540a5ffd33551f1bf4ecd2046e0, 'Apostles Warriors', 'APW'), + (0x86f8b295144cde4300640a3bac4ca2fac4f329ec, 'Undead Blocks', 'UB'), + (0x86f97efa0a163fb18f57ef7fdc6d708eff49dd9f, 'Project Terror Bird', 'PTB'), + (0x8701efb5dfd9582f53e8cc1326858513fa077b69, 'Constellation-20220005', 'CON0005'), + (0x8714472504723cfc553b4702793fa930ce9ec4e2, 'Panda Pack Genesis', 'PPG'), + (0x872c73fedd29dd5a0aeaece417e2eeca76085b86, 'Cat Made Cats', 'CMC'), + (0x8745c55a1f81fa3c968f2a247f69f09699ff51d9, 'Pirate Gang', 'PG'), + (0x874f0520102f4980c23dec3ea7c309a4031a6286, 'DecentralWear DW Universe 2', 'DCL-DCNTRLWRDWUNVRS2'), + (0x875146d1d26e91c80f25f5966a84b098d3db1fc8, 'Fashionista - MVFW 2022', 'DCL-FSHNST-MVFW2022'), + (0x87522f1d309aeb862c83fff9d5ed3d2295f8471a, 'Symphonic Existence', 'LLNFT'), + (0x8755fe502d5bb2a1a07779b5a92e4b6e8a5a42c5, 'Ethermon Halloween Collection', 'DCL-ETHRMNHLLWNCLLCTN'), + (0x875924c3703fe0c3657b23a3ab761888ab643274, 'JTV Tees', 'DCL-JTVTS'), + (0x875a20763298907d3e21114620bf4182c00cb08c, 'NEKOPhones', 'DCL-NEKOPHNS'), + (0x875be6e7f3c9c124045b34116cf0af04c756522d, 'N.I.O Wearables', 'DCL-N.I.OWRBLS'), + (0x875dbdb46c15d763595a9c876ae9633e0befcc53, 'Zen Snails', 'ZSN'), + (0x87657a27500750702d06b55043aa325baa3bf0bf, 'EggsWithLeggs', 'EWL'), + (0x8769e96856448bb9f5bd2878a0a0fcbff65d2d0c, 'MonkeyProject NFT', 'MONKEY'), + (0x876a267aa0fb34fa58e04b4196c7c003f0f00ad8, 'StoneyEye Roots', 'DCL-STNYEYRTS'), + (0x877183c94c3149bbc60b31624d776827ac708ec3, 'O touro e o toureiro', 'OTT8'), + (0x87749476b9188510dee1771145fa81f700a81de2, 'GEN-H21', 'GEN-H21'), + (0x877d3cc2df48dec4b5a6c193efe141d429b12644, 'Ranghmar Bone Warrior', 'RBW'), + (0x8786ba0f3ad08aa4c706488e43263226a8022351, 'BENUS', 'BS'), + (0x878aad7b2667e8dc99a6cd2ea6fe2b97fea12507, 'DiverVideo2', 'NFT'), + (0x87901dea588983a7a2994ac3730e172ad182a554, 'META MARTIAN FROM MARTIAN TALES', 'MMFMT'), + (0x879051feb8c2e0169ffae9e66b022e7136870574, 'Spanish Museum Tail Tiara Team', 'DCL-SPNSHMSMTLTRTM'), + (0x8792d7f42c5d54fdeb13527c0e7f168fed610479, 'DripWear X 4th_Perspective', 'DCL-DRPWRX4TH_PRSPCTV'), + (0x87968ffbe990d99a1221cda55487043345c4de7e, 'Grandma Cat “Sleepy”', 'SWEDC'), + (0x879f3de82ef4504c5f5cb473ec6eed1e413011dc, 'CryptoCloodleZ', 'CCz'), + (0x87a0d434adb1d827c83ba8df8e3327e2b43f24a7, 'Playboy Bunny Ears', 'DCL-PLYBYBNNYERS'), + (0x87ab0ae2c6b3b5d01dc2e7505dc5e041577c66a7, 'Meta Mansions Keys', 'KEYS'), + (0x87af9aa4d51fbba7bb2df55e2dba782b79ec78bc, 'PolyDAO', 'PDAO'), + (0x87b11766d5d9fdd2944f353d7cf781c9a29f5846, '4 Tail Reaper', 'FTR'), + (0x87b1f6bc029c21834f633ff91af026f880883336, 'Weed Forces By Kandy Girl', 'DCL-WDFRCSBYKNDYGRL'), + (0x87b31ebf6b96433d36b36ea773fd574e7df00fd4, 'BoredApeYachtClub', 'BAYC'), + (0x87bd1b0ae8b88a409118d73894f3d9b7d13e4bd9, 'nanakusa', 'nana'), + (0x87bd405829a24612c23023e76dd87b3e23d01b2c, 'DecentralWear DW Universe 1', 'DCL-DCNTRLWRDWUNVRS1'), + (0x87cf48f469a429a8efc532dea2c4a95fd6e49e09, 'Rhino Wearables Collection', 'DCL-RHNWRBLSCLLCTN'), + (0x87d549bf461c9bb6018a7469ef20fba2b988c9e5, 'Paper Early Explorers', 'PAPER'), + (0x87dcfe3d1915c26cc8aad4e851f3765ffb085cde, 'Obot WL InviTaTion', 'ObotWLinvite'), + (0x87dd3cbb01d531e680b9581d4bee14f2ceee22ef, 'AlmonDogs', 'AD'), + (0x87e1abebb1255d30627883c06f25e8d39b29fb95, 'TruckVandalsG1', 'TV'), + (0x87e530950e4e7b8fd1ac58fe61273d5a4b5891ea, 'Space Kids', 'SpaceKids'), + (0x87e64aa090b3bc29047cbdfb3b4a832ad3fb335f, 'The Duplex', 'The Duplex'), + (0x87e958f5c621e6df6aa3939530f3725273633ca8, 'SMALL BROS OFFICIAL', 'SB'), + (0x87ee36f780ae843a78d5735867bc1c13792b7b11, 'AAVE MAI Vault', 'AMVT'), + (0x87ef164a8360aae4b8c53790b9096054f81acc93, 'Mad Meerkat NFT Official', 'MRKT'), + (0x87f547e219228a4f36e06157f13bd88c4041ff11, 'Punkyeggies', 'PEGGS'), + (0x87f55ac12d39208ee6b69c4886f49ee2b92f87b3, 'Putin Death Party', 'PDP'), + (0x8805853a6782efba8f0c28949fd117c66c9401b4, 'Clipto - Rushikesh Dhanwant', 'CTO'), + (0x88085a2ededacbf2db1ab7e88fa7a58a8594aee3, 'BrokenLabel', 'ANGEL'), + (0x8809adfc06f67f68e945341e62f734063b8c226d, 'New Crypto Heart collection 7', 'NCHC7'), + (0x880e37b98f7c058b3563970f256614ff4a580637, 'Opium Network Position Token', 'ONP'), + (0x88146f7def87f08ddfdb94d2a05263ce68b044e5, 'É gol', 'EGLAU'), + (0x88168225ce158bb7d458b2ee29722093223dd1ab, 'Sghfg', 'Sdfal'), + (0x881bafd838d9dda8721d45660ccd741ae7ae41d0, 'UniqueGlasses - Glasses', 'glasses'), + (0x881c86b2bc62198d7644962848671c982bbc4f7f, 'PopRoXxX Party Mask Collection', 'DCL-PPRXXXPRTYMSKCLLCTN'), + (0x881dcf63e1e452dbb5560c377b7c2ca7e15bdf9c, 'FairyQueen', 'FQW'), + (0x881fb84dfc4004dbfc39eb658811c023cf093cf6, 'Mummy Pop', 'SWEDC'), + (0x88227f9fc9719066bb2750a669fac188f677d0d1, 'ContractSol', 'IO'), + (0x88287797312223a2b08ca8e07b75e326e0bf3194, 'Sus Deriv Mfers', 'SDMF'), + (0x8837a7126e864d3b3f118bf2ea162a2c62a4bb3a, 'Unapologetic Apes', 'Apes'), + (0x8837dea04870c3e9d2f57b1ff12c808168546d26, 'Decentrealm_Elf_Character', 'ERC'), + (0x883bc86af7b5fffc9f784122d9c2c9a843405dbc, 'Collection', 'c'), + (0x883f6beb4d12b6db509779616bee079c1f86a110, 'Lord of the Doge', 'PD💍'), + (0x885d5c505c90bb25d028282ce90bca91359db369, 'Winston-Salem, NC Silver Edition', 'SWEDC'), + (0x885dd95bce3ed737eb4e2697c40960db7b31aa68, 'BallerWhale', 'BW'), + (0x88625bf64b18f2275fe7b24d08021cc3816d3f6e, 'ArmyLads', 'C'), + (0x8863aca5ee41b021a0c25bf7ccc8b8d465416d75, 'CrankyCrocs', 'Croc'), + (0x88656bb9641bf56b7d32d6ef1f6732b00219647b, 'Pear Fruitpop', 'SWEDC'), + (0x886c6c2285a84b4a6ae66d9bcc0f09bcfe07378a, 'DIAMOND APE COLLECTION', 'DCL-DIAMONDAPECOLLECTION'), + (0x886c9c58bc6eb0b313dc59434f9370f17bbe0350, 'CoolPig_OwnerNFTs', 'CPO'), + (0x8870f92a1e5964b3dc0b073108e51ac4d10a775c, 'Digital Drugs', 'DCL-DGTLDRGS'), + (0x8873abfd7ee027ee1324f3c689725e841abc1dc7, 'CRYPTOPUNKS', 'C'), + (0x8875e59b49be89ed88d7dd5e0d139424c5138bb5, 'Sweet Pumpkin V2', 'SWEDC'), + (0x88833e390484ef82684d16a87f9a2f7f3dcf14b1, '[DEVELOPMENT] Ka Ha2022-03-14T15:45:40.252Z 253896', '[DEVELOPMENT] Ka Ha2022-03-14T15:4'), + (0x8889614635cfc2e3926fba1bfebc6f8ad2b5f463, 'BoodleBunnies', 'BUN'), + (0x888e61c9adf9f31a6202935f16bb16d941548c15, '[DEVELOPMENT] Ke Vo QTKMQK', '[DEVELOPMENT] Ke Vo - Ed CFVYLO'), + (0x889da32a6a82aae19dbfcdc9e41475a2e221dcea, 'Sci Fi Helmet', 'DCL-SCFHLMT'), + (0x88a03326d1f2447afa790396681bfe0d2db48e6d, 'Bitcoin Bear Club', 'BBC'), + (0x88a9818de8657aa07a3edbec29ae2ec8f54131ff, 'Ape World Order', 'AWO'), + (0x88aaa30ba2b1622ef06dcd53bafec4208c6dc095, 'TheMaticGreys', 'TMG'), + (0x88b1be2a2f06938f9bf295a1ab2e19bb76a99995, 'Travel Punk Official', 'TPONFT'), + (0x88b651d479e2257768b5c069a0e43ecac1a12fdf, '1 Bar for 1 Tree', 'B4T'), + (0x88cbf93412b3c364ad1ef9cf54d2b375d45aedb5, 'OSHUN the Light', 'OSHUN'), + (0x88d186e916bdb7afdd26a74d8be4eed151826cb9, 'Abijah Damriss', '6184c49610cbaa0c8b2eb75a'), + (0x88d189bd731d633b05727e2b19371be78a06c020, '8bit Gamers Guild - Alpha Nobles', 'EBGGAN'), + (0x88d84a85a87ed12b8f098e8953b322ff789fcd1a, 'camWMATIC MAI Vault', 'cMVT'), + (0x88e20b564ce0655d49a623bbc0e6f80abea74690, 'CUTE FAT PIGS', 'CFP'), + (0x88e31e3b6ad37788c5e5f0df331fede65f22f425, 'Clozer', 'CLZ'), + (0x88e78c51baae8036d9e16c636a7e106c00dc7f9b, 'East Highland Collection', 'DCL-ESTHGHLNDCLLCTN'), + (0x88ee463e2a973be7564d604254382ef8be1bbb07, 'Trojan Horses For Peace', 'THFP'), + (0x89015a3948141d4b77a0d8cc59c00f6662770f28, 'Hype Kitty Clan', 'KITTY'), + (0x89045bbfe9e934a994c792f3ad348449c06b2b52, 'Tribes Alpha Access', 'BUIDL'), + (0x8905d75d899bf92111a9480381d1b6f959da5dd4, 'kyootbot', 'KYOOTBOT'), + (0x8907327f32c79b67ea79d05df62894fda3b14481, 'Nft Forever', 'NF'), + (0x890a59366a056bd27da82e4ddf2f5a505c81e6e7, 'MIRROR BY DEMSKY', 'MN1'), + (0x89106ba0edc0aeea2ee34c65f1a36eb40a6d08d2, 'MKC Collection', 'MKC'), + (0x89166300b611e4e017b8bbf04a66602552c1db85, 'Degen Heroes', 'Degen'), + (0x892d8d7ca66078550f40bf40f22b03bfbbd13c0a, 'LIVINGIN2077', 'LV2077'), + (0x8939df5a5b0cdb15083cff59adee0bdeda329b62, 'Laser Rays', 'DCL-LSRRYS'), + (0x893b93ed092edec9c24f1a8517b33201dd24ed60, 'Gags_3D', 'G3D'), + (0x893e7ed777929d3183b7203dba0325ae7e7ba2c5, 'Bored Ape Club', 'BAC'), + (0x893efae0b22e14860da2462af394279c0ca37acc, 'Life Lock', 'KEY'), + (0x894182a3b1be6b4b131bee0a4b5314966c6501f1, 'Mutant Shiba Club', 'Mutant Shiba Club'), + (0x89489e5660d50987d13921da95143e770433650f, 'Jinni - Girl Next Door Genesis', 'J-GNDG'), + (0x894ff020d1b5273f7721d815dd8709b914e31270, 'ImpressiveNerdz', 'IN'), + (0x8958e444b05f4e89dc300d731facfbca23cf5550, 'Poly Dinos NFT', 'Dino'), + (0x895b1f40b73e0dde386dae1a765083954b3eb054, 'Constellation-20220202', 'CON'), + (0x895ba9ff99469cca9e5adb690f6c442ebb2c9741, 'Air DGs', 'DCL-ARDGS'), + (0x895fa2bceca07207e81316c2dbef09e1c0827dd1, 'Ai.Morpheus', 'MORPH'), + (0x897243a54b03b46a17b55d5609465e9719a6ffa0, 'ICE Crypto Drip', 'DCL-ICECRYPTDRP'), + (0x897eb4ae9bbe17683c69ab13207c2b17103bcb43, 'Cornell’s Real Signature', 'SWEDC'), + (0x8984cc273f07016a941605d16214b2241cdfaf9b, 'CityRoots', 'Vault'), + (0x898dc6e569e297bd4fea9048eb744e5510932113, 'Celestials', 'CELES'), + (0x898fa9c30c7178e3e1a8e2eb2481768138ee6deb, 'CryptoMilkers', 'CM'), + (0x8999ef8cf9beeb82057efa85e5d2168da6a14bf7, 'bitcoinrapperV2', 'BTRCV2'), + (0x899fa1db3b54cccccf8d2bec585f77d89598a720, 'Nelly Behind The Scenes', 'SWEDC'), + (0x89a0c9e75f929c5c5958ae5873a992a06a071dc4, 'metaSKINZ Packz', 'PACKZ'), + (0x89a919368abb03ecb31c2a2dc41850aea2070ba0, 'Ruined Day', 'RD'), + (0x89b1d4545b50d7c735c3cf4001304c67380ff559, 'Crypto Influencer', 'JAPAN'), + (0x89b5c1b6b456f822f34e230818140da5251e0101, 'Tripping Ghosts Vol. 1', 'GHST1'), + (0x89ba5755b92c65ba9b72d997185826cb3dae77f3, 'Particlon Particlon Particlon Particlon Particlon Particlon', 'NFT'), + (0x89c20a993a2e9ded7bc2c355dbff8d02bfc00f7c, 'polygonpixelmfers', 'pixelmfers'), + (0x89c6f915ed28da6acb74f332d96503cda7567592, 'Pizza Pop', 'POP'), + (0x89d2e41408eacbbcc5eebeffaaa27fd2a01ff88b, 'HEAD5', 'H5'), + (0x89d5a3b39af398c58ca6e1d2d97dc8e09956c946, 'Space Club Goblins', 'SCG'), + (0x89d6cd8b1fa632ee3f86c99ce5fdbb19d3340ab4, 'METASKINS X B2 FIGHTING SERIES', 'DCL-METASKINSXB2FIGHTINGSERIES'), + (0x89dc21803d48023a7c3b2731f36d5755ae9ea855, 'Poly Droids', 'DROIDS'), + (0x89dd07a80e8889eef947f3a78071804e02b22c70, 'CarlosverseXP', 'CVXP'), + (0x89dd636dd4efeede5a41d69685a19194bf62f5f1, 'Tiny Fly Kingdom', 'DCL-TNYFLYKNGDM'), + (0x89e0077df898d22df9a5bc006e93eb7db2d894f6, 'Boodle MEOW Gang', 'BMWG'), + (0x89e975ea43e0cfe338205e016bffaefefdbc3511, 'NFA BCN', 'KEY'), + (0x89efd8a1df60a45c151b3c87b47e5e081ce65827, 'Nicholas Kirkwood X White Rabbit', 'DCL-NCHLSKRKWDXWHTRBBT'), + (0x89f18224171fadb1eb98974f4fca69e253f362b9, 'NAME', 'SYMBOL'), + (0x89f2a5463ef4e4176e57eef2b2fdd256bf4bc2bd, 'Santa Fe', 'sNFT'), + (0x8a0755138b79b4c8ce61048966e75c908384e509, 'Connect your world to web3.0', 'CTW3'), + (0x8a0982876df288b0974ccfec11638a755b731e59, 'The Owls Club', 'TheOwlsC'), + (0x8a10fd1b7d7bb4e4e5179c099ab9fc4b8ce9be66, 'Awesome Slimes', 'AWESLIMES'), + (0x8a14337b2ce1b43df1763e5492b37f892c7f6784, 'Chang Gang Rocket', 'DCL-CHNGGNGRCKT'), + (0x8a1abd2e227db543f4228045dd0acf658601fede, 'Ethlings', '😉'), + (0x8a211894bd03cac92f56b9c3a030655878c94dac, 'TreeCrawllr', 'TC'), + (0x8a27819135b4867da83d8bc4fe77c91a4586f9e3, 'Doge king DAOTess', 'Doge king DAOTess'), + (0x8a320ce7ce2c0c592f33e05d14b00bf6d58660f9, 'Doge Colors', 'DC'), + (0x8a33830d7952e8574ab5a5c680a9a4e9aed04a6d, 'NFL Two Minute Drill', 'SWEDC'), + (0x8a3448e1e5ebae5eabd47407ec5b5f508cc4f39b, 'Golfcraft Team', 'DCL-GLFCRFTTM'), + (0x8a36e1b76b36423f31a92077e625040d7db31eb8, 'Nashville, TN Pop Art Edition', 'SWEDC'), + (0x8a37dd6bfcf4ddad39ee974b4a56f14758313051, 'Salose', 'SALOSE'), + (0x8a389596ac8cee598feb98637a3662ca2f7dcd66, 'Reptile''s Spaceship', 'RS'), + (0x8a3dd96987c866eb2466147b49f9ad80aebf55ad, 'sirfnorth', 'SIRFNORTH'), + (0x8a45c0619cf45321ce11ab518638498fce9d5d53, 'METABOOMERZBABYBOOM', 'MBBB'), + (0x8a48493114e560018aa433d8b8450956c604af6e, 'Draper Dragon NFT', 'DDTiger'), + (0x8a4d7458dde3023a3b24225d62087701a88b09dd, 'Toucan Protocol: Carbon Offset Batches', 'TOUCAN-COB'), + (0x8a4d79b3f6cded330395af77ba85889672311ebb, 'GEN-T33', 'GEN-T33'), + (0x8a517da1126d36ebe7f29fe7bddd63d14a3c5d0a, 'DistortedToadz', 'DT'), + (0x8a57d0cb88e5dea66383b64669aa98c1ab48f03e, 'TheRedVillageChampions', 'TRVC'), + (0x8a5889d95c218121f8c2db9bce7a92331b5ee78b, 'Idiot Friends', 'IF'), + (0x8a5b7884fa1667516e73abcd4d452e6effaf44f3, 'Cybee', 'CYB'), + (0x8a600dd492c3f197d0e8b381dabada6cf74e4f1b, 'Pangea Shirt', 'DCL-PNGSHRT'), + (0x8a63c3915c4c4ce2d44a35ec539b419c0537cc53, 'Anime Clever Girls', 'DCL-ANMCLVRGRLS'), + (0x8a6d435c92d66779f42a983a6e34e9d5b4168471, 'Third Wave Club Platinum Tier', 'TWCP'), + (0x8a6deea629c4fe401fe6a455568008cc4ebfa5de, 'Captain', 'CPWC'), + (0x8a75ac7ea6bb0daccce20583ec079cfffa523b68, 'NFT of DPCP ecosystem', 'dNFT'), + (0x8a7643522886f60352e041b67b788dcf0f3666dc, '3Dium x TOTF', 'DCL-3DMXTOTF'), + (0x8a7e5d36904766a7999092e3c83984d27911989f, 'Ci Tian Tang', 'CTT'), + (0x8a7fa136ba5947e0a1b181a04bd226dc7703d1f9, 'PixlDogs', 'PXLD'), + (0x8a85710dc8a2e986b916df2b9e7fc2cfdbdf4f7c, 'CryptoRasta', 'CR'), + (0x8a8c027a623845ad506cfd5b409534c5f5cd64a5, 'SOBRIETY Coin for 6 MONTHS SOBER', 'SOBER6Month'), + (0x8a8f4ec3288ddb63baf881900fe239930ededd6c, 'VizCache Sketchbook MMXXII', 'VZC'), + (0x8a90a4373728c1ef0497dca738445681a9cf8aef, 'KabyHero', 'HERO'), + (0x8a91d402f3133e205d684fb24642bb06de626aa6, 'DuckFi', 'DF'), + (0x8a9294bb23d4abdfe902a2d7df0b5801b5868557, 'ThePoopYearbook', 'TPY'), + (0x8a9a27e9c5c8180e447cc8f899fdd40bd88a816d, 'giao#1', 'giao'), + (0x8a9e6dada36c7c1d41ab662c9bd31ca22bc3cdf6, 'Women Of Crypto Official Polygon', 'WOC'), + (0x8ab1cf139408cc7ec86460755f13215a33ea2935, 'Xmas-2021-bis', 'DCL-XMS-2021-BS'), + (0x8ab217650e53d375226b859c6bc827770232a660, 'adidas Originals x Bored Ape Yacht CLub', 'ODIDD'), + (0x8ac189a88d7ba925efc255f291860ca603d90ac3, 'ChillyCrypto', 'CW'), + (0x8ac42908823dbacbf70727e17d00deb2698b33c2, 'Ball', 'Ball'), + (0x8acdc40ace8a680f3024a2ffa235fa00c22ab2b0, 'ZodiacCards', 'ZDCs'), + (0x8ad2883506c43ec629ef3e446f9472446b5e3a8d, 'LNT2', 'LNT2'), + (0x8ad3f284a00e42a65387619e812ad86543696fb6, 'PANDA ANMLNFT''s', 'ANMLNFT01'), + (0x8adbd1a6ceb9b0ff04be2dbba435abfb7fb8c9d8, 'Pizzi', 'PZZ-14'), + (0x8ade9a98b611f5c9e56b24b6c78c1cb262c4a1da, 'Generation #21 part 2', 'G#P2'), + (0x8ae66d7858578764d573ffb0ece58db59e569bc1, 'Staking MYST', 'sMYST'), + (0x8af27b6b613b2360af86779c08139b0d21214905, 'MangaWonderfulHolidays', 'MWH'), + (0x8af4812a171de17d9847f79652160851ae915c55, 'Full Moonpop', 'SWEDC'), + (0x8afa02d77a5593f8902d27988ca3c687addebd54, 'M5NFT4', 'M5NFT4'), + (0x8aff9bb82316705fedc82679f77c1ad2c2a847e8, 'HSU CHUNG MAO STUDIO_TAIWAN WOMEN IN THE OLD TIME_1st SERIES', 'nueva-vision'), + (0x8b013862bc94acf47f137d0f1f51d3b45f20b14a, 'Canverse', 'CANV'), + (0x8b046921189f633fa59141ad77462f2db6ff9cff, 'ANIMENTALWAIFUDAO', 'ANMWD'), + (0x8b22aef8120350cf1ae8ac89264df3e01433990d, 'ARTIC JACKET', 'DCL-ARTICJACKET'), + (0x8b2760c35e5c54e8dfa8ee6d7d3e3d04b449287c, 'INFINITE SCOUTS', '$COUTS'), + (0x8b2be66d4e783977c69e9936492bef8f7a14ed95, 'NFT Proxies', 'PROXY'), + (0x8b2d18b86d4fadae938a9ba9b3167340e3a41b57, 'VenomClub', 'VC'), + (0x8b2d338a984889178af3bbeea67020c79d01b65b, 'Led Punks Classic Club', 'LPCC'), + (0x8b322ef0533d992c65e2f4e7767b8a5eb80f1354, 'Punk Apestrong World Tour Merch', 'DCL-PNKAPSTRNGWRLDTRMRCH'), + (0x8b364f5d65e1cdb8165e51e6f63fc0cda6a5c1a8, 'Disorderly NFT', 'DISNFT'), + (0x8b3f0e504784b8a2bb8b62215c881362e4953aaf, 'BiasBreakerSoul', 'BB-SOUL'), + (0x8b50b6caf198474ca9ab22850d4940f44c7e8e4c, 'Pandas in Trips', 'Panda'), + (0x8b51af3b4bd8051958838cecb4e2edfb6fc0d177, 'Yellow', 'SWEDC'), + (0x8b51e8c4b0b34f2c7b79615bb33502706554ec8f, 'The Furry Jelly Bean Mob', 'TFJBM'), + (0x8b531cc9966942f762e87c0f8dcfded669b184f4, 'Krypto Phantomz NFT', 'KPNFT'), + (0x8b538840bda08134728e5777465377687cdbd1ef, 'Snad''s Yacht Party 2', 'DCL-SND''SYCHTPRTY2'), + (0x8b5422a10a957f94e3b29b2a4fb3909ded00f1d0, 'MerchLounge #2', 'DCL-MRCHLNG#2'), + (0x8b5673a9d978d60edb5ab8f7c1ff8a03a4fe9d98, 'Pastel Frens', 'PF'), + (0x8b56b2af43d66ba8ad77a0c5adeb6ff34256edd6, 'Huuk721', 'Huuk721'), + (0x8b5d6fd89ca282388304f76d5b2ec71ff1b57561, 'Air FX', 'SWEDC'), + (0x8b617ad31f6d0ba545d67f82fe7be5f39dcfc1a6, 'GALAXY''S', 'DCL-GALAXY''S'), + (0x8b62f1913922683a77232bbc75aa886d80a74dac, 'NFTs', 'NFT'), + (0x8b76c0154f039b722e660bc0234b5724dc0c76c8, 'WLDFNGZ - Life in New Fang City', 'DCL-WLDFNGZ-LFNNWFNGCTY'), + (0x8b7b4b702110d69f59a5ed0635618c50c4563183, 'Rich Apes', 'DCL-RCHAPS'), + (0x8b8407c6184f1f0fd1082e83d6a3b8349caced12, 'Emblem Vault V2', 'Emblem.pro'), + (0x8b86d9766db4ace3801cd085ec4174afddfc9956, 'thirdweb NFT Lootbox Finisher', 'ptr-twlb'), + (0x8b8838b2fdae103920315766ff36a55e583a174c, 'Extraordinary Gentlemen', 'DCL-EXTRRDNRYGNTLMN'), + (0x8b93ea506cd088ce0f99cf9b51562e2ce5154b9b, 'Waifumon Exclusive', 'DCL-WFMNEXCLSV'), + (0x8b9adb5a5eb7c7c3c8e615d369803d476dfc7024, 'UAEGoldenJubileeNFTStamp', 'UAE50'), + (0x8b9b42e724c1f639dbeba5c37c5f6bdd82ca49b3, 'Rhino Suit', 'DCL-RHNST'), + (0x8bb150dbab1d7bf0b7f69a8e12c4e74cd8ac72a8, 'VoxBoards Kicks', 'DCL-VXBRDSKCKS'), + (0x8bb7cf464ddbefe7247da8e184c8fb5c69b8355e, 'Ape Retro Pop Art', 'ARPA'), + (0x8bb9ebf33995876c56aab76556a9959587c194d8, 'Blueberry Fruitpop', 'SWEDC'), + (0x8bbcd4609932b910e665cde7b645b38b660e60c9, 'Neighborhood Kids', 'HOODKIDS'), + (0x8bcc6e2306adcb335bfda8eae82e4fe4f8a33692, 'GEN-T09', 'GEN-T09'), + (0x8bd5ec794d177f117b64d868cccc4ab91d40ceab, 'HODL VUITTON Track Suit', 'DCL-HODLVUITTONTRCKST'), + (0x8bdaf77abeb4630bc31d567dd56177dddf35ddfa, 'Status Quote', 'DCL-STTSQT'), + (0x8bdfa8cef68a205a1ade1bbab928c0c447f8e7ef, 'INagain', 'IO'), + (0x8bf555ff5d026b3633dfb99de02663105d27e7bc, 'Jacksonville, FL Pop Art Edition', 'SWEDC'), + (0x8c029df7fd4357f451df134f4e3f8e563a6eee09, 'My First NFT', 'My First NFT'), + (0x8c04a567811bd4b0a943baa879d567142cf427f0, 'BapesOfficial', 'BO'), + (0x8c04dca7c87cf8d76db618b8302b0b662c4af576, 'Doodles Animals', 'DA'), + (0x8c09a0ef6edd537437cc40ba10cb61c4733b83dc, 'GEN-L18', 'GEN-L18'), + (0x8c0a087334f4b6f44c43337f76d6e3fb8f70bc6a, 'Thank you', 'C'), + (0x8c0b7c9b02283fee2c95b028aa583c857180bf70, 'Canvas Apes', 'CAPE'), + (0x8c0d8685afeaf558f271fd78e75e647f6357869b, 'NFTsApp', 'NFTsApp9'), + (0x8c1aaa209c5539fa5c8964d7c6d6f014db8c3bf4, 'BittyBots', 'BITTY'), + (0x8c21467732fa73999dd623253ff8fae9eafa833b, 'Bored Monkey NFT', 'BMN'), + (0x8c24f022cc20df40728e0ec97baaf7368bf888f1, 'GEN-H16', 'GEN-H16'), + (0x8c28155289e926fec1595643bf7815beafe6c458, 'Weird Bored Egg', 'WBE'), + (0x8c2842a9933bf2b27d1dbfff60edfaa33c597be2, 'Chubby Kittens NFT', 'CHK'), + (0x8c288f3fc82afae39ce2b2671973fcbcdbd5db45, 'WeirdMedicologyGenesisEpoch', 'WMGE'), + (0x8c2c894626910f1a2a5539e2e81af0003d08af5d, 'MASKED APE SQUAD', 'MAS'), + (0x8c3b4b8e041beb0dab1c0c47cdb430369b0a2953, 'MopeyMonsters', 'MM'), + (0x8c3d758f22cadc860d99ae844d24a2ebe2f268d7, 'Douchey Dingos', 'DINGOS'), + (0x8c4388906788695dd31729ffdb055de7845ead04, 'Twisted Bears', 'Twisted'), + (0x8c466ea16b0e211250816a83795cb25c75f2b5c0, 'BoodleBears', 'BE'), + (0x8c499f7bb350863aaa4d0ef0cfed61fae21a5441, 'Meta Mansions NFT By Keys', 'KEYS'), + (0x8c50bb8c0a6955229df4b3226d818cf11d4ea200, 'Mutant Shiba Club', 'MSC'), + (0x8c5f192369fb7d48fc85c78dbd4686bf5ecc03ff, 'Cosmic chameleon battle team', 'CCBT'), + (0x8c6b542ac3480225ec731a5e5ff3cf5aa903c860, '0xCdC44df7ba6366355bA661D4a799C83B9ac048d1', 'XCd'), + (0x8c6c6f00eeb4108c03a26e7665218556fa1b4e0e, 'TimeTravelApeArt', 'TTAA'), + (0x8c6cd597cf27655802003047e366734d2f641172, 'GEN-H23', 'GEN-H23'), + (0x8c7616d3c94a4f635fb1dabade46463923cc4c6b, 'Zombie Panda NFT', 'ZP'), + (0x8c7a323afa35a1db2b4e3fa8445858eacd1b7d41, 'SharkTales', 'SHARKTALES'), + (0x8c7aa2fc7b153e0840878a7a6f250e649cd200be, 'Сryptozombi vs war', 'sryptozombi-vs-war'), + (0x8c82ce01efa0300577dfeb9ab29db4f514ef403d, 'WuTang Hens', 'WTH'), + (0x8c8b2d9bf96656dabfc64ea28c3a358bfb5e2c43, 'MetaHelmet Sandbox', 'MHS'), + (0x8c967b368c5099412975d6aaa1a4227f110d8866, 'PrimeMatesBoardClub', 'PMBC'), + (0x8c9b4ca529cfcf28eda23f04dfbda6de7563b76d, 'GEN-H38', 'GEN-H38'), + (0x8c9c990d389a157d5e6ca956e07c4a901e561e6a, 'New Update', 'new-update'), + (0x8ca21928d17bce14eb7c5cf5786fd60a58b3406e, 'Mechanical Botanical', 'MB'), + (0x8ca56745701f30bd124cac9017243a0debed87df, 'Mushrooms Club NFT', 'MCN'), + (0x8caaa11d46af9d63b6d277b610ca531e7bb8f584, 'Neighborhood Kids', 'NKIDS'), + (0x8cb87e38740c1dbe556b8c734c72ae8337ce0f62, 'Wanted Apes Club', 'WAC'), + (0x8cbf30d1be7940d22a84356cd593722d3bc9c09e, 'Utmost Corgi', 'UTMC'), + (0x8cc3509f962a86d2396838c92f29d0cb949d062b, 'Super MeowMania', 'SMWM'), + (0x8cca9bc5e113c225d80e6a6708ebbf6fffe3cf0a, 'Harrisburg, PA Pop Art Edition', 'SWEDC'), + (0x8ccc87520c6b6d1296b7336953f2cdfffa2b90ea, 'Let''s Bounce', 'SWEDC'), + (0x8cd2647accda11a98b21aec2fcfcf88b071db08f, 'Good Morning News TV', 'GMNTV'), + (0x8cd561d67cb0a458fe648791085ac1413609b99b, 'The Cupcakes', 'CPCKS'), + (0x8cdc03219e7a01174cd1c4417c758b254593b739, 'The Sh4DzZ', 'SHDZ'), + (0x8cdf396bc0244544af18e30bf4f42db50d75b030, 'Classic Golden Sunglasses', 'DCL-CLSSCGLDNSNGLSSS'), + (0x8ce2d3198a436a4d3553866db7993af0ca1ec0b9, 'Crypto Auras - by Nikki Fuego', 'DCL-CRYPTARS-BYNKKFG'), + (0x8ceb377ba3afefc3bab6c5dcbe603c6e11e0ddd1, 'AlphaSkullz OfficiaI NFT', 'ALP'), + (0x8cf14215c5da47381a4f50eb2f5e14d1e2f6e236, 'Skull Elf al', 'Skulicial'), + (0x8cf51d2c22b06b536a824f5f1cd504d57749b66c, 'SushiMe', 'SM'), + (0x8d081e6e2e74f1f8e42ba013b7682b694013253b, 'Business Woman Cartoon Vectors', 'WMN'), + (0x8d0a69bde8230c94ee1b018a9db46893dad7eb34, 'DEATHWISH 365', 'DCL-DEATHWISH365'), + (0x8d0be823729e0d3b95c46f6f45d407b7c93d875c, 'Vamp Vixens', 'VV'), + (0x8d102d16fb035bc9212b72230165091e855df035, 'KudasaiAMA2021', 'KudasaiAMA2021'), + (0x8d103b558fd2492ed90bba540ebc2bbf7aaa88f1, 'MeMeMeow', 'MMM'), + (0x8d13b176bb58537cab76609fbf193b03470c17a0, 'JoMFounder', 'JoM'), + (0x8d1f1399466b577f020825359832b6e634a4a1f5, 'Amazing Karen Thailand', 'AKT'), + (0x8d2007794d42f27ada92fd1898ca9b2fd0f7da51, 'Whats on CryptoPunks Head', 'WCH'), + (0x8d202a79219176cb336f25436a8feacc4aedf7b9, 'MetaAndroids', 'metaandroids'), + (0x8d366ca65d6c4bf4c70115cc42274a3a6f06a24d, 'LlamaPunks', 'LMAP'), + (0x8d36bee78e8bfa12328f8d0271967319a984bfc3, 'Peter''s Yummy Cheeseburger', 'BURGER'), + (0x8d49504955f361e808a7091bf4964994ac89131e, 'Hung Man', 'HM'), + (0x8d495c8a10c89bc0e24d667280f9fc55e380a300, 'Crystal', 'CMBNFT'), + (0x8d4e55889a185967d60a6208196341f73cea6ab0, 'The Ricklantis', 'C-131'), + (0x8d53fd121198d0982f8e19286e924c78ed5a6a7a, 'HedgeyHoglets', 'HDHG'), + (0x8d55d2cb930c5dcf101efe75bee63a8429342124, 'Chill Bear Club', 'CBC'), + (0x8d589aa39dc0638ecd0d6ba111b85ab9949521a4, 'GET Protocol - Event Financing - importerNote', 'iNOTE GET'), + (0x8d58d6755d4f6a63041e37cfe79e1b2aef146f1e, 'KUSOGENFT', 'GAME'), + (0x8d59f31ad994f0777fae5362aec8f0cc60792fc6, 'Neighborhood Kids', 'NKIDS'), + (0x8d5b087049f1122a41c00772f3097738f632ed7d, 'Putin_Rush_To_Space', 'C'), + (0x8d5b9a83694e5c4a053fca04d29d9eaf2105ef13, 'Lil Ballers', 'LILB'), + (0x8d677cb08f1104ede9741ab26839073505ba43ea, 'Oxford mic', 'DCL-OXFRDMC'), + (0x8d74f47352f22f8bc87fceaf4cb4db0a31f02c39, 'YukiAzumaTokyoCollectableClub', 'TCC'), + (0x8d78fbca686cdb3ef39fe70988a3f2ac4eb8a9b4, 'DrMayhem', 'RXHAM'), + (0x8d7f6deb1934c9be72088699ff54baaf50609852, 'Ent NFT', 'ENT'), + (0x8d8c7545836c36f4052503bfb3d16484897de2d5, 'The Council Of Ronin NFT Genesis Collection', 'CoR'), + (0x8d94e013ca2f1be0574ae38b2cdfb74b4fb91069, 'Hostile Squirrel', 'HS'), + (0x8d98345a8f3071b002d919dad005472954347d71, 'DazzlingDucks', 'DZD'), + (0x8d9d41c6d449b9cc58abe773abbd7cb56e122d82, 'Jonezyboyz2', 'JBZ'), + (0x8d9e20596b1b7683e77f88b447fd8b4d922833fa, 'The Association', 'DCL-THASSCTN'), + (0x8da6744fa6ccb4739114b03d8e1f3501a9f4afa4, 'PunkyPet Panda', 'PPP'), + (0x8dbc135e8ea65b1142f16c685b6a7fd34969026c, 'Rockitpix NFT 1', 'Rpix'), + (0x8dc3e5b4a47fb6309d793d4b7f04b6506e9ec9f5, 'Live Stubs', 'STUB'), + (0x8de6b46ce1211385f6579413624ebe5be02f9a0b, 'Cyber Gorillas Club Official', 'CGC'), + (0x8deb0be8ee13f85d8486ce63e20f960a926f7660, 'GhostParty NFT', 'GPN'), + (0x8df25a5c4139f04de6154d8547d4326f0a876944, 'Rodrigo Eli Moreira - Povo Surui', 'Povo Surui'), + (0x8e042b1f309f05c87c51dbf6d90b27a3bcf66505, 'Wagmi World', 'WW'), + (0x8e066e561be7c9fba32b949e70aeb6e84838a3cf, 'HOODZ420', 'NFTR'), + (0x8e093d02e5c5612758a6d9890cfd0dd4ad67cd88, 'Staking NIOX', 'sNIOX'), + (0x8e0a0c9b284eca398963c6ad557894b8019d1349, 'Hide Topics', 'HIDETOPICS'), + (0x8e0de53db65aea12ec86460f4edd60371e38ed9c, 'Generation #23 part 1', 'G#P1'), + (0x8e129534adcb7b1836eeddec6f30f6e1aeaa0eff, 'DC Originals', 'DC'), + (0x8e1394f7c7373c71ed781eae1bad7aa816808d8f, 'NFT Garden', 'NFTG'), + (0x8e140718985cf08efe591078c34bfce747b42dd5, 'HL Cool Runnings', 'DCL-HLCLRNNNGS'), + (0x8e2147bd722d2dd8d1cfdaa22a26ec45212983ce, 'Collection', 'c'), + (0x8e26de3417d345f9c8143d3b1747cdc6272d2cc4, 'Caishenye', 'cs'), + (0x8e2da75dade21caacb76ec8a95827a2c1d9800f1, 'XG Galaxy set', 'DCL-XGGLXYST'), + (0x8e30d91775a81a1b405d98612f31fcea93f1895c, 'Chill Pixel Cat Party', 'CPCP'), + (0x8e3df0f6bb4ef7f1dd525ae6c93762b8ca08d22f, 'MultiverseMortys', 'MMNFT'), + (0x8e42bc6df9568244493996cbd70f9fdf7199f640, 'Goodle Dog Gang', 'GDG'), + (0x8e43a9b17b194f348c3a52f790b4add425163f07, 'CrypticLife OG collection', 'CLC'), + (0x8e449751fd03ec87bb4094450c1297dfd4523603, 'Dragobete- Your Love Story', 'DIYLS'), + (0x8e473a65ca87c4c9a272cba94768d884d6f090e0, 'Balisong Season 1', 'DCL-BLSNGSSN1'), + (0x8e52456acdbb623e09daa0b84a43605451a2d2cc, 'C.r.y.p.t.o.C.a.t.P.u.n.k', 'CCP'), + (0x8e55ae2d325c4af6327aa0ca5291b5f041821254, 'polybruhs genesis', 'bruh'), + (0x8e5c276ff164c38c3d49c8f236375a27c9fa39c1, 'BoredParty - Clubbers', 'BPCLUBBERS'), + (0x8e5d0c26e714ba26496bd17ba0a8e3614d46506f, 'Richmond, VA Silver Edition', 'SWEDC'), + (0x8e61059e763232eaa3c53fd113a7755642154f74, 'CryptoRPGStake', 'RPGSTAKE'), + (0x8e62ce779149a1150d2df3af613dd676b5c50edb, 'Commemorative BRD NFTs', 'BRDNFT'), + (0x8e674db9b2fc0759b2d94cace9c4bae334a8f0c3, 'VARBARIAN 1-2', 'DCL-VARBARIAN1-2'), + (0x8e67a70dc6bd978152149e63a55dfae78bf7daba, 'ShroomFolk', 'FOLK'), + (0x8e6db1394c85757cf35850796fd0000f4a0cabd2, 'Denims Not Dead', 'DCL-DNMSNTDD'), + (0x8e7094296846ef4475ce7fc08b2c7f66e8ba342f, 'MetaGoons & Decentral Games', 'DCL-MTGNS&DCNTRLGMS'), + (0x8e82b1167c8e5571b45acbfca9aef7ebe567ef14, 'Crypto_moon', 'CM'), + (0x8e8526c7bc01338420d60f80b34f27488e29bde8, 'Gamer Ape Player Club', 'GAPC'), + (0x8e8c28320e1492044038a6ea0658c745f167a22a, 'Purple Dragon', 'DCL-PRPLDRGN'), + (0x8e96c87ce41193992067ef5e5e538309abc6a77e, 'ART-TECH EMPIRE', 'ART-TECH EMPIRE'), + (0x8ea6d4e79d2065115ff0558072ecceb0e09c7fae, 'KyivPunks', 'KP'), + (0x8ed0514926b8f8595c23e9b0cc39666869326a29, 'Plank Owner Series', 'PLANK'), + (0x8ed109d129529db831ae819c637a425d2905c530, 'xSea Turtle NFT', 'XSTNFT'), + (0x8ed2fdc0c733835c1dcf7f110d6a7863d448db43, 'BLOCKBOTZ CLUB PREZ', 'BBPREZ'), + (0x8ed408daa0ce6aff44da283540bbc8132678f63a, 'CityRoots', 'Vault'), + (0x8edab87f1e63e4266e4e17c5f5dba243aab2294a, 'THE MYSTIC ENTS', 'TME'), + (0x8edeec08585d0e723120a7b24641b20d4308ab6a, 'Cool Apes Gang', 'CAG'), + (0x8ee6cd0a74c23b51d3a8584719d5e878875cb3e3, 'MidRose', 'DCL-MDRS'), + (0x8ef293c7df1d43aadc80b9b69c3e370846a7d55b, 'Erotic_Sketch', 'NFT'), + (0x8ef591dbcb90c761d3e659679011d548a29fef19, 'Mochi Frogs', 'MF'), + (0x8ef7e72eaaab6b95112ea036f9b77083846c28f8, 'Rush Avatar', 'RA'), + (0x8efabaf405ee0b99492a3f11b1e82b04c0cf7c14, 'My Dolphin Not Working', 'MDNW'), + (0x8f025efeff16f659b5bc0b43052e37b0d08ea2de, 'MOCKLand', 'MOCK'), + (0x8f19c9ce97ba085d7b77cccdaeb3e57c09f66880, 'CryptoDuckOfficial', 'CD'), + (0x8f1d7c71a289f2d8c2a6c50420000ad7826c772c, 'GEN-H25', 'GEN-H25'), + (0x8f203e593a8c7ff12e5b08e9f544815e42958f16, 'Shirt Merch NFT', 'SWEDC'), + (0x8f27e2e06258b0e580d77b09e8fa2c500091c04c, 'ApeCoin DAO', 'DAO'), + (0x8f3075e78fbbce32b5c887b3bda6d10272d26d19, '1MGMNFT', '1MGMNFT'), + (0x8f357b97f5d1fce390e8a6a26b3bf6fbcd61013b, 'LazyPanda', 'LP'), + (0x8f370776ce3e56d7e8f46ec5c7b196dc51ed6ecb, 'VottunSL', 'VTNP'), + (0x8f392bda5d1fc9d6076894295aeff9207d218d82, 'CinSity DAO Founders Pass', 'CSDAO'), + (0x8f394159c0d0bfc261da2b9eef928563281cd159, 'SPACEMUTANTZ', 'SPM'), + (0x8f546e4e7bd248ac36c81de2cade7285ffdcbae4, 'Loot', 'LOOT'), + (0x8f59398a3e099df44f5648182a5c5da5a1474cc6, 'aesthetic-investors', 'aesthetic-investors'), + (0x8f5ac036567c9541332268f2ba736c6e4f9249a3, 'Brennen Davis “Suns in 4” V2', 'SWEDC'), + (0x8f5b1d7d70b0daf9f37e7c59b73313fdc8d8aa4c, 'Metaversian', 'MVian'), + (0x8f6348097dad1e46e90dae57b1bc2c3e7af995cc, 'Flockers Social Club', 'FSC'), + (0x8f6a841eba1d13532304490e6b3f6cf031ac4150, 'Daz3D Drops', 'DAZDROP'), + (0x8f6c67212fd33782189a409d0555391c3200b7c7, 'Cre8tors DAO Exclusives', 'CDEX'), + (0x8f7d6ab1ceabb06979f19c422dfb336eb89773ec, 'OG_Guitar_Club1', 'OGGC_NFT'), + (0x8f7f3c45e9cd1965346a2f2f09e53278e613f911, 'RedeemPartyPunks', 'RPP'), + (0x8f8055e5434e623d118bf4605a4d0ebaa12501d0, 'My NFT Token', 'MNT'), + (0x8f8d6829991ed4c2736a12794089cd11d877560c, 'Space Kids OfficiaI NFT', 'SPA'), + (0x8f8e18dbebb8ca4fc2bc7e3425fcdfd5264e33e8, 'Voxie Tactics Items', 'VXTITEMS'), + (0x8f9c9bd2fd94237fc81c3387823658a091592a76, 'Shiba Vikings OfficiaI', 'SHI'), + (0x8f9d254fa109be2ea87ad0f88a6f2b414e9fa30d, 'adidas Originals Into the Metaverse Official', 'ADIDAORI'), + (0x8f9d2871652259d15fd02ffa81e1383849c03d97, 'Waifumon', 'DCL-WFMN'), + (0x8fa79e84f0aed30f0b15cda77004bc8d3ff9a115, 'ZemNFT', 'ZemNFT'), + (0x8fad951da9c49f44939a7b602379c2943622fb6b, 'SpacePunksClub Official Polygon', 'SPACEPUNKS'), + (0x8fbeee065d7f626f771a7dd2120cf831639e469f, 'StackOS NFT 7', 'NodeNFT'), + (0x8fc2cecd18ae692d7ce61e5640a40457727135c0, 'Snoop Dogg x Bored Ape Yacht Club', 'SnoopdoggxBAYC'), + (0x8fcd510b144ee5ced589e44f6eda1e5310c97c30, 'Coins Avy NFT Art', 'CA'), + (0x8fd9d0a197fce3652451229d96cc1887cd7a25a4, 'BadassApeNFTclub', 'BA'), + (0x8fe484ccc8aa94040c48e9dbad8b0c8ca908115d, 'Metalovers official', 'MO'), + (0x8fe705f477e96a5b7327783b00c467455e0fe34a, 'Albuquerque, NM Silver Edition', 'SWEDC'), + (0x8febbaa69d46c49f89a25e937983d2ca84ae6b4a, 'CoolPunk', 'cpk'), + (0x8fec467b3b4700f4b22c1fe14274d5d6d5370a0c, 'Metakey HQ Launch Wearables', 'DCL-MTKYHQLNCHWRBLS'), + (0x8ff7b1e3b7d88cc9c99066b2bda5de462a315d60, 'Vikings', 'VIK'), + (0x8ffb4a9ac2b90f2b5b06d0752eec807af21389cf, 'Woodcarving painting ''Attack''', 'ATTACK'), + (0x9000f4a792ab477e649463925b547251bcd7d074, 'My Heroes', 'my-heroes'), + (0x9014d4225052ecc88458a7e71f943fb3fbeb4f9a, 'MetareaLands', 'LAND'), + (0x901e1a938599bcac351d781a24079a17a25571a2, 'PolyMine Tool Collection', 'PMTC'), + (0x901f6708659f9c2f50337cef94f7607d4d93a0eb, 'LootMogul', 'LOOT'), + (0x902c381a25151c5c33afb9ed831382060dbc6bbe, 'Secret Weasels', 'SW'), + (0x90376bbfc2fc554d5183c036b4840bae611acfcf, 'SuperAstro', 'ASTRO'), + (0x90377573490b44e5e4547a41f0c02672e3f8805e, 'Close yet far', 'CYF'), + (0x9038dc81d4ea020c8553f20a1ed572d267057ded, 'Meta Man', 'MEMA'), + (0x90393933b22f156d6145048cc0c226f70def4d24, 'It''s Showtime! By MetaWear', 'DCL-IT''SSHWTM!BYMTWR'), + (0x9040704f41d0690f171ae179114070db7e16ec05, 'Fully Faltoo_BiryaniRevolution', 'BiryaniRevolution'), + (0x90410a6bc2285df5a726b0b89d8be60c9b6fa26e, 'NFL', 'NFL'), + (0x9046c957fbb2952d6f0c53636aae93b8b11c02ac, 'Prueba NFTS', 'PNFTS'), + (0x90470b46580e423ba1556236e4ffbc15963aa09f, 'WIZ-GARB II', 'DCL-WIZ-GARBII'), + (0x905057c6283ed6d7595bdf64ccadfb761016143a, 'World Famous Carbon Coffee', 'DCL-WRLDFMSCRBNCFF'), + (0x9054d6e7e068373ec05f6c0cbaaae0133b394ebb, 'Kobold coin club', 'Kobold'), + (0x905c11f59cc200cc2e8170f45900a7c23d72d767, 'PixoHearts', 'C'), + (0x9074ae89690219f6648ce0e18ab289a7ac1e0882, 'Sweetbot Blueberry', 'SWEDC'), + (0x9077861b3944d9390dd7c27a7cc195947a8308f9, 'Shit Happens Apologize', 'SHA'), + (0x907c4c26e69eb39ebf906ee15ffe98905af55db6, 'DuckiezKing - Cap Drip', 'DCL-DCKZKNG-CPDRP'), + (0x907d413773570d83328622fa4a32a3498f04fa92, 'MURI x LEGENDARY', 'MXLGND'), + (0x907dbd4a89f37e42f162a8d9ff17cc4df7ccb746, 'PixelTomcats', 'PT'), + (0x9081103a004b7ee4fad498f7afd45b7e9e5cd153, 'MetaCyclopsOGVIP', 'MCVIP'), + (0x908252d3548b26d691fb39fa808e7554bb8dd2ee, 'HONORCard', 'HC'), + (0x9084641851616d43eb8b3aaf1ef74cf1ea769a3f, 'Unusual Snail Only', 'USO'), + (0x908553e60c2554386d1ae15b296b841687e587d6, 'Aesthetic Davids', 'DAVID'), + (0x90859c1ceba5c6a466edc70732e54242a4caeb46, 'Scary_Ghost', 'GHOST'), + (0x9089eea7f0baf61b2edb8a316ab6d3cdfe8558c8, 'Exo Soldier', 'DCL-EXSLDR'), + (0x909318bfd589f6441964843f54da97d268543520, 'Funko''s new Star Trek', 'Funko''s'), + (0x909bebffc69bab12c2ce559b74e43b50cdcafd8c, 'Golfcraft - Oh my Golf!', 'DCL-GLFCRFT-OHMYGLF!'), + (0x90a2a024695fab4c37cb6852cec803798d63d8e5, 'Vanilla Ice Club Collection #1', 'DCL-VNLLICCLBCLLCTN#1'), + (0x90a5cf7d19ed8a3e813c796541ef5125920d8a82, 'Marvelous_Beavers', 'BEAVER'), + (0x90a7982d7029008c1feaf4e79edc4144ee69556c, 'Visions_Wear 2', 'DCL-VSNS_WR2'), + (0x90c270077df1b81723604c1d54465e05d8b27274, 'My Collection amf6VhJXxgpwbQjkcB3E', 'my-collection-amf6vhjxxgpwbqjkcb3e'), + (0x90c6b1a11f593ede91812d41037ca40df01a20fe, 'Vox inWonderLand', 'VOXIWDL'), + (0x90c6b673d5f160860d7a66f8253c404f90c66191, 'CanvasToken', 'CT'), + (0x90d4ca97b5e2ab7f14cf746306b7634b02d1a322, 'POOVERSE', 'POOP'), + (0x90e2c8466bd12c06cd899a6d1a59ff1450cbd0b3, 'uouyoyuyu', 'tt'), + (0x90e7363731d43537899ddffd48548cb6466c39e0, 'The Hatties', 'HATTIES'), + (0x90eb5f8bab5f7b78c4435eb7568563d6b1805eae, 'Dunhuang Grottoes Murals', 'DGM'), + (0x90ecb63f4fa6e3c7e93595b9326ed850653e2115, 'Gaimcraft', 'GCR'), + (0x90ee4067de651259f38b3f46cfd6f431141feeae, 'Racing Raptors V2', 'RR'), + (0x90fcb343d8439bf5038556d411d57e91b954ce47, 'The Guinz Generation 1', 'TGG1'), + (0x91021a55216e50b7905f6386a07240eb3fa58e8a, 'Kong Club NFT Official', 'KONGCLUB'), + (0x91065f60ce716400e705a74de642493c4fa72b76, 'FunTeddySquad VacationShowroom', 'FTS_VS'), + (0x910f77251afcb0733ac53e16fd4b7cab969f1dfa, 'NFTs', 'NFT'), + (0x912572b2d15dafd5f1658f11b820a9b55e715555, 'Kuuple Universe', 'KUUPLE'), + (0x912d058357596098f4ab82cbd082b6171e8bb4cf, 'KAZUTO Drip Maxx Ultra Violetz', 'DCL-KAZUTODRPMXXULTRVLTZ'), + (0x912f2716af4f29235439fdba71e62805d81b4877, 'Doodle Ape Club', 'DAC'), + (0x912f6a87d76fa2a2b75eb9ebc8b0e7124f5f5d78, 'CryptoKittiesPunks', 'CKP'), + (0x9133d5ab5e0cc111d6ca6b98234ce05e6a60fb3c, '$WCM Cross Blunt', 'DCL-$WCMCRSSBLNT'), + (0x9134463357880b48a0372f17d1279ce30165f156, 'JANSBOYS', 'JB'), + (0x913a2381c1fbf0275cdd3f3eef829f32cee3a3db, 'Ukraine Faces War', 'UA_WAR'), + (0x913b3af8425bd0dd9b6fd3af4e08d8fc6cd8c3e8, 'ALI NFT', 'ALINFT'), + (0x91474247da8323c662d1dec32fb1a22921fa6e93, 'PFP', 'PFP'), + (0x914b27968d27fbae8a57eb0f0cb933799610b46f, 'Hella''s Pride', 'DCL-HLL''SPRD'), + (0x914cc15a6d345aedab40c919c1b3751ad6e3f120, 'AWESOME APES GANG', 'AAG'), + (0x914d05452fda6716b6bc794c369ffec7fea4a069, '8MetaBalls', 'DCL-8MTBLLS'), + (0x914eb0021f9e1d5c900a9284d5bdf140f6a4231d, 'We Are Gonna Make It !', 'DCL-WARGNNMKIT!'), + (0x914fcf62d4968c5172c006aae86be8016966a173, 'Magic Sea Wars', 'MSW'), + (0x9151366f70d57ca8ede7bd1bd3ca52c5d421c7d8, 'CryptoMETEORITS', 'METE'), + (0x91588807ca45849ce5b5cb10ebf4d08077446c9f, 'Crypto_Gent Watches', 'DCL-CRYPT_GNTWTCHS'), + (0x915a672225d5f04d98614243fd26100efd78b71d, 'Close yet far', 'CYF'), + (0x915a9a233b95d7141c8b8622c11467dc3601c19e, 'MyBiasSwithNFT', 'MBS'), + (0x9167124b8d9cb9c2252d33ebc35df3e96cd2edb9, 'pRIZE Fighter Financial', 'pRIZE'), + (0x916b13fca6192fe5e4e2cd58f712ba9ade43ced0, 'Pixel Avatars', 'PXLDEV'), + (0x916d86d8855b1b5090fd28b05f39550dc4625791, 'HORRAON EVOO Members Club', 'HORRAONEVOOMC'), + (0x9172abb6cb108a9e66d1ba30e3af22ddce20def7, 'lekvar', 'ahag'), + (0x91731487243852b1c675fdd2cc72f0da15f587fd, 'GET PalletFactory Contract', 'invPallet'), + (0x9180a1e354a0fcb1e7e56cacd2c10665fc839f43, 'The Shiba Burners Club', 'TSBC'), + (0x91816ee8e7cb1825c3f0c028b306f2532f6d8b74, 'Meta Mansions by KEYS', 'KEYS'), + (0x91833f29297d0db2f3afd5087b90c88319b10ec8, 'skskskkkskskskdjkdkjdkjdkjdk', 'sk'), + (0x91899a34a7009862ed90d0bbf77274817e110455, 'Chic Calf Collection', 'CCNBCALF'), + (0x91900f2d1d4cd254028e67bfeb298dec9a7b5b69, 'Shlime Buddies by Mister-Chief', 'SB'), + (0x9191a8335bdf4eb2c215b0e8a4090fa1bd115f14, 'Rich Bull Gang', 'RBG'), + (0x9192a8ac19bfff1811de34ae60c3976148edae6c, 'Crypto Ape Polygon Club - CAPC', 'CAPC'), + (0x9196077e3bb201dc5c1fdd7a4e3ef804a66e5c8b, 'Golden Doodle Club', 'GDC'), + (0x91970ec53131c2a74c9600a4aaae990bc63ccaa0, 'Mexican Lemons', 'LMN'), + (0x91a372a41142b90c6c7a656b2c749b067dcc7a76, 'Hype Ape Collection', 'HAC'), + (0x91a46af516b65f0dfa23c2ab81b67c41490af9c6, 'ManekiNeko', 'NEKO'), + (0x91ae268333b190fe68f60abe300856fa2d98c333, 'Martian''s Parliament Club', 'C'), + (0x91ae7a63d375ce3869436c1bfe3f7c56ce70c3ad, 'Hypernet Profiles', 'Customizable Web3 user profile tok'), + (0x91af7fed38e031a734eff2a45ffcba994c05c980, 'hottt', 'MHD'), + (0x91b2d3575808e296ae0a954b0b752936e352517f, 'PolyLanders', 'PL'), + (0x91b2e60bc99e1fd892733266b9e0c1f4f02e8650, 'Meta Dude', 'MDD'), + (0x91d3a6700fd0e006b4efb281ba4cc7fb36a84e85, 'G.O.A.T. ELVES G.O.A.T. ELVES G.O.A.T. ELVES', 'NFTC'), + (0x91dcaf1e072de9f1d3da13d06e6c63a0e80a6c5d, 'BLOCK X HOODIE', 'DCL-BLOCKXHOODIE'), + (0x91df31c8f269187e782dc9146a4deb1e8521e5cd, 'dzudzuebi', 'dzudzu'), + (0x91e1a2ec96dd806c5a5fe4772222671a2c41fa1d, 'MATES', 'M8'), + (0x91e2024d7da25c17a43ce971e47a4bca33e7df6e, 'LeeroyBadge', 'LRY'), + (0x91e69febab5f1a20eb78608a0965d110d68c93c4, 'goodleapes', 'GDA'), + (0x91ea91493da5650d57ee20bae28ccddb64daf797, 'Cryptmoon', 'CM'), + (0x91edd2bc57e477abea85d7b9186ea9747e4b6d5c, 'See Do NFT', 'SDN'), + (0x91eddf6e8638117970c98e92f0ecf2446d3c4d7b, 'Detective_Club_X_Trippy_GutterCat_666', 'TDCGCG'), + (0x91fba53fdefac1d7f39fe13eaa66ddb3a4dfe406, 'Cryptosor', 'CSOR'), + (0x92044ff81049173c33dae687f1f359de7a02c3c4, 'flatimage', 'FIT'), + (0x920818824ac3230826cc9a21437b5075465b8f7b, 'Official_Tough_Teddez', 'OTTZ'), + (0x920c668f8c743818f9de952f2d7cd121a11d6bef, 'FantasticLand 2022-Yaman', 'DCL-FNTSTCLND2022-YMN'), + (0x920de0f418d76ef99b7004c64fa07b98f8b85dba, 'Peezmo AI 21', 'PEEZMOAI21'), + (0x9215bba1bc7877c57757473ba04be46bda8d649d, 'JTV Shorts', 'DCL-JTVSHRTS'), + (0x9219a0da8e43bf1a1c3ea916ded72fdcc61207be, 'Cupid Love Rose', 'CLR'), + (0x92233c0bf2f15fce1f1df19763aed601e9495b33, 'MybitCard', 'MBIT'), + (0x922c53f901b4c4dc7b54b82b44bb21fe804b4719, 'Fractal Zen NFTee', 'DCL-FRCTLZNNFT'), + (0x922c96464146e7a9998d534405fab14351f488e9, 'Big Bad Joints', 'DCL-BGBDJNTS'), + (0x923226382dab3b8d07b748038cd2610c725e2471, 'M1NTY - FS', 'M1NTY'), + (0x9241ac91e1b8cd785af1edc59394651cb377b21a, 'Bored Groots Club', 'BGC'), + (0x924681638e11628250e7dc1449fa49752e92ee69, 'Prisco Gorilla Farmers', 'PGF'), + (0x924a1506e47d6b20f85b9b8ce8951000d583d877, 'chilling teddy bears', 'chilling-teddy-bears'), + (0x924a51339b0fbc61bfb6f9c90194ee7ebe0b157f, 'FindTruman Poap', 'FTPoap'), + (0x9251f5c79923bc80e5dd8fc6d0c9fa02953aa622, 'sweet lolita set', 'DCL-SWTLLTST'), + (0x9254ed02f9b12fa9e5a0c846e3dec1c6993338bc, 'VIBES', 'VIBE$'), + (0x925556a2dd2713f9bc9adca27062aac0959129ed, 'PRUEBA', 'PRUEBA'), + (0x92580889e15917a6ff30d7ffc5177aff961e682f, 'FLUFFWORLDS: Crypto Fluffys - Arena', 'FWA'), + (0x92650d443fd2eccd37647fc07e8c4118ccb69c2c, 'Nike x Bored Ape Yacht Club', 'NikexBAYC'), + (0x926bf649e89c5a64e648d2576b62fa1f0e8166a5, 'TheMaticGarden', 'TMG'), + (0x926fba2b47916fcf58d165d44d6d9714d31ee397, 'Stable Show', 'KEY'), + (0x927163b67dacc20ce9cd8fdfc44c970b1b881e37, 'Playermon Breeding Pod', 'PLAYERMON BREEDING POD'), + (0x927d7315e3e16bc3cd688e77340bf57c68ace312, 'Genesis Quokka Collection', 'xQUOKK'), + (0x92860fc12c9deab1b61ae97bf016f00f2cff4417, 'LUMINU', 'LUMINU'), + (0x928bfa7eb3947ae3d3c8322ce6ac777b603d5fbb, 'SADsadasd', 'IO'), + (0x929059fef67b88ce2f4127e59b50bea123981998, 'CryptoBlades character', 'CBC'), + (0x92925b2a9aea36ab9672372598b1cec2ac3db5cf, 'DCL Underwear', 'DCL-DCLUNDRWR'), + (0x929331ebfddac9e807937da93246ffeec86f115f, 'Fungal Folks', 'FFOLKS'), + (0x929391f719be2885791b1e59ec60a87a2719f7ca, 'SICKO_UNIVERSE', 'SICKOUNI'), + (0x92968c32c8e7109137ee26b554f94435ffe3cd7e, 'BearDoodles', 'BD'), + (0x929b1756c59f05db72be40288faac23bea048b62, 'Adidas x Bored Ape Yacht Club', 'ABAYC'), + (0x929d198933aa7a9ce153b6bd5d9379037d174f96, 'Ninja Fantasy Trader', 'Ninja'), + (0x929da6bb317a268e6953c2ea0ae4fad9f0ae11a0, 'J-QuantsNFT accessKey', 'JNFT'), + (0x92addcfeadbe551c44a7dd71a6cda91aade765b7, 'Werepop', 'SWEDC'), + (0x92b7128ff79f252c131c6c24a75e3abc565f530c, 'ManyMiltons', 'MLTNS'), + (0x92bfa0ba6e3c3e549a7f07c066e72a69d0226968, 'MetaLeaguePlayers', 'MLP'), + (0x92c2cbfc200825e1b4eb913591006c4dee7403f5, 'TukCars', 'TUKCARS'), + (0x92c98afee8cdb311d707592eaa3f3f8dea58c8ec, 'IX Swap NFT Launch Collection', 'IXS-NFT'), + (0x92cad42cf60aa0d3fa55601215ba18b4e53a65ba, 'ANTHONETH', 'ANT'), + (0x92cfe7765546ef56e4b67ca4281fff5709c9f010, 'LUNICORNS', 'LNC'), + (0x92e023f08ebab68bd0135df390c10c79588b0875, 'NGN', 'NGN'), + (0x92e27ae8d15fcd060f9eb4b33e07689bee4a3de6, 'Ape Collection', 'AC'), + (0x92e4e423581bb0f0794a5623c3ba4fa0ca540390, 'VoxBox Origin', 'DCL-VXBXORGN'), + (0x92e802562ce2e2b17640af97247a9bb0eb5fe949, 'Atlantis World: Magical Keys', 'AWMK'), + (0x92f3ca7f9b19b38912736ccdf9f2c3e5a875a3fd, 'Panda Pumpkin', 'PAP'), + (0x92f97c8ed135e9ae39ac3940f269534609670e58, 'Primatic Club', 'PmClub'), + (0x92f9c317f096bc7a59961682275f976b82090896, 'Tulsa, OK Gold Edition', 'SWEDC'), + (0x9309454ba95131bec80a707dfa07920c57b51a02, 'Crypto Cookies Club', 'Cookies'), + (0x931eb382c6a62d78bbb8bff35b34cd149501d18e, 'Legacy Collection', 'LEGACY'), + (0x931f0857130bcd221d30c06d80ad98affe3aa526, 'Safe-Hand 180-Day Note', 'SAFE180'), + (0x932798c1e9f0c096f21a7741957fc9e959388d32, 'PunknPunks', 'PNP'), + (0x9329f6bbc923675b6cbc54c85bc38dcb8457fd16, 'Real Estate Agent', 'REA'), + (0x9336d8a835ae6761e5d5ff850251d81a8999f204, 'CoolPanda', 'CP'), + (0x93398cab8f9c3256b742072c6e45dcf485831f57, 'Animal Spirits Communitys', 'Animal Spirits Community'), + (0x9342de2f03ff766bd3a2c0befa089870bee67d0a, 'BITCLONE SOCIETY', 'BCS'), + (0x9345dec650f027f83435e7925e682c146bf4191d, 'Crurated Wines', 'CRUW'), + (0x934a77aa17e262560e8ebd1260728a28e29a95aa, '[DEVELOPMENT] İl Gü 954924', '[DEVELOPMENT] İl Gü - Ed 887588'), + (0x934cf30e497956e00e49e505d194d67d0bb52f0d, 'UkraineNFT.shop', 'UKRN'), + (0x934d0bde49c1402a6cefbcec1d5bea62cc128c87, 'PixlDogs', 'PXLD'), + (0x934ee81424e98c5e82b7a252cb0b9d2842dc6a87, 'NaganoPets', 'NAGP'), + (0x9353d8ce49e74fe0db45a5986cd80c1905d40e7c, 'Kranion of Saiyans - The Humble Warriors', 'KHW'), + (0x935c1650e0632aa9f06fa3166b63f4dfada13da4, 'BONYZ', 'BHS'), + (0x935fea4380eae24bfc9a7fadcf1cc2d3524e59f6, 'Weird Catgirls', 'C'), + (0x936343c1823a46629b9f2643ccfb1e99af2fecd1, 'Skulls In Love', 'SIL'), + (0x9367039f5c675e3c382de4ba94365eac97a57cc1, 'Spiderweb Shield by Oltecs 2022', 'DCL-SPDRWBSHLDBYOLTCS2022'), + (0x936acb2cf814f2fa621449ad7dc0e9c253f58b86, 'Bored Orc Crypto Club', 'BOCC'), + (0x9378bd58dfde4261944f0447a6c217b85330dc7f, 'BTPB', 'BTPB'), + (0x9378f978c691f0247dd75f5efa4c77efb31b26c6, 'BlockCred', 'CRED'), + (0x938363ebcfd09e73d5613f40a2c0318d9a974219, 'Ocean Creatures', 'NFTG'), + (0x9386bb3e8f0404d2575ba9fbe766de2574c962ba, 'Club Penguin', 'C'), + (0x938a6942bd09cfac1bc4b2420f581a90fb5d5775, 'Sunflower Farmers OG Potato Statue', 'SFPS'), + (0x938bef248f63ca9b92798cbf4db0d53031fb776c, '0x8915074008418894cD48b4Ae1dCd6d3506B4213c', 'XcD'), + (0x938fbca4570e6b3621071e5ef65e95c5c6c80470, 'The Dickulls', 'TDKSNFT'), + (0x9390148d9e66d7973b413f18d2da54da6b8be166, 'My Collection rScsWctan9YQNyO4ciCK', 'my-collection-rscswctan9yqnyo4cick'), + (0x93983ae6219b827516f74ae0fc90da577967e9c0, '8 Bit Parrots', '8BPNft'), + (0x939d9abb9a4753bd82e4f71aa12e354a2ccdbbe6, 'BadPunks', 'BPNFT'), + (0x93a7e71c504673e901cbae8dda88fb9b9da5cc9b, 'AMEDEO x Exclusible #2', 'DCL-AMEDEOXEXCLSBL#2'), + (0x93bda7e285b7df2e7347322e346ca8ca9c241600, 'PunksBit', 'PB'), + (0x93c41ddabbff15be8bbbcd21ad020cfba32539b7, 'Sweet Fallpop', 'SWEDC'), + (0x93c46aa4ddfd0413d95d0ef3c478982997ce9861, 'OVRLand', 'OVR Land'), + (0x93cad133677c4916bdd2f7945ad3183dc40fb4ec, 'Alison Wonderland - Metakey', 'DCL-ALSNWNDRLND-MTKY'), + (0x93d07c0b861df0ddfd23a312ab42d26547351899, 'NFTEE COLLECTION', 'DCL-NFTEECOLLECTION'), + (0x93d2c265957cd7924260193c288a8ecfc785c0d1, 'DG Holiday Sweaters', 'DCL-DGHLDYSWTRS'), + (0x93d5b2151bbf06370b80280e94d96f61ae32c2df, 'Weird_Eggplant', 'WE'), + (0x93d7c4beef580ea516287359d0dbdd33d686bf7f, 'Happy Swag', 'DCL-HPPYSWG'), + (0x93d8285a087a6af1a5ee7cba17c0f14830f8a92d, 'The SolaVerse: Artefacts', 'Artefact'), + (0x93dcafee005a023b9fe5b34b71ab696bea4d665e, 'Hologram', 'DCL-HLGRM'), + (0x93f1130289ae2b6214acf658e2cb8f172ca43686, 'CryptoMythics', 'CRPTOMYTHICS'), + (0x940394b1d69ab2db3ce5a72e116832958c0af5ef, 'SmallBrosPOLYGON Official', 'SBPOLYGON'), + (0x9414037beecd57a686564b3e6416d1a030c9bdd6, 'Ape Azuki Club', 'AC'), + (0x9418d91af4ea847903c14ab2d79185d5625dc120, 'CryptoPricks', 'CP'), + (0x9422aa8138567ed9468849f75987cf42e9746593, 'Combo Club', 'RMCC'), + (0x9423ba8c306e99fc248115eb981d4e1333254ca5, 'LuckyCat', 'LC'), + (0x94276bd944482b6101406d296a25f8baf4f1582f, '20220321027', '20220321027'), + (0x942d4a2af35a274e358e81d724435f66ff50cc40, 'Visions_Wear 3', 'DCL-VSNS_WR3'), + (0x94412aae7c206783f931d8cd27a9857f69ef2a08, 'IG Casino Collection', 'DCL-IGCSNCLLCTN'), + (0x9446a7dee2a26ee076b98ace0f71479f1f9175db, 'Comics of TheLastAnt.com', 'TLA'), + (0x9449bc0ef0108d2af6f1031aa5a51a3a830d59c2, 'Kitsune', 'DCL-KTSN'), + (0x9449e8dc6e4ea95b693351e27c976dfab79bed92, 'ledi', 'ledi'), + (0x944e2babd5194ec57aa3ad38f7528b4812453d04, 'ZUKIMOBANFT', 'ZUKINFT'), + (0x9458474ab3733518464afe1766222f1b2471190f, 'My Collection 3GI4qvi9UbehzRnLFjqC', 'my-collection-3gi4qvi9ubehzrnlfjqc'), + (0x9463291f86dd02dbf7e7183754bd24adbecd8a54, 'MANAtv''s Cyber Biker by Jes', 'DCL-MANATV''SCYBRBKRBYJS'), + (0x94635903f509351e4396c0f3440fc9b52d64ee89, 'SadApeClub', 'SAC'), + (0x9463ebdcd72bb72b31779aad4f6aa45de152cd4d, 'Hype Hippos Official', 'HYPEHIPPOS'), + (0x9466ccc026fb469acc2633ff8874c0bd545922f1, 'New Orleans, LA Pop Art Edition', 'SWEDC'), + (0x946a720922c982e3fae3edc94eac4d2a0e9f4b9f, 'AngryBulls', 'AB'), + (0x946b76548e0676d684e862a9251990cbd86c63c7, 'Genesis DSO', 'GDSO'), + (0x947120504f78f0b6f1f7bcc71c52a7ba288a15f4, 'crazy pugs', 'CP'), + (0x9471933c7e19cb8a23d070f0ad86664e9d0e3269, 'Django Dino', 'DD'), + (0x9476d8a6e4f3696b0afb45a31ba535e3dce8b045, 'The Crypto Teddies Universe', 'CTDU'), + (0x947824affdd8c951162e85255259cfca29feb711, 'JiangXinBiXin', 'JXBX'), + (0x94816e9d851d4f4acc27452bc1558f3d19859d78, 'pssssd official', 'pssssd'), + (0x94903f2e8306c22e1f57fbed374695dda41236b1, 'Jax', 'Jax'), + (0x94908983c322c025f4a25a830103503bc5cdd86d, 'Polyflip', 'FLIP'), + (0x9498274b8c82b4a3127d67839f2127f2ae9753f4, 'PolygonPunks', 'ρ'), + (0x949f3007a1c2fd462113cd742c96c662dc2f50c4, 'TrustSwap 2021', 'DCL-TRSTSWP2021'), + (0x94a3af55df9ba5f1030239124d29ba6d892b5d72, 'Bellevue, WA Pop Art Edition', 'SWEDC'), + (0x94a98cf74b652c6ab9193d052cb79d1e7db00e65, 'GoneToTheDogs', 'GTTD'), + (0x94b0f1b3e6486716ecae9f1c48d4b8bb6119e3ed, 'DeermaGurl', 'DERMAG'), + (0x94b3a250682764d6bf162781f4b19ed23c566362, 'BAT-MANA', 'DCL-BAT-MANA'), + (0x94b9c3679068dd4b5a3edd55618b711926605678, 'Celina and Marisa', 'CELO'), + (0x94bae17b007c2d650e00700f8cd8e13f9e937691, 'Shiba-NFTS', 'SHIBNFT'), + (0x94bde7a5ef17522482bdc10cec83843ca2c54dd8, 'MASKED APE SQUAD', 'MAS2'), + (0x94d1eb05dcaa801993415dc07f4508052d7f7bac, 'Hands Off Ukraine', 'HandsOffUkraine'), + (0x94d77dc834aa7761801852b401fc240cadff864f, 'World Of Women Galaxy WETH', 'WoWG'), + (0x94d8f07359a3afff45b16f3841b093443255025e, 'MyNFT', 'MyNFT'), + (0x94de9833215bd666a033a78f8ce92715ed4d159d, 'LION BUS', 'SINBA'), + (0x94e07ab7ed745503ac39ca6d94a1c2624dcd963b, 'Wicked Werewolf Pack', 'WWP'), + (0x94e1b0a09f4575a8350e3babd2fa23b38e3dec02, 'CroRats420', 'CR420'), + (0x94e42811db93ef7831595b6ff9360491b987dfbd, 'MetaSoccer // Youth Scouts', 'MSYS'), + (0x94ee9149962e741adbd66baf3707469692a8e895, 'BetNFT', 'BetNFT'), + (0x94f2337b98fb3181dbe6fb399c89014599b46c3e, 'Need For Tower', 'NFT'), + (0x94f5c4e943611cfb2d977bb00940e74e3d65ec09, 'Digital kingkong', 'DKK'), + (0x94f77a662aca2d217c4c9f2317dd483eb9caf789, 'The Sevens Wearable Collection', 'DCL-THSVNSWRBLCLLCTN'), + (0x94fa572509d9b9d6e3a1ec0fbf1fb32140ea4535, 'Collection1', 'c'), + (0x95037574760f2ac0c5b1cb95dd01ba46c0eec871, 'Chilax Eyewear', 'DCL-CHLXEYWR'), + (0x950726c3aad17eb720f989f3d55b49ee560e633a, 'Catventure', 'CVENTURE'), + (0x950d92afb7c99ccbc34233e8982902e46dba1a5d, 'WonderCools', 'WC'), + (0x9510e8ee74a377ba686b3615b3e0c8964ee08b51, 'FMN AIRDROP EDITION', 'DCL-FMNAIRDROPEDITION'), + (0x9511150feeaf64d49b447bd0a3a398dd5238698d, 'Thug Women', 'TW'), + (0x9512de3dc411b74888ecd48bbf9d9a42434056eb, 'MTNFT3', 'MTNFT3'), + (0x9515bd8c9d34a094fb54f27b0156249261e4c926, 'CryptoBay Ship', 'SHIP'), + (0x9519a43811874fd80e9aa4365af01e0530395c6d, 'Boba Club', 'BOBACLUB'), + (0x951f52ae85c288e11d103b13dbe2aeda0549939e, 'CyberBrokers Polygon Official', 'CYBERBROKERS'), + (0x952261de3fbf21e3f552a066991f72acc9228338, 'Mutant Shiba Club | MSC', 'MSC'), + (0x9535186da2255b33899a43e4f6377042f838b0c3, 'Baby Ape Polygon', 'BAP'), + (0x95389f5929a6b6eb8bef9816e2d544cf64c4d327, 'Lofty Koala', 'LK'), + (0x9538dc58bd49e1fb8545d35356e11a26270f9666, 'WhiteboardPandas', 'WBP'), + (0x953b8baf2009a5ae21ee477f6c3d92ba5669eb36, 'GALACTICAPEPUNKS', 'GAPE'), + (0x953e62a2b53c0cd8c4dbfb3c1a283ed4e70ae72f, 'PolyDoge Diamond Hands', 'PD💎🙌'), + (0x953e74eedead562f1ef58aabe0cf8e6c7ec0a00a, 'Troll Game', 'TROLLGAME'), + (0x954663cc1427c9ae6b63795bf78a888c06677608, 'Diamond Hands', 'DCL-DMNDHNDS'), + (0x9553fe958b5017cf31d7d077b62b0ef8089e33db, 'Nike x Bored Ape Yacht Club', 'NIKKSD'), + (0x955d8046de1cefbc0f4e28e496c22752827e960a, 'StackOS NFT Genesis', 'NodeNFT'), + (0x955e8beda0339c5bfcc49604c336291a4fb01be3, 'Blvck Paris', 'BP'), + (0x9560f8e8f464fe356d92ac9228dcc70e7df28951, 'CryptoAdam', 'CRADAM'), + (0x9568c3ae0a59bd02c2966095e9f1081155c260dd, 'BrickHeadPunks', 'BHP'), + (0x957b4119495cdbd39460ac6bb03b4ff2832a9b56, 'Weird Catgirls', 'C'), + (0x957f821cc9074a65caf17023f5a46a15727039c8, 'Punk', 'DCL-PNK'), + (0x9593f146d0a6590a4b3f66e8a28c91d7bbfa4d86, 'CryptoJokers', 'CJ'), + (0x9596c33181c2275d674c0382504379e35bf3bf61, 'Distorted Canvas 01', 'dc01'), + (0x959bf88feeae55a12261b3906fbd78a4943f827c, 'CGT3', 'CGT3'), + (0x95a22cbcdb7a81892d6cfd376cafae1d6ab78dfd, 'Return of Jesus 2.0²²', 'RJ'), + (0x95abf14120e2f7e4828d6f39df843943b4e7c4fc, 'WarCars', 'WC'), + (0x95b079ba4bedfeb816de6800d96207c997a0691b, '2022 NFT Na Lai', 'NFTNL2022'), + (0x95b1a1bbede9eff1f3c3b0a871fdf6ff8914554b, '[DEVELOPMENT] Ol Bi 948294', '[DEVELOPMENT] Ol Bi - Ed 942556'), + (0x95b533998e1e5662764ed9eff218f9772a60bd75, 'Pyme Early Access', 'PYME'), + (0x95bce67825ea24b632c97b0393f1789a479b3878, 'Broccoli Club', 'BRCC'), + (0x95c78713034234ace725951918b6058123002cc4, 'nunu', 'nunu'), + (0x95c8fa7526e9ced74573c2a522e64ee372570d94, 'Long Nose Miner', 'LongNM'), + (0x95d2f149713c981c5376d1a8a493cb6dcd1ed16c, 'ETHDenver2022Feb16', 'ETH2'), + (0x95d869ffc97c41684e11f641079b68ff1f8dd069, 'Pixel Doods', 'PD'), + (0x95e0ef3285e5d8f8d4617c8046de51d239834b06, 'AVATAR', 'avt'), + (0x95fa7c420328abdbdba52056fa3ab8823a01404e, '2010s Poster', 'SWEDC'), + (0x95fc1f675ba201ae69003af96b6f8bdcfa3c941a, 'Sannin''s Ninja no Kunren Co.', 'DCL-SNNN''SNNJNKNRNC.'), + (0x9601cef1da64bb12dac6dc6be3b6738e411cd4de, 'LILHUDDY, Meet Chase', 'SWEDC'), + (0x96054dc54939d3c632796dbce4884705ed7c8977, 'Daddy Chang''s Legendary Army', 'DCL-DDDYCHNG''SLGNDRYARMY'), + (0x96062e7fa41931db5b92e44a019c86b5d1ef0342, 'Christmas Special', 'DCL-CHRSTMSSPCL'), + (0x960a1e9e69484471eca28c73dec3b961dd0002e1, 'Space Hoodie', 'DCL-SPCHD'), + (0x961c26fe52584bc9da84432cf7e2e6c26ed4b4a0, 'Awesome Slimes', 'AWSLMS'), + (0x961c6d20a8791b5a033872f03babbdb55f5e29dc, 'CryptoPuffsNFT', 'CP'), + (0x9625858be67853f5f847ca0e97620607371d7f7b, 'Doge Clouds', 'DGCL'), + (0x962c9d22fb9e4fbac39331d44bb76da57eee8dca, '20220317023', '20220317023'), + (0x962d14ae48fb50b282a4b2d7c1cba2e3ba1a3b56, 'KAZA NFT', 'KAZA'), + (0x9632e1b49601148efdbb80280e7fc25afbbe0ca2, 'Deep Stitch Precious Companions', 'C'), + (0x9635d831659fca65d51858619302fb07c4c0759f, 'Pug Life Collection', 'PUGLIFE'), + (0x963d2ee26f5dd4ffe2cc718fddf4f734950c611f, 'Galactic Ghosts', 'GALACTICGHOSTS'), + (0x963f0fb85ecbbda406113df299626148d6655e71, 'CryptoBear', 'CB'), + (0x96469d5fe2979a06e9b63b57ba84713250be458a, 'AtlantisMeta Submarines', 'AMETASUBS'), + (0x96481b21b4d30c2f792dea6d3128cb5e782ad574, 'Pixl Foodies', 'Pix'), + (0x964e8c8b31fe2b44dbf4709cff980fec37daa1f1, 'HarborBcg:CaptainP', 'HBGC'), + (0x965802c76622046c73d5555e1ef44a3005b34594, 'MINTORE OAK', 'MOAK'), + (0x965a681f11108b4fc28eb33301552087a4ee3f4c, 'Paco', 'PW'), + (0x966c39e367c3276a7142a7368f81aceb7f804243, 'Marionette Collection', 'DCL-MRNTTCLLCTN'), + (0x9670d96003996bfeea49a64d251c9d057126dfd0, '1000 Baby Pandas On Polygon', 'Baby'), + (0x9682a1ee0454290ae46b0428450312af5df9a7d8, 'PL_Finger', 'PLF'), + (0x9689ff81ddb4ae0bf29d5c53687842267cd5b563, 'FROCharacter', 'FROC'), + (0x968d1711dea9733b32b74bd1569eb188f3729f58, 'Cybee', 'CYB'), + (0x9693f27be49ca2dfe0b3409a3d78f6b2ba250d89, 'BoneTickets', 'BT'), + (0x96958a070295413eaa5f083339a6eaa88db5d704, 'Zombie Snatcher', 'SWEDC'), + (0x9699a6608d54e8f3e7853620f4b4adf8f47bc363, 'DinoZ NFT', 'DNZ'), + (0x96a472856d4c55e0daa73b766a6b91a1743a2ca8, 'Down The Clown', 'SWEDC'), + (0x96a5153704ba94ef7988418aef70ccb427011aed, 'Awesome slimes', 'ASLIMES'), + (0x96b77dac28503ad3637890bcc2781050954511dc, 'Inked Mag Inaugural Tattoos', 'DCL-INKDMGINGRLTTTS'), + (0x96befb18f0fdb1e7dbca6116a2a837a27bff7ad3, 'Market-LP', 'Market-LP'), + (0x96cb4198d5bb71ff33972f887d5394a7926956a0, 'Metaverse 7', 'Metavers7'), + (0x96cb728546b6e6044ab64a82fa726a0885b8bd80, 'General AS', 'GNAS'), + (0x96cf99044b652d2534c6ec2051e734ac16a46e31, 'MetaRobot', 'MetaRobot'), + (0x96d14822524edc0cf83053f5fdb2c6f3945e6a91, 'CANVASNFT.ME', 'Isonoe'), + (0x96e86e62238e074d324c5b41deff088666d9168f, 'Anitta, Meet Larissa', 'SWEDC'), + (0x96f623ea7072c062cf0b40253bdf3983a0af14f5, 'D&B World of Games', 'SWEDC'), + (0x96f7d571410bb1c6ad00dbeac2e1037330ded750, 'Master Class', 'MC'), + (0x9710a73f6299d5c583f13304ec380cc15f5b39fa, '2010s Commemorative Ticket', 'SWEDC'), + (0x971157e703a5210a393a1a3d3497fd9b3c725bf0, 'SushihakrM1', 'SHM1'), + (0x9714bfe9d2f0e9bb20c0a7dbff18f247651c973b, 'CYBERUNNERS #1', 'DCL-CYBERUNNERS#1'), + (0x97185252423c70bcc6c6f196791d3997749de17f, 'CovidPigeonsClub', 'CPC'), + (0x971a554e05ca382f5896d808a5f61410d475cc70, 'Re:bunny', 'REB'), + (0x971ddbd658a33b0429a85a1760fbaa12f619b721, 'Birthday Cake Club', 'BCC'), + (0x973124f928732e2f904982bc0d88883d51bbbf4b, 'Gravis Finance Firmwares Collection', 'GRVSFIRMWARES'), + (0x9731d7375a5ad60cc8be1434ece89b42f56017d4, 'Jack_Leopardi_NFT', 'JLEONFT'), + (0x973764b37358ded0b9440144aacd5c1a5c887e62, '[DEVELOPMENT] Le Go 873665', '[DEVELOPMENT] Le Go - Ed 396630'), + (0x973ecf8dec8b8b6564839426f848e353bd35d04d, 'Labo Pupz', 'PUPZ'), + (0x974203483b6f1a4bc53d3aa0b150273f89f03159, 'Dog Club', 'DC'), + (0x97421ae65ecccb164af0c335eee08ebd23cadac0, 'junjun', 'junjun'), + (0x9750b2887df52957186c02253f277bf4c42ebe17, 'Pudgy Penguins Pixel', 'PPP'), + (0x9751ff317c8e62a2cf57d6d9fdfe3678017c2f76, 'shApez', 'SH'), + (0x975291ba196859f5eca89c6e36c92a4a080d3c74, 'PoodlePotatoes', 'PP'), + (0x9757afa01421ed7073fbd575beff5d2126eaf3da, 'Primatic First Holder Certificate', 'PFHC'), + (0x975b222e411e3a07b4c08ef9ccac167d12596d18, 'EJ Genesis Collection', 'DCL-EJGNSSCLLCTN'), + (0x976a585cc90ca023aab09ee0eab562b8be717e0d, 'Bitpr0 Poker Line', 'DCL-BTPR0PKRLN'), + (0x977191244c720fd805eb44497d400b955d62c50a, 'Thorguards Weapons', 'TGWEAPONS'), + (0x977b142b8a3ec549e0524f7ccee37dad7ea70a89, 'World Of Sticks', 'WOS'), + (0x977b44f386afd18b00b96240a58f9619d4687ce6, 'Punk Meh LTD', 'PLTD'), + (0x97897edac2c46044b2c0c872a404ed73aeab091d, 'Kusho World', 'KW'), + (0x978a5f94b3971a13215c1d077f6d91f39aa033d2, 'Monkey Kron', 'MK'), + (0x978ce3cd6499c3ce1f5196fa3468e106cc7946d3, 'SOLF', 'SOLF'), + (0x978e5b8ee8d9b5799a7bfd6802bb23ff2984d9af, 'WS Ninjas', 'DCL-WSNNJS'), + (0x9792825d9ba286395e48e45c63faad1287db42a3, 'Axion Particles', 'AXN-P'), + (0x97a266ce5bffd11519d8cc195ed880fbcbdb7eb0, 'Pociverse', 'PV'), + (0x97b6d5d3e683d2f6e0fa5b1b9dfdfe978444be75, 'XNFT18', 'XNFT18'), + (0x97c4c57ec84d6d379add283ff4b13fedfb84b163, 'Columbia, SC Pop Art Edition', 'SWEDC'), + (0x97c4f7a3eb70b9960fe2f5ede90640af179f9479, 'Mythic Weed Suit & Hat + VIP', 'DCL-MYTHCWDST&HT+VIP'), + (0x97cc9760ce6aae713dfec89e3248beeab2fde7f9, 'Outer Birds Nation', 'OBN'), + (0x97cfee60ae99621b986c98304f6e9764d7536699, 'NFT Garden', 'NFTG'), + (0x97d010da836996b8b80e1752874336043111088d, 'Houston, TX Gold Edition', 'SWEDC'), + (0x97da4edce2c55e1caae77e48e58d77c6c3ef4317, 'Formes de couleur T2', 'FDCTD'), + (0x97db13024bedb2f37f0b5da00d03fbaf671b9481, 'HYPE HAPE', 'HYPE HAPE'), + (0x97e0175415cb7d758cfb0ffc27be727360664b90, 'iCollect', 'ICOL'), + (0x97e39acdfc8d05d480511418e4914c7bc3c980a9, 'TheCyborg', 'CY'), + (0x97f05fd32c4a5ec98e39828104a65d11a1c3c03b, 'BlaZin 420', 'DCL-BLZN420'), + (0x97f1ef98a801e292a66f661dd276d07553b686ab, 'NFTMMAR11', 'NF11'), + (0x97fb6806acba833c5ca80135d7d75bf3794b9df7, 'Lifetime Pass', 'LP'), + (0x980971bad993c75be52d447996260d1988b2e47b, 'Traveler''s Gear', 'DCL-TRVLR''SGR'), + (0x9814c55e89f73e9179de0e29815d8b3c1f348ef8, 'NFTWeAreUkraine', 'WRUA'), + (0x9821404909bfe2b39868deab3908d0844ed74cc4, 'ChainRacers Battle Pass', 'CBP1'), + (0x983086e89e8ba6cd4a285f735b8fc5ae206fc334, 'Carbon Creature', 'CC'), + (0x983d63ca8c22a107b736d73e030676580b2b7086, 'GEN-T14', 'GEN-T14'), + (0x985630ce587ef9be95f4a9ea1f1add521a5f0a9f, 'Orange Wallet NFT', 'OFT'), + (0x985bcbd692d1f1ce4527e11f8502fc6fd77cf321, 'Daruma Blessings', 'DB(s)'), + (0x987040e3ac3545b31677501825732c983c72dfb9, 'JamaicanYardie', 'JY'), + (0x9889b023641eab84d0831d21ea89184eba6c1c16, 'MetaZoo Intl. Retro 2 Kicks', 'DCL-MTZINTL.RTR2KCKS'), + (0x988fb12541a6128444d4bf246b8db999979d5226, 'HelpfulBabyClub', 'HBC'), + (0x9894a6409b496114148a9446b15d993b722eedc6, 'Mayan', 'MN'), + (0x989552451b2bb87208096976ffa04da2aba5ccd8, 'Hape Beast', 'HBeast'), + (0x9896997078e4b976091b2735ae811a2173aa0af0, 'Lumpien_con', 'LP_C'), + (0x989b46f43b1896706a0a8d5d222ddd7bc5bb39df, '247DIFF', 'TFSD'), + (0x989e66bf44ff8ffa8a931d591b1085a621a45252, 'Genesis Super Fat Apes', 'SFA'), + (0x989eec4d296db6e1355465ee550f055a179b0406, 'Junior Bored Ape Club', 'JBAC'), + (0x98a75d236811013d24495d3c3df449411916718c, 'Crayon Apes', 'CRAPES'), + (0x98a7840c33a9aa42ffe16f7da9a0e6dd6ea5f98f, 'Toucan Protocol: Carbon Project Vintages', 'TOUCAN-CPV'), + (0x98b5f32dd9670191568b661a3e847ed764943875, 'CRV MAI Vault', 'CMVT'), + (0x98b76d4438ee179961b96cb230859e3b61e17d45, 'GEN-L09', 'GEN-L09'), + (0x98bb28464ecf2312fcc7f97d0a132c111f03f861, 'ApeMeta', 'AMM'), + (0x98d0c64f4c2e18584b67259a87fae00b200600b2, 'Invisible PimpSons', 'INSONS'), + (0x98d9a36feb9631a074c7f26534a9e7e8de64aefe, 'Digital Kush', 'DKC'), + (0x98ddaea2eb948d132c49451eea1883d485538166, 'BONE KUYANG', 'BOKU'), + (0x98defc9487be855149ba94264ff31914ac6feb9a, 'Faceless Bionic', 'FB'), + (0x98e3de75be00c17aa982e0690a985895d8c217e0, 'Bored Ape Mining Club', 'BAMC'), + (0x98ebca2a8ba6cc94427222e434bad164508c17ab, 'Mochi', 'MO'), + (0x98eef85d6c40506eb7d311ab50bf9ec6f010fb73, 'Formess de couleur T1', 'FDCTU'), + (0x98f51fcb9f4f0d0176a7305c989d4fb2b8290d51, 'Big Squirtz', 'BigSquirtz'), + (0x98f688633b82c1f9e51281649698fc91eca5d3b2, 'Christian Yelich “Batting Clean Up” V2', 'SWEDC'), + (0x98f74f17fde23e8e880404c909a86830355f9f86, 'Ballz Game', 'BALLZ'), + (0x98f8c3801721c169f221e1d47ecc78c5b8f7a826, 'LikaPunkz', 'LIKP'), + (0x98fbd212bf50a2f7b8616908b37cf1c28d2eda0f, 'BENUS', 'BS'), + (0x99027aeda711eee53b9ef66d7c8f81dbdd00389d, 'Metaverse Travel Agency (M.T.A.)', 'DCL-MTVRSTRVLAGNCY(M.T.A.)'), + (0x99067e835f3a7786fdc813fd7674d4fb2d078522, 'WhiteboardAnt', 'WBA'), + (0x9915f4e579a91921fdd22b685781319a22a19269, 'Raibow Fairy Token', 'RFT'), + (0x9928a8ea82d86290dfd1920e126b3872890525b3, 'EtheremonMonster', 'EMONA'), + (0x992a2d46d2fc9b3dd1461f94e4fed3c7124e34b1, 'VR 360', 'SWEDC'), + (0x992a690010794f525fe43bcfbddb6a61ae7ee864, 'rectangleccircles', 'RCC'), + (0x992fd0a2c6a4b7c236a158b8c68b8e5fc62fc04f, 'Hostile Squirrel', 'HS'), + (0x9932b50500195cc70bc2258383add49aae4ab21b, 'ShootToContentNFT', 'CNFT'), + (0x994684b980d6faff06ff36b13c243c31d1b3aa0e, 'Beach Feet', 'DCL-BCHFT'), + (0x994927c387e5f8ff6a3785c0a2e042427688b340, 'Meta-Meatballs', 'Meta'), + (0x9959c06b9c3f756b9f8540e0ec1821b94c0b98f9, 'Weird Catgirls', 'C'), + (0x99645d843d2af071acf42e54547dfe9ed4c4f567, 'Princess Sherazade', 'PSD'), + (0x9972c325426307658e2f7679c6b51754af334e75, '1990s Court', 'SWEDC'), + (0x997978a98301f383a572d2c30a8b6eca47f5c003, 'Lemons', 'NFT'), + (0x998ecb405f6dacbbd9f8998358dd9dde6a8cee72, 'Imaginary Ones', 'IONES'), + (0x9998eaec19a8f87cab17d67ae0bb8a1b23e376a5, 'Gutter Cat Gang', 'GCG'), + (0x99a10ffeec1a1d87c17554d2073dd3959ffe2f34, 'Sweetbot Cherry', 'SWEDC'), + (0x99a1970b54712aa0c7121121ea83906e6b95494d, 'Bubble Pup', 'DCL-BBBLPP'), + (0x99a281ad10a7202f8a1d0cab5af899ff596a02dc, 'PIneapplePete', 'PiP'), + (0x99bd14da756bf38501d8a4a5d631330bad931fcd, 'Igbo Tribe Attire (Lion Head)', 'DCL-IGBTRBATTR(LNHD)'), + (0x99ca9a688eece77dad66e0378b67bc8a0f2d7eef, 'BZC Metaverse', 'BZC-MV'), + (0x99d0ef70ec0de712155caa59cb2e9fddf19722ec, 'WarriorMint4', 'WM4'), + (0x99d6c0d1a656a1ee1f345ae6482d0afd76daf8a5, 'XR COUTURE', 'XRCX'), + (0x99d73bc69491153fed4edc4ad91e89007b9008f3, 'Elephant', 'DCL-ELPHNT'), + (0x99e2f5bb8c3115395539a80efdbfd9123452e982, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD05', 'MLPRC-HMB-C05'), + (0x99e88e9c1636a878097447b2feda63fe5b02fee5, 'oorpoqwrqwrt', 'IMGNRYONS'), + (0x99eba9809c64f0b9efd11f23ba24f9ad3ea7e6e8, 'CanvasShiba', 'CS'), + (0x99ed522e97a6ba06a368113a2d5ae93626ed1a2e, 'Rodrigo Eli Moreira - Povo Surui', 'Povo Surui'), + (0x99f7a298d48eece2eb6b5ec9b575deb369f4c3f5, 'BC4PROTECT', 'BC4P'), + (0x99f7c94867724469e42f77c8118138bbc0e46c74, 'Sneaky Bat Syndicate Ghost', 'SBS'), + (0x99fc15d47327a345bd02fb8187e5eb0396e911a4, 'CyberRetards', 'CP'), + (0x99fe84ebfc772b5fa9ed8e67603f49081a2b5e2a, 'IGBO TRIBE', 'DCL-IGBOTRIBE'), + (0x99fff95e8faeaaffa3aeee01cc717d81743a15a5, 'WarriorMint5', 'WM5'), + (0x9a008994c5eaadd6bf7ca97b411175cd094a19f9, '3Dium x Craft MVFW', 'DCL-3DMXCRFTMVFW'), + (0x9a0194f64ff8e17dc220a55271b87df2d824b584, 'JoMFounder', 'JoM'), + (0x9a0d9d4636e63e1ebcf99c4e3a521a6333c886ec, 'Zedge Pass 365', 'KEY'), + (0x9a1b727be73a0c0faeaa40100d977d33960923b2, 'Curious alien club', 'CAC'), + (0x9a20c250acc5c8b9cb3647729adc272ea2fad3a4, 'They Took Our Home', 'SAYEED'), + (0x9a2d8f87163378bce44a7930b940c284363fdc91, 'NFTs', 'NFT'), + (0x9a3d967ecb041b3c565dc036907b4411f49023e1, 'mypys', 'NFTY'), + (0x9a417f5d704ea7819d55967bf28d1b155ee6cd6b, 'Film Crypto', 'FC'), + (0x9a42b2266896d65872d86512aa64da3b90d8ba3b, 'Monster Mummy', 'DCL-MNSTRMMMY'), + (0x9a43cf6b76d0bc57c8483aacb5682d4d4f61f38b, 'We The People', 'WTP'), + (0x9a46a7f4d1da97468763a144e554838c6192bf31, 'MoonLab Personalize', 'MP'), + (0x9a4d681c6f4f0f2f57cd47b6184b81eaa5050b76, 'SkullsNstuff', 'SNS'), + (0x9a584b20e74a06b904a6ebe9445a86283fa0fc61, 'Ankit', 'ANK'), + (0x9a5b74ecee96fd7ef08b0417a9717ccc226a4640, 'Karaleria (Interactive)', 'Karaleria'), + (0x9a5dbd78a675ea4ed1de1373df0ff8334834b32e, 'Punks For Everybody', 'PFE'), + (0x9a5f644dc5a738dea93027e4805272ad8c4aec30, 'My Crypto Rangers', 'MCR'), + (0x9a63fa88449690572eb1fd6dc9974ae1d629b9c4, 'Its Dave', 'ID'), + (0x9a68257e1ce4d5b71ebf3736e87c95e3c1118b44, 'ROWING Champions League Club', 'RCLC'), + (0x9a6889bfe78f7da651476c0f25cdef6e7ce09153, 'Dizzy Piglets', 'DPNFT'), + (0x9a6b1688f76f177363dfe09215bbe2bc22a5b8b2, 'Vagina Saver', 'VS'), + (0x9a6b58f13818f903480ef9a755a9f58223843046, 'Love Potion #9', 'DCL-LVPTN#9'), + (0x9a6f1755d65f3c96ae3c7811cd104b21c7dd1602, 'SOBRIETY Coin for 30 DAYS SOBER (from Sobriety Squad)', 'SOBER30Day'), + (0x9a7007db3ecc33b21c2c57de4d31a8bff536afe0, 'Ode', 'AWNFT'), + (0x9a798f7a7fd72a4c9ac42bbb977ed0cc5e1133a9, 'The stone', 'BAKEOFF'), + (0x9a7ebd85e765256e52dbb7e0c4522e8c3f680f9c, 'Bola de fogo', 'FGBL'), + (0x9a81f742b2d093a236c3e8d7cf05a0528969256a, 'PunkedUps', 'PuP'), + (0x9a8aca517b84e442d55d82ea7110645e5441effe, 'The Cyborg Werewolves', 'TCWE'), + (0x9a8dcf93d8969d59b3ef5ce01f75c5ada0d31bfc, 'Binance Regular NFT', 'BRNFT'), + (0x9a8e1a4a2b88ace51f6b49f945ce08ef588dd9e3, 'CureReconeNFT', 'CURECONENFT'), + (0x9a8eaecce96269848b376ef4409e6c0913ae8f03, 'Forme de couleur T2', 'FDCTT'), + (0x9a8f59946a3d3be6a04e4c983f7ea8ad3005aa24, '2010s Poster', 'SWEDC'), + (0x9a959849e197a822cbe7f0a91e7aa889f3338462, 'BorisVallejoArt', 'BVArt'), + (0x9a9772cf3627cccca556d063cdef307ebe80c8a8, 'Crypto Foxys', 'CFX'), + (0x9a9b34e11afb39d2b3df1698e719333eb56f9e46, 'Travel Photo', 'ocus'), + (0x9a9e4f9fc900955f4bd36393f745dc25915c880f, 'Million.Moda Inaugural Meta Set', 'DCL-MLLN.MDINGRLMTST'), + (0x9aa022d4e2ed303f58098c35affff12ed9ee6e92, 'Cleveland, OH Pop Art Edition', 'SWEDC'), + (0x9aac14d774e9b930f3b4645742344463c550a5eb, '3333LittlePigs', '3333LP'), + (0x9ab4f79a1f3a74dfe08943e08f4993dc69da7472, 'Mutant Shiba Club', 'MSC'), + (0x9ab8e4410fbfb5c47ab6bb1aeed64f98191738cb, 'Banners (for Adventurers)', 'BNNRS'), + (0x9abb1b010031dfd910a7c32a28270b102b71fd99, 'Dunhuang Grottoes Murals', 'DGM'), + (0x9abf023631108ad4c246b00ef042e3b5a980c851, 'Rebelcrypto NFT Card', 'REBEL'), + (0x9ac560a903c33908cbf6220da9651738ca3fe888, 'Pignoise: Pignoise Pigs - Royal Pig', 'PGN'), + (0x9acb1586b890795d8ce8dcb7ecee250d469f14c0, 'Meckaduck head & legs 2022', 'DCL-MCKDCKHD&LGS2022'), + (0x9ada69cfd7682e677effebda5ba0678334c1c065, 'Sophia the Robot - MVFW 22', 'DCL-SPHTHRBT-MVFW22'), + (0x9ada7cbac5cca899ee0453081b0d67fb08a2c533, 'Sphereum Sons', 'SHS'), + (0x9ada9b333bc12236c21c76c7d5e8d858daf3f646, 'FALLEN DEMON', 'DCL-FALLENDEMON'), + (0x9ae2beb54881075484ec5a98910ddaaafcdef227, 'Foots Heroes Club', 'FootHeroes'), + (0x9ae58a85fd5f44bfa65fc5cd5993eeae18032f55, 'Paintliens', 'C'), + (0x9ae5c1cf82af51cbb83d9a7b1c52af4b48e0bb5e, 'Coin98 NFT Mint', 'C98NFTMint'), + (0x9ae627586f06a65ee1d7365ebd716b7084c0a001, 'Wizard Imperium', 'WI'), + (0x9af57ce6845eba4388547beec4bbaff5b4e19470, 'Dooliens', 'D'), + (0x9b013fc2c0d6e8845e006c97ab771096c688f221, 'GEN-H35', 'GEN-H35'), + (0x9b03aca2c76ef7dfdfa95881a66b2ccf9b402010, 'Rare Bears Polygon', 'RAREBEARS'), + (0x9b052442da2c072990bd30503b33eb03bc764cd2, 'NFTNYC', 'NFT.NYC'), + (0x9b0a93ea49955a5ef1878c1a1e8f8645d049e597, 'Ice Shadow Fiend by DigiFun', 'DCL-ICSHDWFNDBYDGFN'), + (0x9b0fa9bb7a3e6bd137eff66176828fb22ec44209, 'American_Astronauts', 'AA'), + (0x9b123a9a4c0555d15cc48369ad827867abd8362a, 'TwoFlatBoys', 'FLAT'), + (0x9b12f5d0ce88f752b4f634b689b6eaa08c67c032, 'Albert Einstein Serie', 'SAEAE'), + (0x9b1d41b8ba6c7b0a783821b1ef08cde466071352, 'KINUS Meta Club', 'KMC'), + (0x9b254a75f6617bbc79d1a74d1e0323583e4d5e1d, 'Cyber Bearz Army', 'CBA'), + (0x9b282c99a2983f1444c60c32cb3153bf69f9c3dd, 'Sweetbot Grape', 'SWEDC'), + (0x9b2f49eca1d5004e0b1e499bc5d67132bc8936cc, 'GEN-T30', 'GEN-T30'), + (0x9b3d5fdbbe6474038411742fde645970c330c372, 'Offbeat Elves', 'ELF'), + (0x9b42f7a430aff60da567c7d81070302b8aa0a2b7, 'Weird Catgirls', 'C'), + (0x9b485f4a1955ea53a9bba6ccff4a72c60f21f4b8, 'Desperte o Campeão', 'CMACC'), + (0x9b5a379eefce19137bb10c1cac1766dc37bb092f, 'CHUBBY DOGS NFT', 'CDN'), + (0x9b60b613dc68cf7456976268355ee74598ea1adf, 'Ribbon', 'RIBBONWORK'), + (0x9b611265f1a1a77b4c07154a6abf63409f68c271, 'MongolNFTMintingParty', 'MongolNFTMintingParty'), + (0x9b66ba7ea176630d65d2fc67efc48eb3eab01aef, 'Winter Jacket V1', 'DCL-WNTRJCKTV1'), + (0x9b6b75c982c08e3c982f49a2c488b6751dec52e1, 'GoodLuckMonk', 'GLM'), + (0x9b6b7e1dc9150ccb4ee382f567657d0e4e319a11, 'Pleinverse $eason 1', 'DCL-PLNVRS$SN1'), + (0x9b6c2eed5cde79484624a3f3a18d5bdaeaecab5a, 'Icons536', 'I536'), + (0x9b6e04d4737887b89b972df813214a13b07965fc, 'NachoNFTs', 'NACHO'), + (0x9b752935f53de793804a88ad32a8c3d4673a5913, 'Nuke Yog-Sothoth', 'NYGST'), + (0x9b796379dcf83f19d7205f742ff064bdf01f16f8, 'Snoop Dogg on Sound XYZ Official', 'SNO'), + (0x9b798b1d9582b1a14001e6daddc70d922c540894, 'Eggz Army', 'EGGA'), + (0x9b7c739eef6cc543bb1da145347dbdf29c4583b1, 'New Crypto Heart collection 9', 'NCHC9'), + (0x9b81f1e192da5aabd20b5cc29283a516d0424080, 'luvstruck', 'LUVSTRUCK'), + (0x9b8b20cc86f5650d03528fb1be67bca6e9b8aadf, 'Bro Jacket', 'DCL-BRJCKT'), + (0x9b8b9514dc5fed1f41184f03eada7b911e19ba01, 'Happy Frog Prince', 'HFP'), + (0x9b8e0deb587dd3f5a49d6b6839a091df3f93af19, 'BlockchainRappers', 'BCR'), + (0x9b8f8a5a180794c9b2b240bae77bed4a2e723e02, 'Dunk Punks', 'DP'), + (0x9b93f6ee475f84a632d7e66a18bb004902c38495, 'HauntedHouses', 'HHouses'), + (0x9b958362348923648d32efc86a8b25fd879a7bc5, 'Rare Shoe Genesis', 'DCL-RRSHGNSS'), + (0x9b97761398eaed26c8b7bb3409c4b6d0b45b3027, 'PirateWarriorSkullz', 'C'), + (0x9b9d617d3445f0147ece2322bace8db2768d2770, 'CUEX Capital Farmer', 'CUEXCapitalFarmer'), + (0x9bac795d559d32724ab372eb18884baed4da8ba2, 'Crypto G4N9 Chests', 'CGC'), + (0x9bb518d7528a6647c2557f1244396194f40d4a4d, 'TFA Moments', 'TFAMOMENTS'), + (0x9bb57b1df06c9f114538c81413e321a8957c4770, 'Skull Basquiat Tribute Head', 'DCL-SKLLBSQTTRBTHD'), + (0x9bc5f7aea02b686a7f98d526a5c128b9f4db073f, 'DolomitiBabySparky', 'DBS'), + (0x9bc78a5012e947405dfed4adf9cfc48afb597d05, 'wwww', 'wwww'), + (0x9bcc6c42bb804b29e5c05fbe3f467cedd5928a2e, 'Sweet Pumpkin Pie', 'SWEDC'), + (0x9bd8d05c793dc5ba044fe4656b25092b269dfb5d, 'KALI NFT', 'KNFT'), + (0x9bd9ff6419c5747e2ab2adfd7c537e511f23c8c5, 'PolyPunkRocks', 'PPR'), + (0x9bdacdd721d8b60f3f0c2f7dddf4f2d31d5efd06, 'LOKOTRE', 'LKT'), + (0x9bdeecfc5789c63ceba3b169be9f84f76bbb03f9, 'cewqewre', 'COS'), + (0x9bdfd08020435920eb7e4e4c6550376abb3ec4d8, 'Blocfox', 'BLCFXX'), + (0x9bf41490a5e9096378a569cc5bfb6c9dc1afe7ea, 'fffff', 'adfdasf'), + (0x9bf809256e7ffd4856559a42da996122fa487e55, 'CryptoVoters_Club', 'Voter'), + (0x9c010e45e2b6f9f9b9aec52c299c0a1e94995607, 'Masked Ape Squad Official', 'MAS'), + (0x9c185b4f283305384a65aa68ec18f775b6e7aeaf, 'Smol Sneks', 'SNEKS'), + (0x9c20bdf466242ec6ebe5628323653ba465054de5, 'Jorma''s World', 'JW'), + (0x9c23c719dce2ed2e6bae6bf9e58e154234931683, 'Ukraine', 'UKR'), + (0x9c29531b4b033e000a8cafff7b4565c79d475308, 'Funny Baby Ape', 'BAPE'), + (0x9c2b133accfa56a755cddd8a0f4a1c1235c7a0ef, 'Garbage Friends OF', 'Garbage'), + (0x9c2f07d4115402e6579a147915bbec4eff9a8262, 'BanksysDog', 'BD'), + (0x9c3008a606948f7109af12a4a719f48e50da6401, 'GDC Green Bitcoin Collection', 'colBTC'), + (0x9c35f4c1e27c0f3b1128bafa028957bb235fc74c, 'Meta Alligator', 'MAR'), + (0x9c397c22ba18cb20062d365ceda66c8c9477afbb, 'Color Box', 'CB'), + (0x9c3a3284f63d9053806f6568b5cb7f2672142712, 'fMetacat', 'Metacats'), + (0x9c41eaa62d0bd49fc43f7057e0a9077f6cbf07e9, 'Nouns', 'NOUN'), + (0x9c49ffc47f7efc8b1065bbf933761def08319ba4, 'ANTHONETH2', 'ANT'), + (0x9c4eac7d560e434cdcfe97087f6ce4164bbfd9f6, 'Bored Ape', 'BASC'), + (0x9c4ed6a08dcdd1d63cc456cd20472a5d635496b3, 'Higher Life Beenie Wear', 'DCL-HGHRLFBNWR'), + (0x9c50de52ce19a54261d3bb53da7221354b78677e, 'creature', 'creature'), + (0x9c59ccdb59b06e4dd44cc7837b01ad17b6402195, 'Owlcorn NFT', 'OWLCORNNFT'), + (0x9c5f0b022b92804dd8bcd40d7744137e2e32c114, 'VGY', 'VGY'), + (0x9c6eb8355cd3274f90fec48df784d32d440a60b2, 'GEN-L14', 'GEN-L14'), + (0x9c71837e6b2223dba04a23498274ebc8f2e7e5a2, 'Chattanooga, TN Gold Edition', 'SWEDC'), + (0x9c7df8778d76a39fb2676bf4bfda6a32cbd9c786, 'CryptoWormsFunky', 'CWF'), + (0x9c8228935735f0ecdf522332921a0e08cba6710b, 'Rochester, NY Pop Art Edition', 'SWEDC'), + (0x9c8b4eb230db62e5c12842fe7166bc3ab898ba7b, 'TheCryptoPunkCollection4Ukraine', 'TCPC4U'), + (0x9c8cdd4f505e63266cf8e25f10e4fe9d60eb49e0, 'DoodleDoggies', 'DD'), + (0x9c97e1f1463a8cbfbbc6d9be96264e33d0a06ede, 'Africano Club', 'AFRICL'), + (0x9c9d9c846723af60fbe2dc6adbda6b4b45349454, '1 Mana Merch', 'DCL-1MNMRCH'), + (0x9cac588b45b72d0476297cc47947dc488db9878f, 'JMA', 'DCL-JMA'), + (0x9cb50c4c0005d10ca4b8f97ec860c6dea88d342b, 'Orange Wallet NFT', 'OFT'), + (0x9cb8899065d0a7bc5a886bce680bc7909f626c90, 'VirSin', 'VS'), + (0x9cbc44f0d00ad5ea7391af4c5ac85f8e8cd9bc94, 'Collection NFT EBG', 'EBG-NFT'), + (0x9cc87686b7412b4efa7b44260f0e99f4170f1b33, 'Cool Ducks', 'COOLDUCKS'), + (0x9cccffe71ca3b932d768b7cfccb6f82a8e6afb6a, 'Cymbols', 'CS'), + (0x9ccf026ba5944b21618a7c7afffbc448df27f816, 'Kewpies', 'K'), + (0x9cd03986a4c8b1c6b1c3273d4121b18fae4e9cfb, 'Area 51 Club', 'A51C'), + (0x9cdde677d9c2dc4e374d0a044f00f891d26c6aef, 'GEN-B04', 'GEN-B04'), + (0x9ce0aa434ac1407b9d52beb39bc1366e23e5604b, 'kuki', 'kuki'), + (0x9ce0e3f9c8b867e802c2a3c32701d9f4c53e0dd0, 'IA Genesis', 'IAGEN'), + (0x9ce30b4af62bec583883f441997ee0bb5100d4bc, 'The Guinz Generation 0', 'TGG0'), + (0x9ce96026de67ed50327c261c5a995829d7851981, 'The Landscape Brownies', 'BRWNIS'), + (0x9cef9d7aa04069d0d198f5f2fbfcbf6b14f5bb37, 'CODE', 'CODE'), + (0x9cf14b663632f2a6886b46618c87feaad816e742, 'tudaBirds NFB CBO', 'NFTCBO'), + (0x9cf2c77837a3c8bfd42af4641d7655d3eec898b1, 'The World of NFT Teeth', 'WNT'), + (0x9cf870668c668c3ebe64ad4b6f70979edf944d04, 'Sneaker Heads Collection', 'sneaker heads'), + (0x9d03383af9d9c7c2c248e6e7c10cb47dd4feb3cb, 'DuckyDuckyDotArt', 'DDART'), + (0x9d0f83bfc83684281ddb4bb8cf489e0f92780f77, 'HODL DAMMIT', 'DAMN'), + (0x9d29e9fb9622f098a3d64eba7d2ce2e8d9e7a46b, 'Eva Hoverboard', 'HOVR'), + (0x9d3d95fa571bb1f7d5f3fb147dc90b4970cbf28a, 'Robotica NFT', 'RNFT'), + (0x9d40038a6272bd86c3b85fd0798a963278cb815d, '4Skin Studios Halloween Dream', 'DCL-4SKNSTDSHLLWNDRM'), + (0x9d4193b4a5582bac45a2419d8eadb29482c1e9a6, 'Piano', 'SWEDC'), + (0x9d41ed84d6c12c2a937e7ab7d63a8d9d24900738, 'Texas crypToast', 'TEXT'), + (0x9d44c983458ccddf6ea3984341971c94d9d70df5, 'O''GZO Mask/Bomber', 'DCL-O''GZOMSK/BMBR'), + (0x9d4d5ec3a15f1edf469b07e37b0fbc5dc43685c7, 'BadassApesGang', 'BAG'), + (0x9d5027a8b6392299c44c9ba93430c41f4d50acbd, 'Angry Chicken Golf Club Collection', 'ACGC'), + (0x9d6a1319440d06ded16ed0beba8150d75cac0d45, 'FOUREYEZ Collective: Facez', 'FCF'), + (0x9d6e33d3358c4a9d967f0899546fc4164bce40ef, 'Chicago, IL Silver Edition', 'SWEDC'), + (0x9d7445980842c0eb6b637961eece69eae03a81cd, 'Lil Teddies', 'LT'), + (0x9d778bb1ea4745562bcc40a83ddfea5d44404f26, 'DONGURI', 'DG'), + (0x9d77cb4d8371736e2a2b2bfaa677b7841cdc8fc1, 'DeRace Horses', 'DRCHRS'), + (0x9d7a5e9fb6ca2e2be0c8357fbe802b443c30cdde, 'w3.hitchhiker', 'w3.hitchhiker'), + (0x9d833ee503ba32df054a42bbc2db161fd3fd9b62, '721-1', '721-1'), + (0x9d83999207da4422de3efad872bdce9bf5173fab, 'Philadelphia, PA Pop Art Edition', 'SWEDC'), + (0x9d842d33b6d1bf0c402bea992449d51c8d2ee845, 'Degenerate', 'DGN'), + (0x9d84a51398a350c2bbd0fd31a2d0c0c4c3d329be, 'Bored Ape Imaginary Club', 'BAIC'), + (0x9d885eb4be2b7be16bfc399f617e6b20e06535be, 'Coolmans Universe Gallery', 'CoolmansUG'), + (0x9d91dbca9a662dc5a7b38e525f6002b6226c8d40, 'Modern Dude', 'MNDD'), + (0x9d930006210d3a714302c6657d06f555470bdd41, 'Squid Room', 'SRM'), + (0x9d98b95a98aadd596e401c0e5a115c8c871f7389, 'GDC Green Bitcoin Collection', 'colBTC'), + (0x9d9b55db299c46e5118675361d4a5a2ba49b54b6, 'Accessories (ICE Poker)', 'DCL-ACCSSRS(ICEPKR)'), + (0x9d9e890b1112303747e094d6bbed0ad1eec136fc, 'GP Metaverse Genesis', 'GPMCG'), + (0x9daf9e4bc706769b82514930093c08bded9b9838, 'RaccoonIslandClub', 'RIC'), + (0x9db98509aaa2ac20ec0d92c1f13ad2b66ed05c23, 'META MANSION NFT LAND', 'LANDNN'), + (0x9dbec93287156177391ea9e399e1a4b7e7e42e8c, 'Sweety Boohs', 'SWEEBOO'), + (0x9dbf19f1a66cff22297fc699b6bfa967f802396b, 'SuperVikings', 'SUP'), + (0x9dcd7786303b95667c60d61cdd25bbd6ebdc860c, 'WIZ-GARB', 'DCL-WIZ-GARB'), + (0x9dd02b56fcdbabcf1e1f161a0fd079c81788f388, 'Public Record', 'PR'), + (0x9dd33dc519887549a743497620a7482f6dccc720, 'Electric Sheep', 'ES'), + (0x9dd5e196c886b9525b0354eb18f6afd0fbb0e08d, 'Lil Chimp Official', 'Chimp'), + (0x9dd75936c3b22a630772fe2c5ae21d978d6a473f, 'Kool Bear Club', 'KBC'), + (0x9de34939de22c17b0d419d9d1025177c22f2312d, 'PsychKids', 'PSK'), + (0x9de36090fef3eda657fffebb8bc68d1814aaaee7, 'Balloon Crypto Pet 3', 'DCL-BLLNCRYPTPT3'), + (0x9de698d63387a4df1dec34b14983eab42baeaad6, 'Crypto Masks collection', 'CM'), + (0x9de91e625306badb581a5076d8da9b416cd6bdd6, 'Django Dino', 'DD'), + (0x9df04facb04c69b8bd27d33d566be455b1e30381, 'MWDxCCC Collection', 'DCL-MWDXCCCCLLCTN'), + (0x9df063a99b47ea20c976a24a55529e911fe16731, 'Art', 'Art'), + (0x9df1f2e5304573aa8faec65e06ae3545971c0a3f, 'Slice Of Colors', 'SC'), + (0x9df20b6a7bc6abafc1931b92b0f7a256fa7fb8a1, 'TheWickedCraniums X PopWonder', 'TWC_X_PW'), + (0x9df76fc66dea25ef241e04fc4eeb6e88f686b04d, 'Tycoon Dogs', 'DOGS'), + (0x9df7b1f7e8a4804081d4c9b93181274a074a77b3, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD04', 'MLPRC-HMB-C04'), + (0x9dfc1ba7e6da655f5e0ce3d1554ed8d5036e41e6, 'Doodles Ducks', 'DUCKs'), + (0x9dfce67b8e1658012a4cb0ccd062857a84589396, 'Kaiju Kingz Genesis Official', 'KAIJU'), + (0x9dff0fb53142fef40a704716e29087ea317bb55d, 'MAUER', 'MAUER'), + (0x9e006e230bb4fd1fa52d6c7f25d31073536d35ce, 'GEO.DOMAIN NFT', 'GEO'), + (0x9e0424bc4e6d0fe14592069b042f9f3411598790, 'Angry Apes United', 'AAU'), + (0x9e0902d2737c53d7cb38eab89479aa21a1add459, 'EBB', 'DMPOAP'), + (0x9e0a439616115717e78fb5df84c6636f5f29f607, 'Pilot', 'PILOT'), + (0x9e0dacd2a1599525b1a3e7311174f40eaab7812d, 'Moara Brasil Xavier da Silva - Povo Surui', 'Povo Surui'), + (0x9e1257ea8d76b87752c7c555d0e1c19a780cb203, 'Kicksyverse', 'Kicksy'), + (0x9e12e22ec828c202d92a9febc98fd7c1e4d61fb3, 'ENU Watch NFT', 'eWatch'), + (0x9e14c12369cd8897620e0b8f47d9a2e7ef1f017b, 'itso.art', 'collabz'), + (0x9e1c4f861bb2ac89c9500cead5d66610bc6f2038, 'Social Media Marketing World 2022 Attendee', 'KEY'), + (0x9e1cf48a6722333fef89a9b3795af3db445fe5fa, 'KARAFURU', 'KARAFURU'), + (0x9e1d5818f471536e268145993f4cb5f0df214e76, 'LiL Moon Rockets: NFT.nftzie', 'LMR.nftzie'), + (0x9e1f8cb2f4674ac5abae9d38a80607da79cbe5c3, 'Blue Skies', 'BLS'), + (0x9e27ca3ce9b58dbcae7c7703528622cf8427cdcb, 'NBA x Bored Ape Yacht Club', 'NBAxBAYC'), + (0x9e2a5b859e52046146aebb80a5a26105f34e5532, 'Pelican Social Club', 'PSC'), + (0x9e2ead9b64663c58d1e6922e7b99bfa2d7a16f1f, 'The Skulltoons Collection', 'SkullToons'), + (0x9e3508545b3a8d5014d5a078ba41db2bba1aeb54, 'CheesApeOriginals', 'CSAORI'), + (0x9e3a227c9de8a39ce0a9ca8a42916d95ea09cd63, 'Hungry Hungry BAABBoons', 'HHB'), + (0x9e3bccfb4099e4d43d61c387321765f24aab9008, '[DEVELOPMENT] Ma Ha QNJWOR', '[DEVELOPMENT] Ma Ha - Ed TSSYNO'), + (0x9e434290df1ac3c77b91a296fbb5626b2d21cce6, 'IPFSFINGERA', 'FINGER'), + (0x9e4ae0fb0e48b3a69df6bcba428d29f9a8d8d9fc, 'Constellation-20220006', 'CON0006'), + (0x9e649e81918436e81a04fae108ddd2db4532f4ce, 'gfgrfgrgr', 'MS'), + (0x9e6e3e8161fffb31a6030e56a3e024842567154f, 'dQUICK MAI Vault', 'dQMVT'), + (0x9e72cce534423c2759ca11e214ef43fac753a694, 'By the Lake', 'SWEDC'), + (0x9e73ece3e842e71b9ee82a55874e9910b6c377ab, 'MetaBunniez', 'DCL-MTBNNZ'), + (0x9e780c7e84b2eb87ae3f65d43801c852671c7873, 'Hiroto Kai Fire Warrior Boots', 'DCL-HRTKFRWRRRBTS'), + (0x9e86f2bc0da16b0a142deea73bb38cf6a17bd184, 'Deep Stitch Divers'' Society', 'C'), + (0x9e8891156546134c118cddf017872c59bea30783, 'HalfSucker', 'HSNFT'), + (0x9e8a77a6037f9c99e81f973fec28c4ea34598fb5, '0x9fDecF64DAE8C283550C34Dd3356C3EE984C66b4', 'XfD'), + (0x9e8b883e945155de54d0affe3f3ba3cef0a362cf, 'EthereumDeleriumNFT', 'ED'), + (0x9e8c49812920abacf73020d420edbd8ee3dc62b0, '3Dium x Nessa Dress', 'DCL-3DMXNSSDRSS'), + (0x9e935f65518a6e7643e1696e453081e564cf6f3a, 'Runixcoin Miner Collection ULTRA', 'DCL-RNXCNMNRCLLCTNULTRA'), + (0x9e94225d387ef13eddccbca5d3835333f21a3844, 'te''resa_PIECEOFME', 'pom'), + (0x9e943ee914424eb20b618a835a9b7a699c72ac57, 'ALickOfRainbowNFTCollection', 'ALOR'), + (0x9e9673267e1fcfd0aa7c63de05ca353ca1d629ba, 'ApePooClub Official NFT', 'APE'), + (0x9e992815e607c6dac49468ff157add64632ea7f7, 'CryptoGuzlik', 'CGUZ'), + (0x9e9a0e5ab1ec1e4adee1c6aa6610140faff150d5, 'APOEL Official', 'APOEL'), + (0x9e9f77d2cac9a991335ebff7a076a3cc93c1160f, 'LotS_S1', 'LS'), + (0x9eadb4a3bf23cdb7708d7377524833b961b32dcf, 'WarbleGarble2', 'WRBL'), + (0x9eb1c1958c5fd0de6730b471ce47ed60834bdd84, 'Ninjas Don’t Play Well', 'SWEDC'), + (0x9eb7459f0788e78cc457c934d7b7b2d4290e56ed, 'PuckFutin', 'PF'), + (0x9eb78ab244de5286b259b50090e5b1d6223b02ab, 'WeirdVitalik', 'WV'), + (0x9eba737349d5d7e33c83d9011f3bf5383e62ad8e, 'Mr. Potato Family', 'C'), + (0x9ebd538e799ae9039e3e28f0de3d83a7a83a9a6d, 'LEMUR LEMUR Treasure Map', 'LMRT'), + (0x9ebe531ebae026a391d0f51cd8db34c92ab07052, 'Azuki MATIC Collection', 'AZMARIVI'), + (0x9ec26db4ee38fc2c992ed1684d4d18745090bd62, 'Loot', 'LOOT'), + (0x9ec742cf14171c3bbb089bfcb91f4953e54f42cd, 'Afro Apes Fan Art Logo', 'DCL-AFRAPSFNARTLG'), + (0x9ec7fa4db43e5ab4394a4984238ff3d1eab812c2, 'Crypto Battery Family', 'CBF'), + (0x9ec885e4fe450a0ba24e3fd17beb90ec92a0cc91, 'NeFeT', 'NeFeT'), + (0x9ec99fd8fad580cda96db2a2f1e9116f01cbec99, 'Deer Club', 'DC'), + (0x9ecdb431ace68889246f9d2c13eb0b1da3426870, 'KittyPunks NFT', 'KittyPunks NFT'), + (0x9ed3e7b600c3f8adb85703453de969f1d94693c4, 'SpongyBros', 'SB'), + (0x9ed91f1e79b9a0ee703f5a80d08a0424c584ff82, 'DEARRT', 'D'), + (0x9eebd2ef0bf8eb1edaee6cdc7c16b48962d37c31, 'dotmoovs NFT', 'MOOVNFT'), + (0x9eef096004ab989d3565aadbf71b34ff4535b191, 'CRYPDUDZ_V2', 'CRYPDUDZ_V2'), + (0x9ef4f65351d8cb3d49173b8162e10463743c32ef, 'Amouba', 'AMO'), + (0x9ef5b035ec7de935e3dbbf20d07c761dcb4af613, 'BurglarApeClub', 'BAC'), + (0x9efc46a3e493f3ef171817a33d4ede7899a75555, 'Specs', 'SPECS'), + (0x9f05782f940ae8fc2615ff5a30b90da41928bf8a, 'Clones Never Die V1', 'CNDV1'), + (0x9f087b2ffeb5eeccec003475bbe8bbff7228c151, 'so-so', 'DCL-S-S'), + (0x9f0b1c36dea5aacffb6410a1b6d830fc37247b84, 'Eternal Monkesv2', 'EMONKESV2'), + (0x9f131fbe3fbc86f52330a5b76bc657dfe0f858ae, 'Baby Bet Peng', 'DCL-BBYBTPNG'), + (0x9f2ba7b56e49f9b8abf91396633d2ecc58377c36, 'Game8 Kingdom', 'GAME8'), + (0x9f2f7241487375c9fbcfb23bbd2af2aa1509cc24, 'ThePigeonWorld', 'TPW'), + (0x9f376cf85c2c836dbdb5a348253db616c068ef70, 'Polygon Pikachu', 'PPK'), + (0x9f4297e44e29c2f8e280e4603853dcf49f044207, 'idf3 Crypto Inc. Wild Bunz Collection - Launch Wave Feb 2022', 'IDF3-WBC01'), + (0x9f4801f03e90ac653a3fb37f683f5541c21ce0b9, 'ninja_V', 'DCL-NNJ_V'), + (0x9f4da37a7bf17cc27cc05db01c7be9b6a0c05e45, 'Baby Shiba SocialClub Official Collection', 'Baby Shiba SocialClub Official Col'), + (0x9f5345fdbec8c96dfc9660aa0df84ce6f4d94f1c, 'PolyCows 10000 Polygon NFTs', 'POLYCOWS'), + (0x9f540912ba9d5bddd1063d5d4ea9f64c30e612c3, 'Sipherian Surge Official', 'SIPHER'), + (0x9f699ef410838cfa687cea8599e33ed8c4be4fd2, 'Pineapple Fruitpop', 'SWEDC'), + (0x9f6b0694c46818e041151bfc9a00871a4d1cb3cc, 'Warriors Eagles', 'WE'), + (0x9f7ac9a6e35cf0e0a02818eaffc94cde7bb7d419, 'Elemento Dragons', 'Elemento'), + (0x9f7b0930fa5a7b79ff6ac0c8e0ea44145dd1b3ec, 'UrbanFrenchies', 'UFNFT'), + (0x9f7dab69c53c896d1a3e73c5d92b354dac4c5b9d, 'MyMaticEyes', 'MME'), + (0x9f83720cd848be9e800d6275a9b1214c8c4ba827, 'HIVESTORE', 'HIVE'), + (0x9f885255ed5c474feb0a7687cf67b953b2149bc7, 'PECEL LELE EVERYWHERE', 'PLE'), + (0x9f8f42cafcc5b74fc94aa41b254735d0161c9012, 'Griff Presents VOL: 7 Life on the Block chain', 'matic'), + (0x9f8f8858b96c5f25a59690afab9d53871e3139a4, 'SMGMembership', 'SMGM'), + (0x9f8fbce530320468831c200a49dfc9f417cb90bc, 'Apepunk Club', 'APC'), + (0x9f9cb2ea281b777fc2ab8328155def32472c9c71, 'THE META MARTIANS', 'TMM'), + (0x9fa1b4f34c6f5b200bb22e9160cc178ababf5e30, 'NeneFirstConcert', 'NeneFirstConcert'), + (0x9fa86a294c620b4c4624e9896a71c4ebfa7ecfbc, 'Tinybeez', 'Tinybeez'), + (0x9fa985b3eadadf8df52c4ab4d481495988293793, 'ETHAnglia: What is DeFi?', 'KEY'), + (0x9fa9e2461a218eb4a992f10c7ae30cfd8b27f46b, 'XMonkey By 1nftDigital', 'XMNFT'), + (0x9faad6cefee6d141321f0c322fcf039e52e9fca0, 'Bullish III', 'DCL-BLLSHIII'), + (0x9fab22c8f0cffb4369f3a322757b70c9d09d1104, 'LFG Startup', 'LFGS'), + (0x9faf5cc015cae11af48f7a7b20c523c026672f76, 'Purple', 'SWEDC'), + (0x9fc25bd95607ce50b3b5346670064c429aaf5b57, 'NIXON INDUSTRIES - NUCLEAR SERUMS', 'NXN'), + (0x9fc37b2aa9d6fc7a2b65aaf9d7913bc2bec0491d, 'AKATZUKI', 'AKZK'), + (0x9fc49c08d6a48b4e17e8d5404a2dee8743767d26, 'SILLY PANDAS', 'SILLYPANDAS'), + (0x9fc906a07ced3b5a80f86084b3b69e9316a1059f, 'Smallnaut', 'SMLNT'), + (0x9fcbd87ba9effd6e8cb476c60a9b3432ad2161f8, 'LLD, LLC - Business Card', 'LLD'), + (0x9fcdc89c51871a4925f7955a4ce6803af424e953, 'GEN-T36', 'GEN-T36'), + (0x9fcfe626973651dcec02af2eaf09378e35f5541e, 'Doodle Otters', 'DO'), + (0x9fd745d50be6c5595048c9586597bd6522d9b0e7, 'PSYCHO_LOBSTERS', 'PSYCHO_LOBSTERS'), + (0x9fdbad6fccc89f9d8df799b2453afaa7747d3e69, 'Warriors Eagles', 'WE'), + (0x9fe1516c95b1a099b5f4caa4ca0d61d4c077afd2, 'Meta Megalodons Society (MMS)', 'MMS'), + (0x9fe9f4ff3effb69ecb5f6dc3291fbc2aa968c3bf, 'Textnft', 'textnft'), + (0x9fede7a53e6572c73535b6e3784bb59df1c15f36, 'vrido', 'asd'), + (0x9ff01411979c02342bb8226902818c288546df6f, 'ChillieWillie', 'CC'), + (0x9ffb0d9bebf8f298e807df7847b5b66df6e8fd03, 'Third Wave Club Gold Tier', 'TWCG'), + (0xa002b598636ee1cafa307e2d4926cf3fd9b72cd4, 'FaithConnexion x MetaverseFW #2', 'DCL-FTHCNNXNXMTVRSFW#2'), + (0xa00d1e579891d76371a27a0b48a8865d4502cbb5, 'Kike Hernandez “Boston Strong” V2', 'SWEDC'), + (0xa0115dddeccfd4532edf8640f4c36349b02fc804, 'NinjaWorld', 'Ninja'), + (0xa014b041990b7c298407ff25d166e13bc49d3588, 'the stupid monsters nft', 'tsm'), + (0xa016b51c8c8868bf9e52f2f0e17b0b9cb20fb375, 'Fireworksdesigner', 'FD12'), + (0xa016c5ea8ae0e301d70c0667a11cb8c0ed93e300, 'Constellation-20220201', 'CON'), + (0xa020e803cf18ce529cf18a05b752859436c0fadd, 'Sneaker Heads', 'SH'), + (0xa025803a3b6d0a176c02fe90ec731aad123e29fc, 'Cityroots', 'Vault'), + (0xa03d943e2f0a406323a76a7cf7d08ef8709c7541, 'San Antonio, TX Silver Edition', 'SWEDC'), + (0xa042cf39f6d7a2529776a5da8c06511f3b108e95, 'Panama City, FL Silver Edition', 'SWEDC'), + (0xa04a030f4c8b22b11e98e1cbaf280e0ff01fed79, 'Dominium NFT', 'DOMNFT'), + (0xa055f257bd6fbb845e744d236e68e2663e7b194f, 'MoodledMice_NFT', 'MooM'), + (0xa05aa751b53f1ddf2bac5d7fef5063724898053a, 'ZkPad Sweatshirt (@ZkPadFi)', 'DCL-ZKPDSWTSHRT(@ZKPDF)'), + (0xa05bf17d6bc3f2167966ac11b7907440596548e9, 'TacoCat', 'Taco'), + (0xa069f5d7aa72dc99499e94dc8c0ca8f36f0bdea8, 'Growth Ganesha', 'GGNFT'), + (0xa06c946e7d45f5d8f721ae9b8a1ccc169341b0b5, 'Dark Flux', 'DF'), + (0xa06f16748a4c674b72470b1fe39469c0208b4090, 'circles.rectangles', 'CR'), + (0xa0760cad2434df05fe72b1622a7582b219a66bbf, 'ShuBoku', 'SB'), + (0xa0792c27c4aecd28fb82cc5d984dea82d4ce6cb3, 'RetroAlien', 'RA'), + (0xa07a8a55c54b16a7b0f17cee015c1121ce7248c2, 'PixelBunniesOfficial', 'PB'), + (0xa08022a41ee94a0a73038ec612d669843aaf2193, 'RealityCardsAchievements', 'RC-A'), + (0xa08707eaa4b33998f5618b798751020b2042a4f2, 'Maniak Aliens Philanthropy Club', 'Maniak'), + (0xa0908dd8a1cefb11a6e0005dde3346d0bf002342, 'My Collection 2XQQpXX77aFsRWUcrNrp', 'my-collection-2xqqpxx77afsrwucrnrp'), + (0xa092b1843bcace35b23bffabfd481ae8348ce11a, 'RoboHashNFT', 'RBH'), + (0xa0a02e0d6ef467ab72362fda534622dd3ee17731, 'Baby bear', 'BBM'), + (0xa0a0711260365aee364abe06c774e10b2b8ee7fd, 'BADASSApesOfficialClubpoly', 'BAC'), + (0xa0a3e8eab6b637954818db61a858bfeab03ed858, 'NAME', 'SYMBOL'), + (0xa0a81a526484b9499ce308a59ef71a4693d00ebc, 'MATIC.ART NFT FREE MARKET PLACE', 'NFT'), + (0xa0aa18c7cfe43e714e77fea671a981927a94d834, 'Bola de fogo', 'FBLL'), + (0xa0aa6fcc0fc08a06001be94b56556e5c8413a9a8, 'Carchain', 'CAR'), + (0xa0afb3513b99e1b099ce9f3c007ee937b04e7870, 'Universe NFT', 'UNIFT'), + (0xa0b379c66199f1069a4b96ea52789b2d4495636d, 'Boring Man Familt', 'BMF'), + (0xa0b7fe33fd5bc42bf6887508b09b6b8c79fb4f1b, 'Lonely Wanderer', 'LW'), + (0xa0be2686f3c04f89581ec350ab2b8d3ae97e5b73, 'Pig Gang', 'PigGang'), + (0xa0bed2e79eec0dd9aa3238d64541e59f134be003, 'Cyber9 Badge', 'C9B'), + (0xa0c5459ec115d20549075fb5d8a8a771c2118716, 'Chicago, IL Gold Edition', 'SWEDC'), + (0xa0dd3bbdc25b69e15f7162aaaa67d8a1a1916f79, 'Ukrainian Soldiers', 'USOLDIERS'), + (0xa0ddbf483ad263e02824e10dc1f6a525b0bf871a, 'Prime Mates Board Club NFTs', 'PMBC'), + (0xa0e1a63e39d2c97d93c79115234c4cdfe6f33067, 'Astro Kid', 'ASTRO'), + (0xa0e7c5c1bbb4136ad93d75dc5fbef636c232fc76, 'Kangaroo Punch Club NFT', 'KAN'), + (0xa0ea06d272ab7f63d323e613246e43a37870dd06, 'CryptoAli', 'CA'), + (0xa0f7b9ec2e25f38701a8a06397a779c7506091e5, 'GURA', 'DCL-GURA'), + (0xa0fa6bbb6e0455b8696a6d403f63b0660132977b, 'bpacbored', 'BPAC'), + (0xa0fd9b3d1dc13c7dfe2a7ee5b5f19d110441fdb9, 'The Ancient Hardware', 'TAH'), + (0xa10c91c95c1ec123362d566d18278254e1020fdf, 'Alien Punk', 'APK'), + (0xa10f51c1f9b46d90024052231780c0784deaa5df, 'Project Ririsu Official', 'RIRI'), + (0xa115dfbb5ab7adffad2f7f25fa7a5c227616c2c3, 'Flowerpatch.app FLOWER', 'FLOWER'), + (0xa118f0dc44fd9b967b77f2b0b18996f5fba34ca2, 'bonft', 'bo'), + (0xa11abca5edd43191e1e51897a689a116360fe7a7, 'Loser Yacht Club', 'LYC'), + (0xa1223aa7888d7cb7381858ab246dcc6358b168f8, 'CoolWhale', 'CWHALE'), + (0xa1247bcd649913bbb6811de06045b7da36d218ee, 'betterchinanft', 'betterchinanft'), + (0xa1257da3822eff14b8bff80ef912ea71bba94c65, 'Commander X', 'DCL-CMMNDRX'), + (0xa1272743f1e77953a43fc2da7d576149acb884e2, 'Legends of Atlantis Official', 'LAO'), + (0xa12a70950139090016423365031e48613927d8f5, 'Crazy Bears', 'CZBR'), + (0xa13c2094eaec57833292af298019ca7fd654c85b, 'Complete NFT', 'NFTC'), + (0xa13eb2429e15c701b69d56a47e4031796f1fb341, 'Buzz Dog Cool', 'BDCZ'), + (0xa141528866704d59e1975283f196bd7e081c9a5b, 't7wi31', 't762'), + (0xa152918ff5f5171d8b4956a69791b4f49bff7608, 'TheHipsterPups', 'THP'), + (0xa1530f049b07ec4604228d52278f790139123854, 'JP NFT #1', 'JPH'), + (0xa153535bc89b870c620c1bf452034be4946e3b31, 'The Booze Club', 'TBC'), + (0xa155cee07e51fe2bd8ecce4c00319c791cb8c300, 'Rui Costa', 'RC 2'), + (0xa16f397ed8e3fd8e5f8469cdcba098fe983b75c7, 'Dark Love by Artemis Moon', 'DCL-DRKLVBYARTMSMN'), + (0xa19096ee265eefdb21de134cdb6b8987ac282c54, 'The Chinese One', 'C'), + (0xa1a61c57f0fca338cceb040f5b3da50c3502b1a6, 'Cats Mutants Citi Official Club', 'CMC'), + (0xa1a98d16129cbfc5fdbc91762e9ed72b90fb0157, 'The Wicked Craniums Official Polygon', 'TWC'), + (0xa1aa922787fbcf5958c911902b2ab1a6d64be1a5, 'Inception Hero - Female', 'SHERO'), + (0xa1b4be59f7c493c2afdb546b8a0d5ff7c727a32d, 'MetaFennec', 'MFNC'), + (0xa1b629c5f42c18d3bab47d6de66febdad2c18697, 'Baseball Homies', 'BH'), + (0xa1c0fc96e32f5017cd94137daa603b224b1da3f7, 'Veedu 2022', 'VVML'), + (0xa1ca8ec9e77b6037a0da54e30606839c2b967fe4, 'Just Bananaz', 'C'), + (0xa1ccd12422043bf441ca51691ae26e36b93db0c3, 'Rare Goods NFTme', 'NFTme-RG'), + (0xa1d1e8c51ab7ec14ffa7d28f672ea46e61e4ab01, 'Raja(rt)', 'Raja the NFT crypto dog'), + (0xa1d3a75cafae1a4d1ad354dd35951954cb1402a3, 'Komos by Ethlas', 'Komo'), + (0xa1d47c5c55e94764930b27a6185e83db372c116d, 'NFTWriter', 'NFTW'), + (0xa1d9482c8ddcbc7d1bf3f787c5194bfad95e9507, 'snowy by Tobik', 'DCL-SNWYBYTBK'), + (0xa1d97a9d3b600b743333a4879a4c95a4233f5a95, 'Cthulhu NFT', 'CTHNFT'), + (0xa1db5aa413b8fa99c483722005d41b5b8e78fcf2, 'Guys', 'GYS'), + (0xa1db651e9a76a3e500a55962f931740353a8f19b, 'Bored Punk Pioneers', 'justBORED'), + (0xa1e188cc64685ff690b9d500b93c124487cf6ec2, 'STRAINGERS', 'THC'), + (0xa1e2f2a99f9ea8f9e92e81842470e9e0041428b8, 'Apollo 11-52', 'DCL-APLL11-52'), + (0xa1e3d5f93e4ad7b62d38ac1384481d3c9bae0dfa, 'Lazy Turtle Collection', 'LZTL'), + (0xa1e832b2523783a30aaaf9be87f6c0ecc8f8d2c7, 'Close yet far', 'CYF'), + (0xa1eb5a31232b5d1456ceb30184d650759ed5a646, 'Don’t slow me down', 'dsmd'), + (0xa1f134a6875284aedea6ac752374a098eddc1838, 'Karma', 'Karma'), + (0xa1f1a1d644ae2ef075cfab4416f9350d1cced5e6, 'Underfitted Social Club Membership', 'UNDERFITTED'), + (0xa1fc946e683f5afe67ab114da45a56a5cd14874c, '12345A', '45A'), + (0xa200a54daed579fda6f5ed86de93047bd9d595d7, 'CryptoChillouts', 'C-OUT'), + (0xa20c3f980086ac900650b02d2f8dcc59009b1156, 'Jasmy Clubhouse', 'JCH'), + (0xa20cad56ecec7cab63937bd1cf826657d8832045, 'Loot', 'LOOT'), + (0xa21c20fa41ed8f49d93466367ad02125eef19dc0, 'HappyMonster', 'hpy'), + (0xa220630139ffa31f2656e8cb6025299dceefb8d3, 'Drip Maxx Retros', 'DCL-DRPMXXRTRS'), + (0xa229b48da702a9ea51d19228ac20a009e44e658a, 'DEADPXLZ', 'DEADPXLZ'), + (0xa22d7ab4854c227d36366e71949be408928ebc03, 'WrappingCoatingTank', 'WTC'), + (0xa234d6ee53f0778d0f1f10e497f719a0495151e0, 'Bad Apes Poly Club', 'BAC'), + (0xa234fb0b3b3a79bb425dd929dccb269cbfc5400d, 'THE HUG', 'HUG'), + (0xa238f198c0264628db49446450d3bacec22cf416, 'Snufi', 'SNUF'), + (0xa241100310da649f61bfde697eeac3189524ca06, 'Lil Squirtz', 'LilSquirtz'), + (0xa24596b4792ea58ec2ac4a47aff27b543adf60be, 'Lucky Ape Casino', 'LAC'), + (0xa24b02edcb98986a9e9de31b12b585652f3ab702, 'ClubSandwich', 'ClubSandwich'), + (0xa25270dd45ed2135fb933ea0acf0c69e80fcd07e, 'inverseHAPE', 'iHAPE'), + (0xa254dc79b244dca760a06d04d5cc0be41eb90a65, 'Galaxy Fighters Club', 'GFC'), + (0xa257a6e7a9ae2993abc2b615f40524d2399947b3, 'SZGLINT', 'PP'), + (0xa25cc8978902e87b3bbe7a96c27503499813c453, 'PhantomsNFT', 'PHANTOMS'), + (0xa25f73c0d6a4be94fc4354f4b04854379743db4d, 'CROSS BODYSUIT', 'DCL-CROSSBODYSUIT'), + (0xa260d9362cc7240c8110affeadb7b3f9973736ef, 'Zombie on Premises', 'SWEDC'), + (0xa26331457d482f774ac8e6579f946dcac8a9bdf1, 'Sleepy Ape', 'SAPE'), + (0xa264c2c3db89217ccf53640acefa0f3dd05645db, 'TheCryptoPunksCollection', 'TCPC'), + (0xa269c328ede72f6b12a1bcca4f0118a63a015c42, 'The Brews NFT', 'BREWS'), + (0xa26cdf13ed82a04ed711664b3c92124e9b8715f6, 'chibilegends', 'Chibi'), + (0xa26d1da82dfd702d49f5a7b6259e706a488daf82, 'Red Dragon', 'DCL-RDDRGN'), + (0xa2711b2e27b70e737924f1839dc3454f0a62e89a, 'MetareaLands', 'LAND'), + (0xa2838216beba64e893b988cc8b5d157fd7eed809, 'KINGofDEAD', 'KOD'), + (0xa29a656b7d1dfe89a5006280cada966e33cb6d3b, 'TokenName', 'TOK'), + (0xa2a13ce1824f3916fc84c65e559391fc6674e6e8, 'Unicorn Farm', 'UNIF'), + (0xa2a69bdd417b157434a054da5b08127e1a6f2eda, 'Atlantic 10 Conference 2022', 'A10_CONF_2022'), + (0xa2aaff50181619de2762d3e1ca2af1ab6f7c3f81, 'Braad The Monkey', 'Braad The Monkey'), + (0xa2ad0890c05106640a2a438cd748518b6200ba2e, 'Kinkify Girl NFT', 'KGN'), + (0xa2b1dad5e72f2cd03d1966241e58abf50aef7c65, '20220321032', '20220321032'), + (0xa2b2f906799c67f336b93875fdda077428082097, 'nftreats.art', 'NFTRTS'), + (0xa2b35a44d869570920966c8ddac007772c30a568, 'Chris Botti''s 17th Annual Holiday Residency: Dec 27th @ 8pm', 'BLUNFT2'), + (0xa2b3d16f46ffa78218b0e903ae67602004e252d4, 'Missing Sock Gang', 'MSG'), + (0xa2b6ad3ad3d4a267bee0afe4e3321eb1def54f37, 'Solos Exec', 'Execs'), + (0xa2ba2540b950d7b2dab38f1ef08681811ce82ad3, 'Flamingo Mafia Family', 'FMF'), + (0xa2c5139e0c254eada16ff7bfa01a5672264758f9, 'Crying CryptoThugs', 'CCT'), + (0xa2caeaaf86c3ab6e37bd8527abed4bf352b23e97, 'cococococooc', 'cococococooc'), + (0xa2cd05b5b10ea642bb77ef4e1d44d4fffaaabd59, 'PARCEL PARTY - SERIES 1', 'DCL-PARCELPARTY-SERIES1'), + (0xa2d97e5fddb9ca2bdcbe9017df6d28289e58cf84, 'Hash Cows', 'HashCoz'), + (0xa2dede4ec46f113116548ac66f9707bb37dbcaa1, 'GM MVFW', 'DCL-GMMVFW'), + (0xa2e84aedb8f10a4094cbd43f10a4c893b00ac360, 'Weird Catgirls', 'C'), + (0xa2e8cc61cfb266f3600c0f79c8d266b7cdd6da38, 'META LION KINGDOM OFFlClAL', 'Meta Lion'), + (0xa2f1a26c51566f0804b179b537bdb4a1486bc57b, 'MekaApes Game Polygon', 'MekaApes'), + (0xa2f38e7697d12b7e607c26e119a9da30019bdd8a, 'ewewewee', 'MS'), + (0xa3120de39e378322f602e998ba554190d2ae8bc3, 'DAOschool', 'DSCHL'), + (0xa3221a6c30448448f79297c273b5db631ef245e0, 'Crypto Moment Color', 'CMC'), + (0xa324545bbab91696f394812cf6514e42e666b942, 'Digital Oceans V2', 'TURT'), + (0xa32ee659440191f7ee94646cda4aab5b72b81fc5, 'Social Giants NFT', 'SOGIAN'), + (0xa338c08cadccdbe79ce686580ad8daf8c78b8bbd, 'Genesis Alpixzca', 'GNPX'), + (0xa33a036ee96230a4f98bf0cf376523afff25e10b, 'Friendly Frogs', 'FFrogs'), + (0xa33c60e22a0ea9dcd9d80fd2e93142be10bbdae2, 'Tasty Bones XVZ', 'TBVX'), + (0xa33cd202651e6b2b03ce595d828a84df7ead10b6, 'ArchangelWaifu', 'AW'), + (0xa33e3d0a9f907be3756435e1fd737dfad94a9d87, 'Zizola-NFT', 'Z'), + (0xa34119db968d4823a5b3cc7767b478aeee3732fb, 'NFTs', 'NFT'), + (0xa341f416f8063aa48451056c21fbe42383d3bf82, 'MetaSoccer Youth Scout Tickets 2', 'MSYST2'), + (0xa345db1e9a1154592422be0ccd84386fc4b234af, 'Bored Beer Bottle Club', 'BBBC'), + (0xa34bb1c4a3f7596da59684daac233ec1383c100a, 'The Kimmies', 'KIMMIES'), + (0xa34dab575d53042403df03c889689b57cf966f14, 'Mine1', 'c'), + (0xa350f07c7ed8a04d48e101e2adad4dd8b9aa120a, 'Hahhhsis -「 Swifts 」', 'DCL-HHHHSS-「SWFTS」'), + (0xa3512c899263efe0f05972ff4fae6b8afc6a0218, 'CryptoCatsClub', 'CCC'), + (0xa351eb5a4ed8e23b0cf5ccd2028ba3cc89ab06b1, 'Digital Insurance', 'GTI'), + (0xa352206070ad61f52328951166522a68f41fc891, 'Impostors', 'Impostors'), + (0xa36961ca60f951d1f04defa52422d5d43a14ccab, 'Cyborg Legends', 'CLE'), + (0xa3755102492d2871fc6c559de7312dbe4ad3dd9b, 'GrizzlyBearClub', 'GBC'), + (0xa38554df131227cd8744bf2ce7723ee161b024aa, 'Crypto Tigers Club', 'CTC'), + (0xa388e862b3c9815ef125c7ebf50544a64cca4bd9, 'Crypto Unicorn Shadowcorns', 'Crypto'), + (0xa390df6ccdac159738a6fc0af60a8152610e6509, 'My Collection NlpdU0Wup8W6XhnWSdPW', 'my-collection-nlpdu0wup8w6xhnwsdpw'), + (0xa39256a2a544a2eee16cc72b380261d903b7e76c, 'Pane To The Mind', 'PTTM'), + (0xa3961eab808b66a37d1d0716d5773fc1cb200977, 'Crazy Dog', 'CD'), + (0xa397649d96af0d0055c7057de5f879f74d577377, 'CryptoBlades Trinket', 'CBRT'), + (0xa398bd6953442fb0cf9bb20df331ac38f2d0dd66, 'Baboy', 'BB'), + (0xa3a03d653fe648030173dcde29db1cc665cc4bb1, 'CryptoPugX Dog Pound', 'CPXDP'), + (0xa3a40d4dc4b89cbe6f5d06579e60b2f33811bbd3, 'LiLCactus', 'LC'), + (0xa3a82412a682599dd5853ff1aee833b3502a1c22, 'Ramen Cruiser Collection', 'DCL-RMNCRSRCLLCTN'), + (0xa3aa2caee878a47a424e25bf5b8daf72807f6075, 'Outrageous Owls', 'OO'), + (0xa3abb8b2c5936bd02fd79b210c0bf446579e10bc, 'sceam', '11'), + (0xa3ae14a0e7971ad2b6b7ba5b5854da4b240074e3, 'Ape Harmony Monsters Official', 'AHM'), + (0xa3b752ea0380f5ad2692aee8bcc54f285e521c3c, 'PolyApeds', 'POLYAPEDS'), + (0xa3b8322e36c8682ed38571305e581e6ebe8b7e30, 'Tree Wonderful', 'WTREES'), + (0xa3b8c9a5c7eb481d4a22e1b560f2ad11434b7fce, 'CryptoZombies', 'CRZMB'), + (0xa3b966ad186bbf04a68bbd8a188a456766d405db, 'Metal Gear Robot', 'DCL-MTLGRRBT'), + (0xa3bb81062093e18bde355c74383fe43f7ac5206e, 'Blazin Armor - Ember Mask', 'DCL-BLZNARMR-EMBRMSK'), + (0xa3c1a85e5ff5f9a20040067e9f37e9fead29d1d5, 'Apocalyptic Apes Club', 'AAC'), + (0xa3c20b1c81fcca2e615326509ac974427def8a12, 'The Chinese One', 'TCO'), + (0xa3c4745ad5436c2ac0a17f01bd7d3b6240a75ad3, 'KoolKidz', 'KOKdz'), + (0xa3d1c50aedd0a0feef5d3c1f1dd5870a00dcbde7, 'Shuttlebuddies', 'SB'), + (0xa3d4096e95c3f73a57cbc45c3050ac007e5a1740, 'JGNFT2', 'JGNFT2'), + (0xa3e0297e45e7384e0269f33e153865ddafb8ad27, 'Game 4', 'SWEDC'), + (0xa3e32b323145b2c583b19ec9168606e7f4be5df1, 'AwakenedLifeClub', 'ALC'), + (0xa3e6b9e5c5a30f555f23ed5ba5675ce3cd1c533c, 'UncivilizedChef', 'UC'), + (0xa3e745f6a9a6230a3c0693d6d49530a89c142d4d, 'Zombie Crypto NFT', 'CZN'), + (0xa3ecfd445359c6a1732537c8edf129543de61386, 'Bad Manners', 'BMNFT'), + (0xa3fffddc964c2122ffa3a43e3aa8125f4587dc21, 'KryptoGO x DemiVerse Lucky Bag 2022', 'KGLB'), + (0xa406357aba149781f5c1b9b978eeb94e09f179c9, 'METATIGER Force Field', 'DCL-METATIGERFRCFLD'), + (0xa40e102943e2d3ec1aad06af62b0783cd9bb7bd2, 'StickHub', 'STKHB'), + (0xa410f4aa480dcdd932f729f30335d2487e2e11f5, 'Cryptoskullz by TDS', 'TSNFT'), + (0xa4115d1249efa3b14d7d8ed897069debe22a5ac4, 'Generation #25', 'G#'), + (0xa41962e6ad8e3cc2ed372b234e3bdcff30ca85f3, 'DinoJaws', 'DJNFT'), + (0xa42003e8f87c6d2d7266c9d37ce9e230655d2c48, 'Garbage Freinds', 'Friends'), + (0xa423d2891465db176997fbbc613547ed044f74fe, 'HCP2.0', 'HCPNFTs'), + (0xa444c558e53142d4bc0ca27f7f983b3fcaa27f00, 'HDC COMMUNITY', 'HDC'), + (0xa446356817ee38db091a0fe7c7cc75efe37ad258, 'The Hyped Skulls', 'THSK'), + (0xa450b2ffc0c384c3029cb0601b03e3f49a2b0ee2, 'GEN-H18', 'GEN-H18'), + (0xa450bc33d0940d25fb0961c592fb440fa63abe03, '.polygon', '.POLYGON'), + (0xa4614e1951ab5987e81b906f370299a9210b363e, 'DoggyDayCare VoxBoards', 'DCL-DGGYDYCRVXBRDS'), + (0xa4631d284e7e8ce457c04a6f36938ab9e08bb311, 'Eight Bit Mafia 3D', 'EBM3D'), + (0xa46a7b99a8dd7041773f37d375ca693f11c52d43, 'GOBT Voucher_T2', 'GOBTC'), + (0xa46aff3ab117b51f33db178593552d0ca0b1365e, 'Acquisition Royale', 'ACQR'), + (0xa4740cae0b903abc7cbd652c0adae955ce9e25c0, 'MisterDuckling', 'MD'), + (0xa475aa972fc7b5164f80ea4d5534313f4a584230, 'Virtewel x WaltAdler 3rd Collab', 'DCL-VRTWLXWLTADLR3RDCLLB'), + (0xa476d7e153aff14b341834734099d0f55dcc5119, 'BORED APE FAN CLUB', 'BORED APE'), + (0xa47dac2245ff0f62c5393d0cd8717749e0470a92, 'Bling Bling - Diamonds', 'DCL-BLNGBLNG-DMNDS'), + (0xa48021059dc8dbf574a815ad7f23eced294236b0, 'Boss Apes Club', 'BAC'), + (0xa488836cfa6462b4223a05edd2dc258384ac30a6, '[DEVELOPMENT] Ch Gü WIGBY', '[DEVELOPMENT] Ch Gü - Ed XIEEJ'), + (0xa48a88a06e21d1420435e6291e22814c0127f820, 'Chase’s Real Signature', 'SWEDC'), + (0xa48f68687f52875308756ce2419fe111133bd894, 'Octo Finissimo Ultra NFT #0', 'OCTO_FINISSIMO_ULTRA_NFT_#0'), + (0xa4970a84547fe50c63d85e2076c0f7a4b609147e, 'Phantom Frens', 'PFNFT'), + (0xa497d16f82a63c29a38f43e82c543aaa80ececf3, 'Jess Star Effect', 'DCL-JSSSTREFFCT'), + (0xa49df642243fe88df159fa78df3de60caf5d8166, 'funky frens', 'funkfren'), + (0xa49e987f92ee86d001a6601e96bc0ef2b0e12d21, 'n+', 'N+'), + (0xa4b068d2011d5fa8e0497ca955767d03a1d0b61d, 'PolyNFT', 'PNFT'), + (0xa4b33f44addd9732b7e9c33c7621f2f1d983a78a, 'Wonderzone Pride Collection', 'DCL-WNDRZNPRDCLLCTN'), + (0xa4b4c515628fc93d34a50615b3e0244b5f0f1ae4, 'DoveOfPeace', 'DOP'), + (0xa4bd3cfcb1f2fda6b1eeccadddb4d16d629d6491, 'CyberGen NFT', 'CG'), + (0xa4c20ec9ef9313da1643957cb30027b999f4f8c4, 'Paparazzi in the Pits', 'SWEDC'), + (0xa4c4887390a39c6a9772e633e73f7320cde7322b, 'TequilaPartyBottlePass', 'TPBP'), + (0xa4c81badaf542796b07ad6735c9768d63e2ff652, 'YHNFT1', 'YHNFT1'), + (0xa4c9eecc52f3ab4c6dd0641d7815b097e972559c, 'METANDEDEDED', 'AZZE'), + (0xa4d9997876b4c9866056eb23c9e841ca53bd6a7e, 'Meta Jacket', 'Jacket'), + (0xa4dd9fbf85b7c8220dbd8790abfb17d58180ddda, 'Octopi Wrestler Club', 'OWC'), + (0xa4ddf0061a07b2f971fb3983ef63a519bb515a0c, 'PAPAYA', 'PAPAYA'), + (0xa4e3f32f9cc1beb6046f2bc568578f59d1a4587d, 'Pixel Guy Society', 'PGS'), + (0xa4e5a13b74897722929db2fbd5d98fb1cddf6cb7, 'Catbert needs glasses', 'CATG'), + (0xa4e7882ab7bdd87ac2b7e78e2fd5f62fb55396ce, 'Higher Life Lounge Wear', 'DCL-HGHRLFLNGWR'), + (0xa4eaecb966ed501a5dc6777a89de951ed64ce9ba, 'Anitta, Meet Larissa', 'SWEDC'), + (0xa4ecc59991f0b5a014e4711dabbc7c4d85c2225f, 'Skull King Art', 'skull'), + (0xa4f09f4f2bc10e9ad9c76dadf4b4d58ba7df8f33, 'CryptoPunkBunnies', 'CPB'), + (0xa4f192b2ce6df51cd59a29fc17233d3a36d6fcb4, 'Nifty Finger Team', 'NFT'), + (0xa4f764c7c50c3ac355fd408c54d64c7d724e53c0, 'Patchwork Dawgz', 'PD'), + (0xa4feecf99184a428650ba0bf5bb5f6120a4e7b6d, 'O Lenhador', 'OLEN1'), + (0xa50af6cde8677adb848a8ab54b6a738619449c1f, 'YumYumTruck', 'YYT'), + (0xa50b6dd075522a9f1a4fc13290b8d21dc79a221b, 'Charlotte, NC Pop Art Edition', 'SWEDC'), + (0xa50cb83c8265db253aef5aee033de90b2d1051ab, 'Act Natural - Big 3', 'SYNPH'), + (0xa5122b762e226082289aca80ec74cc2c584e0859, 'TinyGhostesNFT', 'GHOSTES'), + (0xa516c1d5681a4e7e72499fafba08920a5e6ad5a7, 'MAVOC', 'MAV'), + (0xa517ebc2c10213bbf5cd31e8e528fcd1d68b2428, 'WarriorMint3', 'WM3'), + (0xa52b261ef37b53429553f57d68c34c0585670d4e, 'The Apiens Genesis', 'apiens'), + (0xa535e271469a6366cb1f5e6144501d755316216a, 'Your Collection C', 'YCY'), + (0xa548fcf65ac993af0ab59b6428dab3685ff0aa9e, 'TheParrotOfCaribbean', 'TPC'), + (0xa54d279f7a9061640dec5f6332bb7caef7128283, 'Cheri''s NFT''s', 'CNFT'), + (0xa54e33a5c47e2b935ae47cabb681a2d0f2b297d8, 'Mutant Shiba Club', 'MSC'), + (0xa5505bef3e9e1507d1c1923838c508b9380f824f, 'Crypto Weird Doplhin', 'CWD'), + (0xa55796e61f5869ba0e93aa657d7429274d1179a0, 'crypto_masons', 'CMs'), + (0xa55f345858e9d48eae8e9059d8e7e0e14cd22a9a, 'DohKB', 'DKB'), + (0xa55f536f83fdb65c291d5e115e0f64a82ed4540b, 'AlfaNFT', 'Alfa'), + (0xa56592dd1b458b75ebb09e09a950d1c16a2a59cd, 'Bad Seed Jack', 'SWEDC'), + (0xa56d0464f0f82a71f2fa6da0e89365130fafe00d, 'Crypto Misha Punks', 'MISHA'), + (0xa57a7c3cff179e8e74fa9b9f92a5e8c53d1f8284, 'BLOBNFT', 'BLOB'), + (0xa57e7f60e214922e600b78765a7318902047cf43, 'Walelasoepileman Cristovao Surui - Povo Surui', 'Povo Surui'), + (0xa583a039854fe780f9e1ac35a32d4a7fb59aec73, 'pssssd official', 'pssssd'), + (0xa5848e0969c6b995b66441cfd24b8fe4a372df3d, 'Pixel Pugs', 'PP'), + (0xa58c1d472684d1d336c0d1715f503c6c13f654ca, 'KaijuFrenz', 'KF'), + (0xa5919ce985bccd8a70115846f301fdefb04fb91f, 'ORIGINALS', 'O'), + (0xa591f08ab6b0bfda8fbd3ecf8699f148d4a0169e, 'ManekiNeko Project', 'NEKO'), + (0xa594bd684dd56f743a858678cb1a664e578de938, 'Ring Planet', 'RP'), + (0xa595056319a85d0998e853f06a9841f0786271b7, 'HEADSHOME', 'HEADSHOME'), + (0xa59e6b9c164f96d64d1fd25d377c6ee80c5b5347, 'The Weedies Club', 'TWC'), + (0xa59fcf79eceb55388263703e56561292eaf3e451, 'Spider', 'NFT'), + (0xa5a18ce477a2f4d5824853ddecf3e1d1d802af6a, 'Unknower MetaMerch Gen 2', 'DCL-UNKNWRMTMRCHGN2'), + (0xa5a8a565767de72558f9750325bfb507e8138e3b, 'WeirdCryptoDuks', 'WCD'), + (0xa5a8bd31f7a8af23975ad831aafa65bfc4047e71, 'Glastonbury Festival 2022 Tickets', 'Glastonbury Festival 2022'), + (0xa5c17409f511345cde09b5f40cce41f78ba76eaa, 'Funny Zombies Lovers Club', 'FZLC'), + (0xa5c4c04daa2ef87bfb34a064c0bc1f92c851d843, 'CryptoDate', 'CD'), + (0xa5c7f62c668d47dd34baedbedfb310ff458f97df, 'Animo.Women', 'Animo.Women'), + (0xa5cf9b89e11b0faa5123882edd4358726b443b31, 'ZKLadder Community NFT', 'ZKL'), + (0xa5d176edcb686ce6732517632ae04408defd9426, 'Mutant Ape Yacht Club', 'mutant-ape-yacht-club'), + (0xa5d407361371d9c6e70290ecfcae456be8b49332, 'ET__GIRLS', 'ET__NFT'), + (0xa5d59c473185e7a50648d6d7647323b4c07a3e0a, 'PIECES OF EIGHT', 'PIECES'), + (0xa5e13a362003d1384d2bfcaf594d80d99a01b96a, 'Crypto Couture™', 'DCL-CRYPTCTR™'), + (0xa5e43798384757bb72c4667fad09bc7f5757fe0a, 'BNG', 'DCL-BNG'), + (0xa5eeb64c2b1830de4c053d8c760cea5ad1c95c47, 'PlatypusSecretSociety', 'PSS'), + (0xa5f1ea7df861952863df2e8d1312f7305dabf215, 'ZED Horse', 'ZED'), + (0xa5f704c4e07eb8819aab7faf5ff1ed6e8b9aad95, 'nftrank', 'nftrank'), + (0xa602673ff4be183d12b09a5d9a1c235508d1f704, 'CryptoMonsters', 'MNSTRS'), + (0xa60dfa6fc63676fc577a6888e2ba0d14222a162d, 'névrosé - s/s 22', 'DCL-NÉVRSÉ-S/S22'), + (0xa614eb713fabad406f27ca680535bd8830a9675a, 'CryptoIdiot', 'CI'), + (0xa6165bba8ce0ba23f7a9bc6227545ddb99b4b844, 'Cyber Cosmos World', 'CyberC'), + (0xa6212c28ee02721116723f9417026b32f212699c, 'Small Bros', 'SB'), + (0xa62173ae6b915ce560bce1282ee145d405c475fb, 'Frawwgies', 'FNFT'), + (0xa621eb929b05fda61cd69be0c676f651cd368b78, 'CyberKnight', 'CyberKnight'), + (0xa622047410be716a807dfe71071c49d89b89b0bb, 'Cincinnati, OH Pop Art Edition', 'SWEDC'), + (0xa6242298d4404037ae13393f0dce1a2c2dc24e86, 'pub', 'PUB'), + (0xa6278aca8620210fc77b78b39a197f33ffe7bb9a, 'Metadamah', 'MDAMAH'), + (0xa6285dadd722ebd03dbde04ae0f9e6b032306662, 'Ash2AshCode2Code', 'DEAC'), + (0xa62f12ea5a0459f4a4d5a0d4aed0f510c821c859, 'Freemints.org', 'Freemints'), + (0xa63ec2564c4a1b6395885a9a9b0beb0a6444a4e2, 'ARNB-Bunny-Community', 'ARNB'), + (0xa640a422a203caf02319a160a2b5a08036b41ada, 'NFTDogCarameloVidaLoka', 'DogCarameloVidaLoka'), + (0xa6429bf1ca4c3b7943d7825cf08f705589bfe301, 'MetaSmokers Exclusive Cigars', 'DCL-MTSMKRSEXCLSVCGRS'), + (0xa64d530f30efe7e6fb812128414636d52426e5ec, 'SillyCows NFT', 'SCOWS'), + (0xa6548a93d33a77131ceeefbd73b43dee2da6f03e, 'PolyFarm Lands', 'ipfs://QmVZ9xVWnFe7zU7mfT9yyUMWDzK'), + (0xa658d0177f1ae7d6f26d4aa15376639760b44273, 'Liquid bears', 'LIQBEA'), + (0xa6624d1dadb3f4a93a0333d9575dfdbe5615a1c7, 'Azure Flame', 'AZURE'), + (0xa66b6ca0f57ecfd75e09b25956dfd645ccea56a6, 'FDPGROUP', 'FDP'), + (0xa66e42a66d64977f27f30f4f63c54930249f00ff, 'Robots of Doom', 'RD'), + (0xa67773c7548da876797155493cce83020153b099, 'Modz Wear', 'DCL-MDZWR'), + (0xa687ecdf0dc3ca4eea0add258edf882f72b5d669, 'TiliaEarth', 'TILIA'), + (0xa68c01638745027fa19f0ada7aaef2c00c4f873f, 'Weird Catgirls', 'C'), + (0xa690c89558a39709e1f0dde0f8825a83d438fce4, 'OSIS MetaBadges', 'Genesis'), + (0xa6a4041268f035d4edc63aaa6ad2938031560fbc, 'BLACKROSE AI ART', 'BLACKROSE'), + (0xa6a59f7a7b1401670ea09dc5554b55757163e20d, 'Bored Vibes Black Hoodies', 'DCL-BRDVBSBLCKHDS'), + (0xa6a80989a8d479527591544b2ea5b6b37c622c60, 'Perp Finance', 'Perp'), + (0xa6ad0f3e1b293414fe498fdd92bff317ec57b3c7, 'DinkyTurtles', 'DT'), + (0xa6b0eef8c87fb1544689b05d22e3fd55e4fe369b, 'Billionaire Zombies Club - Skeleton Keys 3D', 'BZC-SK'), + (0xa6baa493fe25984c57bf940542a54460a5a65f47, 'Tony Emotions', 'TE'), + (0xa6bb84fbfc2b4c38ab47779a06edf53943f864c1, 'Eoball', 'EOBALL'), + (0xa6c4051a58049853fb9ace9838a9be0a1aa197de, 'SPACEMUTANTZ', 'SPM'), + (0xa6e280744e60cb93f6c5913047ace574d6d051c3, 'The Walking Dead VOX Boxx', 'TWDVB'), + (0xa6e6c67a20525ef3b9078df5d7397458df94fbbe, 'Crypto Fight Club', 'CFC'), + (0xa6ea1f97e97177a729ba7bc9884a062eaedd213e, 'BillionairGorillasClub', 'BGC'), + (0xa6ecadef1cf6a13e8f2bef3c1b1f167158b32ba6, 'JieRiStar', 'JRS'), + (0xa6fd999f53d4c1c948700132dfb976b5f5e5cb07, 'Sneaker Heads', 'Sneaker'), + (0xa70ce371e2090011531c83f3c09d9e04a1bb1252, 'The Wicrypt Outlier', 'WNFT'), + (0xa714cf1267f4a701b646c5cbf660c4b1acb7a82e, 'Rental MYST', 'rMYST'), + (0xa7157339922339045e4a1d5b49f650533b5fd294, 'Camp Ganja Packs', 'CGP'), + (0xa717502e85c8bacf6ccafc801d2ece7f68a0c6ef, 'VERT', 'V'), + (0xa71f0d4bc14f1f528cb26b0123d27793dede5383, 'DCL Mecha Cupid', 'DCL-DCLMCHCPD'), + (0xa725a8c9200edf266aac4313a9ea6f1937be1de5, 'Echoes From The Void - Animated Card', 'SWEDC'), + (0xa728cda70655be6218ecb33e8b2d396653fc29c5, 'Monster Masks', 'DCL-MNSTRMSKS'), + (0xa72b180b8978fffecf7d2ed3b4e11febf8780cf3, 'BoredLongHead', 'BRLH'), + (0xa735d3bad1a11b2532f642584599832743efc9ca, 'LGTM', 'LGTM'), + (0xa744f0959ec26b13a8ce4057ffc11130ab11251a, 'Dicesia', 'DCSIA'), + (0xa7491e73009c123023603c5838bd65cfcf9457d9, 'Crypto Beaner Season TwO', 'CBNFTS2'), + (0xa7497d76adef8d780e4a0f4475eea0db5f197060, 'Decap', 'DCP'), + (0xa74a6e27defa636fc77d7bdab8ba97f614b48f82, 'Baby Ape Bone Special Edition', 'BABSE'), + (0xa75203d757bb4caf4cc008d8b16b36b2ee74c77e, 'CryptoBlades Junk', 'CBJ'), + (0xa75bdb2d5d8acb787bcd78e10b9553cd655b5ec9, 'Gold Owl', 'KEY'), + (0xa763f6cb5733b4d322dd223b363f94f83801e620, 'Harpoon Lagoon', 'SWEDC'), + (0xa76f9998a94dc11195857270635f0b11a8325b55, 'Facebombnft', 'FBN'), + (0xa772a8c5bb0d9723e3af07652c0d6ad1c5bd4830, 'Metatravelers: Nibiru Comics', 'NIBIRUCOMICS'), + (0xa77fc0793a514d148589b0f16a70fadfbe44360d, 'Raffle Heroes', 'RH'), + (0xa782573c0bbfb12ab4490b71dbfae3abd506bd22, 'ChubbyDogs', 'CD'), + (0xa78439d317fd5b95a7b5038ea36bafabfc71a407, 'PUFFER', 'DCL-PUFFER'), + (0xa786ab5f8814d10ac2e7f3bf1ff798ddd73e46c0, 'MetaVerse Wearables', 'MVW'), + (0xa792eee79dd3c8996b16a162cc6eccdd722ce79d, 'Holidays', 'DCL-HLDYS'), + (0xa799506e9e46d426b3e6d6163ba03e15863764bb, 'Ape Doodle', 'AD'), + (0xa79b6d92a182af203dc915582b1686fb06dd325d, 'PlusOneTrophy', 'POT'), + (0xa79bfd568f7ea941c47bf4dbdb9cfcb2d928e773, 'Prime Mates Board Club', 'PMBC'), + (0xa79f0be72ec323d4788019d5b787dd58c1f32614, 'Dallas, TX Silver Edition', 'SWEDC'), + (0xa7a38c02c087634af09ca5bf7c3bc1be6d56b450, 'Buzzy Bee', 'BB'), + (0xa7ae9d8c1085828c6000edf68576ce420bdce876, 'Creamy Lands', 'CREAMY'), + (0xa7b0952af28ad5bc435905990ff1bb7384813c4e, 'Antonym', 'A'), + (0xa7b0f6f9796662ee6b01386949f63e801970fb15, 'CartoonRaccon', 'CARA'), + (0xa7b171dafb07e1f08cd0b90e9979fb9a74a892b6, 'Orphan Mecha Series One', 'OMSO'), + (0xa7b3ed19dd6910537c0a96f8689bd6f17ba308ef, 'Syracuse, NY Silver Edition', 'SWEDC'), + (0xa7b7b429a5aecf2c1d68473234f76ef451860ebf, 'Local Footy Punks', 'LFP'), + (0xa7b974d3c6a9e46bae10c2dd599966be126cbdbe, 'Uniqly Collections Polygon', 'UniqCollPoly'), + (0xa7c7cb797fcdb01fac2cd5f1fa1089b5236ae51a, 'DePlots', 'DEPL'), + (0xa7c90390716f7d7d432b8752921c7ba82cce84a3, 'RoboterHeads', 'RH'), + (0xa7d61e3533e64c4c3882da14994d5fe4cbd20d6c, 'Good Morning News German', 'GMNG'), + (0xa7e48cbc0137104fc9ddeab6e8b5562651f26204, 'Golden O''Sea Pirates', 'OPVNFT'), + (0xa7e5057ba80d1895ba133eaeff839e1a4a728a3f, 'Mushrooms', 'Mush'), + (0xa7e901a9ecd7cfb2603f14fd21e9f184b30e9777, 'Nerdette Club', 'NEC'), + (0xa7f4db52fc27a3c35be198537d2b624f68ba23ca, 'Skizzards', 'SKZZ'), + (0xa7f6eba61566fd4b3012569ef30f0200ec138aa4, 'Metakey x Vogu Hoverbike Jacket', 'DCL-MTKYXVGHVRBKJCKT'), + (0xa7f8df3d059caa6aa5dbeef7db5f539f7a51c502, 'SimplysV2', 'SMPY'), + (0xa80228da064d723546550898a31b93cc26452f49, 'Richie paws', 'RIP'), + (0xa8058db9aae9e54e88d099a5bb998384735a7d58, 'Dragon Armlet', 'DCL-DRGNARMLT'), + (0xa80751a9d99c0893e431245d994560889aa6e3aa, 'The Backpacker', 'TBP'), + (0xa807cd6e0ce0543c9e34e53188a1882ecb7aae90, 'CATAMI', 'CATA'), + (0xa80e43871d70374a2108bca5aa599030f4a5dd6f, 'Mini Moais', 'MM'), + (0xa80f032a6a7b136dd3b90251b492fcf6c6709cc0, 'OutstandingOwls', 'OSO'), + (0xa814384e060f2eb79c9f3afd812c5fa6216deb7c, 'Howling Meta Wolves OfficiaI', 'HMV'), + (0xa81c8f1478ae16098f9c23efcd5eb4f9d30730ee, 'MoonA The Cosplay Girl', 'MOONA'), + (0xa81f8ec64256a87eeed9bbc6f7ce6dd40e373865, 'Only Hams Invite', 'OHI'), + (0xa826e7769bf0c712bff7b1b9e9031bfc36ed7758, 'Courage by Maryana', 'DCL-CRGBYMRYN'), + (0xa845963ae5913bfa00bdad6f264fd3e0ad3fb8e1, 'The one Eye Cute Monster', 'OECM'), + (0xa84e26a9c993e84c9cd5d5b5ba7ff05e4341c1dc, 'Sneaker Heads ( Official Collection )', 'snkh'), + (0xa8506ce07c15a724ee5f5f6f7e0c02498749c36a, '[DEVELOPMENT] Lu Kl2022-03-14T15:45:39.699Z 544215', '[DEVELOPMENT] Lu Kl2022-03-14T15:4'), + (0xa860a547bf8b9e56cc9fcefb3eb618f3890fe706, 'Crypto Planes Collection', 'FLY'), + (0xa8676285dfa04e84cf366d5e727e4d876e2c0b3e, 'Tail Waggers Club', 'WaggerClub'), + (0xa8683e7d89d72c53e3bea3c5c09797eddbeec072, 'Crypto Chavs Club', 'CCC'), + (0xa86ed484fd99283702db6b1b142d932e377b040a, 'Bubbles', 'bubbles'), + (0xa88e5cfa0257460490ce54052b4faee1b3d7f410, 'Borgs', 'BORG'), + (0xa8936463fa572df328f17363b0de7ffa2c6bee06, 'Stickmees', 'STM'), + (0xa89478cd905aad8bc19d8b1ebaf28a5244fa451c, 'DoodlePunksClub', 'DOODLEPC'), + (0xa897bffa221f93c534157943b1173eeb92e5186b, 'LAY3RS by TOM', 'LAY3'), + (0xa8997ce074bc73fe9ec40406734fe5528ead84b1, 'Eggcoticon', 'EGGC'), + (0xa89eb25b48fcffd09046b28293ed4c38f3031c3f, 'CyberConnect', 'CyberConnect'), + (0xa8a10d790e4e3cba85d503e31f29f402d4a93f31, 'ElonPHANTintheRoom', 'PHANT'), + (0xa8a3c4c95ae15c6e97a5e9965b9d4cf68a25cd35, '1 Million NFT', '1MLN'), + (0xa8ad8c90be6922e642ab6fb90e4e51bf87ac7219, 'DC Fans', 'DC Fans'), + (0xa8ae1dcd17ff18b0e4641093840bbbcac46918a4, 'Thandi', 'WILDEARTH'), + (0xa8b912e90ef26fec7553f665d1e774926f97930d, 'MintMoney MNRLs', 'MNRL'), + (0xa8bd3337ee2feea35c4663d622014dfe88eecbe3, '101010', '42'), + (0xa8cd8d995c8a7895ce543ffbce072bc1fa660e93, 'Nifty Souq Gifts', 'NS'), + (0xa8d20374fa1d295aad282d3d83e795715fae0dad, 'BlockDaruma', 'BD'), + (0xa8d4a697fa45b79f4650b294af97be26839188fd, 'Chase’s Real Signature', 'SWEDC'), + (0xa8dcaefeb4402771457e4f8d24f283a77a9f3bc5, 'Lazy Duck Club', 'LDC'), + (0xa8e012e23781b06ac298e64aeec05a93054a9382, 'InPUGnito Xmas', 'PUG'), + (0xa8e14525c4c59c262e1f026b0ac99eee8d81915f, 'Space Cat Balloon Buddy', 'DCL-SPCCTBLLNBDDY'), + (0xa8e8dbcab4ea3ef82db09803132ceb43da743579, 'Owely', 'Owely'), + (0xa8e9cdb4e76056a6ccd67a3e33c6b57e52ed8c42, 'Hogan x Exclusible FW Collection', 'DCL-HGNXEXCLSBLFWCLLCTN'), + (0xa8fcea42a4dd21e69737772973f0f0d6a62413c4, 'Django Dino', 'DD'), + (0xa90010d8d5d09788f57cd6e10a3b1db5564a803e, 'DVI 721', 'DVI721'), + (0xa901710bd0fdbf9a9bf9f6abb63bae088f998ed2, 'Chennai Maaplais', 'RAGECHE'), + (0xa901dfe0c00d7f3ce999efab7de7acfc0a99c37f, 'Mutant Squad', 'Squad'), + (0xa902ac07f93abcc108750c64361ba19a7d762d07, 'GEN-T35', 'GEN-T35'), + (0xa903495781edb8bfc956e84451017945dc5d8def, 'Prince Of Abyss', 'POA'), + (0xa90a110c81e9f2aacd08ffc6d24871908612be6f, 'HYPEVISION4K', 'Hype'), + (0xa90d5a59f148bda7988ec2793380819ab2ee53fc, 'Blvck Paris', 'Blvck Paris'), + (0xa9135c158d0c55a03ce353e986c40cb0db1750e5, 'DogeShibaNfts', 'DSN'), + (0xa920464b46548930befecca5467860b2b4c2b5b9, 'Degen Dogs', 'DOG'), + (0xa925f01440a30eb8ad2c44a31c658837cc54d43e, 'Raja(rt)', 'Raja the NFT crypto dog'), + (0xa9270ab54007fc6383fc518b0e3a46459b2dc3c4, 'Rastafarian', 'DCL-RSTFRN'), + (0xa9330ae6aef4880c7d0dc0e34abd057c1499feea, 'Nft Brewery Club', 'BEER'), + (0xa933eddb0649c9feec7b5197564abdf49647fc83, 'CHAMPS Basketball Team', 'CBBT'), + (0xa9340a3ccf1240be22dcede2e64777cd2ec12aa5, 'Capsule Rangers', 'CR'), + (0xa939e6a078d793d117a0613ec66c8bacd3ab35d9, 'Alpha Kongs Society', 'AKS'), + (0xa94f89aa6861dfd202d71ecdfa5ca6d56a1d593a, 'WNFT', 'WonderNFT'), + (0xa9550793c934eae402c9e12de1ed61f772b8f3fc, 'World of Jobs', 'NFT'), + (0xa96475b54abe282862d5f9cfb72e2f54ee193490, 'Sobriety Squad Token for 30 DAYS of Sobriety', 'SBR30Day'), + (0xa96f7f2102c27a61e3a660d964e9aa613b68fe6b, 'ICE Chef', 'DCL-ICECHF'), + (0xa97c537371ad8b10cd71e1c9731f323407684be5, 'Security Guard', 'DCL-SCRTYGRD'), + (0xa9810db43691811f5ca00c051e0ff370843fb366, 'Blokpax Vault on Polygon', 'BPXVAULT'), + (0xa989e4be9ecfe84c3f37e2cf3a2c354f72a2b95d, 'gothic lolita sets', 'DCL-GTHCLLTSTS'), + (0xa98a7932660815ce6b8bdea07e611d6d377f1cfd, 'Xrugk Pioneers', 'XPNR'), + (0xa98d76deb9f6163aecd76ba8f62ab26acc85ceaf, 'Meta Motor Friends Key', 'MMFK'), + (0xa98e43ed979bcd403230de2e3ad5e5b8106b05d9, 'Crypto Beaner Frenz', 'CBFNFT'), + (0xa998ea3b13aae607d5d00b9d427fab012e6194cc, 'Crypto Taurus Kings', 'CTK'), + (0xa99c7860416205c433c1486e54583c09a658602d, 'Chibi Labs Shoes', 'DCL-CHBLBSSHS'), + (0xa9a4047ebd8dca305d9c5110027665180157bd7f, 'Ambiance Jars', 'ABJ'), + (0xa9b62bee64872f61bee28730c388db7b675a05b7, 'Hide Articles', 'HIDEARTICLES'), + (0xa9bf8271df7721d9fe6485e59b74118ae06b2bf1, 'Phoenix, AZ Gold Edition', 'SWEDC'), + (0xa9c8fce70b19b9f354de7e61ece761da76d92b66, 'lostboy', 'DCL-LSTBY'), + (0xa9dc00cd281c39ab56976343af311c1367ac595a, 'Cincinnati, OH Silver Edition', 'SWEDC'), + (0xa9dfc253d1336870fcadb7b31bb1b9e2a62dfcf8, 'Metavaders Starships', 'MVDRSHIP'), + (0xa9e6fbf8e23c623711bdbf6821d4457603236d94, 'CryptoFraus', 'FRAU'), + (0xa9e9e93b70293dc483afc000be257661dd7af552, 'Metroverse Official Polygon', 'METRO'), + (0xa9eb230368203aed37da36123f736acb03086c8c, 'Supreme Turtle Collections', 'STC'), + (0xa9eddd3d725d03bd4c80186ef313e467678b7e96, 'Samsung 837X You Make It Collection', '837xYMIC'), + (0xa9f0da54b5e2b97e3d62b92e813cb4e71a348809, 'StrangeGhost', 'STG'), + (0xa9f512d9d615f76f84d78e6eaa842b2633229ad4, 'Silly Jack', 'SJ'), + (0xaa025784125b0c34d84666e8fec5ffba9d962fbc, 'Phantom Frens', 'PFNFT'), + (0xaa03c1e05e34f45c8cc3350f425642b4e4d36955, 'Smart Mongoose', 'SM'), + (0xaa05d39b5557885fbc13a5ca70a9e6633b9c5748, 'Avocattos Collection', 'AvoCol'), + (0xaa0f2908f3e943be2f37df73ad92956dcadba94c, 'Blunt Bros', 'BBROS'), + (0xaa108023f8ef4fbcc50f4287e168fde16a2ffde2, 'Sneakerfreakz GENESIS Drop 1', 'DCL-SNKRFRKZGENESISDRP1'), + (0xaa1d4e168c48cd431481b28d766b6c9b9ce9768f, 'HelpfulBabyClub', 'HBC'), + (0xaa1fa6bf5e8226d9c44099459dd24f2898ceee71, 'GedinSaurS', 'GDS'), + (0xaa29db162b40ef431a5d1cdce0e13b0b02ad556e, 'dine brass beat.mp3zdm3u.mpeg', 'OME'), + (0xaa3b33f20454598c8d5786bacea8a8eb003d1960, 'GOVBALL', 'Governors Ball'), + (0xaa3dccd7972578bf3faef4ea59638e037789fc17, 'DapperDinos.com BREED', 'BREED'), + (0xaa3e3709c79a133e56c17a7ded87802adf23083b, 'Profit Maker', 'PM'), + (0xaa44745b7c72617e36c25c3ae0629cc284332118, 'TiliaEarth', 'TILIA'), + (0xaa470ce721501ec38508257fbb42e111be82d0f5, '0x049fc1566cA475cFF1721201Bf7F8C7C0810DF5E', 'Xfc'), + (0xaa4bb3952b429075f2216ec987968dc18c6dd9d1, 'Wooshi World Merch', 'DCL-WSHWRLDMRCH'), + (0xaa5180cefd42278617e235d44692d6f8187fe0ca, 'House Builders', 'buidl'), + (0xaa5366078b4b35847cc2099351a4a755dd9f5ab9, 'Fearless Flammable Firetruck collective', 'FFFC'), + (0xaa57899ae8ebd56c05700246e9f16906a7e4ed4d, 'WeirdBoxes', 'WB'), + (0xaa622ba79083be6bbe5f614899e8c16acf494281, 'Crypto Jokers Official', 'CryptoJokers'), + (0xaa6980b1ebbe08f3caf964aac305344f41fee59d, 'PolyPutin', 'PPTN'), + (0xaa721e593b455b053e6e76aa6f10bf0e9b4370ad, 'Albany, NY Gold Edition', 'SWEDC'), + (0xaa74c0d812c6387881aacd3dc850a91afa773558, 'Crypto Cupids', 'CCPV'), + (0xaa86dd450cf233e1afc93215e38b0cbfb35520f8, 'Shibapunk', 'SHP'), + (0xaa8808b1bf3dd54f253f005ea17f0d0153966271, 'New York City, NY Gold Edition', 'SWEDC'), + (0xaa8b028841d4a80ae77974b2c9ad310485d83026, 'InterestingGuys', 'ITG'), + (0xaa8c6b9d67149439680b67ce395c4ac2d233b6de, 'Hero Galaxy: Artifacts', 'ARTIFACTS'), + (0xaa9475f83f6fdb1416270447364f9bd70e41fb21, 'SPKZ Bar', 'SPKZBar'), + (0xaa94963d714924618e93ff68609106672862c05e, 'pssssd official', 'pssssd'), + (0xaa967cfffeb3bf55934c06cdd38ed73e65a322d4, 'CROMULON Schwage', 'DCL-CROMULONSCHWG'), + (0xaa9ae167c01756422720accfc184ba2c44b80892, 'PlanetWomen', 'PoW'), + (0xaaa189d34f64639b23236c9a8bfb35a230a7e00e, 'MigMig Punks', 'MMP'), + (0xaaac60abcd2f8ef1bfa0e2f6b76c7647e1e95052, 'The Pandaverse Club', 'PANC'), + (0xaab08a09cacfbb740b363f7c6a44b37aba7b598e, 'GEN-H03', 'GEN-H03'), + (0xaab4600ee35b413573cb47bb0df5dc327c9c3431, 'Founder-Key', 'FK'), + (0xaad51e4820524ada8440a70f28b1fd0e5b92ef07, 'CryptoPandaPosse', 'CPP'), + (0xaad63cf9c9238734eba2157e7a1aaa7847ffd8b2, 'GUNKDUMP', 'DCL-GUNKDUMP'), + (0xaade03d2b9cc50b7d0f89009ac65ed856b6ed69e, 'Legends of Asians OfficiaI', 'LEG'), + (0xaae4a5d9c501a9cea7b59b9b1afb0acf2093f093, 'NFTs', 'NFT'), + (0xaae9e064fbf135c5855c1db7ca07b64aec6634fc, 'Kitsumon GEN-0 Potions', '$KMC GEN-0 Potions'), + (0xaaea72becd8dadfa0ebd7b00bf7d8ca21b807d7d, 'Dreaming in Sci-fi', 'DSCFI'), + (0xaaebf4fd364698a49fd3ce2a201bd1de16021016, 'Brainbot #99 Tanko-B', 'SWEDC'), + (0xaaee4e0ea3de22dfc960a7f9c8bbd22f7081c5fa, 'MetaZoo International Toga Party', 'DCL-MTZINTRNTNLTGPRTY'), + (0xaaf4c8c92f7556269bfe5cdadd5fc0cd146b1f45, 'mhu', 'HUM'), + (0xaaf8759af082eb43899c0f67ada23e2e9e27653e, 'Itadakimasu Man', 'IM'), + (0xab0727a305127dffb2ba64b789e6a353fba73eec, 'Umbrians', 'UMBRNS'), + (0xab0b2a0a279b6d3a99d9398148bcf45ed40bb2a7, 'Call To Humanity', '$CTH'), + (0xab0e220af918cdda66e8c01c8f8c35f0c799825d, 'Mannequin club', 'DCL-MNNQNCLB'), + (0xab10d813320e47d3cc8585a8af2ec3716685bd29, 'Crypto Elephants Junior', 'CEJR'), + (0xab10df4e211f2ce17e809c3b26a444dc67f3c604, 'Monstasnare', 'Ms'), + (0xab12c03a612dcfc74ce8815e27af50617159072f, 'fMetacat', 'Metacats'), + (0xab1b8fdfbd243271bd52f530ba03a97256ac9436, 'GG Cape x Fur Hood', 'DCL-GGCPXFRHD'), + (0xab1bb696267916c315b503fac59082b398e007ee, 'Blanca Alvarez de Toledo', 'blanca-alvarez-de-toledo'), + (0xab2ac989fbae99a771034beb25ba2bcce586dfba, 'Polygon Hape Club', 'PHC'), + (0xab311120f06fdc024b78fb521081af6c111d4604, 'BFlakes Lollipop', 'DCL-BFLKSLLLPP'), + (0xab33b10db1cbb9030c17b8331f099e465c02bd23, 'Sa-De', '3K'), + (0xab34c64f7b7bd4eb7d311536c77652784c3a748a, 'The Defiants NFT OfficiaI', 'THE'), + (0xab36b2a020012fd005813fcfdf5c18937f1bd890, 'Lucky Blades', 'LBNFT'), + (0xab3b395724eb9b3e773a182f5219f5abb15df5d1, 'Kahiru Genesis', 'Kahiru'), + (0xab3bdff42d29ee4aa3a7ac438d1beda5493ab2de, 'thetimekeeper', 'THETIMEKEEPER'), + (0xab3fb84904dbf0bed62be0b398651f0519a949f7, 'ttttt', 'C'), + (0xab4b922abb27e84ed412344c564119b24b88bd48, 'VeggieverseXfinvisible', 'VXI'), + (0xab4cb2556feb9235a7953ce64c60c1035b918217, 'Moywuu', 'MYW'), + (0xab4e09ee35ff3f8336dfdee7ba4af6b90c84fd1e, 'NFT Garden', 'NFTG'), + (0xab57d22f65196e8c11c66829987bf5ecce6c81b1, 'Bored Cats NFT', 'BCN'), + (0xab601d1a49d5b2cbb93458175776de24b06473b3, 'RoomMembership', 'MEMBER'), + (0xab68703a01cf96e63d0c9975df250ae7b3118fe2, 'Lepasa NFTs', 'Lepasa'), + (0xab68ca4b6cdb63922c818299163fb79eee498ff8, 'I <3 Ukraine', 'DCL-I<3UKRN'), + (0xab71181a617011afe18f3286b8c0b9351c2774b8, 'Constellation-20220201', 'CON'), + (0xab7bfef2455e6df2d49c3f689e5a54abc692f71d, 'AstroCats', 'ACAT'), + (0xab82e52b066782fe9594ca11465f8b332dfb074e, 'NEWNORMAL', 'SCIENTIST'), + (0xab874b79eb37f98614a169484fc2747bd34c6642, 'HODL Hearts', 'HHNFT'), + (0xab98178f234b7238b308981643596e8c7cada78f, 'Balloon Crypto Pet 2', 'DCL-BLLNCRYPTPT2'), + (0xab9e22d7d0e93ddae3c2e7008adc185d7b446812, 'SillySheep', 'SiSh'), + (0xab9e9ea66034eec463cbbed9cf0bbdeb7cf4ef07, 'Simply Basketball: Battle of Norcal Senior Girls 2022', 'SIMPLY_WBB_BATTLE_2022'), + (0xabb0ca6ee85825f6d7f549ef36bf571484c157c5, 'Hypno_TV', 'DCL-HYPN_TV'), + (0xabb10b69ed9e9e52a0b55e48119ec8941be09e36, 'Gotchi', 'GOTCHI'), + (0xabb89f75ac066848ecd3b46779df3a5263382bd7, 'Contract Name', 'TIC'), + (0xabbdef8d3d4c2cf39d502308e7a465b7aeb026a3, 'Poker Chip Shades', 'DCL-PKRCHPSHDS'), + (0xabc2a14ec8e96faf4c6a303d8c0842569648eb19, 'JANSBOY', 'JB'), + (0xabc99f830a929bd2dc53895d4c14e446602a2f86, 'WeirdMedicologyGenesisEpoch', 'WMGE'), + (0xabcb9a9c0c1010a653a9cb37a2f065fa61e07f19, 'Superlative Mutated Apes', 'SMAPE'), + (0xabd0cd106f548eccbadc8468095174501769d597, 'Sweet Harvest', 'SWEDC'), + (0xabd4fa6056a063e493e2c84326244b917832423f, 'Crypto Ninjas Of Uzb', 'CNU'), + (0xabddfa8a589379175bc039dcb925aebddd8c0317, 'Baskerville Club', 'Basker'), + (0xabde439a20dc4ded77dcb374581e573dcf251b2f, 'Warline ART', 'PP'), + (0xabe3bcff1187da0abfe803300210177d93c89b05, 'NFT Diario', 'NFTD'), + (0xabee8e0448008215ec4a714f73107ec44d29143d, 'BubbleBrosLEC', 'BBLEC'), + (0xabf479e9f33676cf3ec03babf3aa80482bbd306a, 'GossApe Girl Official Polygon', 'GAG'), + (0xac09e465e2b05f4441a95938a478772dc539a6c3, 'Mint Couture', 'DCL-MNTCTR'), + (0xac118fd001b80847d0965148901ef65f17cf0fba, 'Froggers NFTs Gen 2', 'FRGGRS'), + (0xac12e94c95a924bde824b2ea228db50ac21335a9, 'GrizzlyBearClub', 'GBC'), + (0xac1d07883f936d78239e6766dce43fd53a68fe38, 'MetaKuza Polygon', 'MKP'), + (0xac2f00341da098b23b71c36252e2b87a9f81b9f2, 'Clipto - Gabriel Haines.eth', 'CTO'), + (0xac31f6537614f79e7e71959366e2b0f498fa2e6b, 'Sweeter than Candy', 'SWEDC'), + (0xac3b666704ec025b2e59f22249830a07b6fb9573, 'Copacabana', 'DCL-CPCBN'), + (0xac4249d95a4d97e0bf9573432fec604450bef48f, 'Shadowfied COOL', 'SCOOL'), + (0xac4b138efe55b7f5d54e62a4b197974c7e705625, 'Yugimon Charizard MEME4Fun', 'Yugimons'), + (0xac4c25b02420e817cc9dc4e96c9877c82521d167, 'PsychoPerpNFT', 'PPT'), + (0xac53bb0ad7dceb44219b46a1b05e0373a9063ec3, 'SNS', 'SNS'), + (0xac57559ab1d67373c49d0313116befb99d6a7bbb, 'KItsuneMoonMask', 'KMM'), + (0xac6053bd6fc3defa155b9df1af9d1ce919c23893, 'Rario', 'RARIO'), + (0xac73837045b6d8dddce26b3c0099e31ab31c81cc, 'Tulsa, OK Pop Art Edition', 'SWEDC'), + (0xac747fb142239ae762dd6a48c5a4a6112c1a6557, 'Maleta de Viaje Willyrex', 'MVW'), + (0xac770313f0a89a19e26ac914dcf592604ec42b15, 'Guerrilla Music x King Mizo', 'DCL-GRRLLMSCXKNGMZ'), + (0xac80cb5892218072c107b76cef92f51c6d3c8899, 'Meta Ape Collection', 'MAC'), + (0xac890698b64074ff07c6fed425def7aaad9889eb, 'Biker Mice Club', 'BMC'), + (0xac8df6b9fda877dc2fa244b070e3e7c38425fac7, 'Panda Pals Club', 'Pals'), + (0xac932751992fe921f9d3944729d204491278dd64, 'Metaverse Elite Armed Forces', 'DCL-MTVRSELTARMDFRCS'), + (0xac964bbc426cb7950ff8db39c88da4d16b7a70d2, 'The GINAS NFT', 'GNS'), + (0xacad20ca54e173d24735035a725a7d1aca60d7a3, 'BusinessBuilders Factories', 'BBF'), + (0xacc715915f0fbe5c4d356d1155d9edb5fe72dae3, 'CryptoSteeve', 'CSV'), + (0xaccdef0cd3ae2a8890a1ec076fa4bc7b1933a889, 'jokerdeep', 'JKN'), + (0xacd8ab66f2ecabf27b27697a4a1b9e3e7d4f4768, 'Emojist Girl', 'EG'), + (0xace26f5308e63dc52ce0ce2417b39a889f527d60, 'The MIC', 'DCL-THMIC'), + (0xacec480ecb43555e288b66258a7f0f62bb829476, 'RugpullRebellion', 'RR'), + (0xaced9f8add32fbce0672b180590a801b050748cc, 'Nuke Odin Valknut', 'NODVK'), + (0xacf2512050e9054f3fe2b7008c1887adef038636, 'Fusion Wear', 'DCL-FSNWR'), + (0xacf857d652c6f42ec0b99c01ab6b9e8295db01e2, 'Space Pals NFT Collection', 'SPCPLS'), + (0xad06ca0d331c86dfb5598bd958691c5a195d7764, 'EMOJI SUPER MANA-FLASH', 'DCL-EMOJISUPERMANA-FLASH'), + (0xad1308c82ce4978d14c7433cd6ecf366894a6e08, 'Verse of Ghosts', 'VoG'), + (0xad174a15a49cf0073bfbd9b13045e4e8f2205cbd, 'Nft Hunter Access Cards', 'NFTH'), + (0xad188a71ba6564434292213445bfc16acee5bb7c, 'Garden Gnomies', 'GG'), + (0xad1a9b4fb7a4cd7a5ede4a2a677d04f3fe98a1a4, 'NFciTy', 'NFciTy'), + (0xad1af1b86d70d76aa94a61d2754d25ba1897c03a, 'Fanakapan', 'RKN'), + (0xad214b213c7d021abd16c0d7ac62c6403d8b4225, 'Dazzling Dogs', 'DAZZDOGS'), + (0xad30d080e53c54eeaf0d9b632f1ee80f9d0c46f0, 'Dood Punks - Official Collection', 'DϾ'), + (0xad31a2fcecd3689ec3698095c179fb9e759e502b, '69 Heart Speech Bubble', 'DCL-69HRTSPCHBBBL'), + (0xad33b705c0de2e8d77a6f717fcbeaafbbb60c1e2, 'Capybara', 'Capy'), + (0xad3b2e003be7e92999eb3f16c25dc00d13a942cb, 'Cyberscorpio', 'DCL-CYBRSCRP'), + (0xad4ac924fa4238bdb40f6c5e9ab6e93cbaa71be0, 'NARGUSsMidway', 'NMID'), + (0xad4b0d603171eff48feba79fe4c9ee447c303dad, 'WAGYUBEEF', 'WGB'), + (0xad4e9712537112c85b761806c14534e8cc245f0a, 'APY Vision Subscription NFT Unlimited', 'VISIONNFTUNLIMITED'), + (0xad507f2c7c7c37deba007d01bba64ef8175d55db, 'My Photos', 'PHOTO'), + (0xad51db209028d84baa073fa363ed8b1917c50b82, 'Letchumi Love 2022', 'TTKN'), + (0xad59ecb77033391e847cc96829b08beb83151088, 'FancyBirds', 'FB'), + (0xad5b284e97316ef5437c1241a79c303ed1711ca2, 'Boogie Bot', 'SWEDC'), + (0xad619a57bf8211568199468ebbbc70463b2c9c63, 'PICIPO721', 'PICIPO721'), + (0xad620945a62d3b1c7ff40df1d01fe68bf6d58e3b, 'Adam Bomb Collection Winter 2021', 'DCL-ADMBMBCLLCTNWNTR2021'), + (0xad634d714527d07ed14639990ed5996d97e15956, 'Shyro NFT', 'Shyro'), + (0xad66c37614f24ad2dbafab6918eaf6baa5cc9fc6, 'RedKiteNFT', 'RKN'), + (0xad717e31acfed7004dbbde98090614fe3a925d18, 'Bored Pigis', 'BPNFT'), + (0xad757f0083b8a4005ca898bc40c0d70b60a32b26, 'MISA ART', 'MISA'), + (0xad843a989f65b1a7a8188c413855710076def162, 'TequilaParty BottlePass', 'TPBP'), + (0xad8b5c64794be252fffcbcc349baecac425bb046, 'Cat Citi Punks', 'CCP'), + (0xad986073db81af029cd9ba0a63c244bce7bbe2d1, 'DG Holiday Partner Gear', 'DCL-DGHLDYPRTNRGR'), + (0xadb84273fb50a81d6b02ebe9beaa1bf575901321, 'UkraineNFT', 'UNFT'), + (0xadb9925bf96e75ddfcbce4f2f73c46e9ef739324, 'No Transfer', 'Icewater'), + (0xadbeb07dd5a7185cb30490cc6713618004db88d7, 'Fun Guys (Arnj Joe X Tangpoko)', 'DCL-FNGYS(ARNJJXTNGPK)'), + (0xadc4a2756c724110e7dff29a21387aa041b37d26, 'Agents Of Metaverse', 'AOM'), + (0xadcccd3d5da8bee793bc5be9e837a0770224c92b, 'HAMMER APE STUDIO', 'HAS'), + (0xadd115f421f4884c14bc3a9b72caea3daaeb9094, 'TenshiGirl Founders Run', 'TGFR'), + (0xadd2e19e2e9966986e17aefa783f632317350ebf, 'Louisville, KY Pop Art Edition', 'SWEDC'), + (0xadd414163a3a05e4c039cb76ca699b0a9d1ea4f4, 'CryptoCloodleZ', 'CCz'), + (0xaddb5831c98d4ff267e65ec65e6b84643541ed52, 'TheEyesNFT', 'ENFT'), + (0xaddcb4a5b2095f26a489e5c2968417fb428852d3, 'GEN-L11', 'GEN-L11'), + (0xaddd21d3246007a6b70157ed82d3465c94dd712e, 'Cyber Aussie Bears Club', 'CABC'), + (0xadea18da0af0ab14900a5634eddf5a83513cdce0, 'DeriV2 Liquidity Token', 'DLT'), + (0xadf435985029ba693430f6abf43651d84b07c6de, 'VAFFA_CELL_MYSTIC_NFT', 'VCMNFT'), + (0xadf74c69620fa6ea8e07c4ae9fc933f9710e130d, 'In memory of George Floyd', 'IMGF'), + (0xae03027ec17f865c245b088589eae6288174bdcf, 'DwarvenKnives', 'DK'), + (0xae05f88a233f3dbecca9370572dc6bf7769da1fe, 'Supercool Pixly', 'PXLY'), + (0xae099e89f4b0110deab061daca0abde629720c4f, 'Boss Cat Rocket Club Z', 'BCRCZ'), + (0xae0a8aaaf4ebcb51b4937133cabdf6c13662cbf4, 'Brainbot #38 Sayzar', 'SWEDC'), + (0xae0b82045172a7e97ad0b8f5874f78662bb801b6, 'InversePotion', 'InversePotionNFT'), + (0xae1190b496b4b4cc7d10c2c977eb60bf5e0cf3dc, 'Bored Eggs', 'BE'), + (0xae229d26e4a5fad4cc3f99aba1897cf06a992490, 'EVRICA', 'EVRC'), + (0xae2453aaf433428e74037420446daa5d99364eeb, 'Meka Guardians', 'MG'), + (0xae30a4535278b1e399efe1965be01d19d51ec3ad, 'BSPLabs SC Tutorial ID', 'SCTID'), + (0xae31389c9f22bad0c4f37c86081758e5db8d8b59, 'CryptoPunksPollyVerse', 'CPPV'), + (0xae35a17609a0580f9a0d835726d2db3040015379, 'What The Hot Dog', 'WTHD'), + (0xae3d6cbe10cb4a0947c5e8362efb2802ab5098ab, 'Polygonal Mind University Jacket', 'DCL-PLYGNLMNDUNVRSTYJCKT'), + (0xae436b8b6402090aa8b66a97770a195f9f2ced60, 'Poly Galactic', 'PGHUNTER'), + (0xae473ded66fd0b2b99039f7d0ddd8e66beb485b8, 'CyberRonin Jacket', 'DCL-CYBRRNNJCKT'), + (0xae4fcc83ab50c06ddba606563e3046e38caac9ec, 'Galaxis.xyz Community Core Pass Alpha', 'GCCPA'), + (0xae561bf165053f3dca25c816e4ba0f94cca7b2e5, 'Goku Prime', 'GKP'), + (0xae574baadf3955bda58c2cefd06086908ff599e6, 'Non-Fungible Prophylactics', 'NFP'), + (0xae5a5a25e5c8004d1c13afb81bc8787556c06065, 'Beet Wings', 'DCL-BTWNGS'), + (0xae5fbc5ee2327a54b22aa5ff8d68e4cc00b224aa, 'Royal Babies', 'RB'), + (0xae6057a2c6a2b1640b053c794dd0df08c67d534e, 'Squid Royale', 'SRT'), + (0xae61a11a575d30b0208f19595a0a8c017d51ffb8, 'Ucello', 'M'), + (0xae62b9f7fe70ad285c95e4eb1db7d3818f89075d, 'DCODER', 'C'), + (0xae685c8b908bd654edd3e9fadc503a5d1dbe9af8, 'The Royal Stickmen', 'RS'), + (0xae685d9a353f2a9e14aa57fcf3ee8d043e7b9443, 'Try2', 'T'), + (0xae6eaf55cfba2219ba119ebe7570d03c8f4c3c29, 'BoredPunkGangClub', 'BPGC'), + (0xae7107ff3bc7f48ee8ed8f2ac381fc23eda00094, 'Baltimore, MD Pop Art Edition', 'SWEDC'), + (0xae7430399768307f15214834fc4844f358f6d03c, 'Shit Punks', 'SHITPUNKS'), + (0xae7fc3dac081374dcb90a85eb114438d102ba5db, 'Evilgotchi', 'ECHI'), + (0xae8b1792a5f9b38de7f5070b17ce1db68ad24cf5, 'Chinese traditional clothing', 'DCL-CHNSTRDTNLCLTHNG'), + (0xae9bb38f73aadd84e55eb38dee03095a4afc14af, 'Shamanzs', 'Shamanzs'), + (0xaea227ad4826112a5f392e11ba599cdaca86d831, 'TechM Metaverse Launch', 'META'), + (0xaea649ba522c5a501d8a4881172e6ab50a27a4e8, 'FDS Allegiance', 'Allegiance'), + (0xaeb5e808401b1c89602194a0dbc166a935afa9b9, 'Skull Candy', 'C'), + (0xaec630501589a5a6801b4b658821b6b647923ffd, 'rebelsbynight official NFT', 'NFT'), + (0xaec71597582fcfda2f01825e4fce0be66f988a8b, 'Zion''s Landing Universe II', 'DCL-ZN''SLNDNGUNVRSII'), + (0xaecce7dca86a6b54f2a049e18aa7942f5c7d7194, 'CryptoSkeletons', 'CS'), + (0xaed0dd4e451c71147f9f35c96423bbe560340b3b, 'Black Lives, Black Art', 'BLM'), + (0xaed749ba8869ee46f1e12853fbb8c66cb88bb80f, 'Jan Guest Pass', 'KEY'), + (0xaee07783c426a89262e0073d58eadd19a3456d8e, 'Snoop Dogg On it Vol 1', 'snoop'), + (0xaeebaef1047597a3654bc67827afb4255f80f7a1, 'Enchanted Bastards', 'EB'), + (0xaeeea1a2eb62ff29c12e67852f8167afc5c549ea, 'SKELE TON', 'DCL-SKELETON'), + (0xaeef4ddef1326bac7a080d01687e132f699d5b6d, '3D Xolo', 'DCL-3DXL'), + (0xaef2b3d095161d0e4186606ea9d927734e46d0c0, 'Cool Friends', 'Cools'), + (0xaefe1d45f9ffa2f0237c2db5c3fee9e64cb9a066, 'Ninjabirthday', 'NB'), + (0xaefedde1ebc18c9f382f613fdf09867f308c19a7, 'Ninja Mfers', 'NFERS'), + (0xaf0459c2aba429f75c99e6238c7a8470db99e252, 'Simsalabim', 'Simsalabim'), + (0xaf1280b0996ffcb2dbcfd4b33fe974fb8c2ae100, 'Psychedelic Anonymous Genesis Official Polygon', 'PA'), + (0xaf132f67fba76139d03c998be36109de74d717ce, 'Flames!', 'DCL-FLMS!'), + (0xaf169495d376d3c491b1bcae5c988c877ecc54f3, 'Rave Moonglow Tank', 'DCL-RVMNGLWTNK'), + (0xaf17b9c85f4ae7c130b50e289155861dee1dfcd8, 'Baby Ape Bone Yacht Society', 'BABYS'), + (0xaf1a3b422617248c169ad4e997025f0bcdcfee97, 'White santa hat', 'DCL-WHTSNTHT'), + (0xaf1ef335e13b513fd297de70375db99da3393c7f, 'Token Jeans', 'DCL-TKNJNS'), + (0xaf2413edee5c7b4a4d9eef8ee4dbb75b689e81d8, 'MetaBoggz', 'MB'), + (0xaf249051c1e7b857808688e45b71261c27ee7a0a, 'Unknown Soldiers', 'US'), + (0xaf25249e6d3af3686437bf0292e1e69c4ab3bde9, 'Another Membership', 'KEY'), + (0xaf30b68045194e9ad55edb050ff6907d78b36287, 'WorldPeace', 'PIWRLD'), + (0xaf35bbd12c8fb901a66483c2742dc7ba07e49f58, 'Panama City, FL Pop Art Edition', 'SWEDC'), + (0xaf402e4f59e2f549370d564c734eb6d6a394f53e, 'LAOTIEX', 'LTX'), + (0xaf47b8e62d595bc02c7e13b9ab30814ccc8dca51, 'Monkey_Kron', 'MK'), + (0xaf4af2d5226067a9bfbe9aadec6c08d359d4564e, '420 Fam NFT', '420FAM'), + (0xaf4ffc725b047a96a8b49592d65c4c53289dda29, 'RenoPTG_AGI', 'RPTG'), + (0xaf5d3183de674004bcd656afa2dacd3b31eb9696, 'UnderworldWeirdos', 'UW'), + (0xaf70d629344105000ee5a437092f9c52b5a2eb51, 'Crystal Wings', 'DCL-CRYSTLWNGS'), + (0xaf72a517809e31382360697c5f6edd31e974d653, 'Ballz P2E Game', 'BALLZ'), + (0xaf74127bb8ea49b3f4552945e7275f0f49e90640, 'Architect', 'ARC'), + (0xaf7688cb6ad6648cf4940a428067aa5955f47751, 'LABO', 'LABO'), + (0xaf77c70afc91ac3dec3becf2a609bf7df06b18f1, 'Invisibles', 'BDPCI'), + (0xaf79f89700301b293c6e0b70ff1038f44c21b575, 'CommsaurIslandsMVP', 'COMMxISLN_MVP'), + (0xaf7bd06e6ae8dc0eb89cff28b1a34f2dde79aba7, 'Fartman-SuperHero', 'FM_SPR'), + (0xaf8fcce9e11ad9337633242f8bb8448924447675, 'Demeter''s Gold Thread Collection', 'DCL-DMTR''SGLDTHRDCLLCTN'), + (0xaf90522976858031e58c2a18222f986a70e7d76c, 'Echo', 'AWNFT'), + (0xaf99273b9f1e20d28af9dccdd1ca5bfbb260abc2, 'Pepper Attack', 'Pepper'), + (0xaf9ab91bfb61323fef9871332cb42def22099391, 'Tempel Tuttle City Boots', 'DCL-TMPLTTTLCTYBTS'), + (0xafa254987cf98a36feaae267339e44ce5c28a3d7, 'Mister Don', 'misterdon'), + (0xafa509de6b44bfa175380578741b7cb231c87a9f, 'Stuck in another dimension', 'Stu'), + (0xafadf8873820e5fc70eb5e5fa6838d04e7cea9e3, 'Polygon ArcFaces JavasScript', 'ARCFACES'), + (0xafb561fba1e70ea459158cdd0b2d407d959a36be, 'Apes 3D Backpack - Halloween', 'DCL-APS3DBCKPCK-HLLWN'), + (0xafb73ae89e75038a6abb778cb0ee7d943bf2927a, 'CyberOctopus Oracle', 'OCTOPUS'), + (0xafb9f2e60e5c3773cbffc1ab9345490e04e697be, 'CHAMELEON EYES 2021 ~ FROM OBLE', 'DCL-CHAMELEONEYES2021~FROMOBLE'), + (0xafbe1b1408e7a533435a80127d8549dd8dc7e68a, 'Kyubu Pixel', 'KYPX'), + (0xafc6a120554e6defa765eb48d4c463bee10d9d7d, 'Store Ape Club', 'SAC'), + (0xafc6e2c2d0183cdb27d5a2d99484be8ffba155cf, 'SPQU Of Uniwarp', 'SPQU'), + (0xafcad67d26c7a4b12eff88c6d76ee13b007265a1, 'CryptoCoolElephants', 'CCE'), + (0xafd18448f9963b185062cd3d00da000a23244b77, 'Hungry Hungry BAABBoons', 'HHB'), + (0xafd1d572bfeab5958e081926cfcf24ebd6630e33, 'Baby Zombie Apes', 'BZA'), + (0xafd3ba5230f8fde7161010591dd0948b7fab5980, 'Sweetbot', 'SWEDC'), + (0xafe557129720e8b28dd1a96d94536fdefdb27615, 'Quick Drop', 'SWEDC'), + (0xafe731dd8cb26612f8089cd9ee73088a91766c10, 'Honolulu, HI Silver Edition', 'SWEDC'), + (0xaffa4858a1ffcdf7865998540331a79559e3b4f8, 'fMetacat', 'Metacats'), + (0xb0074248e75adf114eb864f8ca864a937b9dd526, 'ImperiumFinal', 'APES'), + (0xb009718241d801b766ee561137e962bcdde49449, 'squaremen.xyz', 'SQMEN'), + (0xb009cafc5cc0551df9b682801980b1f1a9b41bd8, 'BrinkWear', 'DCL-BRNKWR'), + (0xb0209b59f4c5ab69a9ec5e6659aa9b36ec838bde, 'ZombieLightning', 'ZL'), + (0xb02736d4b7c8c92e74c517fa323dae3210fb16e3, 'CoolSquirrels', 'CSNFT'), + (0xb02b89ee5a1a110995774f9505aad3f585db5617, 'Welcoming Cats Save Ukraine, Stop the War and Putin!!', 'C'), + (0xb02fedaf4fca9017b9fce7af3ece88152d33ed51, 'Buddha Labs', 'BUDDHA'), + (0xb0364eb6580ebd908083ca9fef451c5a8a386ef1, 'Royal Armor', 'DCL-RYLARMR'), + (0xb03a08dd6610fd5cb8426dd549a45e6216f67dff, 'PIXEL Demons', 'PD'), + (0xb040d1f176c2772f9b693e45eca8f5286fcfdb40, 'QRishin', 'QR'), + (0xb0411e0dffa42d309726efb545cd86e6aa3c2cbe, 'Kosher Pig', 'KSHRP'), + (0xb0420e7d06064f3a0b388754f809155e05832602, 'PoG Pack', 'POGP'), + (0xb04906ca067016ac3674067e03dd2c55f7faa231, 'GossApe Girl Collection 2', 'DCL-GSSAPGRLCLLCTN2'), + (0xb04a8d9c2442ef83e6154f93f430ba0c7f213e28, 'PublicRecord', 'PR'), + (0xb04d83a235c3429a801f267a51b817fd9b6519f3, 'HalfSucker', 'HSNFT'), + (0xb054346dcdc54f93f19dffcef5813a39413f197e, 'My Collection 4HPPIaWYY0FdaLm6cGpt', 'my-collection-4hppiawyy0fdalm6cgpt'), + (0xb0616ec643e8d726252bf3632e064c84e3643aba, 'Baseball Cap', 'SWEDC'), + (0xb063e1356b69a65f5ae9854ff18d2a706dde56e3, 'Collection Of Rare NFTs.', 'NFT'), + (0xb0726ef4dee513dfa09e8f9a5581c979be565b36, 'CHIBIgeneNinja', 'CGN'), + (0xb077a01a3c27bdb886492988d86ef6ff3597f3a5, 'Bored Sasquatch Club', 'Bored Sa'), + (0xb07866bd4fe8fbfb53fcda4710ddc621d6d201cb, '[DEVELOPMENT] An Kö 658816', '[DEVELOPMENT] An Kö - Ed 374911'), + (0xb07fba9cb6d1e6f88da4ef26e51c49687f51b151, 'SlothsClub', 'SHC'), + (0xb08bf752a1aca7b6ebe03224feceafb3a51047c4, 'TheImperialNFTPunks', 'TINFT'), + (0xb09154c02a3a3396cfc855723ed3ae1b8065fbfa, 'ERUHeroes', 'ERU'), + (0xb097a986d40cf122e27a55456ef58b290cfd7875, 'M5NFT12', 'M5NFT12'), + (0xb09de6565d5128361f60d775e0130688f462669b, 'Rime Collection', 'RIME'), + (0xb0a1c5ae490b2b74b434293765b4a1cb66632178, 'Fruit Classicpop', 'SWEDC'), + (0xb0ae6210852883f48e28914e8401fed78c0faa60, 'Quokka Life', 'Quokka'), + (0xb0b02e74f552b64f1a85ac469d484be239ee7b60, 'jjkjwkfnkej', 'SH'), + (0xb0bbbd19fbe144bf30807b7f7609e48c46cca0e9, 'WOAHTURTLES', 'WTURT'), + (0xb0bfd5c894db47dc7691be7003af2b649fc06d88, 'Lil Worms', 'WORMIES'), + (0xb0c8f419ba85491dd7380209570a5a206dfd67ff, 'BottlePass', 'TPBP'), + (0xb0d7374db397acda3c61c331f1f90e7938b1cb68, 'VintageMatchbox', 'VM'), + (0xb0daa834771f702a4a71cbca073ca0a8381fe9ee, 'fMetacat', 'Metacats'), + (0xb0dba7e32fce0db1e2b1552ffbed4758f57685ae, 'BoredApeSoccerFan', 'BASF'), + (0xb0dc7ee247ded45cc6011969238d414b491b88ec, 'Generation #10', 'G#'), + (0xb0de54a9fb5442c34d40e700e110ed606b5edf72, 'V4MOTshirtCollection', 'V4MO'), + (0xb0e036a55f3b08579958727caebd3e22a2ff5322, 'DevilTeam.', 'DTC'), + (0xb0f2d7fb54cb54499aab2e7aed84d89196ca26c4, 'Fascinated Frogs', 'F_Frogs'), + (0xb109e75c63f9bc76538633d4a7839afb317d4516, 'Blocks Style', 'DCL-BLCKSSTYL'), + (0xb10de4969b105bce4d1911fc2f3b270a3fe06dfd, 'Eternal Monkes', 'EMONKES'), + (0xb10ea0dfa62e62543da2989ea9fc9e40d951906c, 'New University', 'CERTIFICATE'), + (0xb11172fc4fa04648d84d60dbd53334294c92e8be, 'CollectorClub.io', 'CLUB'), + (0xb11909b68387854d479793cda86ad5352e0e11f6, 'CryptoMonsters', 'MNSTRS'), + (0xb126578f2c86f9504376490b807b8b8e4cf275c7, 'Original Art Token', 'OAT'), + (0xb13989c72d5c8462eb68a908b0c4eb5b5b0cdd67, 'HADAFSDA', 'IMGNRYONS'), + (0xb1479b9d077eb2e05d6fbb98330f65986f81a522, 'MECH.GAME', 'MECH.GAME'), + (0xb1506228cab1485aa3f4263e4d84dfb706ba6bc1, '8 BIT SNAKES', '8BS'), + (0xb158e337dedc6340edd4e63cfb942dbde515d57b, 'Boson x CIDER', 'DCL-BSNXCIDER'), + (0xb15f1f81d4cb764cee358d93d03e637674cc04a8, 'InterestingGuys', 'ITG'), + (0xb1659e5a7e22b0709763dac8510cc75a43b50a96, 'Feisty Fiends', 'FEFI'), + (0xb1681caeb9ad5db66ed30bc681870213fa6e3189, 'Naked Pixel Punks', 'NPP'), + (0xb16e2a58a600f423cd1ca385fe5b832e8cfdc4bf, 'GEN-H10', 'GEN-H10'), + (0xb171ee0a3c0fc6f2490e37b2e7e7cb0de9ca09ee, 'CRYPTOHearts', 'C'), + (0xb177e4710f5d0d48aeb069feccd0e6753e0a47f3, 'CrypticLife Club', 'CLC'), + (0xb17bb4272cd71a06ff3c88670802d50a273a4a44, 'MetaFannyPackz', 'DCL-MTFNNYPCKZ'), + (0xb1863819aaab88fbf0c6452510f72601f05a2c42, 'Hukumuri', 'WILDEARTH'), + (0xb195991d16c1473bdf4b122a2ed0245113fcb2f9, 'Crypto G4N9', 'CGG'), + (0xb197ac9e808b62c32d18600a0eba2cbefed73018, 'Mochi', 'MTRP'), + (0xb19cc85f99bf7a58112ce6d4d39acec7f92b544e, 'Koozie Merch NFT', 'SWEDC'), + (0xb1b623225e45e15190309b432a8e7d6cf647abff, 'Early wLiti DAO Member', 'EDM'), + (0xb1bede831767dc438d7c8ccb32b5243dfee914fa, 'LesCryptoship Club', 'LESCRYPTOSHIP'), + (0xb1d15bc60c753f48ebd21d02498e384d96f144a3, 'THE POSSESSED NFT By Pssss', 'TP'), + (0xb1d731294052e4e778730871559d8a779cd217c7, 'TinyDecks - Origins', 'TO'), + (0xb1e33aaa10fcf51b5e593aa2bb20cc196af1b980, 'Black Tall Hat Silver', 'DCL-BLCKTLLHTSLVR'), + (0xb1eb9be1cf04a19448355893ca357f6f010b03b6, 'CompicactusPFP', 'CPFP'), + (0xb1f403e048ffb880a039afe726e4cad58a8791a5, 'MetaDrip - Infusion', 'DCL-MTDRP-INFSN'), + (0xb1fdabd22268091f6793d8dd78adb9db32c3375e, 'GMPunksV0', 'GMPunksV0'), + (0xb200c550749c8f996376e7dbf56b368bc0967b8e, 'MurAll Montage L2', 'L2MONTAGE'), + (0xb20c24050fa9000a3824c58dd3efda300eab2bac, 'CryptoPandaz', 'CRYPA'), + (0xb20dc96622adc29b32f7ec09094fd885a301c603, 'Hc', 'Hc'), + (0xb21b99a48e4986d3e4b5197dfbf62b9b6543b05b, 'SquidSquad', 'SQG'), + (0xb21cef26ac44b95297773cebd73dc5841530d2d2, 'Nelly, Meet Cornell', 'SWEDC'), + (0xb21ded4ef2c1383a2b842f8bcce7e4c451980901, 'metaSKINZ Traitz', 'TRAITZ'), + (0xb22d12e603032a4d09272af56f4b68a2acf69143, 'Sneaker Heads', 'SH'), + (0xb22d8dd7eb661b57cd6c7615fc0fec251a039926, 'Funky Fox NFT collection', 'FFN'), + (0xb22e1afe66081cc9750fc7aa346361d33dac5e9f, 'GenBun: Halth', 'GENBUN-H'), + (0xb22eaed89777d583d5688600c9d19b53c9b7e7ab, 'BittyBettas', 'BETTAS'), + (0xb2301c1b71a9bbf43cb2c737a7f0cbfdd9c7d668, 'Bithoots - Aavenians', 'BREW-AAVE'), + (0xb231186fb93afedb89e73b7db04f04284d13972a, 'Rumia', 'RUMIA'), + (0xb2334adcff17f4898aaa16327fa65f461bae93c7, 'Karate Stickman', 'KSM'), + (0xb23c8e1892c4c78cf03e6b64e8b9a55d2effa202, 'PUG LIFE Collection', 'PUGLIFE'), + (0xb2435253c71fca27be41206eb2793e44e1df6b6d, 'PlanetIX', 'PIX'), + (0xb2488ed978338ae8dc7ff724bbe0a8089aeb5ee7, 'RandomShapesClub', 'RSC'), + (0xb25745b743c33d4a7d708620e8d0460724ac1d42, 'Futurist Cities', 'CITY'), + (0xb25bca044ec82aaeef1936c8ce2f398e85e1afe7, 'BNG Skins', 'DCL-BNGSKNS'), + (0xb25e7c60d5c9cd45e508547201ed6b56815acee9, 'Weed Pet by Oltecs 2022', 'DCL-WDPTBYOLTCS2022'), + (0xb260526ce3aed0d0382fb50826814d1694bd4814, 'Ape Kids Social Club', 'AKSC'), + (0xb270d9c479ea7664713f07b6cd9c1bf0277805aa, 'Invaluable', 'INV'), + (0xb27d23c404206bfdc5e01494b721619186c2af31, 'Invisible Pets NFT Meta', 'Pets'), + (0xb27e081ad8d6d79b7f4df5d8680e42f6f85b8ad0, 'Freedom Guy', 'FGY'), + (0xb2895de261a907dc7922725b99e7a481346aa736, 'PECEL LELE EVERYWHERE CLUB', 'PLEC'), + (0xb289d6bcd80252fa06bb45375e6cf8f392ce91d9, '[DEVELOPMENT] PA2022-03-14T16:22:43.918Z 677615', '[DEVELOPMENT] PA2022-03-14T16:22:4'), + (0xb29484d12eff603318ff7ce395d143f04d151f6d, 'Game 1', 'SWEDC'), + (0xb29538ada39d4e0a849d430511e63905a69c4f2a, 'MINIMALIST PIXEL BAYC', 'MPIXELBAYC'), + (0xb299caee17e49c224faad30b14775e98964e1b15, 'HomeJab Market', 'REAL'), + (0xb29a0730c8c65ed0dd9e0a90391f676b33e1c557, 'JUST SAY HO', 'C'), + (0xb2a2503dc8b025cebdde2d7d485e506dbaa1f503, 'NFTZombies', 'C'), + (0xb2a2812402ad53bd79d8adc0b6de282bdbc25336, 'SuperUrbanPeople', 'SUP'), + (0xb2a7a976cc38bd9fe0bf9329790da451a22cd3d1, 'Neo & Tima', 'NEOTI'), + (0xb2aaaff24981e65b29e2b061c1a1b2582d19c418, 'Knicks Taxi', 'SWEDC'), + (0xb2b531c4120c2366b60a624f49a0e883334ddf7b, 'leon', 'CSLC'), + (0xb2b974e19c158285c118af07cd92b5af6e4cf46c, 'A Pixelmind Wearable Experiment', 'DCL-APXLMNDWRBLEXPRMNT'), + (0xb2bebd43a93e4b9cddb2d2e47202f335029d8d32, 'DecentralWear MetaDroid v1', 'DCL-DCNTRLWRMTDRDV1'), + (0xb2bf9f96d231c70f50b1fec6ba3a219bbba42208, 'Split Roger', 'STR'), + (0xb2c1a3114b3b11eb646b7f6a217ebd2ea532b8ba, 'Octo Finissimo Ultra NFT #0', 'OCTO_FINISSIMO_ULTRA_NFT_#0'), + (0xb2c5cd9431657ff513a71134e4dd285b7932c974, 'NZAlGearLiquid', 'NZLGQ'), + (0xb2c8c173e6a44dce16cfe0619ba6edf66a07d8bb, 'SYMBALS', 'SYMBALS'), + (0xb2ced18c5e7e71d52292fe3a188310450b4aff8c, 'Bola de fogo', 'BLLF'), + (0xb2d307b4e157efd82b8bdb2314588329467f8e09, 'CryptoPsyKitties', 'CryptoPsyKitties'), + (0xb2d477418a84dfb4dd62df19836c1b0b595f7b2d, 'TIGER COLORS', 'CTIGER'), + (0xb2d613e1eb4e98b2e0d9a2d04a032ec42e5a8081, 'Meta Restaurant Club', 'MRC'), + (0xb2dcf47167e10e1a6825355e846fc6c9d2384341, 'Tesserect', 'Tes'), + (0xb2dff92fc4c31f5bd89767876ac981faf9e576a9, 'Knightly Helmet', 'DCL-KNGHTLYHLMT'), + (0xb2e346049453b0b5f4bbb7c415676558365c0342, 'KingBee', 'HPB'), + (0xb2f4b6deb14450ee6315d6eda8670943fc514896, 'Frowny Freddy', 'FF'), + (0xb2f96765a90731552ad3a0dd1d3b8f0ad87d8166, 'Slime', 'SLM'), + (0xb30f4025dad617e9c98637a7eddec5ff029f7998, 'Cube-3x3', 'CUBE3x3'), + (0xb3105bae1491b4e4f41c86ca7cf1454e12da061e, 'HIPPPPToken', 'HIPPPP'), + (0xb312accccf9e456077434d417ebc71548e16fdf2, 'CryptoCloodleZ', 'CCz'), + (0xb31ba0bfb9b3b6e12c018ca62a3af046577a3567, 'Dinner With Goats', 'DWG'), + (0xb32544d502524d754936f7ef0cc1a569ac2e2dd1, 'Modern Blazers', 'DCL-MDRNBLZRS'), + (0xb32a7679e7d5c85025b2172475ed32ccaa0abc9a, 'Full Barrel', 'BAKEOFF'), + (0xb33a9005c1ffd8ec48034c7ef98327f04cbb9ca8, 'FakeSmilersCity', 'SMILER'), + (0xb33ae9d85160699aad4f6906d84b1e52b1ee8a9a, '99 Skateboys', 'DCL-99SKTBYS'), + (0xb33c79d3238a7d7578ab49d60f3a6f355187c075, 'Shocking Little Daily NFT', 'SLD'), + (0xb33fcc046209c34a12917d47519994dca90d211f, 'Mutant Shiba Club', 'MSC'), + (0xb34241640f4d615f042ffb9e291da5a684ff0c80, 'My Collection kwII31PgugPB4QEXODwi', 'my-collection-kwii31pgugpb4qexodwi'), + (0xb3527b57a5bb472da5ca028905d75e0aec5943b1, '2156MAR282022', '2156MAR282022'), + (0xb3545b2a9ef0df4208a747351be5b82cf38040f5, 'Hear Me Now Club', 'HMNC'), + (0xb36141a5f62b6166fa1b9efcec925d7790f4b398, 'Monkey Bet Official Polygon', 'MBET'), + (0xb37183418815e517019b5771e3a9a7df0350b305, '2010s Umpire Chair', 'SWEDC'), + (0xb37dc4df02a94eafab39e6d4a405ecabca53e0ec, 'ChubbLubbers', 'LUBBER'), + (0xb37e5873820d20c5dac39f5f7d80029ba169f0ef, 'Scotty Bonus Collection', 'SBC'), + (0xb3835e7b3983a90b5b2de1185e071387598f327d, 'Cryptato Planet', 'CP'), + (0xb387c95b1ab7f252642e55adcff8b7f0f0d45120, 'dsaddsddsdsdsadwe', 'dqwdqwdcwc'), + (0xb38a7136a16badfc6c9f3767bff467b0f8537b3d, 'Squid Room', 'SRM'), + (0xb3995341c1b5a27fee6b969b15f8f5d38ba5a888, 'Eno The Lost', 'ENO'), + (0xb39bb899f531d928490b5361e83f21f19c4bf920, 'Pixel Apes', 'PAPE'), + (0xb3a6e5f8982ed3b02a04159d1bde864ebed23c82, 'Digidenizen', 'DDZEN'), + (0xb3abb7239591f871e674a041695a78715f77de03, 'The Lonely Toad : Part 2', 'TLTOAD'), + (0xb3b57a787a7e41ae7393d0716b422cbc78e45cd0, 'Yeps', 'YEPS'), + (0xb3b6ab47aefbc86eb64caa834d7f4fffedfa3a75, 'Just Bananaz', 'C'), + (0xb3cce149d1994475619495a773d721497af268fb, 'BalloonBuddies1', 'BB'), + (0xb3d79dc0d9a03c0fd6685d6ca4187108d1825ade, 'Los Angeles, CA Pop Art Edition', 'SWEDC'), + (0xb3d8011349fcbb5b7a4ac1798871fc5cd51d410e, 'KITTY', 'KCN'), + (0xb3e1c68c916cbe8d06f662cd9093e9ffe2fd1193, 'Bad Birds', 'BAD'), + (0xb3e5028bb3f7bfdb38d44f982ae53f8071ed365d, 'Dencentraland Maximum', 'DCL-DNCNTRLNDMXMM'), + (0xb3e83fa4fe0e7c584c61e1a933b17334c44c931a, 'Tough Teddez DAO Edition', 'TTDE'), + (0xb3eb090587c056915f526cb0dc1d93024cef75a7, 'NFT Gacha Project', 'NGPGIFT'), + (0xb3ebaaecf69e24e6ef11f29ab39244d67f38cc9a, 'CryptoSkulls Ukraine', 'CU'), + (0xb3f27f6df7df667de52ba3530702bc77a0af1596, 'EboxNFT', 'NFT'), + (0xb3f600a306283f12abdd56d8b800cc6832729b55, 'Sewer Rat Social Club Wearables', 'DCL-SWRRTSCLCLBWRBLS'), + (0xb3f6da2d7621e73003d77c15d0896ec9d8bac080, 'Mappet Frogs Club', 'MFC'), + (0xb3f93bc2963ebe8044351f7646351df052308891, 'Brazil Soccer Jersey', 'DCL-BRZLSCCRJRSY'), + (0xb40246c976c3e5b50cdf8e8a6055dfbd1b78a4dd, 'Inscrutable Apes Official', 'IA'), + (0xb402d89295b70a5a39abaccf3b75341de69a4b09, 'DCPolitics', 'DCP'), + (0xb403b27ceb7a5d8255e116c8b7e7507fef79b9fb, 'Season Alpha Pass 2 Sandbox', 'Season Alpha Pass 2 Sandbox'), + (0xb405f48f67a06916a366c77bcf42992903ef0619, 'FashionableEggDragons', 'FED'), + (0xb40bd9ec9bf15cc0d618a6896efb3659fe6768e7, 'PUTINGOTOSPACE', 'C'), + (0xb41098440916e912835de3d29537bdb74a666252, 'Orc Club', 'ORCC'), + (0xb41660b91c8ebc19ffe345726764d4469a4ab9f8, 'SwagNFTNYC', 'SwagNFTNYC'), + (0xb42268790688df8de4f7db71ca8b151661e20b87, 'Chibi Citizen', 'CHIBICITIZEN'), + (0xb424de40864371fdfee3d12087069246cbb22782, 'Mister Otan Club', 'MOC'), + (0xb42928a8035b87a22abc9fe5045259f58f79619c, 'Digital Oceans', 'TRTL'), + (0xb43064e98f3846a527952b5e5e442fc13512f323, 'CityRoots', 'Vault'), + (0xb4319c8512885ed12a6ddb3ebef0227b8a88dcc5, 'Timeless Seersucker by Keching', 'DCL-TMLSSSRSCKRBYKCHNG'), + (0xb43c6a745e28d1a50de44c2e5a663c74cb0d8856, 'DeFi W3FW', 'DCL-DFW3FW'), + (0xb44048775b5ee40898e26c9da7645ef5936f9c43, 'AdRunner OfficiaI', 'ADR'), + (0xb4424b22ceb5bb7a2a89b7b005be42565a1cb256, 'Burial Bunnies', 'BB'), + (0xb4453d3787c594316ec9396d8ed846a2a7e322d1, 'Sacramento, CA Gold Edition', 'SWEDC'), + (0xb4495e999bfab96a54abb816661c92f1618d94aa, 'Superlative Mutated Apes', 'SMAPE'), + (0xb44be0d2bab1969857cbe835dc3dd0d6bb55dc89, 'Three Dimensional Ugly''s', 'TDU'), + (0xb451c3e1a97c491281a877e879127dc808267286, 'Gorilla Mutants Official Club', 'GM'), + (0xb46608662800182f975506ce07e788d7284e38da, 'SpaceOne x DG x Banquet Rocket', 'DCL-SPCONXDGXBNQTRCKT'), + (0xb468561a9404ead640a474f76fc0e7c0fb466780, 'SunCity Ape Club', 'SCAC'), + (0xb468974053f0a5d62e96cb392622d155451ba8db, 'Monkey Kids', 'MKJP'), + (0xb468afeb7a1719cc068ae80c18ec36cac1950482, '2K22 Bored Apes', 'BAPES'), + (0xb4726e9a1feebeba31d0284dc048590044dc0103, 'Rumblers', 'C'), + (0xb477eea98404de719069ae910a4bd72294db68c2, 'uehs lightning bunni pups', 'UEHS BP'), + (0xb479d9025ec847e21544565682ceacfbf09f2635, 'Blankos', 'BLNKS'), + (0xb47aa234985cfec2e3c336e41a97c294b5381652, 'DBNFT2', 'DBNFT2'), + (0xb4832d50b2e3f691740acd7e09438963f2037ab5, 'CryptoPsyKitties', 'CryptoPsyKitties'), + (0xb4834c69c9ffa357353a931c474d6bdab3c8a3bd, 'OG CrypticLife Club', 'OGCLC'), + (0xb4850ba506ae1f6195ffe43ca3cbe2eda5e604a4, 'Bola de fogo', 'FGBA'), + (0xb48c032f2d7a4158b10f8e88a1f1249119493c72, 'Champions Ascension Polygon', 'CAP'), + (0xb48f411f2f4089801f28809236212351c6820e8c, 'Yuki Azuma Birthstone Series', 'BIRTH'), + (0xb4906e5ff9dccabf3d431b9afe2efefc0ee15590, 'Dance with me', 'DCL-DNCWTHM'), + (0xb494d407a229356ab889fb39d0dcad5ef6b3288f, 'Foxies', 'FOXIES'), + (0xb49877956ca88862e05cc1c49dd170e796e2f061, 'Special Edition Classic Armour Warriors', 'SECA'), + (0xb4a04f214c643a03873564f3aca1554062e258b8, '2020s Commemorative Ticket', 'SWEDC'), + (0xb4a054f5fa683cfe73601cafcde40dc62b407088, 'Free Betty', 'FREBT'), + (0xb4a0df9c7a436643e4dbe697239fe1d9816f27cb, 'Hog Mob Society', 'HMS'), + (0xb4a46bd8be74e974f7c3c16159184d22a05af19d, 'Dour Darcels', 'DARCEL'), + (0xb4a8c5a5dacfac3fc4a39a1c96ae754f40f13d6c, 'Mermicorn Shallows', 'MS'), + (0xb4b1d78552b5ee25967550b1f0948176003abb0d, 'CBPB', 'C'), + (0xb4b4534d1d305b519f9f2ad4485f086617d23bf0, 'penguins Punks', 'penpunks'), + (0xb4b6bfcdb0cc20c9912cf2fa5c1b8fa5aa1b27cf, 'VoxinWonderLand', 'VoxinWonderLand'), + (0xb4b7a77ad02111bc6cd0e862a68318180e2485e7, 'CipherPunks', 'CP'), + (0xb4bd65d44cc9df89cf11c54f3e50787d037cbe6a, 'MicroArt Drop 2', 'uART2'), + (0xb4bd9f1930deec7d61077bf5fc7220ed821ff2ee, 'GEN-B14', 'GEN-B14'), + (0xb4c1d1d963b9b9b6291c3ccbec118e738c4098b6, 'tttttttt', 'C'), + (0xb4c4b51aeec4592455dc1ce1d63a59a5282eddb8, 'JessieCostumeFROG', 'JCF'), + (0xb4eccce11a7970bea7157beb2c7ea7b215ae4818, 'MetaNFT', 'META'), + (0xb4eec9f3194c0165315533ee02c5a811ae829bad, 'Meta watch for Ukraine', 'DCL-MTWTCHFRUKRN'), + (0xb4f77d622afbbd37aeee62094fdf0e5428a485fb, 'Cells Evolutions', 'CELLSEVO'), + (0xb4fede48ab9ad734db9b1389cd4e2512391e5138, 'Desperated Ape Wifes Polygon', 'DAW'), + (0xb510ced77945f3c961877814b1ad6a8f810a9a9a, 'John', 'Jn'), + (0xb511293b4bc888f5dc8c1e765940819a887fa1ec, 'Awtg-Rune', 'AwtgRune'), + (0xb5143026b9a66ecf8da198d26def7f36b3db9366, 'yyyy', 'yyyy'), + (0xb51485bd0ee37c11acdaead152496bfeff97b367, 'BoredApePixelParty', 'BAPP'), + (0xb5229dd093c2c3894c626830a950c497c82f7648, 'Little Mold Offical', 'LMO'), + (0xb523183a5d28d4c0ad536dbc88679906af4bcf6c, 'Secret Weasels', 'SW'), + (0xb5270872717440125af44b59f4315e66c3b46347, 'Little Wolves FM', 'WF'), + (0xb528528280616a424430b82909bb864802a8a64b, 'Leagues of Kingdoms', 'lfk'), + (0xb52921d6a0f6013389385e9f5f306a238b6558d9, 'CRYPTOPUNKS', 'C'), + (0xb52bef0b0eba512677b8e6d72dd64fd1d441f89f, 'hajkdkdaskjqw223', 'KPC'), + (0xb532adc7425820c5dd1c0186b4197bda425e7dde, 'The Face Factory', 'TFF'), + (0xb538ff39ea839299fc3312928b3157c727b2c67e, 'Apes In Summer Uniques', 'AIS'), + (0xb54272e8a3560a90dcdcde5013bf59c523049c74, 'CV Labs Demo Day Batch_03', 'CVLABS'), + (0xb5450ba1c1a2dc03a1ef681ab4a863ac1fc054c8, 'Crypto Learn Lab Events', 'EVNTS'), + (0xb5465d2b388bcbd6c984f14fd34f2432ff3b66c4, 'ELON HYPE', 'ELON'), + (0xb5474720d0730476a564ca1ff96d6806da1ba505, 'Nelly, Meet Cornell', 'SWEDC'), + (0xb54feb0cd005a6d5e463fd12bfda2185af533e9a, 'Baby Dynosea', 'BYNO'), + (0xb553a257808fd23b3566f44a4943c71c94f7fd29, 'Space Kids OfficiaI NFT', 'SPA'), + (0xb557c5f6cbda38e9d5ec9be0477b7d4674b67174, 'CryptoCrookzClub', 'CCC'), + (0xb558334d268e6c44554d84f1510bec2289d5509e, 'Year of the Tiger', 'YOTT'), + (0xb558afe0376811fa774af72331fcc3b2d26201e3, 'GEN-T28', 'GEN-T28'), + (0xb55b784563db6c252b12bd9de35d3727cbe779d8, 'CryptoClappers', 'CPTC'), + (0xb562f8a1418b9c3aa2f819152cabfdf984ce9074, 'Tiger', 'DCL-TGR'), + (0xb5642f8705cf607d1c7bd808c114be0ed57978a8, 'Quacklemore Ranch Club', 'QRC'), + (0xb5643621944f859c45d2b44888643724f09ec19b, '0x192BAc0947cC20568eE560687c3856918bE3649B', 'XBA'), + (0xb567d9abd7c7854463a0befd2078fe4c219aaf82, 'Xanalia', 'Alia'), + (0xb56b2071afccbefb5db1115695fb1799de2d74ab, 'Pixies4Ukraine', 'P4U'), + (0xb57771cc4dc3edf51c6148fd3a1d6672061e8e95, 'HODL Punk', 'HODLϾ'), + (0xb583cd71d718d0357d4e1c9f13c469ede728ee9b, 'Father Ape', 'FA'), + (0xb58a363ef9e6615f20dc24c4117342abf5ec0187, 'sam01', 'samy'), + (0xb58e0cabb985528c423233e10a578eb2d87e1769, 'Catbert AIrt', 'CAI'), + (0xb58f5c8a3aff10871146780d23179bf969d93ff0, 'Chic Calf Collection', 'CCNBCALF'), + (0xb590a8bfb552f729539340c204adf0baea13980f, 'Crypto Controllers', 'NFTC'), + (0xb5a6734eb717be34d6edcf7029db24fc07ab5e17, 'TNX', 'TNX'), + (0xb5a8219205abad151351e119377cf77db2879db9, 'Grandma Cat “Sad”', 'SWEDC'), + (0xb5a9bc3d3b8036c64d39627ff9ea65ff852fce1d, 'Frapperrific', 'FF'), + (0xb5ab9edcf9f7db51096286689f486b579c27444a, 'Troll Game Forge', 'TROLLGAMEFORGE'), + (0xb5b2107f4682dc2a497e8043da44c576cbe51421, 'CyberKongz VX Wrapped', 'CyberKongz VX (Wrapped)'), + (0xb5b213e73536724cbc945847817006e6f9f395fe, 'WallStreetBets', 'DCL-WLLSTRTBTS'), + (0xb5bd8a4b7ee22439adfb3f15d08331539a98336d, 'MooseSociety', 'Moose'), + (0xb5bddc1697ca20485278f7c8ca5f735dd1a3e3d9, 'Astro Gear', 'DCL-ASTRGR'), + (0xb5be0e3783d54feb28aa7ead14408cc211b23f78, 'San Francisco, CA Silver Edition', 'SWEDC'), + (0xb5bf62aa59bac97397931d2832509ca634f55818, 'Mine1', 'c'), + (0xb5c01956842ce3a658109776215f86ca4fee2cbc, 'DKDAO Items', 'DKDAOI'), + (0xb5c26f5b5501324acaf5f5a9dc1c4aebed999671, 'Cup Mferz', 'CMferz'), + (0xb5c5f67df1d9131570732093bf472844df7709f9, 'NFT_AirOP', 'NFT_AirOP'), + (0xb5d88c00557c623226dced465d4f6b6d0541a70b, 'Buy The Dip Hat HODL VUITTON', 'DCL-BYTHDPHTHODLVUITTON'), + (0xb5dd0ec512b1e056250df68c188a9eee654128df, 'ASHANTI TRIBE', 'DCL-ASHANTITRIBE'), + (0xb5e144b9f99151292ad4df599bec6233f979329a, 'Golden cars 444', 'GC 444'), + (0xb5e200d739bc792e273b2beb6dea9fd918ede79b, 'Cupid Love Metaverse', 'CLM'), + (0xb5e8245326f28dd688c6f12151cc80c9c9742ce2, 'Heartful DAO Membership NFT', 'HDNFT'), + (0xb5f6de693361ed3ca096bbdd905f2bdce43f9ddc, 'CryptoHouseHeads', 'HOUSEHEADS'), + (0xb60a1a1449c3841e2da4182586eb1bf37c50c036, 'SnapFingersDAO Fortune Tiger', 'FT'), + (0xb60ea95873e5ac640d297c2c4b3479ac9503b85e, 'MonkChains', 'Chains'), + (0xb60f25cf8775a601c6e4c4ff15f7a013115cbde7, 'TheUglies', 'UG'), + (0xb60faed961e1e6312fc86541bd540ca50fbd2c98, 'Skelacrypt', 'SC'), + (0xb612f03b667d230508de61167bae05d86c165ed4, 'et', 'et'), + (0xb61401b4ff01b1e599eab44b0575eeac3d7add11, 'antiapeassc', 'antia'), + (0xb61528d99ac39c091278febbba63555c477c137c, 'DJenerates Hat', 'DCL-DJNRTSHT'), + (0xb619f06bca23c278ec2a5760419aab4ac10388d7, 'Mystery Of Women', 'MOW'), + (0xb6406d10a3efdf5aa36906049b4c8e9b0fec5da6, 'Highest in the Room // FBRN', 'DCL-HGHSTNTHRM//FBRN'), + (0xb64a03060b5da058dc86fba02301e21b35dfead5, 'OTG Centaurs', 'OTGC'), + (0xb651f40c16b387822462b7f926fb7ecaf9ec06a7, 'Weirdos', 'WEIRD'), + (0xb6561407380a0667f7ab6e5ff32ed6b706e94f1a, '80s Pop Culture Kitties - Genesis Collection', 'PCK'), + (0xb656f04fa4c7b6deb04ca46cd53ce94bdf753791, 'Aureha Gates Origins', 'AGO'), + (0xb65e58d28f2c2bc8ffe6df20141301c8c87e792c, 'StackOS NFT 2', 'NodeNFT'), + (0xb66b0aaebb540aea67ba8350df050ef498ec6bac, 'BabyImpostor', 'BIMP'), + (0xb671ae1669ac91a174a7779d5e743766e3dd3ddc, 'DogeMaxi First Edition', 'DCL-DGMXFRSTEDTN'), + (0xb67896d1e6412dbaac0cefe150d8f7adb671e59b, 'CryptoRam', 'C'), + (0xb67b3c987a0ed3f37586fa77c165d7b6c56a7fca, 'SakuraUncle', 'SU'), + (0xb6847e80fb7fd2253b688629c37870055a1246c7, 'Baby Panda NFTs', 'BPN'), + (0xb68bce041c7ddba9d03afd13bfecf9d89ab8ba65, 'ProjectPigeon', 'PGN'), + (0xb68cf4db9dbef08391957d482559a388e11b75f7, 'PixelPlanetsUniverse', 'Planet'), + (0xb68d4e9bfc7546524430259249a60d1cc26f0e35, 'joker deep', 'JKN'), + (0xb68da27e32d0e91dd52ebe32d1eca33ef97d5b26, 'GBNFT1', 'GBNFT1'), + (0xb693fda8cb270b51692d5788b501b99f2fd09d78, 'D-CAVE x Bulova Computron', 'DCL-D-CAVEXBLVCMPTRN'), + (0xb6b020224a4d64457bfdac76c804da0af64d23b8, 'UK Mayors Club', 'UKMCL'), + (0xb6b3259df91e60b0a1064da18894666e4ddac183, 'Portland, OR Pop Art Edition', 'SWEDC'), + (0xb6b3b49cba4d9fbf9b1a2ada62879f75195ad3e5, 'Saiku Take Shrine NFT:Token', 'SAIKU TAKE'), + (0xb6b62ca002d1583f0bdfe0047dd28b6f43c18dc8, 'The Cartoon Hand Yacht Club', 'CHYC'), + (0xb6c5b9f59e5651b7321359caa124b5c24f9cbd22, 'Knightly Armor', 'DCL-KNGHTLYARMR'), + (0xb6c73ee6c31a702a2795357dcfe487658885dd89, 'TrippyShapes', 'TRIPPY'), + (0xb6c8a6b028beab834b8c9b18f3ba4795bd92eb9b, 'Serum NFTs', 'SN'), + (0xb6cf2874588d0fdfaf9d1b5e254ee6c49110c68b, '.web3', '.WEB3'), + (0xb6cfd4bc7b86a309bbc643d4157d651c4d8493bc, 'Golden Hand', 'GoldenHand'), + (0xb6dc5935c855977c1d4fcc14fa7fb1c92d125865, 'tyyt', 'iiddd'), + (0xb6ddae991b12af6254c352173d3facea38fcdb5b, 'hhhhh', 'C'), + (0xb6e25a6437ab8139ecedfcf5776b999bcd592c5b, 'Unizen Pro Membership', 'UZP'), + (0xb6e7edf72e5e14a33853471d6edfa4d653a6de32, 'AbstractSnails', 'AS'), + (0xb6e954088d3d402abe8ced1de5453922aa6ab9eb, 'Clouds', 'Clo'), + (0xb6ee1f96e3ed418ef00810fc647c26c5bcf4825e, 'Warp Wraith - "Proxima Fantasy V" Card #6', 'SWEDC'), + (0xb6f37aa6f6e8827c459afdbee78277879bf668ac, 'InterestingGuys', 'ITG'), + (0xb6f6e45be665d026a19adc7e2de9c2840354d5f1, 'Cryptomons', 'CRYPMON'), + (0xb6f7f4242e9db5feae4b598875f0fd1a055c074e, 'Every Minute', 'EM'), + (0xb70b4f6244f4531c5a296c536b4b37d3a761b57c, 'Quantum Computer Carpet', 'QCC'), + (0xb70b8191f47e82e5d22b0a6224e0f11eb2e276df, 'CryptoSpells', 'CSPL'), + (0xb71061d3d785f880f4ca050b634b074b862a8802, 'Smiley Myron', 'MYRON'), + (0xb71258fb130c56e610ecad7b63b0adedd4ff940c, 'Black Prime', 'BLACK PRIME'), + (0xb7220be6542bc4209ec5b8b8d56f115d3d8fe778, 'Insect Rejects', 'insectrejects'), + (0xb72741f1c8f4ecc9f60f33dd50443b649c010c44, 'evil fren', 'EF'), + (0xb72fdca251c32d4a4142c2a6cd3979d1ddabd4c6, 'Wacky Wolves - Wacky Wildlife Friends', 'WWWWF'), + (0xb7348e3df00ba04763822d985acaaafe903135f5, 'Death Row Records 30th Anniversary NFT Collection', 'Death Row'), + (0xb742decd0c0b72d90e7de44072feac113af26dc3, 'San Diego, CA Pop Art Edition', 'SWEDC'), + (0xb743285d3254c3c3ad00338dc6464a75a8da5f51, 'Bounty Hunter', 'HUNTER'), + (0xb74de3f91e04d0920ff26ac28956272e8d67404d, 'Ice Cream NFT', 'LICK'), + (0xb7519b495b7b19c574a5034f41e53eac41b7a049, 'NEONPOL', 'NP'), + (0xb7531662174615f125d5dc6f68a274294a0acd22, 'AVATAR', 'AVT'), + (0xb755ec6efb383c5f1b95b6254d9c4bc9fdb920c2, 'CryptoNinjasOfUzb', 'CNU'), + (0xb759c64338154c07e799e6f55938f5450a4a479b, 'CrankySkulls', 'CKSK'), + (0xb766abf815d9e60a79ed96eac1093fbe46f31655, 'The Auerbach Collection. Artdrop III. Frederic Auerbach.', 'FAKTURA'), + (0xb76777038364665c82db6729f613e50f29725987, 'Hungry Hungry BAABBoons', 'HHB'), + (0xb76ca4b06985ef03f3190bea546ef48d8548651d, 'Wreckless Component', 'WKS'), + (0xb772c32ce16dffa350ea412a4af87014aecfae50, 'adidas Originals x Bored Ape', 'ja'), + (0xb7794b4bc7fcfa9aaa01206a5620d24be66f50bf, 'Biden Legacy Collection', 'Biden'), + (0xb77c7e9924613da16df32ecb5c5d0d56e00542b7, 'World Cup Heroes', 'WCH'), + (0xb77ddfdb116213b496a383f45a84e90bba15589d, 'STAY CHILL NFT', 'SCN'), + (0xb77f1a2f31d4c8cc4cb792a9b6c85b2d975be62e, 'MEN-FT', 'MFT'), + (0xb78f23941a170d7d7f1b31a19fa632c9c3b00e97, 'RhinoZ', 'RZ'), + (0xb7958434e812c9d1a76560d43b2cfaafe093ec08, 'En Direkto', 'KEY'), + (0xb7997fc52dc629ecaf3a72bcd37c2fd3a098692f, 'Gravis Finance Captains Collection', 'GRVSCAPS'), + (0xb7a1a7719fb4e970e3b04a1d1d4e0252cdaf0bcb, 'The Chainlink NFT', 'LINKNFT'), + (0xb7a8f625f0d4d9387c89dbe761fb77e15edf3322, 'Christmas in July', 'DCL-CHRSTMSNJLY'), + (0xb7b0ab7d4235c860d8c10e281684fd584bb09b2e, 'Invluencer', 'INVLN'), + (0xb7b357b9b6697dcf584097d8ab7d2d1cff4ab33c, 'MtGoxNFT', 'MGN'), + (0xb7ccc262d322d1dc1c64cbb56a6827589b4bc874, 'CaptureClub NFT', 'CC'), + (0xb7cfe541300e734ef6be6de9dabd02deb16335f8, 'Doodles', 'DOODLE'), + (0xb7d0426128f317e2c08d52f54eade1151879368e, 'Accesorios Gorilla Farmers', 'MASGF'), + (0xb7e350f5be189c405cfa707ce1b86bc614ac8092, 'WonderZone Dragon Rider', 'DCL-WNDRZNDRGNRDR'), + (0xb7e54926637451d5fa426ebc4bd670fccc9de6be, 'Tco', 'tco'), + (0xb7f1cd40ea593f50ec8b2a3c08beb36215d82f96, 'Ai.Morpheus', 'MORPH'), + (0xb7fb6fae65d60f47a60b5ecbc1ced1ef4bfc24d5, 'Ragnarok Beasts', 'BEAST'), + (0xb7fbef1b13b442860fada57ab0286d75a46d4385, 'DDDPunks', 'DP'), + (0xb7fce84e21964aca72029af2a6cfe822f8a52ebc, 'BrokenBrand OG Collection', 'DCL-BRKNBRNDOGCLLCTN'), + (0xb811e06148de652e3d6a65e10107f431751df926, 'Mutants Shiba', 'MSH'), + (0xb81c78fffa528e6e8be754325c993cbbc8494736, 'Ethlizards Underground Lounge', 'LIZARD'), + (0xb81e0dba90c97a5ea12e4813435607030118eb69, 'Crazy Mummiez Club', 'CMC'), + (0xb822a17f89459157488a3d28c967abfed384be32, 'Dizzy Chicken', 'SWEDC'), + (0xb829a1f88b97587fec79d5783875bb36a56520f3, 'Coinhub NFT', 'Coinhub NFT'), + (0xb82b87dccabe38f5edd647e6c33e36bf299f1be6, 'Lenin''s fan club', 'LFCR'), + (0xb830dd2533022341f57bd992b50ff7783961ab65, 'mat', 'MAT'), + (0xb83ab749fc0784aaeb0f799c4729a556ea1972bb, 'GEN-H17', 'GEN-H17'), + (0xb83f0d6571df09b0d119d269b2a7372b51d88854, 'LuckyCat NFT', 'LC'), + (0xb8434b444051e0ff312a577aa5e640aa7793e059, 'Pioneer Collection - SUMOVERSE', 'DCL-PNRCLLCTN-SUMOVERSE'), + (0xb846e77fb491e6873ce1efa84ca43c4e2d1c962d, 'Rovinci NFTakes', 'RT'), + (0xb862aec93f0169249935f82fd98e6a494f53c287, 'MCS:ShinCard', 'MCSS'), + (0xb864bc72d75c158a6883b0a0e7e5301b80042e92, 'Raleigh, NC Pop Art Edition', 'SWEDC'), + (0xb873afe1fa4f4545916c03f255e3134c1a15a9a6, 'MAGICAL POTIONS', 'MP'), + (0xb874c4e0aa7b9609a131f3484bd5834e7751d28a, 'Sweetbot Lime', 'SWEDC'), + (0xb87860943100427c3e59e5fd0907bde69a139f50, 'Bapes Clan', 'Bapes Clan'), + (0xb87b58a3a199ad956b6f87463eeae39af600fc8a, '[DEVELOPMENT] Jo Ki 609647', '[DEVELOPMENT] Jo Ki - Ed 929824'), + (0xb87fe99106a90e4289f0571fb33d4c4877af4df1, 'In the Ferns', 'SWEDC'), + (0xb88139fe63e9f3623f18e2be90a8aedfa72c3ca4, 'Animo.Women', 'Animo.Women'), + (0xb8942fe3d204ceec4ccd2b114cc1519dea5729f1, 'ThirtyThreeTen', 'TTT'), + (0xb895d7fc47250d678751631f956e6e3fac19e1e7, 'ewrerwrrwqwr23uy', 'BASKER'), + (0xb89cb2451a69dbc59e635b253c56399501ace817, 'Animal Genetics NFT', 'AGNFT'), + (0xb8a19e0b77cd351c568e19bf6897f2344a77e902, 'OC Cube Cap', 'DCL-OCCBCP'), + (0xb8a3e065537dae0bc6c7c078b542d5381ecc2443, 'InJesterr - Card Collection', 'DCL-INJSTRR-CRDCLLCTN'), + (0xb8a5d1b07be04198b2f40f74ecc476b4d0be3e66, 'Muffin Mafia', 'MFT'), + (0xb8a688630f1b8dcaa52b2c383e3d61fe6aef5759, 'Species.bio', 'SBIO'), + (0xb8ac3549d279b26a48d28d161780c39b81fd198b, 'Metaskins X Holy Ones Sign Guy', 'DCL-MTSKNSXHLYONSSGNGY'), + (0xb8ad695a077ad0604a8099e8ee8f168481831d7c, 'Cat Expression Cosplay Edition 1', 'CO1'), + (0xb8bcb4e5ac3126d895a8a6268f984253e3734158, 'PixelTots', 'TOTS'), + (0xb8d3f9620820493cd56e9c89a6380396b8c67559, 'Bit Rock Collection', 'DCL-BTRCKCLLCTN'), + (0xb8d6933e9ff0570338ca592d29e9c4cde71b4483, 'fMetacat', 'Metacats'), + (0xb8d898f3aac2ca249296056475f50bd0fd25fbd8, 'EyeDeep Collection', 'IDP'), + (0xb8daf611ef93c12a1f00caa31c57cf683da23e99, 'Green Bay, WI Gold Edition', 'SWEDC'), + (0xb8ebfe3cfcaff771135962e7f2f8d97e41b56c4c, 'WAGMI WORLD', 'WW'), + (0xb8ec2ccce6982e26376721f6bf28935961c04c95, 'OneWorldLands', 'OWL'), + (0xb8f71c8a7271c1522f77c4580972384d9edadf42, 'Hanabi -fireworks-', 'DCL-HNB-FRWRKS-'), + (0xb8f943fe13d559a33e2433dd399178dc7a579b77, 'Magical Mandrills Society Official NFT', 'MAG'), + (0xb907710c1d73531d49a768f5ee023b670a6f9496, 'Web3Skills SmartLaw Clones', 'W3SC'), + (0xb90dbf4f7d04bfa1629cd119ae5420df346bb18c, 'Utility Sneakers', 'DCL-UTLTYSNKRS'), + (0xb91e22aa0dc1d234f8cc45b2c28ba189760e6ff3, 'Evanescence - Virtual Coin', 'SWEDC'), + (0xb91ecda1463ca45f8282d880f53d5a37be25d290, 'CheapChief NFT', 'CHPF'), + (0xb9242e60de5edc37928e64024a92af3f931ab5a0, 'Hope', 'Hope-Flower'), + (0xb9318234ab0e01183a174b1133c34a57cec8418a, 'GEN-L22', 'GEN-L22'), + (0xb9338cb5f8a66165dcd9029d05474c440f40d5d6, 'STREETHERS by STREETH OfficiaI', 'STR'), + (0xb942116f9c82313cd9f832eabe9632efcbfdce18, 'NFT Garden', 'NFTG'), + (0xb9449ccf31aad32ce3700139824eea83ba483fe9, 'MOTHOWLS', 'MOTH'), + (0xb94d788b65d4f9b19a2cb5f2d9d9ac1c431ddd1c, 'Sweet Wishbone', 'SWEDC'), + (0xb95209ca7cb559853dba80d29769af51831b920a, 'Cats', 'DCL-CTS'), + (0xb95324970d6e53fe0dbc2046a7ae4961146f7e18, 'Hog Mob Society', 'HMS'), + (0xb95428d19e9eacd950713c02b1da3e0699fe7f89, 'Weird Catgirls', 'C'), + (0xb975b41337f8b78ce10015d5ab602ee39bee73bc, 'BoredClownsClub', 'BCC'), + (0xb97b40f967d25fa3eaf87c584e6fd198caac8f2a, 'Pixelmind Masks', 'DCL-PXLMNDMSKS'), + (0xb97d750f9cc763adf23ea2a59a37b55036ba3b90, '70s Groovy Suit', 'DCL-70SGRVYST'), + (0xb981c09ad1ceff11dfdc2b63e3fc326a77cf2270, 'GALACTICFROGS', 'GCF'), + (0xb985ae082c4713ab6595aee9938e71d07994fb71, 'Danni Wearing Couture', 'D-COUTURE'), + (0xb98abefe3322065e93f2813d664dd624c7ba35a2, 'RhizomeDAO x Project Galaxy Collection', 'RGC'), + (0xb98d4d4f9ee34195edd608b910554f2c45032447, 'Nerd Head Club', 'NHC'), + (0xb98ecbe05ab02cc2e3b15ba51525e97c37d8718f, 'Sangi Mangi', 'SANGIMANGI'), + (0xb990a44d30f0984b0429c29c81ca06db62510e85, 'Timepiece Ape Society OfficiaI', 'TIM'), + (0xb99388da001f6350a5b753c00319163f53a3b25b, 'The Psych Ward NFTs', 'TPW'), + (0xb99a178123a9708909ed293ef2549eb18fd5e757, 'Real Water Magic', 'RWM'), + (0xb99b026e865a8a8d42c61ffe79b5384f67914ee7, 'Crypto Hand Yacht Club', 'CHAND'), + (0xb99b984eb3756bf0f2cac34ac077fc2aa5e6381a, 'Moments', 'MOMENTS'), + (0xb99c12887354513f347ae1e770eb2e8e2729c2d6, 'AMUGOOO', 'A'), + (0xb9a1f2d0e1b95876f83e972c0274d2c0594e58d0, 'GEN-B07', 'GEN-B07'), + (0xb9a40a2ac123f2e5475239ba935417d1b15475a2, 'Desert Clash', 'Desert Clash'), + (0xb9a86ac1aa58fc374db5f730d3caa8267c296552, 'Argentum Alpha #25K', 'AA#25K'), + (0xb9ae5f32bd274eff0b950d13a631358cb353e7b7, 'Genesis NFT', 'DCL-GNSSNFT'), + (0xb9bb1d4202383a25c90115ae9ec2543fa229dfaa, 'Algebra Farming NFT-V2', 'ALGB-FARM'), + (0xb9bfd63553e76a3eb4d62ebab553e5fece20d60e, 'The Invisible', 'IISE'), + (0xb9d53af8a1ad9ed52714c53075d8d2124d0729bc, 'Arcade Card Game', 'ACG'), + (0xb9e935b345d7dd4f71f5d55f0d61f63ae20f94d0, 'Cityroots', 'SOULS'), + (0xb9ed41260dea292a0577baf0393208582f7b9472, 'Vpunk Wearables', 'DCL-VPNKWRBLS'), + (0xb9edc4c3400935bfec5d1865cbf5ebe5532eab4c, 'CryptoMETEORITS', 'METE'), + (0xb9f31aebd42b6abb7d670b1c45e82076d9ea4c65, 'Venus Vixens', 'VV'), + (0xb9f887d35f0b6142c7ea028031637784b2eaf83b, 'MintMoney Mini Five', 'MMMF'), + (0xba03ad1444367472a7b8127125a4eeeeea796ac1, 'IOC GENESIS LIMITED', 'DCL-IOCGENESISLIMITED'), + (0xba0992930e36e5f2873aa149045f69a3943c0602, 'Mr4Bet''s Chain', 'DCL-MR4BT''SCHN'), + (0xba11dd3ec1b9edfa8b85e6b0b197dd718abf117c, 'Meta Hunt', 'DCL-MTHNT'), + (0xba1c37bc9a06d6c6b0361a8833a1e90b0cc71070, 'Chamagotchis', 'CGV'), + (0xba1ca0bd47ba20d4dfedb7a83a198ce2b7ec746c, 'Kaiju Mutants_NFT', 'Kaiju Mutants_NFT'), + (0xba208fe63e1243ccf6ce64b61e6931e7034119d8, 'ZOMTA', 'ZOMTA'), + (0xba21ca68543c7094b9f868f2fcf9fadc97075e4b, 'NFTs', 'NFT'), + (0xba222cd068a4ccb9fb372c5fe577af4ac7594f31, 'Lemur Dynasty', 'LDClub'), + (0xba38eda92782aafdb92861582e010fec71d62bd9, '1980s Commemorative Ticket', 'SWEDC'), + (0xba5d08831752908e9752a81c87a6275bb2328b23, 'mat', 'mat'), + (0xba61daa84a74bc39dff903d0a01e212585b97a4d, 'Mystery Monsters 1', 'DCL-MYSTRYMNSTRS1'), + (0xba697dbeb86f25b90340c866201ec4be990dcfa9, 'Shiba-NFTS', 'SHIBAS'), + (0xba6abf2a6ed0e680799d59feff6470bbfebecb0a, 'BleskoArt', 'BLAR'), + (0xba6e421833f6c190a830ce6e142685b3916c9bd0, 'Pixel Heroes X', 'PHX'), + (0xba727a5e57a105fc2a1d1fa24627473f084e92bf, 'AliensNTech', 'ANTECH'), + (0xba730881dcd863f9ceabb81dcdcd597b41999461, 'A Night To Remember', 'DCL-ANGHTTRMMBR'), + (0xba7497f1abac5307ca4a4f167e82d07dac182844, 'XNFT3', 'XNFT3'), + (0xba75108527c630a093ab4a4a569ddab2e2b8a8ba, 'NFT Item Land Characters', 'NFTILC'), + (0xba75a2179b3556b795f7f7fb84fb430683b6ddad, 'BearGalactic', 'BEGAL'), + (0xba75de96e273906021c2296aa3af02321b007d54, 'Doodle Lady Club', 'DLC'), + (0xba7cd9f08b9a70f05e93025bd26105f2c91aff0a, 'Zesty Market NFT', 'ZESTYNFT'), + (0xba81c39fc5590e01fdd21381e6f3ee399a118277, 'MURI x LEGENDARY', 'MXL'), + (0xba83ac139b29c47953868850b32301b9ac45bd6e, 'Good Game 25', 'GG25'), + (0xba83f9afabd4e835e0583e47d326a872bbd0b62a, 'Anitta Behind The Scenes', 'SWEDC'), + (0xba8dc3b33d464c384f163e80872a1cb0d5b9c76b, 'Galactic CYBORG Soldier', 'DCL-GLCTCCYBORGSLDR'), + (0xba90b0ccd6c17a1992135abb39247e9da144a3c1, 'IG ICED TUX', 'DCL-IGICEDTUX'), + (0xba947797aa2f1de2cd101d97b1ae6b04182ff3e6, '#Cryptogreyman', 'RAIR'), + (0xba94f2db8d2d56d5fb558d9e8fb8f3afe54f2c25, 'Pepo Paradise', 'Pepo'), + (0xba951276fd8c48afd5a346f1441cb36cb4271e81, 'HelpfulBabyClub', 'HBC'), + (0xba9915adf62380755f319dc38acee9ef17640d7c, 'Face of Mesoverse', 'FOM'), + (0xba995919a89a1398ae3453b98058b47866ce28fc, 'General', 'GEN'), + (0xba9d40b014fc335664f350805f1464035bb2aa36, 'gm frens', 'gmf'), + (0xba9d8d40c8740501d76432b3b136428112884e79, 'GEN-T34', 'GEN-T34'), + (0xbaa24df74ebd721da500863fd7f8b4d9fcd8c574, 'Altcoin Radio Walkman Collection', 'DCL-ALTCNRDWLKMNCLLCTN'), + (0xbab3ed70e8c2377ca34b0d61e06a42b403001b3f, 'Droplets', 'Droplets'), + (0xbab85b0659542394bf123694397d88276d5ae92e, 'Bad Punk NFT', 'BP666'), + (0xbac0add0ce6af85d19e32d65cbc029a95516ba0a, 'MANA JOCKER', 'DCL-MANAJOCKER'), + (0xbac0de71599cb0fa870b6bc46cc654df31695081, 'Fryceps', 'SWEDC'), + (0xbac7ff5f88a543d3cefba14c65ee0f6c4e689cfb, 'RGB Rocket', 'DCL-RGBRCKT'), + (0xbacef3192146131d02e238f557c26f1f549507a2, 'AREA 51 INVATION', 'DCL-AREA51INVATION'), + (0xbad1c910568230c92c223b55564cf689928ec1b6, 'AaronLeupp.com 2', 'DCL-ARNLPP.CM2'), + (0xbad34189d2a9ab488286f276de9068ce1b7dfa2f, 'META LION KINGDOM OFFlClALes', 'MLK'), + (0xbae07e253ac8bb6f094bc69d41b26a7f742c1a3f, 'Footballrs', 'FB'), + (0xbae8b399062e949c930cc848b440decfa4ee6e8c, 'Zelenskys Army', 'ZA'), + (0xbae8b89b8865a6c22f28d39ca7d3bf2baebb384a, 'Rich Homie Gang Gang Chain', 'DCL-RCHHMGNGGNGCHN'), + (0xbae9642a818ac3aa90c65f5c1a0afca6ebd6055d, 'Monsters', 'ZZZ'), + (0xbaefb51304d1f4e054ba8617579451f4434527ad, 'Astro Doodz', 'Astro'), + (0xbaf30d0341392142b91c59748cb0f7cb2fba5dd4, 'Star Pet 2 2022 by Oltecs', 'DCL-STRPT22022BYOLTCS'), + (0xbafdabd09b64cf6f637e1b1533cb810b791b5824, 'New Crypto Heart collection 4', 'NCHC4'), + (0xbafe55c102b4ab4daace4ad1c439aa1aeb93c1b3, 'Battle Droids', 'Battle'), + (0xbb0122e47783c84bf7d1638ed0bc2e3722c231b1, 'Sheep', 'Sheep of Army'), + (0xbb19b9e39cb06402bf17886708506dba0b8eb2f2, 'DeFi Arena', 'KEY'), + (0xbb1a216c1f94d87a2dfcf23b13d8811db26ec005, 'BikersNFTBike', 'BBIKE'), + (0xbb208923cfe5fd935a353fabc02336a0e6b234fa, 'Roundlings', 'ROUNDLINGS'), + (0xbb2a3b08ab51a07c590617475b9902ed6179ade6, 'FURBallz NFT', 'FURB'), + (0xbb2b71e685a53550907fb62524e7d5c72dd37747, 'DCL Mascot', 'DCL-DCLMSCT'), + (0xbb328a8c8d655d606f86a1049b1caf34d607ce66, 'ShootToContentNFT', 'CNFT'), + (0xbb3ecaca9361fb4916ebd4db274df60413d88dd3, 'O Lenhador', 'OLEN12'), + (0xbb485a83157ed63e94a9c2b53072ffe75f8350de, 'Skullpunks-Og', 'SP-Og'), + (0xbb501156a6410016b9c634e710fd8b94d0a9b541, 'GEN-T06', 'GEN-T06'), + (0xbb52bf82e0733efbcdded12d12fc7b18a4fc8857, 'CorgiTheD', 'CORTD'), + (0xbb52cbbbd314fcbca9390aadff49ee31ebd808c5, 'AlfaNFT', 'Alfa'), + (0xbb534890827bd5e679cd98e3e78a55f5d9895132, 'Arnj Joe Halloween 2021', 'DCL-ARNJJHLLWN2021'), + (0xbb57dc20ab89c28109371c05c7e21fc4977217a4, 'NFTs', 'NFT'), + (0xbb5d853e89ef928419908e54890f05ca1808d254, 'Egg Dog Dreams Limiteds', 'C'), + (0xbb5ebcea48e21a9a0e5603900d6ed681811bd987, 'Strong Elves Club', 'SEC'), + (0xbb5ff970a133c1e0cd1b811a77833fcfd45f37b6, 'Omikuji 2022 Spring', 'OMKJ'), + (0xbb6fed233ab90f8ea99f757c0ea0f395d27a7f98, 'SwiftNFT.io', 'SWIFT'), + (0xbb71e93c5126b0be0e10a1bc50d9ed19c61e831a, 'Camo', 'SWEDC'), + (0xbb768e45e621fea4df1f4a12a3086d00abb35016, '0xLarva Lads', '0xLARVA'), + (0xbb78afb2396093b3c988cf1edc54443d34d03ad8, 'CryptoMaids:Event', 'CMTE'), + (0xbb7a204d96cd6b02ec9f2c0f49e283201df3ca80, 'Weird Catgirls', 'C'), + (0xbb7ced31f089e1d1303c5f4ae904347da95469dc, 'Bally Gang OfficiaI', 'BAL'), + (0xbb7f0ab8123be56dfc8e8a1e49150687fae36583, 'THE Mouth Collection #1', 'DCL-THEMTHCLLCTN#1'), + (0xbb964c3e5edece33c5666c4813109ef104a67b81, 'Lazy Bunny Club Official', 'LBC'), + (0xbb99c252a537ecc7f1948f753131b0d5d43f9fee, 'Formes de couleur T4', 'FDCTQ'), + (0xbba112d1a9d08e65a58d0a290b62f909662e6826, 'CryptoTeckels', 'CTK'), + (0xbba553c1c4c08caf35ddc15b09a3c4120bf05b60, 'Generation #18', 'G#'), + (0xbba5af1737f1628ecfca8fd4acb11cd32bad678d, 'Ratyu', 'RTY'), + (0xbba8c1902c5207181ecc23039ba5aa7e67acff87, 'Victory_of_Samothrace', 'NFT'), + (0xbbaa0675917dc0c88831374aa348d59802a87efb, 'LuarnM2Ev2', 'LM2Ev2'), + (0xbbac89100fde80a517159cde299e52f2c51865d4, 'Patron of the AArts', 'SBRPatron'), + (0xbbaff5b5f716c9d7ba4fc4f5da7264cf80779683, 'V1_Find Silver and Gold Bear', 'V1FSGB'), + (0xbbb03966cc733d4858aac9d1b435bc5334bd968e, 'Metamotive Wearables "UNNATURAL"', 'DCL-MTMTVWRBLS"UNNATURAL"'), + (0xbbb8549266367126428ebc672ea94e3a6e6b48a5, 'Lazy Turtle', 'LZTL'), + (0xbbbb4659925bfd1d15a17d175e4517112ed8d087, 'MURI by Haus', 'MURI'), + (0xbbbceb21c02f2c33a5e811a4a6dd6d517140d1ed, 'Daz3D Drops', 'DAZDROP'), + (0xbbd7a9cc1e5ad08e49e332c1884368e2d2e2fc7b, 'CryptoVal', 'CVAL'), + (0xbbdef12a84b8bf6a7fa8d58254278dd7c1bcae67, 'Lost Eden NFT', 'Lost'), + (0xbbe62c07b136d8853d3d20d95468f3c0c7930afc, 'Cyber Diamond', 'CD'), + (0xbbeeb4fa179a8ef9b3e61c2dd51def71ec1d5ed5, 'CryptoKnightKingdom', 'CKK'), + (0xbbf075af482554f3740b670a094e88e1b8d7a017, 'BSP Class Single MINTING NFT', 'BSPM'), + (0xbbf679605a3d3af30942ff60faeb94806fd91a84, 'Amoeba Kingdom', 'Amoeba Kingdom'), + (0xbbf75a5b94b63ebeb639a948a52574eebeb4b898, 'PolyDoge Baseball', 'PD⚾️💯'), + (0xbbf7f2476c0aa059bcacc553aad97f8f2edd18c4, 'SpaniaIo', 'NFT'), + (0xbbfb8014acb466df0ec6fe87081aa7263a63c2a3, 'Galaxy Head', 'DCL-GLXYHD'), + (0xbc045e3410dfaf31c7b43e14c1e717b92cd283e4, 'kirinLoot', 'kirinLOOT'), + (0xbc10dc959fde83e7b0ecb0d9aa40b6a70a2e7527, 'Digital Kush', 'DKC'), + (0xbc144defb9ebd9764cea0d64a805e4ffceffbd3c, 'Scary Neighbors Club', 'SNCLUB'), + (0xbc19157dfefa18bab7af96d020a6f05bacd8953c, 'PlaNFT_Artwork', 'PAW'), + (0xbc1c25cccfebeba843a89e7535d9b7c0f8a8bad3, 'Your choice?', 'Matic'), + (0xbc1fe0f3b02ce5ff516f14ac7b79dd6397a54b9c, 'NFT Moon Metaverse', 'MOON'), + (0xbc225e4f68395425c34bbbe7ac937f95410ee3bb, 'Treasure Turds', 'TURDS'), + (0xbc2e56e38d94d22705251b2befd58a10c30d6bf0, 'Web3 Fashion Week', 'DCL-WB3FSHNWK'), + (0xbc3c118922f44106abb9d1c1bc9c3cf367cdd368, 'kirinLoot', 'kirinLOOT'), + (0xbc42bc72a571a53071a303e16111a82bc7dd00df, 'Ladies of the Night', 'LON'), + (0xbc49b386b1f811fdf82e60dea55793a13907b6d8, 'Theapples', 'TAP'), + (0xbc4fb1832414136047edcd8c256a2d0661382cd0, 'Ecoland', 'ECO'), + (0xbc51e9f24cedbd24704d2e53cee623e1590cf508, 'Weird Catgirls', 'C'), + (0xbc5693f4bcbe4d60e85da0df9130b674d8d8b55a, 'WorldPeaceNFTboys', 'WPNFT'), + (0xbc584f9d558ad371e14821868904acc0ef8dae4e, 'NFT Garden', 'NFTG'), + (0xbc5e692b850b9d148a19d6411d0f32e97e62a68d, 'NNFT MOON IDCARD', 'MOONCARD'), + (0xbc640b210f2b16f87365d7b83081adbcdf7cc8ff, 'GemGuardian Guardian', 'GGG'), + (0xbc70bf28d42035e99592e4d14554fde8dc3aa436, 'Generativemasks wearable #1', 'DCL-GNRTVMSKSWRBL#1'), + (0xbc79ede19623a315833586ea5e0c86f51c6f5b45, 'Salt Lake City, UT Pop Art Edition', 'SWEDC'), + (0xbc7cec8f35db67494e983e763c548af323a5cb77, 'Missing Sock', 'MS'), + (0xbc806de8befee2efcb3081c8afdae0cc11c8e40c, 'Baudet vs Schwab Unlock Content', 'BvSUC'), + (0xbc822def7337811f6fed03920ee877bc28a6685e, 'Generation #22 part 1', 'G#P1'), + (0xbc8363c0eb393cbbb173b9aa3678545d743efac4, 'Happy Crypto Clover', 'HCC'), + (0xbc84192a1eea6187694606f9eccb5e80aca8935c, 'Feedback Promo Edition', 'FPE'), + (0xbc91658caeda31323515566eae2e89bdd3b393a3, 'Squid Ink.', 'SQUID'), + (0xbc91ba9ea944ab5fa8935393e1538bd1f6d4b284, 'FacelessBionicPixel', 'FBP'), + (0xbc933aa59ee5539591e5b59d0116b6db663bfb95, 'UglyAliens', 'UA'), + (0xbc95a316b90947fc47ebc4ba218094015f26d145, 'Tutorial', 'TUTO'), + (0xbc980c98e480226e6e642ec739788d0e5aa23ecf, 'TRIBE X Empire Act 1', 'TRIBEX'), + (0xbc991a1bdc34064be5f03726e8369a0229266c37, 'Lit Protocol Genesis Canvas', 'GCVS'), + (0xbc99449f0f65b2aca55605f736ac70266fca81ac, 'Extinction Fighters Reloaded', 'Fighter'), + (0xbc999756785792b32f1d56b77be9b4473a260845, 'CryptoCatsClub', 'CCC'), + (0xbc99e4c1b4b2c5c13ec8b8bec378e8c656596d51, 'Drea', 'DREA'), + (0xbc9c07ca0a8183cc318b1f10974889e05daa7a3c, 'WZ Footwear Spring 2022', 'DCL-WZFTWRSPRNG2022'), + (0xbc9d3e62aae45c267d4f31c8031a52554473a5dc, 'Choco-Candy Pop', 'SWEDC'), + (0xbc9df7bf3e4112c51dc6779f9d39fdb2b76b6bcf, 'jokerwong', 'jokerwong'), + (0xbc9fb9c3ef2f480c919b41caee518320ac651a0a, 'Mahak Charity', 'Mahak'), + (0xbca62a64d4a55a396359c32d1a541d32f177befe, 'KaijuFrenz', 'KF'), + (0xbcb012d5a428eaeb56d0ba08fdfa850f90342ec1, 'CRYPTO COWBOYS x DCL REAL ESTATE', 'DCL-CRYPTOCOWBOYSXDCLREALESTATE'), + (0xbcb3b5903e63ccf3514f88af911f3abf1a3701c7, 'Hyperpitch', 'SWEDC'), + (0xbcb9aa261a45f962fc52a34f20431362c72a2e09, 'SIZELESS-TWIN', 'SLT'), + (0xbcbb7088013d5284e0972bcc4a686660606853e5, 'New York City, NY Silver Edition', 'SWEDC'), + (0xbcbdc6b15328faf759ebd68ea294041437ecdf7d, 'SHANGO the Avenger', 'SHANGO'), + (0xbcbdf56eb31083c3fd166f3d5035ee74432c0bf4, 'SuperDoge', 'SUPDOG'), + (0xbcc01dff1fc882006f77169ac6c9af9d43699539, 'ANTHONETH COLLECTION', 'ANT'), + (0xbcc0b7d29af182f62a65f6e7d02298cb0a0e69c2, 'ENVELOP Wrapped NFT Distributor', 'wNFT'), + (0xbcc7fdc4970ed941e0d6152bf3c014db189e429e, 'fbd', 'fbd'), + (0xbccaa7acb552a2c7eb27c7eb77c2cc99580735b9, 'Artvatars', 'ARTV'), + (0xbcd0dc588176f32f4e1e2af351bee2d79df80edb, 'Funkies', 'FNK'), + (0xbcd1932bc8bdaf5b5d3ddf6c8c1d8e5d14aa315c, 'Elegance by Maryana', 'DCL-ELGNCBYMRYN'), + (0xbcd1df499ff0dc651d35d0ec49f9c34bdc0e2fc8, 'Animo.Women', 'Animo.Women'), + (0xbcd463737481feac44cf680715f15b0e67718edd, 'Bad Dog', 'BD'), + (0xbcd5e469bbb67cd4348487ea560d15baa2739e36, '21G', '21G'), + (0xbcd94865b26d8e2985be0d3ec3c42d7f22b99c4a, 'hi', 'hi'), + (0xbcdfa7f9683177be52ce36368a00511bbc9ec613, 'BONYZ', 'BHS'), + (0xbce007bed6c3ff086112f65415b690c33a394ca0, 'Close yet far', 'CYF'), + (0xbce5e1e597054192538a17df70624d383d260839, 'Apple Cartoon NFT', 'ACN'), + (0xbced3af4eee8b5384dcead65084297242b010dde, 'Pixel', 'PIX'), + (0xbcff87a7d7828bee9443ff3e2742b56671fa6a99, 'SomeEggs', 'SE'), + (0xbd00c2dd83ee73b33573482a11708a60cbcfce51, 'FSM', 'Farsite Module'), + (0xbd013d81568be01d4037df8599c96bc569d5bac6, 'Hello', 'HELLO'), + (0xbd03c5f505e40b341c7d3fa6132b40fbb53326af, 'Houston, TX Pop Art Edition', 'SWEDC'), + (0xbd0b177a4f6df3ea5d635cf519aa357ee3e481e6, 'Pixel Pugs', 'PP'), + (0xbd0c9025379834c05e429badc9048463bea06b61, 'Non-Fungible PeePees', 'NFPP'), + (0xbd136e8c5359ac39652f5b4041f6c6549a4b6109, 'FoxiesPOAPs', 'FOXIESPOAPS'), + (0xbd2f1750cc756fc675e6ddb99134630cba6ed36d, 'CryptoNFTApe', 'CNA'), + (0xbd3066ea375d47826dcad8b892a2ff0e1260526e, 'BTCNFTINC ROCKET', 'BTCNFT'), + (0xbd317cf77cfa4122077eb363af5b3367fafb0e1b, 'Smooth Yeti Mountain Club', 'SmoothYetiMC'), + (0xbd32a1cb5059a19ccb538ff182bb7b242ef7f3fd, 'dark', '11'), + (0xbd3662272c60c5b73fcc558b042e6554cf11396a, 'Reptikas Collective Mint Pass', 'RPTKAP'), + (0xbd3e4138a4dabf0e2dd70505c839cc6e965497d9, 'mike8848', 'mike8848'), + (0xbd40404ead38b856788944aee7fad86ebedec1bd, 'Python SDK', 'POLY'), + (0xbd4e120f07f05662d1b29f250d02cb497161327c, 'If Kermt Was A Pokemon', 'IKWAP'), + (0xbd4fa498606b4bb560fd9d71c77d545b0026d4ed, 'kooler bear', 'TTKN'), + (0xbd58283614474a4c60acdb74291a0ce71f0beee2, 'Vertual Dunk Deluxe', 'DCL-VRTLDNKDLX'), + (0xbd5cd44a2f9790cafd3148f8f6c550aa75f191dc, 'DoucheBAG FOX', 'DBF'), + (0xbd6d79a958078684e7508b99a7135eba8ddffc47, 'SchrootLoot', 'LOOT'), + (0xbd6ef0af75a0db67b0942cd76b461d808d2818a2, 'Strange Dwarves', 'SD'), + (0xbd757a3bddedb11fe0732c3ff10fd4daee9a46ed, 'gerrrfggfraa1', 'CB'), + (0xbd77b5b53ee855a1ca756a0436747c7c016abfd5, 'WVRPS by WarpSound Official Polygon', 'WVRPS'), + (0xbd7a80420faaf48d869de8b0ea97bf948806d8f7, 'Cryptmoon', 'CM'), + (0xbd7f1168fcf9ae5a2024c172fbdf6361576690cb, 'The beckroom House of corpses', 'Искусство'), + (0xbd8361bb3423a973f7d4d233b78368fdbd1fbb3e, 'Christmas Presents 2021', 'PRESENT21'), + (0xbd8363cb7cdcc844ca93caff69275dec76860e09, 'MultibearsAbove', 'MBA'), + (0xbd86a50bb1252474b8f170faf36115362e5abd62, 'DG Hoodie & Shirt', 'DCL-DGHD&SHRT'), + (0xbd8812b917f31a8148c409c56fad5330dac8031f, 'Charming Ape Club', 'CAC'), + (0xbd8a47b5d9065f452d7ebaacbd1af459a2f0829a, 'CampusCrypto', 'CC'), + (0xbd8a8f21907088951257ceaf92601099a825c1c4, 'Placebo DFH Meta-Genesis', 'DCL-PLCBDFHMT-GNSS'), + (0xbd90c647863a5b7683dc03fbb1d01eb106b6fe53, 'HamsterGreen', 'HG'), + (0xbd9aa3bbcc1f682e956a34a3bbb31bec4ad6cbc1, 'denemeNFT', 'KRY'), + (0xbda3e35345350e5e36d81583db238219f65521de, 'The Bubble Bunch', 'TBB'), + (0xbda88f28d174267c5c790949f420704e9b223251, 'BOLD FEMENIST', 'BF'), + (0xbdb49e024fb25bcef581f51d8e90c0667c3013d2, 'VeggieDrop', 'VGD'), + (0xbdbeeb856d27862d840665011ef5441d843266b4, 'CryptoPhallus', 'CryptoPhallus'), + (0xbdc0a09c0364783dcb6bddb2d274c62d71377cb6, 'BAYC LAND THE OTHERSIDE', 'BAYC LAND THE OTHERSIDE'), + (0xbdc78d06780c2ece13f141fac1eda4561f94803b, 'DanceWillNeverDie', 'DWND'), + (0xbdc91993cc370eed38e59cd1c68b6d2f88508ce2, 'Fast Food Wolf Game', 'FFWG'), + (0xbdcd6974cfca6a3bcdf91ef79dac25741c4b627d, 'Gooeys', 'GOOEY'), + (0xbddb590cd83125ac17143004d9c15c36c2bbd3c4, 'Raging Teens Clan', 'RagingTeensC'), + (0xbddbd6c427d772b6d7e45de1abb192c1355b0613, 'Nifty Aliens', 'NAL'), + (0xbde19c5780f758c83291279f8cf700b17a7d0ea7, 'Wacky Buds BB', 'wbBB'), + (0xbde6f9b9a16ff2e1d624d542e07b1c679f6c699c, 'blankspace', 'bs1'), + (0xbdee8107809af885f7ade9bf16965b463f8a52bc, 'TheMendelisedBulbas', 'BULBA'), + (0xbdf80418c1c9c6fb60752db0afeebca777cef7a2, 'PADNFT', 'PAD'), + (0xbdfd6257db3ae2a1123e78ef22367f1a672c5d5b, 'Wizard Imperium', 'WIZ'), + (0xbdfe0f82be0c666316da5253617f869612cbe72b, 'Genesis_Zss_Punks', 'GZP'), + (0xbe0c0d2a547e3b44a17221b49ab6019621a6c152, 'TheHappySlothCollection', 'THSC'), + (0xbe0d4eec288464fb95de3fab7b76112eaa64867a, 'Mutant Apes', 'Club'), + (0xbe1756db756e728a409e89ae55b2a2286929a01e, 'zonkers', 'ZONK'), + (0xbe1ea19846c22c5232273372058242916b118e2a, 'Cataclysms', 'CATA'), + (0xbe1f42725f2176cc274b8c07cc61fd76fa924d25, 'Wilderness - Gen 1', 'DCL-WLDRNSS-GN1'), + (0xbe2235c90ae93a1929557d1dc15ec6306ceeb365, 'Sweetie_Boys_GENESIS', 'C'), + (0xbe336776f2c1315e66cd65f4622285955aff99e1, 'BETNFT', 'BetNFT'), + (0xbe3655c0e457df3a551e5d0ecee5d6a6e69e3e8d, '.ape', 'APE'), + (0xbe37ab7f2b19f92964d22cf38ddeeb34996f23f2, 'MGMNF12', 'MGMNF12'), + (0xbe38103fa6f97eeb6a62daf34ec10c2910ce559a, 'PolyDAO', 'PDAO'), + (0xbe5266c9e04ecf055fa1f2bd4cf85ee0fb7132df, 'Hog Mob Society', 'HMS'), + (0xbe527a80617d77e917238d45984aab39a93d9ce1, 'RoyalRabbitSociety', 'RSY'), + (0xbe5bd38bf416f8b00104ae2eda88921fd8f11b0c, 'Larissa’s Real Signature', 'SWEDC'), + (0xbe5d4f5c09289d84c82ea20b0183565abb4de83a, 'Sweet Apples', 'SWEDC'), + (0xbe5f298792d5efb41db78f495313ba0699b10322, 'WildRhinos', 'RHINO'), + (0xbe60eda61ea390f771e1b4d39b503d4fe0f26dec, 'CryptoJimcons', 'CJ'), + (0xbe64b6f56417374f77ad2a596062c17b32df1c24, 'Pangs NFT', 'PANG'), + (0xbe66ff0ed76e5338a2388347b5bb476e65067bea, 'Time t. Hamsters', 'TTH'), + (0xbe703fb9c65e14d1286aae5affd6bba6905e94df, 'Hoodie Devil Collection', 'HDC'), + (0xbe71bc476369f88ab80e9d0d65c10894a64422b1, 'CryptoysClassics', 'CTC'), + (0xbe7a7252c6edc8697f20cc76e846ed91b9f077b4, 'BeanieMilkCaps', 'BeanieMilkCaps'), + (0xbe7aded5dfcaa0e51f885748aa4dff457f0c52a0, 'KaliCo Ricardian Series', 'LLC'), + (0xbe8e5e2120e501ecf0d2769ee824ed2e139aa9a8, 'GEN-H08', 'GEN-H08'), + (0xbe99257198fa589dcf4d73b2b464dee9aa5f3ef6, 'Ape Pixel Yacht Club', 'APC'), + (0xbe9cd61ebd0e856bf8dfee3d1c81679a3e523903, 'Bob''s Blobs', 'BOBLOB'), + (0xbe9db1f103537b33251acd46b2b9e22c5baf6336, 'BB Bears', 'C'), + (0xbea09fc38497854c37366e8cce4b180583d1a6be, 'Diamonds & Sugar', 'DCL-DMNDS&SGR'), + (0xbea255e8551cbc7260352b52b87a1699b45eeca5, 'StoriedApesLegacy', 'SAL'), + (0xbea3d36b34ce3d835ba8569e036be95f94241f12, 'NewAmong', 'NA'), + (0xbea4cb9d1752673d66a8c2ba0319a23e7f8c26f7, 'Tropical Fruit Yacht Club Vacation', 'TFYCSV'), + (0xbea4feb89eb612babecc3e623437dc7cfe080cf7, 'CBomber Weapon', 'CBOMBERW'), + (0xbeadc2790240305269b33ff8b6985b21fbac55d9, 'CryptoDuckOfficial', 'CD'), + (0xbeb31d13425377a2ddf7ec4366c60be348e867db, 'ElyaDao', 'ELYA'), + (0xbeb703ed6bbefc9eea41a25bb53d7d172ec46e1a, 'Monster', 'DCL-MNSTR'), + (0xbeb73708a3dd1d7ff4133b46bb2732bd8cec0be3, 'Wizard', 'WIZ'), + (0xbece6215749cc5cdcf35a26b9474afef5f526f8f, 'NunFunkz', 'NFz'), + (0xbedf7769720481f03a5b4927a1d51c738cf20fdf, 'DVI 721', 'DVI721'), + (0xbee3c2afe4f53151fc2c12fbbae4467b3b4cd685, 'GhostFace', 'GMGF'), + (0xbeef57b46f075a51b19463284783b9e1149f6059, 'World Of Baseball', 'WOB'), + (0xbefe619bf7533a93332356566a89ae1d938f0392, 'SkidmarksCustoms', 'SKID'), + (0xbf01416b3219db99e989b2bb12bef90bf8d2ec19, '"P"', 'DCL-"P"'), + (0xbf045f6f8f2a9f687f9ef7879fa19e645e991119, 'Ninja Xolo Shell', 'DCL-NNJXLSHLL'), + (0xbf091830821882ec5a899232b5c3cf9396b78101, 'Neighborhood Kids', 'NKIDS'), + (0xbf12137f35a62d15995fca5f9a7d35d02ea46b01, 'Bored Ape Riverboat', 'DCL-BRDAPRVRBT'), + (0xbf12a5471d5c2cf482dc2043c3da29cdcfaf243d, 'Rstmp', 'RSTMP'), + (0xbf19045d4b74941429bf9c12aebc8357c00e920b, 'CryptoWhales', 'CW'), + (0xbf239dcbe8fdd6465a52357348d8ae2637f6c265, 'Zombie Teddys', 'ZT'), + (0xbf287e4142d869af5ee76bce0e1a2de7f5af5bbb, 'MANA KICKS', 'DCL-MANAKICKS'), + (0xbf2d0ba2ce641c0bde77ac7bff4ab081f2a93b7e, 'Coleccionables', 'colecciones'), + (0xbf364481ca93689472a176d926043d67e9ac7687, 'MetaSikhs', 'METASIKHS'), + (0xbf3c201943eec79bdb98e058c7dd58359fe2285f, 'CroRats420', '420'), + (0xbf424e065640f977ed9fae8b3b82ca251373e198, 'Shiruto', 'SHIT'), + (0xbf44a32cc7ffffc28ef678fef01b07ed10bc9f35, 'Mythia Origins', 'MYTHIA'), + (0xbf46bf8069fc847d183463d2e374bca3c78d697e, 'Ape Golden Mine', 'ape-golden-mine'), + (0xbf4b4918ccc6d1759eaea4f678db582dc4fcae16, 'Space Pirates Secret Club - VALKYRS', 'SPSCVALK'), + (0xbf53a004c5ee7ab88a40a2d95e6e77935fdfafff, 'Lucky13Me', 'L13M'), + (0xbf55265e7c2cb77d64c791430c759069620d5a21, 'StackOS NFT 1', 'NodeNFT'), + (0xbf5c64a5d417bbae72ef3b160cc8fde61d3a4e5b, 'Project Meta Planets', 'PMP'), + (0xbf5cad1b1505cb94100fca244d6d69020de3c2ce, 'PaperHands OfficiaI', 'PAP'), + (0xbf65e5a39b743b7f7a7b07f55f3c2bf2da3b0c76, 'HPoundSociety', 'HPS'), + (0xbf6b168ca0b7d7492bce62fe8394aab20f509f4d, 'Bacon Torch', 'BT'), + (0xbf6cf9d3047e85d237e98313d87b6c5ef4609908, 'Potato Commandos', 'POTATO'), + (0xbf6ee663fbcf35a962754e4e843ba3b087d88ea0, 'Wayable''s Weird Creatures Pt. 2', 'DCL-WYBL''SWRDCRTRSPT.2'), + (0xbf75c1d3830fedc8210334d4f63adc34a6a4a128, 'Sweet Snowman', 'SWEDC'), + (0xbf82261a4601e3cbd00623193f447232df9c35b9, 'LAND OF KARUTI', 'KARUTI'), + (0xbf863a2c520f7ee66e7d22a3b57bbb15e204cbb2, 'Knicks Backboard', 'SWEDC'), + (0xbf930880542e7b7a18357b34b37ba0b8ff9024ef, 'NASDEX 721 NFT', 'NASDEX'), + (0xbf93b516c9850f144e5cb6d5445eeb0bb001a13e, 'Lions 12^2', 'LION12'), + (0xbf941da7f46c1d05124d11022d404fdf6223f044, 'DaIsland', 'DaIsland'), + (0xbfa2d307a3e6875629c52c22d7e8791906554373, 'Travel Punk Official', 'TPO'), + (0xbfa60010212c46809219222e52f0cbf972d8a64c, 'TEACUP', 'TC'), + (0xbfa78d11a527307f28415b7c973fa820dd0fa96b, 'Candy Hearts', 'Candy Heart'), + (0xbfaee7da535679304a70215e2423d1a7f9a4dd39, 'Metaverse World Of Women', 'MWOW'), + (0xbfb083ea17f6824232d7d70a265e83227dc84651, 'MetaFennec NFTs', 'MFN'), + (0xbfb24d1b8c38f74312bf7544c97e736f457122a5, 'CyberEyes', 'CE'), + (0xbfc3e088739d7f23e467db5a1a0c86d58db39199, 'Attractive Bull', 'Bull'), + (0xbfc5c5dada5e4cef4b09ee9423c582b4fab9735d, 'Fireworksdesigner', 'FD12'), + (0xbfcea19b9146246fe4191837c2a0df8d54d4251d, 'DogePunkYCNFT', 'DPYC'), + (0xbfd23d88e04ace72ae863151c0ccedd986ae34eb, 'Final Fighters', 'FF'), + (0xbfd909d29222fc149cd2d6ea7e3a0fab2a44b6b0, 'METATIGER Peace', 'DCL-METATIGERPC'), + (0xbfdab2c61d5d307aadeda00e26b5106496e61bd6, 'kakatogallery', 'kakato'), + (0xbfdb7c51f870d07704872208827bf559153c28c7, 'ntent.labs', 'NTENTLABS'), + (0xbfde4c419ac035948bc4c096f4ee6f61fa81028f, 'Crazy Galaxy Patatos', 'CGP'), + (0xbfdecba08da8e63644c1fe91cc18397d770d365e, 'Witty Bufficorns - ETHDenver 2022', 'WB22'), + (0xbfed3a7faca9f079fd3e1d76efe2a61c8fb2be4d, 'TheEndLess NFT', 'TheEndless'), + (0xbffea0f791ea564e9827c56a20ea0f940b248b9d, 'GEN-L15', 'GEN-L15'), + (0xc010ed3ba16f7463939f451f9908adda468453ec, 'Anitta Behind The Scenes', 'SWEDC'), + (0xc012037afb04cb537274ae3ccecaa7df4b9617fd, 'Audiograph First Mint', 'AGFM'), + (0xc01c897b8167c6f8210201e3f85de780907b8902, 'brainy (Tobik x MetaParty)', 'DCL-BRNY(TBKXMTPRTY)'), + (0xc02abc6ae8f6123fce120ec32ba6298e2f020e59, 'Fantastic Flamingo', 'FF'), + (0xc02d332abc7f9e755e2b1eb56f6ae21a7da4b7ad, 'CryptoPunks2', 'PUNKS2'), + (0xc0345b32dc6165905fe90ca3e4caccd9d4b7e2c5, 'Baby Nugs', 'NUG'), + (0xc03ef1d0b19ced59e365379909066304588def40, 'Sarath Dev', '623c3a92ce746f5e6938c853'), + (0xc0400974d88ff8a6532a1612b9baac0fff66fe58, 'Space Bugs Polygon', 'SPB'), + (0xc053f08085ba827cc7b7b6e5a168b20d0b33041c, 'StarBoyNFT', 'SB'), + (0xc0552d61155a3f83f7ed5d388f45707cca53ef6c, 'Unique Ape Underground Club', 'UAUC'), + (0xc055cddf84d3bcdd7e281589a2a8402106bbc6d5, 'Very Important Primate Pass', 'PRIMORDIAL APES'), + (0xc05d199e8ac8fe740bd4db649465cc1113f43f51, 'Moodle Mugs', 'MODMUG'), + (0xc0640903d033286057b03226d312e806b9384c4e, 'RBS1', 'RBSO'), + (0xc06da3e9f1e3f2780204ae85d88f607bc96eb861, 'tinylabs', 'TINY'), + (0xc06fd77c1aec4dccefc2fe6b3649ec454585fb15, 'Anthropophobia Viruses', 'B2C1'), + (0xc073c1abe1f37bb90311e6f72ae1a0a3f0337a4a, 'Cool Noodles', 'CoolNDLS'), + (0xc07ad689c6995e4ac53ac18f93af610264bc9354, 'Project Meta Planets', 'PMP'), + (0xc083c69ce2d496f4914cbb9e015d6afdcf8756cb, 'Bit-Balls', 'BALLS'), + (0xc08d7d2794c01ca27fd28fdd9e4788aaa4cf3fb9, 'PixelKraken', 'PKRAKEN'), + (0xc0980ab019d7b185c36997a651cdcd528077d534, 'MetaboxNFT', 'MENFT'), + (0xc09a7c273c996d6e11429605e8523e2fc01624e8, 'Super Sports', 'TBC'), + (0xc0a212fc0dff9a085316a24be33b88cfff3c8c0d, 'GraphicRevolutionArmy', 'GRA'), + (0xc0b19635cfeb6772e8cf237c398d00567e16b9bf, 'Nitad18', 'NT18'), + (0xc0b46900ffffeade00d161b3f79c4d6582c1d0e7, 'MetaStars', 'DCL-MTSTRS'), + (0xc0b4cbd5b5364135b39f72463da864589cb2a192, 'Cosmic Apes Society', 'CAS'), + (0xc0b615531dfbd37bc4fc932349a2af6df27968f1, 'Macy''s Thanksgiving Day Parade', 'SWEDC'), + (0xc0ba3e6cac864af4a8680ac5925c6eb0b85d67d4, '[DEVELOPMENT] Ro Go YZPRFM', '[DEVELOPMENT] Ro Go - Ed GBHUMS'), + (0xc0bb0b06be418c696b0d400546bb222b7692d87d, 'Thrivo Fashion Week T-Shirt', 'DCL-THRVFSHNWKT-SHRT'), + (0xc0c00683c6fb392739e8a3946b1f461cdec4b503, 'Basic Parkour Pass', 'DCL-BSCPRKRPSS'), + (0xc0c9ef92c9d1c21f2ffcaea7b7fd5ba5ab874732, 'Dex Skulls', 'DS'), + (0xc0d13f02ffaaed86106e85197f6dbe7ac21806ee, 'pixfrens', 'PXFRN'), + (0xc0d90294b6e2afd062527bbc03f3908a62bd82bf, 'BoredParty - Clubbers', 'BPCLB'), + (0xc0db49b052aa24ebdc450b1f1753ce11b398966d, 'Blue Dream', 'DCL-BLDRM'), + (0xc0e4249d1d993e93a2aa9e434aa9182d534bdd8b, 'Monkey Shoulder', 'DCL-MNKYSHLDR'), + (0xc0f8262d27509dbc9ea1645c7a5740b7312c0f85, 'Unity Cards', 'UNITY'), + (0xc100998f3f129f1230165f45769236c5645aa6b8, 'MrBall', 'MB'), + (0xc1066e971a7f5cb25eb256f14e4329d07257a9b9, 'FFF', 'FFF'), + (0xc106cd29a24119fde4a6a0ba82246e276ee17749, 'MetaPirates', 'MP'), + (0xc108be8485c3a95ea29b6d70191fdf8d829aa672, 'AllBullYachtClubNFT', 'AllBullYachtClubNFT'), + (0xc109c84094a7e0b8d481d7bc4529b6b91c680741, 'gerrrfggfraa1', 'Rebels'), + (0xc11ea275573243a78f3f4c7a054143d5a690c70e, 'growmies', 'GRWMS'), + (0xc12057afa5f6e36ffaa0edae62e1c0e38e38b57c, 'CyberKongz VX (Polygon)', 'CyberKongz VX (Polygon)'), + (0xc129ba3c4086613babc55ccb91bb0e9e46ccecd3, 'Sparks', 'SPKS'), + (0xc12e246623f840ac9a7083adda239f67f84b8675, 'Uor koila logo', 'logo'), + (0xc12fa02791b3f763fdf833ac00ab190a648221d2, 'Freeport Metaverse PFP NFT', 'FM-NFT'), + (0xc14cc4d89116ec88ebb63fdf497aace6ff3745da, 'Arianee', 'Arianee'), + (0xc14f621d937d927b0e787fd6f6d016af85a032d6, 'GROWMIES', 'GRO'), + (0xc15a2ae2747425279eee1b72acd3b472d7883706, '100 Bananas', 'SPB100'), + (0xc15b3b9654f77a6b0f4356ace0bdd0923bb5f202, 'Chilled Kongs Gallery', 'ChilledKongG'), + (0xc162b6da1357d197c031f428ec7b6c6fca600e0f, 'lady beyond reality 1', 'lady beyond reality 1'), + (0xc166502d0c6925188d34962f1e4cf14f1e75fd5b, 'Gloomegirls', 'GEG'), + (0xc17d9b5b32bf6c54a52df64b99b42073a56b09ed, 'Cosmic chameleon battle team', 'CCBT'), + (0xc181b272237e286e828eda2c215b722871982340, 'LSD Gummy Bears', 'LSD'), + (0xc184f822184de177a724db5f0f0b296b4ed73f9a, 'Hero 1s', 'DCL-HR1S'), + (0xc191ee8e39d8e7d73d076efbc80c307a710b46a3, 'VTuberNft', 'VTUBE'), + (0xc192a5491d34a9e477a5c27e9150570e281b69bc, 'AI arts', 'C'), + (0xc19b566bd2097973b745d47ee86e117a1c9d98a4, 'IPFS TEXT', 'IPFS TEXT'), + (0xc19bb20633a501b64ec7deffcb042f90d9f017c3, 'BrilliantBirdsClubBanners', 'BBCB'), + (0xc19fcf4b24f14a6dfd6be529e4588312970e5520, 'Such_alpacas', 'Alpacas'), + (0xc1a06497dd7c45a4f58b4c9ac90e28ee7664bbf3, 'Big Burgers', 'BiBu'), + (0xc1a1fbf8cb8d79940ab5435262f051b1dd146ae6, 'The Project Zero', 'TPZ Cyborg'), + (0xc1a485fe9acb5fd3be6b626f049de4e6e553be81, 'LuxoBvlgariNft', 'LUXO_BVLGARI_NFT'), + (0xc1a5980fa3306aba762a92bad5b19e9fe0965e75, 'Fluffy Pigs', 'FLUFFY'), + (0xc1a7b3f67cd37e6b70617524422226252fbc76b6, 'DROID D2-CL2', 'DCL-DROIDD2-CL2'), + (0xc1ade728ea3393f81374cbe9962bc965c1f7aa88, 'Squid Game Punks', 'SP'), + (0xc1aef79c188599109ebc760913f9ddf993bbd2f8, 'Space Pants', 'DCL-SPCPNTS'), + (0xc1c662cd351b9a313080dd0708377a39353e53b9, 'Cyber Circles', 'CC'), + (0xc1c6a331d4013f40ca830c06ed47564d0d2b21cd, 'Gem', 'GEM'), + (0xc1cbb9ccbd9f5fea1502e4de21b56a26e55c6f78, 'HCI NFT', 'HCI'), + (0xc1d2020934e88cc938d9e655c42441a2cba30b0a, 'AstagaDragon', 'ASTD'), + (0xc1d8cb7dba76909c99968f2153764d5dbcaa9a68, 'LILHUDDY Behind The Scenes', 'SWEDC'), + (0xc1dd1ad18d7b6dd7ea0ff3955be74f55fbd33b12, 'Skull', 'Skulicial'), + (0xc1dda1e494ea112b97cd298a78e5ad6fb5d4d553, 'Spaz Gang "Double OG" Trousers ', 'DCL-SPZGNG"DBLOG"TRSRS'), + (0xc1e84cb77751781c64962b93e8e3e375cb0acb3a, 'Hello', 'HELLO'), + (0xc1eddfae96f38b195cb09063a2e8e9fc307ee19d, 'MegaBots', 'MBOTS'), + (0xc1ee6bfc29d7f0edc76b0f181eb5e75b652b1afc, 'Meta Tycoon', 'DCL-MTTYCN'), + (0xc1f39f52bcbb4b32af4a587da015316205005987, 'Hexarchia Warlords', 'HEXW'), + (0xc1f3b19e8cb4553cdef414aa909395442a64b6b5, 'Be beez', 'Bebeez'), + (0xc1f67a271f0c8337e068b4abae10722f0de279d3, 'Crypto Wizards', 'CWC'), + (0xc204f17d1ddb3b30cc068f38a251dad7a440971a, 'Dante Gorilla Farmers', 'DGF'), + (0xc2078fa52b58b29fd7ed9cce6215ab0cf369a9e1, 'Hiro NFT', 'Hiro'), + (0xc20b2c5015fe848dc91d4594c9b915e4f3f4fa47, 'thirV2_120322', 'thirV2_120322'), + (0xc210abffb3f4208a269ebf1ba49698dc95944aee, 'Pink Wig', 'SWEDC'), + (0xc2280cc171bbaf6e33b4711a91cd9d22fb983f8b, 'Lion and Snake v3', 'MTW'), + (0xc2286470228c29c8b3ee3b4a24de84f4e8afd583, 'The Slow Turtle', 'TST'), + (0xc22ce60970426a2f649ac7bedfaa4de87236ee7b, 'Wonky Whiskers Cat Gang', 'WWCG'), + (0xc22e51b1e84d2fcd0c30825f7f8844b86ed53fc4, 'Merman Dress by r.l.e & DigiFun', 'DCL-MRMNDRSSBYR.L.&DGFN'), + (0xc234b7d6c649aad581edc7cd9e7dccbad55aa734, 'QPRX99A', 'QPRX99A'), + (0xc254a8d4ef5f825fd31561bdc69551ed2b8db134, 'WNFT', 'Wrapped NFT'), + (0xc2571ebbc8f2af4f832bb8a2d3a4b0932ce24773, 'Niftsy NFT Wrapper Protocol ALFA', 'NIFTSY'), + (0xc25744bed31b2ae67e349a8ef59dfa48e064140f, 'DG Joggers', 'DCL-DGJGGRS'), + (0xc25a2ef94a121ea3ec45037502ba8912eb0ef486, 'My Little Oni', 'MLO2'), + (0xc26f630bb9687c2216e3a294ef32dae21f99364e, '3Landers Punks', '3LP'), + (0xc2723d28b66f921a4f53b1c9be030cd1aefe1c68, 'Slot Zombies', 'SZP'), + (0xc285f7712954abc9cf0b10c1fa960d0cca890ec0, 'RareBears Official', 'RAREBEARS'), + (0xc286f46df3f6eeb10dde891b5d5843f1800bdc2f, 'Beat Boy Dj', 'BBDj'), + (0xc295d52bce076be5a43f2353f3841c34ee2add8a, 'NounsSpace', 'NOUNS'), + (0xc2977359156b74797ee176d298adb1e7d29c061d, 'Angry Ape Army EVO', 'AAA'), + (0xc2977ff23e07c06273092f699eb4d1ba52e65cb6, 'ORIGINALS', 'O'), + (0xc2982b07e9ef4427d7de9c81229c66ac2970dfff, 'Embers Nft Official Genesis', 'Embers'), + (0xc29cbe04ae322469dc077741afa2fbccda748ae4, 'MintSongs721', 'MINTS'), + (0xc29e9bb0b580074411fb6321cc97578289cf7d9f, 'CyBotz', 'CYB'), + (0xc2a09879c6d5c4600c7b6c7c4ad14f28d3f93b3a, 'We Are Ukraine', 'WAU'), + (0xc2a5468a97ad5afac2753d5fbb65906e832079d9, 'Masked Murderer Gang', 'MMG'), + (0xc2a7d856a7b33498b64ad1121f0d389807756127, 'Be Like Water', 'BELIWA'), + (0xc2b6cd831178b01028f92fba60813d1baa18aa34, 'Luna-eBox-V4', 'LUNA2'), + (0xc2c1efd454d4e8c5f91477f63abc53fae74d2ed3, 'R·G', 'DCL-R·G'), + (0xc2c50abef04f2ea7115e28f6ba96ab116e308e1a, 'MutantsPunks', 'MTNT'), + (0xc2c56342e4cd461f2af1491de2f575434f5f3495, 'Web3Skills SmartLaw Clones', 'W3SC'), + (0xc2c6bc8e2c54c04b24d58fa9953753ecd5fd34f7, 'SpaceShibes', 'SHIBE'), + (0xc2cbbd0e1cf85a60a8c48ad075339a87c6875dec, 'ThePupa', 'PUPA'), + (0xc2cc54ce0ee5d01f161702a6c40d62b355d3ac2b, 'MrHamm''s Big Brain Collection', 'DCL-MRHMM''SBGBRNCLLCTN'), + (0xc2d7c11f2ee15e634e1d6cdd72c21a427978148b, 'CONUSIVERSE OFFICIAL', 'C0'), + (0xc2db3b633e61a6929b577df780bebb1efdc5a6b0, 'The Snow Zone', 'TSZ'), + (0xc2e691d6e6148d172d1163b3e1307b565bb86013, 'Astro Dewds', 'ASTR0'), + (0xc2ecb8ff6f4e827cb5f4eed80362590d17b0526e, 'METABILLIONAIRE POLYGON', 'MB'), + (0xc2f26e2473a8980f9d3d5f9c21cccf6cd159bc8a, 'blobnfts', 'blob'), + (0xc2f664866d3658f2d1a542c0160d13cbc8434086, 'MyNFT', 'NFT'), + (0xc2fb0afc1ed56553e8cec8a337ca68406ff0f5be, 'GEN-T15', 'GEN-T15'), + (0xc2fd2f864c8df0170740e29e2cf418e98f5b9a0c, 'PunkOligarchs', 'PO'), + (0xc300bf01590e3b158212a611587feb65b605c625, 'PixelAge', 'PA'), + (0xc308ba35130258b7255455f2225262656ceb0302, 'Fallen Angel', 'DCL-FLLNANGL'), + (0xc30cacf59897e2f9034888d9c10bdfee47523e68, 'Dunhuang Flying lady', 'DFL'), + (0xc311a922bd62db950cf5a0b055792a5836461c0c, 'Freaks N Guilds', 'FnG'), + (0xc320d0997e8a6dbc72d33f78dc4f64038357a2dd, 'duction12', 'DT'), + (0xc32a3b95d7b2e4c1f27b235c4a7bad8c43e25aaa, '2000s Poster', 'SWEDC'), + (0xc32f51f6d141b785d67a17a0d456508888bbbb53, 'Seeds of Life', 'SOL'), + (0xc32fb166020a2ae83a9707c17084498434249558, 'Anime Corps NFT', 'ACN'), + (0xc333f84fd2fd86760e7dc5a288b7a9d4128f2dab, 'HEXA NFT MATIC', 'HEXANFT'), + (0xc3368a0eee573e337203d57897111baa420bf70f, 'Transak 721 NFT', 'Transak NFT'), + (0xc337f02ddd59c5a29c53e28a76ef4de2c30733d4, 'TheWolfUsCommission', 'WUS'), + (0xc342b7c690262120cfb5093722906f30c406aef9, 'golo', 'gl'), + (0xc34cbca32e355636c7f52dd8beab0af2396ebd79, 'MeebitsDAOFounderToken', 'MFND'), + (0xc3510e89cc98f6c8d49c861b4650d668a6bf8645, 'Pixel Bears of Berlin', 'PBOB'), + (0xc354f2b17916d3fe3eb6816fdc603fd72a11bde5, 'First screenshot', 'First screenshot'), + (0xc36442b4a4522e871399cd717abdd847ab11fe88, 'Uniswap V3 Positions NFT-V1', 'UNI-V3-POS'), + (0xc365387aaefa9062cb1c99c276bf4fb1ee424258, 'PolyNFT', 'PNFT'), + (0xc365a7a18d10add8216dbd15a67e10cb9c47f566, 'Amazon Luchadores', 'ALM'), + (0xc36932ff28cb98573258d0e3df236113329abb2d, 'NFT-LP', 'NFT-LP'), + (0xc38041abae09d82ae5b5d72d3b036f983590d9ef, '0xWorld of Women Galaxy', 'WOWGX'), + (0xc3844c3aea8458e21bdeee7ba6ed328637fef8cb, 'NFT Item UltraFlamin', 'NFIUF'), + (0xc3898b54613c565318ad0948c8f4f1d942d24ac0, 'LadyLike', 'LL'), + (0xc3a1112a885bce5be6570e99399919d242806500, 'Web 3.0 Hackathon Participants', 'web3'), + (0xc3a9c86c2e8649ec2c352186b8ad5416b12a1bca, 'Gradient Randomosity', 'GRND'), + (0xc3af198b4b09afc0472a31332e780408b06361cf, 'BigTedCollection', 'BTC'), + (0xc3af461724b9a48626c0a7307e20fa23a51bd1c2, 'PoorPenguin', 'PP'), + (0xc3b03305fa48a58cced6dac83dd05132410a51b2, 'CryptoPhallus', 'CryptoPhallus'), + (0xc3b6408e2998550bebeea01cd44f2ebc1e07af7f, 'CryptoBubbles', 'CPTB'), + (0xc3b8281dd669217d22cc2ebc6df5956b69cc5c0b, 'Red NVLPE by 2426C', 'SWEDC'), + (0xc3ba7eb91bd31c331d3d0d934c908c7368e6ec50, 'Supernova Maria Pascual', 'DCL-SPRNVMRPSCL'), + (0xc3bab9fa376b82b25b548a11cf06be199b008e4c, 'BUNS.LAND Red DAO', 'BLRDAO'), + (0xc3beb6d149a24bf6d0a794bee262748818ba58f2, 'Special Edition Classic Armour', 'SECA'), + (0xc3bf7c3f2f1c80b4c58fcbd894083756479e7a45, 'Fox Detective', 'FD'), + (0xc3c335a04742e954bd6a8fcb0182688fedba5eeb, 'VeryLongAnimals v2', 'VLAV2'), + (0xc3d8b931fd3355f36902f041e0fc5418660e1def, 'Mystic Pepper', 'Mystic Pepper'), + (0xc3dbbe460921e09c6b86ae1acdfc011024b01025, 'Junior Bored Ape Club', 'JBACS1'), + (0xc3dcda960399ba0384cb76aa952cd48f1138c8ae, 'My Chubby Margaret s Weight', 'MCMW'), + (0xc3de3a4726b7d1ef8c4d11361de0b47ed6d11623, '8Bit parrots', '8bpnft'), + (0xc3ed20c3b00d66745736619c5ce493dbd1d91af6, 'Unfunny Pigs', 'UP'), + (0xc3f25fcc5bd481ce6a365e11bef7a231820b680f, 'CatHashNFT', 'CATT'), + (0xc3f289ccb4d075225b141a54c58096312abf4411, 'Carbon Vault NFT', 'COLLECT'), + (0xc3f49469be6da96bc2d24f153eaa6064082cbf03, 'BONYZ', 'BHS'), + (0xc3f586a93fa6bbcf19ad77678fc754aeabb98d57, 'Gutter Cat Punks', 'GCP'), + (0xc40031c4d04415d4bb4819890cf6f75b7c64ab17, 'silkroutenft', 'SLKRT'), + (0xc40287ac5c7a511fc4ccd283e542529a4e3a4baf, 'GEN-T12', 'GEN-T12'), + (0xc412f42212cb1afca484871f49d496beb864bff9, 'Cheap Chief', 'CHPCHF'), + (0xc414a2c1016f0f709173ae2583916ec9c588cb3d, 'CryptoSharky Lovers Club', 'CSLC'), + (0xc41daa4236e6474feff562f9f44ea521601dfbd2, 'She Is Boss', 'CP'), + (0xc426a6b908d5483644a2e0a127506bc970021404, 'Foodle Frens', 'FF'), + (0xc428911ed0ecca22f71d16f2cc8f1c560d2ef47f, 'ReferRocket', 'RR'), + (0xc4372427a3a68f419fe5df0ec0d5af84cf52e89f, 'GEN-T42', 'GEN-T42'), + (0xc44fb895ef3bf6c26fe1a0c6ad89a7cb172b1d36, 'Ascension Wings by Baroque++', 'DCL-ASCNSNWNGSBYBRQ++'), + (0xc45dbe387e577accabe7d396a93b735a81cb2488, 'Fully Faltoo_ManyMe', 'ManyMe'), + (0xc4632c3151c55e4fb662bed0bc30e946264ad618, 'OpenNFT', 'ONFT'), + (0xc46698e7ab1ed0069ad64a589d074b6d0693f123, 'Dark Flux', 'DF'), + (0xc466adb7128d31b5efd1454b30ba0f14c3f89918, 'Bored Apes Reborn', 'REBORNG'), + (0xc4674734775252512f02e36362500331ea51a120, 'Hanzo Founders Collection', 'HANZO'), + (0xc468ffa0316a136f382fd1b3767cc6efa01f9108, 'New Lock', 'KEY'), + (0xc469e56de3362e4ad82db2841a1805a3e8796d04, 'tudaBirds NFB Evolution', 'NFBEVO'), + (0xc47b1c287b0288d7ee0e0c95c5141a92c8088a2d, 'The Zombie Ape Land', 'TZAL'), + (0xc47d128849ee35597098d3df48529ec2d1dd517e, 'No Hand Andy', 'NHANDY'), + (0xc483b1a1b3e5e4caf1155e1cb160c1fafc60474f, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD08', 'MLPRC-HMB-C08'), + (0xc4864523d83c34a394744f9e9e0bf9329400375d, 'Tucson, AZ Silver Edition', 'SWEDC'), + (0xc488599971f2a7acf864bee20134054d40449311, 'Invisible Pets NFT Official', 'Pets'), + (0xc48ed783a58efbff910c567408a7834e51827c9f, 'SMB', 'SMB'), + (0xc49062ba9814b6f901e2472f6de30c3447cbf5d4, 'CaptainPingu', 'CP'), + (0xc492c2eb3d52356fda7146536d5fbd25172e6cc7, 'New Haven, CT Silver Edition', 'SWEDC'), + (0xc492d36ea9f731e27e37763495580ed955b21939, 'Elite Alpha Nft Official', 'EAN'), + (0xc494f4cdcf95de946a3e36d4cee7baf9c87f08de, 'Punk Hat', 'DCL-PNKHT'), + (0xc4999a3e91ef87c9ec5d8186d02b77f9a62458b9, '.degen', '.DEGEN'), + (0xc499c09b786154fd5712daa5560307521e1a29f4, 'IntekAI', 'INK'), + (0xc49b65e5a350292afda1f239ebefe562668717c2, 'Hyphen Liquidity Token', 'Hyphen-LP'), + (0xc4a57654ff598fceb3f0ba9d625a5bcb501cb918, 'EtherealSociety', 'ES'), + (0xc4a837f2ed1978dd54363bd290378e98b6b4289a, 'Desperte o Campeão', 'DCC'), + (0xc4a908cceb389e28b7f516a35452c440d0416f9f, 'Devil Chicks Official', 'DEVILCHICKS'), + (0xc4ad807eaa786269f0d5f655f44ddcdc94cd420e, 'OG Fkn Apes', 'OGFA'), + (0xc4b0e46cfda134bc5a76cd6318246374d22c9fe2, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL', 'MLPRC-HMB'), + (0xc4b1611b26fdf6d4960fafc36e8679f193a441d4, 'Huuk721Premium', 'Huuk721Premium'), + (0xc4ba3f673c4209992b7824e2de3c8ed129659c83, 'Bolero', 'BOL'), + (0xc4c0be2c8ce6fcdc52b12666ef203b86f48ffab0, 'Sweetbot Lemon', 'SWEDC'), + (0xc4c36fd893f9efe639244ae18d5debe4a6f83748, 'MintMoney MNRLs', 'MNRL'), + (0xc4cbde6076df2e9c45d24018ea54d92c840beead, 'DG 1 Year Anniversary', 'DCL-DG1YRANNVRSRY'), + (0xc4db24bc8308f6e0abd694890f65484b6b5e1868, 'Beluga Bay Season One', 'BBNFTSONE'), + (0xc4e09ff1af7b141b2be378254d533e36fd2d4a32, 'Itazura', 'ITZ'), + (0xc4ef101737cd115f5cd8d4efdf6337e867fb03ed, 'ZVCH x Coinbase', 'ZVCB'), + (0xc4fa4c1b80a2255217c5fa60e11fe3500d109ec2, 'Crypto Knuckles', 'KNUCKS'), + (0xc4fd6463970224a6acbef800c8ffee2345c5737e, 'Almighty First Collection I', 'DCL-ALMGHTYFRSTCLLCTNI'), + (0xc4febbf4caa15d28d2c6d893b93d022ee6b3a9d2, 'sbinft-dev-collection-2', 'sdc2'), + (0xc50a7ab639e10a7be82d365338bd1b2b8b63c075, 'The Cow Gang', 'TCG'), + (0xc50d71acd6238423b5f79bedaadec486d5c2a754, 'Baby Ape Bone Special Edition', 'BABSE'), + (0xc513f7aa483c25f298f7d608939b72b39677046f, 'Easter Bunny', 'EB'), + (0xc526bc569a63c8e8ac92cbc97431efd8c21b262d, 'Spider & Moth', 'DCL-SPDR&MTH'), + (0xc52787984c6ecbbbd5efa5981aac288344fa5354, 'PXLSHT', 'PXLSHT'), + (0xc531097c8c6da088ba142a0395c842803cfa34a5, 'Cartoon Warrior', 'CW'), + (0xc533c4d393bf0d736b444d128e1fed0bb52a0f1a, 'Sorta Snails', 'SortaSnails'), + (0xc5348987df428f239336ea563bc545cefee63e7e, 'Coke Boys LA Sneakers', 'DCL-CKBYSLASNKRS'), + (0xc5400c1b0eaab783e86b4ddcaf885f80fe06263b, '420 Cartoon Crypto Spliff', '420CCS'), + (0xc54121819e84e374fec28f629f7393873786889b, 'Fake Smilers City', 'Smiler'), + (0xc541cdd6e20b7b7024fa7618d1d4252d8ae95fe8, 'GanjaBudHeadz', 'GBH'), + (0xc5454c3d5e16ffd8bb7e6bfd87fce95bd7dc251a, 'CrocodileSK84K', 'CSK84K'), + (0xc54931dc19ba2674330e59658e9c849b686af33b, 'NFTs', 'NFT'), + (0xc5521d1e3a5d5f34391f8bbd845c4c35903c17bd, 'Uniswap V3 Positions NFT-V1', 'UNI-V3-POS'), + (0xc553717e1dacca9a53c67bfd30d254c1fcf5eb67, 'NFTs', 'NFT'), + (0xc5554cd8e89e851093d82aff180a3a08426ed227, 'GEN-T51', 'GEN-T51'), + (0xc568a4966e066f8fd04047177b78a5639a403b4b, 'Trippy Ducks', 'TDCK'), + (0xc56f9c426a3756b9a7ffd1729cae0f3f9384297b, 'Pharmanaut', 'PHARMA'), + (0xc57b22751bcf2bca92c8155f0b65264fd7076f58, 'Freaky Fish Collection', 'FFCNFT'), + (0xc58979270f08caaa69e23b4bfd5993953f4ccd9d, 'ERU Hero Collection', 'ERU'), + (0xc589f12023bf41ba7c8c33b9865027b4a2e2091a, '20220321029', '20220321029'), + (0xc58c5a1c29fcc53e3041d5f889dea9ce683b3a3c, 'PLAYZ Token V2', 'PLAZ'), + (0xc591a4e052306177aed6abc4fc4e05bfbfa305e8, 'Mangy Moose WitSec', 'MANGYMW'), + (0xc59c1d8c0ddbf9c99b16895abac75a5922e01051, 'Exgentlemens Club Project O', 'EXGCPO'), + (0xc5a1ffdaa7a4f9daf44a8eb8735fb2fa9572be4b, 'theDOODS', 'DOOD'), + (0xc5ab5df8282845f70c95b542e5d5152e87133b56, 'NFDonuts', 'NFD'), + (0xc5b69bf8e0b2a24021f241e34c751336de222e7f, 'Charli Cohen X RSTLSS Crash Site', 'DCL-CHRLCHNXRSTLSSCRSHST'), + (0xc5ba51967af866b156ebccdc6ec209e284ce120a, 'Virginia Beach, VA Silver Edition', 'SWEDC'), + (0xc5c0439e459361765eeb61d500f559ca38b1af5d, 'TFA PAOK Fans', 'TFAPAO'), + (0xc5d511e6c7913c225d0e5cb8ca3b69accce5422d, 'Carousel', 'NFT'), + (0xc5d898768461eb96399413eeb1d6529303bdf718, 'Anime Corps NFT', 'ACN'), + (0xc5dbbe1e5ee7ab1d4b50cfbc8ebcc1947155c4dd, 'Seattle-Tacoma, WA Pop Art Edition', 'SWEDC'), + (0xc5df71db9055e6e1d9a37a86411fd6189ca2dbbb, 'PublicServiceKoalas', 'PSK'), + (0xc5e0c2abbb733f653ec30bfb4a0a290351d7ed98, 'Apple Cartoon NFT', 'ACN'), + (0xc5e4186c146a64761a3712d380607a8a84479275, 'Homies For Life HforL', 'HFLNFTS'), + (0xc5f87a6dda6e255c27e7b910fbea6405d5daf44f, 'Do-little-Do', 'CP'), + (0xc5fe05135ca1a9ba9c54f3524c482a3d186ca57d, 'Mr. W & Mr. J Wizard Collection', 'DCL-MR.W&MR.JWZRDCLLCTN'), + (0xc5ff2baf56766138d8db705b67c779f38d02f7fc, 'Blokpax Razz', 'BR'), + (0xc60f0a9df4d42f593b3675755a55e1de97f82a05, 'ICE Airlines', 'DCL-ICEARLNS'), + (0xc618ca6ee34f977ce9a0f72d6357e454c6384a12, 'VisibleFriends', 'VF'), + (0xc621e8e72a31b40b314f9bc9b68b07009f8c1f09, 'PixelMoaiClub', 'PMC'), + (0xc62244d90432ba172b87b7fd06b3683811f34261, 'Gift A Guess', 'GAG'), + (0xc62d7ce496b53941ea1a770517c5f5aa3dca6d2c, 'asd', 'asd'), + (0xc634a0c2ab192e61324c5e6847a9ed6bcc0fc0ba, 'VERIFIED CHERINA NFT', 'NFT DEMO'), + (0xc634fd5f83847819e14e38cad773226c4c12bbdf, 'Onca NFT', 'ONCA'), + (0xc63b98e6a9d7f23a29b4254e23be5b6c6d8d032c, 'Otherside Land NFT', 'APELAND'), + (0xc642e5f452ab9e573fe4f642697d56ce2ca29d8b, 'Kimono_world -red-', 'DCL-KMN_WRLD-RD-'), + (0xc6452516f340d9b3b6ccdb6d08222a91c61b739b, 'Cup', 'CUP'), + (0xc65e2380c542ad585fa5fdf331458e4a9a8ee7dd, 'PenguinFightClub', 'DCL-PNGNFGHTCLB'), + (0xc66492a80891eab27e25fb2b5e70066dc1a1b79d, 'Meta watch for Ukraine 2nd batch', 'DCL-MTWTCHFRUKRN2NDBTCH'), + (0xc674ab6f8781d48c95e5b06570457d27eeb1babf, 'Atlantic 10 Men''s Basketball Championship 2022', 'A10_MBB_2022'), + (0xc676fb06c7a0b2da1e4787cfde9979a60120aa45, 'PoM Core', 'POM'), + (0xc67e2eb3a55bfb7fcd63dbd24e57c156af7aa0b0, 'dddddddd', 'C'), + (0xc6996e725c83133070095c5ebd9c55fcf5f7fb27, 'Epic NFT Crusade', 'ENHW'), + (0xc6a08bb03881487cba073cec3ac52262f121f784, 'John1', 'JOHN1'), + (0xc6a40b264c9cb70a58ad0d648336dea1d569b1a0, 'Iconic Skull T-Shirt by G.G.', 'DCL-ICNCSKLLT-SHRTBYG.G.'), + (0xc6a939d2ac843b362797578425fc059efafa1941, 'Grim Bud', 'WWGB'), + (0xc6a968a9649a52d881a2bdde1a1be2f30cc0d103, 'NFTs', 'NFT'), + (0xc6afc71dfe707f1d3c9c1f1714f35e267d553da7, 'HATCHLINGS', 'HATCH'), + (0xc6b11b1b61356eae406aff2556a6973817e0aa6e, 'SaitaWolf Club', 'SWC'), + (0xc6b1b978badfbc17154bed5cd1bffc16b8c841f2, 'Bored Ape Kennel Club Official', 'BAKC'), + (0xc6b4b18e200c975f27d8c03c187b12d555d95172, 'Toledo, OH Silver Edition', 'SWEDC'), + (0xc6c5541d6da74f7af0870da76705bbdd6e5eadef, 'TRIBE X', 'TRIBE'), + (0xc6ca3ef7c8ff4c337dbca151552a53435587d076, 'SILVERSCREENSIRENS', 'SSS'), + (0xc6dd6ffb69a488834a2b0ffb63628263e3c23c80, 'FloatingStore100', 'FS100'), + (0xc6f65bf65b213f5bf016dac479f75dcc425c90f7, 'LIFE LOCK', 'KEY'), + (0xc6fcaf37c3a8e9bfa0e047e6a990c55e0582d1b5, 'UNKOWN', 'DCL-UNKOWN'), + (0xc6fd95d3d0c2016cc85223b22cafe4a2f4929349, 'Snowflake NFT', 'SFNFT'), + (0xc701d3e20d1de5ca565715baae2334e6a9feaaa7, 'The Island', 'PIRATES'), + (0xc70c8440342ec506f61c3b0f56d3288a5b0d4bbb, 'League of Kingdoms GOODS', 'LOKG'), + (0xc712b3affe3318dda54e81cee0e507b8e7a654bf, 'Hero TrillioHeirs', 'HTH'), + (0xc712bdfae70f0e8f82daec221f0ec7e4c101d00e, 'Mushrooms', 'M'), + (0xc713af03353710ea37df849237e32a936a63cbbd, 'Safe-Hand 14-Day Note', 'SAFE14'), + (0xc714bac4b6af6c7407dd4f6587ed332aa21fad84, 'Metaverse Festival Staff', 'DCL-MTVRSFSTVLSTFF'), + (0xc717713847161131034deb6b7b907e35f2452dd1, 'Dragon Kite', 'DCL-DRGNKT'), + (0xc71a77706ca31fac0baf476d02e29c38e8160aed, 'Weird Catgirls', 'C'), + (0xc724197938ea45efbdb1c9c8b6867e0114979e3c, 'XcapitRevolucionArgentina', 'XcapitRevolucionArgentina'), + (0xc72bc98ec321eadd04967c8394a65f4c4d632d03, 'People With Covid Cemetery Lands', 'PWC'), + (0xc72fc1dd8e594967cbf96d4fd65ee1ef9a132819, 'Zombies', 'Z'), + (0xc7381a5d87536ad37ceb3a1db82cb0be0d3fca60, 'Dollie Dropz', 'DOLLDROPZ'), + (0xc73b75640bac8bced8829d07aa57e694b446b3f9, 'Pride 2021', 'DCL-PRD2021'), + (0xc73e890b9952dfad1895d6a5e9ed75cc10df5336, 'UnseenFriends', 'UNSEEN'), + (0xc7413bb14a562c9864be5b5fc0788597b5bddd69, 'YouJustGotSnailed', 'YJGS'), + (0xc757e5093d5c99eef1f61d74b906a44e0f371714, 'Particlon Particlon Particlon Particlon Particlon Particlon', 'NFT'), + (0xc75be843801dff499c9359330d997fa04b9195da, '[DEVELOPMENT] Be Le2022-03-14T17:50:18.592Z 214969', '[DEVELOPMENT] Be Le2022-03-14T17:5'), + (0xc75eecbdc215cc7fabc325fbac2e3e163f0aba6c, 'Banana Fruitpop', 'SWEDC'), + (0xc7609b3eed4ddea40e7eccd29c8bd77a3937c88a, 'Classic Sunglasses - DaveCote', 'DCL-CLSSCSNGLSSS-DVCT'), + (0xc765dff2b030e5e82b1b82fd2807987acae781ca, 'Gravis First Drones Collection', 'GRVSDRONES'), + (0xc76e8642d0790c0d956785ac7407415004a91b78, 'Celestials', 'CELES'), + (0xc776db56fedb17dc6e69aff09de7a1068ec17970, 'My Collection rsM7BXvpFbRi1yr0Zvf1', 'my-collection-rsm7bxvpfbri1yr0zvf1'), + (0xc7853eb8d8694e6ffc1da88bbd98eb2f75f89cd6, 'Secret Society of Squirrels', 'SSoS'), + (0xc793029f27041df196749f1719a6a8be82fe371e, 'Cryptoshape', 'CSP'), + (0xc793066faa32655748c1484e3b21c83e235a0b49, 'Bad Panther Club Super Rare Collection', 'Bad Panther Club Super Rare'), + (0xc799b6b7bf792424696557156e022fb3c74c396d, 'AlienWorld', 'AW'), + (0xc79c8708bea2af7b5c81e594bdfcc7dd72f3f465, 'GameItem', 'GameItem'), + (0xc79f4d4d4707e175e0aefa8d5c0b8f61a4f6192a, 'NFTs', 'NFT'), + (0xc7a096b4c6610ba3a836070333ff7922b9866a36, 'GensoKishiOnline', 'Genso_NFT'), + (0xc7b4be0826260a0ab83037dc258e646d56a162a9, 'Crypto Poker Players', 'CPP'), + (0xc7b70a9ae222799ab8390be40e88c91f91daa301, 'MetaParty Sneakers', 'DCL-MTPRTYSNKRS'), + (0xc7bc8bfecb7889b8fcf021c97c6a08ab31a3d16e, 'MAD TURTLES', 'MT'), + (0xc7be93250abdc37142f00d2368b3356db9c2ad5a, 'Time Bomb Certified Gold NFT', 'SWEDC'), + (0xc7d4d2663bb0bf42552d0a2f7de3448486c49181, 'Queenz', 'QnZ'), + (0xc7d5d957f65a03927dbcde42ad4773326e7f6449, 'Louisville, KY Silver Edition', 'SWEDC'), + (0xc7dd96c290c3e2a3f17ca3d32be32ea21105891d, 'Tuna Meowchi', 'SWEDC'), + (0xc7e3508c8aef20d38bbb270535d9b7cc8f60a4c1, 'ARTIC NINJA', 'DCL-ARTICNINJA'), + (0xc7e5fcebb190e7bcdd7aa963bb606240b235142d, 'Transak 721 NFT', 'Transak NFT'), + (0xc7f334afae228e3e43e0391b22cec96e96c2ed92, 'Homiez', 'HOMIEZ'), + (0xc7f819cae77a4161a66ee32cdd06b6b5a3b744b7, 'GivinJellies', 'C'), + (0xc7f90b64d3b7a883d261af7194303b2bc9b0e2b7, 'thecommunity', 'tc'), + (0xc7f93b65a5e1ed64583c0777b940d13a8d168278, 'My thirdweb V2 drop!', 'VTWO'), + (0xc80516b3e29db5a6775e02c69f5261af7e2c298b, 'TheOwnersClub', 'TOC'), + (0xc80be84af9a433fbd034bc54282ab99d1bf587c8, 'Aquarium Elites', 'AQUAE'), + (0xc81ba0483c1767ff29640559785afd815374d0c9, 'TCT', 'The Corgi Tribe'), + (0xc81ba5c04774bcfee4933570429205e654384616, 'The Slick Orc', 'my-collection-zirq02sylflr1n4213or'), + (0xc81f4bb41c42b37426a03c794014f8faa7c9d410, 'Anemos', 'NFT'), + (0xc8252f84fa307ad5f9d4b1801dad5196dd1e8b34, 'My Collection GnAocPKc5UoyEvnhU6EY', 'my-collection-gnaocpkc5uoyevnhu6ey'), + (0xc8296a570246a690e5f53b42e47841a4ede1944c, 'BLOBZ', 'BlobzBlockz'), + (0xc82b807ca71b31b2d3b63dd526712d3bdc33f91e, 'Roustan Jean Jacket', 'DCL-RSTNJNJCKT'), + (0xc82d8fb79db6b66152f5db0edd05c4d12fcf5401, 'Techno Galaxy Art', 'techno-galaxy-art-16557'), + (0xc835d19c050e905d235442aa69e6f8d86dcd8a23, 'Wizard', 'WIZ'), + (0xc8384f6125347150fb6f4be04d44ee15296d9840, 'Cryptocups_NFT_Official', 'CCPGO'), + (0xc83b040cfa7e7bc84a7ca4517af18e62a63878c8, 'CoolAntiBoredApe', 'caba'), + (0xc8414efec6b6a63012857dc05c97d64045380e9c, 'Zero Territory', 'ZERO'), + (0xc842c997dc3f326246806afe5e5e4f3510dca209, 'RaftTrackCert', 'RTF'), + (0xc8438e7d5af0167d8cf8b29c4f8fa30072d015cc, 'Spacelly', 'SC'), + (0xc84ac19ee8856a0f2879a6a1dfcd1225a9057088, 'CyberYetis', 'YETI'), + (0xc84e28c57ca386a59cbe6ec7219ea5470e3e6db5, 'LabKittens', 'LK'), + (0xc858983f629561174e4a5adfb190f7faeef1739b, 'Boston, MA Pop Art Edition', 'SWEDC'), + (0xc863ea79f6825fb4b3361764d82f10ad006626f3, 'VeggieverseXtastybones', 'VXT'), + (0xc86638c9c5efc45eeb053b01a00811d1ea232723, 'AIMGAME', 'AOC'), + (0xc866f81200f84f46e243b1e2bec7e2dd03052aef, 'Cryptobuds Sativa Collection', 'CSC'), + (0xc86b73bf0e6a795ceec4ed7ef6f7216e009197b1, 'Generativestarman', 'GS'), + (0xc86cb05302879e8aef938bc840429e5d7fb3138a, 'UniqueFrogsClub', 'UFC'), + (0xc872c5dad586b96a8a3a014ab7f8a10ed7ad91ed, 'Cute Hawk Club', 'CHC'), + (0xc8734e3b9b1c33a8faff018bff4b8d498cd57cb5, 'Beyond Street Cred', 'BSC'), + (0xc873cc716cad1cb11c3154d19e741f739226c6bf, 'Miami Crypto Experience', 'NFT'), + (0xc87750d83e388776ea5825bc3be1be32f233922c, 'GEN-H36', 'GEN-H36'), + (0xc8985bab3cb3c4796e40e39280e2a0b47644a737, 'pokemon', 'PKC'), + (0xc89e47d6168b3ec057239d495d8d99a106bbd73b, 'CyberWomen', 'CW'), + (0xc8a3292430a3ce9e1687d3e68562893893581e2e, 'Cat Expressions', 'CE'), + (0xc8ad23ee32f5a57ad544c09c16069e3440d6e070, 'Mrs. Alienpop', 'SWEDC'), + (0xc8b21a76924548db03395914e5fc4a102d6eaa82, 'NiftySlabs Genesis Tee', 'DCL-NFTYSLBSGNSST'), + (0xc8b47174a09a44289321f2823c02fc422216b617, 'Millos', 'MILLOS'), + (0xc8b5e7718000d124b13fa40f28da06186aa055fb, 'Frowny Freddy', 'FF'), + (0xc8b786bed3f24e96b422b1ca55706b40e53e75b0, 'adidas Originals Into the Metaverse', 'Adidas'), + (0xc8be4e08f761f77036d20a9871fe001c4bf138c6, '🍄Garden Gnomies Group🍄', 'GGG'), + (0xc8d857341d74c17cd8791e9a90b938184886cff7, 'VeggieverseXcoolmans', 'VXC'), + (0xc8d9ac98099b606933c18225cd9778d9ceff43df, 'San Francisco, CA Pop Art Edition', 'SWEDC'), + (0xc8dbf52aecb45c6d681ced9927f16e1eb3271e09, 'NFTs', 'NFT'), + (0xc8e2ee2663924c3158306eed8002bbff502aac5b, 'Atlantis World Seasons', 'AWS'), + (0xc8e49f5946dfd959cd7f7a141a0930719882f3db, 'Hidden in Plain Sight', 'TLJ'), + (0xc8e8c59b1467abc397b7f871b8fe464e8981e0c7, 'Star Trip: Bob', 'STB'), + (0xc8eb1cd8d7730e9aff3710074e563acc654fc5ac, 'GEN-T49', 'GEN-T49'), + (0xc8eb3d06e9d4ead359af2a832b48dd585a661d11, 'Azuki Polygon Club', 'APC'), + (0xc8f3b9ce8193121905d50799b2adc5ccd6b6b1ae, 'Bored Ape 7383', 'DCL-BRDAP7383'), + (0xc8f67e05a120dbadf4feddd4e1c80c4c1eed3e82, 'Eternal Hidden', 'EMONKES'), + (0xc905273727ee81e3730b255b263d85275c2555a9, 'RGB - Anomalous LTD', 'DCL-RGB-ANMLSLTD'), + (0xc92e8f6c559e8eb0312a8ed512c3a5ed6ada180b, 'Graphic Collection', 'DCL-GRPHCCLLCTN'), + (0xc92f95396801f9f3fd53dd6857149f22002a77e2, 'PixelLifeArmySilver', 'PLAS'), + (0xc9321562e2f5e89f01f25f9c3fe7a2b3e48b95a0, 'Bored Sasquatch', 'Sasquatch'), + (0xc9361feb5c835a17b345bfdeb0cb0c3571d5cf7b, 'X Rabbits Club Official Polygon', 'XRC'), + (0xc936ac86f22fb6cef13a102f482696df89a93f9e, 'Abstraction', 'ABL'), + (0xc9380af35269768a7711bcec271487b792504163, 'CipherPunks', 'CP'), + (0xc938371a1474042a4ef02a311a203d12e3b4be88, 'shanto', 'SHN'), + (0xc938db3bde8b82e3d0067bef66f942f96ebbf0d6, 'MURI by Haus Ape', 'MURIAPE'), + (0xc93a6835325f5e887355c0b8e24260069cbc9cc6, 'Snad''s Yacht Party 1', 'DCL-SND''SYCHTPRTY1'), + (0xc93c53de60d1a28df01e41f5bc04619039d2ef4f, 'League of Kingdoms Skin', 'LOKS'), + (0xc93d0129adc2892835a42987a1bfa22e9c0b11ff, 'WAGMIGOS', 'WAGMI'), + (0xc9417d6890406a09ed38b4b898a2a44d027e75ce, 'DinoJaws', 'DJNFT'), + (0xc944df5f7818dd2eff7a70383651048a99f31453, 'bored apes yacht club', 'BAY'), + (0xc948231453162ead364b253c7602c870f3af606d, 'NummyBoy', 'NummyBoy'), + (0xc95cd66e18a186506c194dd5179e4918dc33e9ce, 'Bored Ape Gorilla Yacht Club', 'BAG'), + (0xc96d83080f535c255771d456e2f59ab55758599f, 'racers', 'RACE'), + (0xc96e0714053d2fa8d34ebde241532a7a8b57b04e, 'ask4metaverse', 'AKTE'), + (0xc96eb0464f207ed53c166cad5430ab06941fe636, 'NZAD NFT', 'NZAD'), + (0xc9727505dfc64b7fffa4d80411be7c8c17c00138, 'MixGirls', 'MXG'), + (0xc97b8acad822e4463aa6a1c60200bb882c0c92eb, 'Gemstones Lottery Ticket', 'GLT'), + (0xc993da16cc9a27caf0f93c28255ee467506c2a38, 'Paladín CyberHoodie', 'DCL-PLDÍNCYBRHD'), + (0xc99468293593d59dc83126fe76fc261fe3bf2c12, 'Shining Holy', 'DCL-SHNNGHLY'), + (0xc994f9287f8b2a7235dc91d5559631721493ef7d, 'Polyrare', 'DCL-PLYRR'), + (0xc99549a837c1e83813be3714e025eecbf107a6a7, 'Mumbai che Mavale', 'RAGEMUM'), + (0xc99b57b3e12b10a4a7c9800f50181bb7b1209055, 'VeggieverseXducks', 'VXD'), + (0xc9a80fdeec08eb77034f310042f5dcd5b6fed412, 'BadBabyzDevilsClub', 'BBDC'), + (0xc9b967d48f314271550d24d9547db66477c33f9b, 'Penguins&Pancakes', 'PP'), + (0xc9bf16786a394af925e9692990be3d443e55ea7a, 'slotman', '🦸'), + (0xc9bfc4f61faff12af1e12fe00dbe68e08e9c7eaf, 'GEN-L23', 'GEN-L23'), + (0xc9c8e6ac3ffd5574ebeccf30612b65f5e4ce48ff, 'DROOP_', 'DP'), + (0xc9d18adf2f4039639b918ef0f2cb4f776bc18377, 'Decentrealm_Orc_Character', 'ORC'), + (0xc9d5d30db325c440a59d85b59ec3c1530ba2ec7d, '1970s Umpire Chair', 'SWEDC'), + (0xc9e404cd75c03f3bd749900759c916671d6c228d, 'Playboy Hoppy Holidays 2021', 'DCL-PLYBYHPPYHLDYS2021'), + (0xc9edfdb44627f9ce3af815354bc666cd39ce7e2c, 'CityRoots', 'Vault'), + (0xca0fa1f34567b260c70c93dec03b45eea77f5a93, 'ReplicaAnimeLoot', 'ReplicaAnimeLoot'), + (0xca1074638b7fda11dd6d46bcf02fa637376d7982, 'Jordan x Bored Ape Yacht Club', 'JORDANxBAYC'), + (0xca14afa2464b474ef3617c293f8cfa3ff54bce6b, 'G.G.G. Hoodie', 'DCL-G.G.G.HD'), + (0xca22ed4e8521faf2b6be9fb2e86bbccde9c14bed, 'MetaVerse Wearables', 'MVW'), + (0xca264064a490932b5732606e9ab8659bec979c92, 'Vagina Saver', 'VS'), + (0xca287243a716d550731fefceacfb5087b21e15b8, 'Annoyed_Turtle', 'AT'), + (0xca36f8e9397139805eb9a00feafe827748e25b2e, 'InCred', 'CRED'), + (0xca393cb22fbe3f4d4c3ff95791f50720a5db0639, 'META PHARAOHS', 'METAPHAR'), + (0xca399332bb22c8351987ac765f1f7ce7c6a04f08, 'Young Turks Vandal Squad', 'YTVS'), + (0xca3b133e2b74b07b6e25cbce0d0a3bc3f3cdbf6b, 'FloralMatrix', 'FM'), + (0xca3beb7353291cde7f0e9cf43f6a7794885ce30f, 'Outlaw Gals Motorcycle Club Official', 'OGMC'), + (0xca3eb3e3805253c20f50c6658c1af9acac12780e, 'MYNTD Genesis 2022', 'MYNTD22'), + (0xca3f06d124850ea57db0d6fcc4295b2e03a2bbe3, 'Social Distancing', 'DCL-SCLDSTNCNG'), + (0xca416516346f958eb84ffe47aaecff3b81f136cf, 'URBAN CRYPTO BITCOIN-ETHEREUM', 'DCL-URBANCRYPTOBITCOIN-ETHEREUM'), + (0xca45237c17983c13b6a29f7f327e9463f09dd495, 'Tesging', 'Test'), + (0xca4d2782763976a819bf8704da809959e0643408, 'Girl Gang', 'DCL-GRLGNG'), + (0xca569540533522c261a55a43496d5962f92e4f43, 'Sketchy Guinea Fowlly', 'SGF'), + (0xca58ca6af93b0410ee6575ba158b7a7e7b29a398, 'FLIPPED REAL APE', 'FRA'), + (0xca5a3afd4a088ce608b11a0282a559c1946c8732, 'Pociverse', 'PV'), + (0xca5c42d45a9e4ea36ea73811992a2837788860fe, 'Relicas', 'Relicas'), + (0xca5f7567ce7d3ec3555d56fc2c9a7b2e79335a75, 'Chibongs', 'CB'), + (0xca649d4e0f2161a4926ef0f451789580db50ffe1, 'Clawsome Cat', 'CC2'), + (0xca65add16466e0e1ff6fcace8c2821d50dc5021b, 'Rave Gear', 'DCL-RVGR'), + (0xca6df4a911885b6862dccf8175af88a5e5aca093, 'bzuki', 'BZ'), + (0xca6f7668b7d47352abf338d14313b3b714b89f8c, 'Free Candy', 'CANDY'), + (0xca7c3dacaf04db23070c66430dd465bfcb7e1d87, 'APEPUNKSCLUB', 'APEPUNKSCLUB'), + (0xca8b0d4ee52ece05d4cafd46d296b70462e7c8ef, 'Super Animal Giraffe-NFT', 'SANG'), + (0xca93fc93a02a45bb5815cd24b111dd95f272074b, 'Shen', 'DCL-SHN'), + (0xca9bb4399cfd4372debc7449b5b4993a2cd9f623, 'Bear on White', 'BW'), + (0xca9fb2ecd277a1335db0c7ba8fb144d7c05ea6bd, '1980s Legend: Martina Navratilova', 'SWEDC'), + (0xcaa4456c691700f2d45637d5bbd310d4742ba450, 'Artefacts by Ethlas', 'Artefacts'), + (0xcaa5c087009d582d7086e7042bc9095f0b5e2322, 'FuzzyGugu', 'C'), + (0xcaad504e95a0237752cfcadb8cd3cead0d47ebe1, 'No Planet B : Key', 'EARTHLI'), + (0xcab268f5ed41fbb059621723256744779e2db029, 'CryptoMaids:Vote', 'CMTV'), + (0xcab4f7f57af24cef0a46eed4150a23b36c29d6cc, 'MoonieNFT Official Collection', 'MOONIE'), + (0xcab633c1bb34e6ff0d0637c4d373c02c4ff9669f, 'Crazy Peach', 'Crazy Peach'), + (0xcab8407e0aade825fb2de63ad9f7c5dda5991e2f, 'Fancy Gents', 'DCL-FNCYGNTS'), + (0xcab91d03b67fee1c409c2bee18411dc3bdb982d4, 'Glitched Ninjas', 'my-collection-usnkjdkreqzxcyopj7fm'), + (0xcac355d968920d4e009a78c95237e2ae51c506b3, 'Rare Weed Wings by Kandy Girl', 'DCL-RRWDWNGSBYKNDYGRL'), + (0xcac43e198e85e73bab2cbd5de8e3959162a67c16, 'LOST ARMY', 'LOSTARMY'), + (0xcac49b76170f521084e76f85aa1d6864481316e8, 'FkApe', 'FKAPE'), + (0xcacd901ef1769427a59ee46596e44205248b7a19, 'Meta Golden Nuggets SC1', 'MGN'), + (0xcacda223503b7bc567c468ffdf8f178ffd52c2d5, 'BOOK', 'BOOK'), + (0xcad004bd3f603d5c3fedf5db4774962f41cf4d56, 'Minneapolis, MN Pop Art Edition', 'SWEDC'), + (0xcad0aaac8da17245912d09b51f65a938ec925c8b, '1900s Gentlemen', 'DCL-1900SGNTLMN'), + (0xcad397c9b571a61a818a6b83566bf472abe9b3c0, 'MyNFT', 'NFT'), + (0xcad3fe793ca6c185618e789a19fbbef04d14ef5f, 'Highborn', 'HBORN'), + (0xcad626335711faa639a0019a2df6593d167adccf, 'NFT MSSquad', 'AKLRS'), + (0xcaece88c0f76fa8b8d56ba280266de56641665be, 'DOLPHIN CASPER', 'DC'), + (0xcaf467ce644f3d965811f0af2d1aadc0e8ac009c, 'SuperPunks', 'SPUNKS'), + (0xcaffd245e12e5caafab244454155e4ba13423a24, 'AlienPunksV1', 'AP'), + (0xcb06f6aee0655252a3f6f2884680421d55d3c645, 'ICE Suit - 1-5', 'DCL-ICEST-1-5'), + (0xcb075ab228a2d05138cf7365ea2bde0a38c77ebe, 'The Pixel Bulldogs', 'TPB'), + (0xcb0916123683a9b37db9fd921fa914908d8334fc, 'some random emojis', 'SRE'), + (0xcb0c641ccff177cc9b846101f78cdf5d1b672794, 'CONNECT THE RANDOM DOTS', 'CRD'), + (0xcb0d870ce67eb99ec371e6d65c9350748e6e22f8, 'Alexa', 'ALEXA'), + (0xcb1a8c7e9fc313dc518a1f38d44fd9088cf9465a, 'CRYPTO METEORE', 'METE'), + (0xcb21bdcd585e4d2a84bfd8d7ef06d0926181a228, 'Newjax UTD', 'NU'), + (0xcb239369ba4ae0a7fda53c35adf69e1be0905543, 'NFTs', 'NFT'), + (0xcb2f0cc7dc9e7e5c8f9df1a00f5611abeb155b15, 'apesocialstatus', 'ASSC'), + (0xcb361f53a13ae5e1d1a4982f98e9ad4eaaaf0028, 'Evolving Penguins Punks', 'EPP'), + (0xcb36ae1230a092909f6d09667d23f12fcf83d476, 'FemdemicDCL', 'DCL-FMDMCDCL'), + (0xcb3833c8b79e61bc6a6ecac5244c128e70c3b7c3, 'PetrolitoAvatar', 'PA'), + (0xcb3b7e5a757e45596e869616951c185dda2ac7bf, 'GoodleDinos', 'GD'), + (0xcb3c256cabf9e8c97548f7b4f6e976ba4e0e4385, 'Bonyz', '$BHS'), + (0xcb42355160b276f25e564ec4cae224cfdd260b1c, 'Bridge Troll Clan', 'BT'), + (0xcb47034bfa46e3c5063689107a88a71195ad1c4e, 'Undying', 'DCL-UNDYNG'), + (0xcb4c830fb475d601f277d172c7d33c87791cfcad, 'Knicks Souvenir Soda Cup & Popcorn Bucket', 'SWEDC'), + (0xcb4fa770abe9701c130cf32c028058e9405533b6, 'TrollVerse', 'TV'), + (0xcb50c174cc4b3f61599d2695e6270e1c9f4d80c3, 'Poopies', 'DCL-PPS'), + (0xcb5d2266968270fe65d9927562a0fbf406a03a78, 'TheBostonDoggo', 'BD'), + (0xcb6331d209e5c592536fb9275978e5f27248d4a4, 'BAYC THE OTHERSIDE LAND into the Metaverse', 'baycland'), + (0xcb6456563471469cd62b3a15f8f04696f6475834, 'Beeples world', 'BWD'), + (0xcb655c6a98bca71fd624e1b094d5075ed2f2d48a, 'Milwaukee, WI Silver Edition', 'SWEDC'), + (0xcb6776b6bf5f2669517643cb9ae0930469b7767e, 'RetroAlien', 'RA'), + (0xcb6c30848a3cd6da2541ca134ce0a455b90a7bab, 'NFTs', 'NFT'), + (0xcb83caf441cac09a8f29ac365961d1bd25cccc51, 'HeyNFT', 'HEY'), + (0xcb8ec78916ee8144c868776419a0200c5bbb17a6, 'Sacred Geometry Hat', 'DCL-SCRDGMTRYHT'), + (0xcb9bbc95fb38b4d4255b1294becf44f26824d7fc, 'Cool Kitties', 'CK'), + (0xcba5e6f3ed137a575b91bf6fb328f700f68085af, 'Gainesville, FL Pop Art Edition', 'SWEDC'), + (0xcba9c9f9ad8a3810faa218fdfdbe7770f4283e58, 'GOAT Hoodie Collection', 'DCL-GOATHDCLLCTN'), + (0xcbc028d5ee9621994488ff616d67a66d5ddbb6c1, 'Roo Troop Club Official', 'RT'), + (0xcbc4b2af3622afaf8aa544b87d9341d42cd4d878, 'Sannin''s Mummified Ninja', 'DCL-SNNN''SMMMFDNNJ'), + (0xcbc8aab5a57f840f8363136d343fad523c2b3a79, 'Beautiful Supermodels Club', 'BSMC'), + (0xcbc8d3afdc13fb1b4a6ff9d3a0e0583949e0fb6c, 'Meme Cat - by gg Toy Company', 'MEMECAT'), + (0xcbd811c907da29e5e99cf70ad6c627024bfaefb6, 'Flair Angels', 'ANGEL'), + (0xcbe0668a29387e41ddcef4146f0248c744cc09c8, 'Sannin''s Ninja Mask & Kunai', 'DCL-SNNN''SNNJMSK&KN'), + (0xcbe08e075546e38f955398795195026711ae123c, 'NFTs', 'NFT'), + (0xcbf15c5c2b37fd40cd3c9e669bdcf33e9493170e, 'ThePerfectPair', 'TPPC'), + (0xcbf5cd0cd6131c68c0bf0b4c9a9ccbbfe85d333e, 'Collectors', 'KEY'), + (0xcbf813ff77117c4d558194752819f30a3369c594, 'Boo Boo', 'BB'), + (0xcbfe479ce22dff8f63f0fae9027f4fc6dd217b3b, 'Baudet vs Schwab', 'BvsS'), + (0xcbffe7dbc5609228c5741000fb54b6213cc881be, 'Baliverse NFT Polygon', 'BALIVERSE'), + (0xcc04519f27ca7223a87b078cf56cf5769636682f, 'Pixel Peace Project', 'ppp'), + (0xcc0708728346646e7854af7d59bd8fbd59fd1b79, 'Daddy Chang''s Epic Give Away', 'DCL-DDDYCHNG''SEPCGVAWY'), + (0xcc0db1c4d2d4cee58ebdcd08c26fc616f9e2a7e3, 'OROPA', 'ORO'), + (0xcc0e779b9f4a25b3cd5ea8a33f9fb05259636665, 'Santa Gang NFTs', 'SGNFTS'), + (0xcc12cba798e56f541666ed45b442d0af57aa3076, 'Brainbot #30 Zzonk', 'SWEDC'), + (0xcc14b6622b928c355084e3128b2add64765484d9, 'ShibaStars', 'SHSTR'), + (0xcc1879ebd66bd2a2937a1602f29645843d5d66de, 'StackOS NFT 6', 'NodeNFT'), + (0xcc223ca4f36bd76a55494d19cc1bb07ae753d686, 'ape', 'ape'), + (0xcc2d602535527acf5f3991fa3400a2b26078d113, 'Numbers', 'NBR'), + (0xcc2faddc61a689c741b3e5c2b9554fbd4b2a8abe, 'Digress | Crypto Discography', 'DISCOG'), + (0xcc37b25d0826006f8252888585fc15333db24ef3, 'Crypto Pixel Ape Club', 'CPAC'), + (0xcc39050e3e8e5377f0b2fddbaf51f6590e69903e, 'Dragon Doodles', 'DD'), + (0xcc3f1c06aad8f1ec56f3cee2a4e13c798b78dac0, 'Penguin Fight Club Peng Heads', 'DCL-PNGNFGHTCLBPNGHDS'), + (0xcc403647a1d3ea6d17fbcdd18f074e9f48de74a2, 'Catsters', 'CTS'), + (0xcc43948193565a9414293d1bd15327ae5d8d3cea, 'YUNIMETAVERSE', 'YUN1'), + (0xcc45ca8992dad5003769f59ade46ba132908dc6b, 'Owl Eyes by Paladin & Mease', 'DCL-OWLEYSBYPLDN&MS'), + (0xcc4b4ae92a2457cf90a221541a24dc761ceb7bdf, 'PolyMine Miner Collection', 'PMMC'), + (0xcc5151d739adcb388e6cb2306e5f7446ed9046d6, 'EVIL EYE GUYS', 'EVILEYEGUYS'), + (0xcc5275bded318a2f0c809071be52d78c9d08db74, 'IndiGG Badge', 'IndiGG'), + (0xcc5ef0a7363fa8837f6123e5670c6b4254176990, 'Sh!t happens.', 'DCL-SH!THPPNS.'), + (0xcc61fb58ab4219dde72f5e227d389bdb9eeecd61, 'GEN-B16', 'GEN-B16'), + (0xcc669e7dfac9786f4e794344715fcf71f67e103c, 'The Crown', 'SWEDC'), + (0xcc6abe09289f6cff614aa1b0880746fce4bbb61e, 'Killa Kash', 'DCL-KLLKSH'), + (0xcc6ae25446913bf846e1022cde3e3854a9e8ab1e, 'DEFI HUNTERS DAO', 'HUNT'), + (0xcc6c63044bfe4e991f3a13b35b6ee924b54cd304, 'Lore', 'LORE'), + (0xcc7445dfc74f83477ca74168db05daf00f75c3ec, '1970s Legend: Evonne Goolagong Cawley', 'SWEDC'), + (0xcc75a0dbfcf1892e2a35e1a31dff72db7cb97c4e, 'KyivPunks', 'KP'), + (0xcc76de5409e6762c9e6d0a04244cff5380fee5e3, 'Crypto Tiny People', 'CTP'), + (0xcc81391a8faa0fec687e1748887a2090a6e81802, 'Sizzeiers', 'SZ'), + (0xcc83302ed191dcfb2aae5009338949db931bde88, 'Cat Chonks by Geeky Pet NFT', 'CATCHO'), + (0xcc8a348ec7c02650ea6a9a980e698c6d7df81e88, 'Tigerbaby', 'TGB'), + (0xcc995875d28ce399be8073542971cf7c492daec2, 'WoodleCows', 'WC'), + (0xcc9cebcdcc664348fd65d0319f13052b84acc51d, 'pm sneakers', 'DCL-PMSNKRS'), + (0xcc9f3273f9a393a0a1025ed51626a0d3545b7d75, 'Nike Bored Ape Yacht Club', 'NIKKKK'), + (0xccb2db2ed899bcd90112ea7eb83d77ab160e6978, 'Tony Faces', 'T'), + (0xccb60fb93a78ba04c134afee4f7da60545d03f77, 'Avenged Sevenfold Concert Tickets', 'A7X-TIX'), + (0xccb7b0dd94ab4b29ca5a29a47ce21ed53ea8ec99, 'Eqivesto', 'Eqivesto'), + (0xcccb6ed911f9da9a7feeb50f280ffc8eac2d9eab, 'NFTBULL', 'MFBULL'), + (0xccce0276e79d7f7f9dd2b15ea1101786481b8c3f, 'Funny Airplanes', 'FAIR'), + (0xccd3884febc833dc94afce9e12b1a80a5f42d1e9, 'TheStarWolf', 'TSWS'), + (0xccd6c3c93b8c16c5cce1199c3e6a87e66b450aad, 'The Hobby Connector', 'HOBBY'), + (0xccd99803a04db378b5af41ddf8219ce20a8f4a5e, 'Mighty Mohawks', 'DCL-MGHTYMHWKS'), + (0xccda08bce54e5483fa14936dc2cf41e818e0c982, 'Generators_1_1', 'GEN_1_1'), + (0xccdaf00c1782f3af7f841990941366274570c354, 'MIRE', 'M†RE'), + (0xccdc4e96254bd62d6c6fc23d23160d550a4c629c, 'Pacos Anomaly', 'PA'), + (0xcce09793c0905383208aa8a25a6db71501058116, 'My Collection urIx5gHTnldALgjmtjE6', 'my-collection-urix5ghtnldalgjmtje6'), + (0xcce219d12869580b048b6d33c3883fba0c537174, 'BluffmenSociety', 'BMS'), + (0xcce552ee749bfedadc11b034a4caeca968a06882, 'Rare Alpha Apes', '$RARE'), + (0xccf1ded80dcff84ac177c6e4025696eda04cd0c2, 'Asian Girlz', 'AG'), + (0xccf3c0218afcefd18be6a125ed608ce682c1694c, 'Pixelated Personalize', 'PxP'), + (0xccf61355d3bd5ac0b9d0d33e77fe5db50a18b4c1, 'The Glorified Crew', 'SGC'), + (0xcd03eb60bb3ddd71f1f2969bd8dd303b4e0f0b1d, 'Wild Cats Photographs', 'WCP'), + (0xcd059ba8f7bfbc350e7cf777d106ec1a9b8b5ef4, 'MafiaReservoirDogs', 'MRD'), + (0xcd19733f54329299bcd682827492b72ffb4c99b7, 'NFTs', 'NFT'), + (0xcd1e0ac130588f396159aa305fed51276a752756, 'Floppy Drogo NFT', 'DRG'), + (0xcd2d94829f96831704a17e180a06d61d40df8b36, 'Pixel PIN Labs', 'PPL'), + (0xcd30631206850d62eab0cdb208284ea63762dd04, 'Atlantic Voyage Ape Club', 'AV'), + (0xcd42be30ff78c478b9f60dae04c4ddf0de2b487b, 'Loser Party Club', 'LPC'), + (0xcd48f61080497da45d345d37dbf7c0a61e12474e, 'PlatonicPrinters', 'PP'), + (0xcd494673999194365033d7a287af9f0a3b163874, 'AirNFTs', 'AIRT'), + (0xcd4f3618e4eedec7ff013ebbb7d4c069ac9cdc3f, 'Shadowfied BAYC', 'SBAYC'), + (0xcd50f1aa779c6176a219a7138ec56a6ba25485fa, 'CryptoGlider', 'DCL-CRYPTGLDR'), + (0xcd5382160d0724a74673474f211b898579c6d084, 'Metagachas', 'MG'), + (0xcd64ac5b3896d21286f08d4ae2b7b781d6b37981, 'MadmenHamsters', 'MMHS'), + (0xcd682baabdc322d46897b156c33cfc75f636388d, 'CryptoCyborg', 'dwr'), + (0xcd74d6b6fd055c38b0d5824715dfb66b50dfb193, 'Chill Horses', 'Chill'), + (0xcd7d97c3c828908fab08c432e98bc8a28972be8e, 'BitPersons', 'BPNFT'), + (0xcd81440b60b827309c402c5f67d04a480685e8a7, 'ITGuys', 'ITG'), + (0xcd82d0aefe8d05c2ce7b7b00393a83aac6d75c25, 'LootPeaks', 'PEAKS'), + (0xcd86a244c0cb217a4a75cb913ef83282fa285a0c, 'Konjo Portals', 'KPORT'), + (0xcd8c75af40a42155a48c04013b5b77ded4b5db8c, 'ViralMonsterClub', 'VMC'), + (0xcd9066a227c010a58051d1651d4706ca485a5c76, 'Hope', 'Hope-Flower'), + (0xcd919738468970922d660cd8493ddfb9bc4ac542, 'Brainbot #31 Sally-Ro', 'SWEDC'), + (0xcd91f2dbc626a2bc0d9ebae246bb3fb8918dcd5d, 'Anymagik Gem Monsters', 'DCL-ANYMGKGMMNSTRS'), + (0xcd946b595af04ea55ea4a73f657983b853e9c57a, 'Turpino', 'NW'), + (0xcd962b45ea344a6d92aa43825eaf79598d2eb6e9, 'Temple Of Eevee', 'TOE'), + (0xcd97a143bbb80c255b46d04b65371de167034beb, 'Galactic Apes Official Polygon', 'GAPES'), + (0xcd9db18ccd5b3f14bd5962dac61061a4c5a408cc, 'ERREERRE233', 'ST'), + (0xcda17cf2ac3cf8e6e818088f21ee9b52bf9e021f, 'MaticMonkey', 'MM'), + (0xcda3ca68c400bd21b4af8ed0fef514399f4e53b9, 'HelpfulBabyClub', 'HBC'), + (0xcdaa08746855b8863e54caaf283f22439f406410, 'Meteor', 'AWNFT'), + (0xcdb03f728df62c24715959b9280f5b51ae139be1, 'SqwareFaces', 'SF'), + (0xcdb25c0ef65acbca8d592083b71259701fbd8fc9, 'NFT World 2021', 'DCL-NFTWRLD2021'), + (0xcdb46277dcffc495f3b73d4b0c887846228c8074, 'Visible Records', 'VR'), + (0xcdb5a2b2d5ff533a46a1d5756f0b62c90c7f8e5f, 'Homies For Life NFT', 'HFLNFT'), + (0xcdd46e089876f0e6b1251c4d2a87b31161395fa1, 'collection#001', 'DCL-CLLCTN#001'), + (0xcdd8317f0847ed1011368bdb9728d03b753fb31d, 'Baby Lander Apes', 'BLA'), + (0xcdd8ec9d95293bb4f90ef8710dd93e53790c4193, 'TV Head', 'DCL-TVHD'), + (0xcdd97ae806d8683a644069a4535bfeef954bbe01, 'LLD LLC - Business Card NFT', 'LLD'), + (0xcde0a092faf5fcc07117e9a607e5d667d2126586, 'Bored Ape Yacht PoIygon Club', 'MPC'), + (0xcde4cfd316a0c7d80b076018cd74b95f09617353, 'Odd Bones Club', 'OBC'), + (0xcde792ee57aabbadc27312c39982b8758a5c760c, 'Adidas x Bored Ape Yacht Club', 'AdidasXBAYC'), + (0xcdeb4e34e27ea1ed3bb03ffedb7f7fb1c40ce584, 'Raja(rt)', 'Raja(rt)'), + (0xcdeea3a97b4f8dc5dcf70fb423659d470e13b931, 'Mico Chan Club', 'MCC'), + (0xcdfc2f096000e1272e35e73d331a35f8e1da9d54, 'terakoya', 'TS'), + (0xcdfea41c4a8e70fb4838426069483dc50cbf5041, 'EncodeKeys', 'ENCK'), + (0xce029a56caf263a741917fa0e5315e64ada73b1b, 'Punk Groovy', 'PG'), + (0xce1470ef06deeaa2ef379d5278e46c9a2efaf0a8, 'Love Butter Theo', 'LBT'), + (0xce15c06941280345e18075e8cbc571a237fb39c4, 'pssssd official', 'pssssd'), + (0xce1b7c41e9b55b101799e0f3e476475db1868db1, 'FancyFrogz', 'FFZ'), + (0xce248f6178844901f06621045043a763e0add3da, 'Vintage', 'TBC'), + (0xce2b9fd8b816c2100611b42b5d9c4dd239394b9b, 'Salt Lake City, UT Silver Edition', 'SWEDC'), + (0xce33b9dfeddbc14a4f545d0a5bdd7e624215eea4, 'Jolly Teddy Party', 'JTP'), + (0xce40b8faccf7a12dee1bb37f0d1462e48f8b34c2, 'DogeMask NFTs', 'DMN'), + (0xce47d15776b92a16038843e41493d41da65ea6dd, 'SmokeVerse Exclusive Wearables', 'DCL-SMKVRSEXCLSVWRBLS'), + (0xce51c25d2e4fc04d7fded5174ee85d0d78b53d43, 'Orange Fruitpop', 'SWEDC'), + (0xce564d05a84e0775023fe50b312dc4df468b27ac, 'MGMNFT2', 'MGMNFT2'), + (0xce5ba05153369eebe886b2efdf766a8e146044d7, 'Crypto Flow', 'CRTF'), + (0xce5d953b8a1bc2d568bd9a0b2cce7af638498198, 'SmartassDogzClub', 'C'), + (0xce654167f4ea4643b35aee950d1a92f706d38d26, 'PreMEMEium-Humane Society Collection', 'MEME'), + (0xce65f7464f5bc00828b6baed3accbc665e5ed718, 'The Metamen', 'The Metamen'), + (0xce67d822bd453a300fd01c4457a476ea4f1ee313, 'Satoshi Ghost', 'SG'), + (0xce6a9abebc57a85a3e8a632191dcb51b3fd952f0, 'GEN-T19', 'GEN-T19'), + (0xce79c866c63658ba481f71fd5089d76685d5619f, 'Crypto Monroe NFT', 'CMNFT'), + (0xce79df83fe7198d087d9bd5ffcae3ed102964d6a, 'Troll', '$TRLL'), + (0xce7a949ef3eb41c9a4c86a8f73dbe65ffe720281, 'Old Egy''s', 'EGY''S'), + (0xce7bef5d02c4aaf137b9c87af52414b7c374a399, 'Derpy Snowmen', 'DS'), + (0xce7c4975c3bafd68ea98df80e403d9a6a2b1206f, 'Walking in the Woods', 'SWEDC'), + (0xce7cad27b5019c68c5122196b77f92ebd7e49d49, 'Dape Fighter', 'DapeFighter'), + (0xce81ce4a96d88070724ea23a3973a5819272b607, 'Chapel Genesis', 'CHPLAAA'), + (0xce8839fa2662d2521eaedf3e73bb4ec1527898f6, 'Zunk Punk', 'ZP'), + (0xce8a163585e4916d7b0d213ca1dd2f089dcde1ba, 'Elegant Elephant Cousins', 'EEC'), + (0xce9289a0d5af57ebeec68aa8dcb1791ce71ade62, 'Army Bros Ukraine', 'ABUA'), + (0xce97dd52f0c796096a67d746a284b52bbafce051, 'CrazyLiLPixels', 'CLP'), + (0xce9ad27c0c385cba7c75fdaaa070ef0fd8a09d08, 'Where Lambo Ape Club', 'WLAC'), + (0xce9c5e414040c0dce9b3e839ca165674903d124c, 'GEN-T21', 'GEN-T21'), + (0xce9d0f73265c7867254e8ff445ab640674d95d23, 'Keys to the Metaverse', 'K2M'), + (0xcea657132c06f6ab93420b0906967b6e8f706776, 'WMON TrainerPass', 'WMTP'), + (0xceabb29e6f0d3613216f06e93e772f0638e11e00, 'Neo & Tima', 'NETI'), + (0xceafd5dd8038729ae25eda86ed1773349c11a6a1, 'The Upland Crypto Llama', 'UPCL'), + (0xceb80cbe9dceb279f537c8ac478ae8fae2cfee30, 'COOLLADS_V1', 'COLV'), + (0xceb91787ec4c01e7f24156a9fa0a21dd435070b3, 'CyberPunks Evolved', 'CPE'), + (0xcec97abf818419630d2423ba379c5f09f56d8c41, 'Bone Society', 'BS'), + (0xced140f08e4dd35632e644778c5ff4e596a22fac, 'QTEE', 'QTEENFT'), + (0xced3335378896671c71d6d632a16a474a70a2f38, 'DigiFizzy', 'DFZ'), + (0xced58719b6c15cd99f52dff90b45b5582bd1fd4d, 'Aloha Hair', 'AH'), + (0xced59f01af4186d007bf809bad75da1d16a6945e, 'gerrrfggfraa1e', 'MS'), + (0xcee186792ea8e80dc8894c1d0089307f1e16601d, 'NAME', 'SYMBOL'), + (0xcee20b82873ef2fda3429862e5cae5fd3f3f7c25, 'indians girl', 'iG'), + (0xcee901a0fc6ca9e0ffb3184539e137beac1aefec, 'Frankenbeers', 'FKB'), + (0xceeb3439fd5b6c1e489a1fc0f88c62b11bce9ed3, 'A paixão mundial', 'FTBP'), + (0xceec7a823b6ef095b0a8f31ee277e6537286f17b, 'My Collection EOYtxgQYr148K1BVyhTm', 'my-collection-eoytxgqyr148k1bvyhtm'), + (0xcef70326793000e9d59bfe38e543ba23779b7f1d, 'Verse of Ghosts', 'VoG'), + (0xcefd9526fe85665a5998a05752decef5d24439a4, 'Skins by RIP', 'DCL-SKNSBYRIP'), + (0xcf006be2405c73878a91242dab034b9da9e34655, 'Baby Apepunk Club', 'BAPC'), + (0xcf020eec27f4cc395793ab2e7126a1108b4ea199, 'Shiba Social Club - Polygon Collection', 'SHIBA'), + (0xcf02f9333c176f40aad6893bba256f849d6ec331, 'Mermaid''s Tale by regijelly', 'DCL-MRMD''STLBYRGJLLY'), + (0xcf0928aa929a824d611705a5cd3fb6f1fdb7b6c7, 'Anime Corps NFT', 'ACN'), + (0xcf09c9d45187fd23a996cf3cca949abf273518ea, 'Weird Catgirls', 'C'), + (0xcf11cdd87e2404b92a8f3cf815878d0d27ab04de, 'Royal Cubs Society Official', 'RCS'), + (0xcf1cbf4e0571ce910d30252e14d56e991a3004e2, 'Nelly, Meet Cornell', 'SWEDC'), + (0xcf2252bd61e6ba0752e8c793e7bbc2317b713380, 'Shoot It', 'PIC'), + (0xcf37a19441d012fea3f11917f66d062aa8c276d1, 'Sidus Heroes NFT Official', 'SIDUS'), + (0xcf387a12a45307bf027b3a70becbc64f4b9c6f68, 'Dead Turtle Society', 'DTS'), + (0xcf3a945b5053b89ebc0033664f9f4bc8e97b841c, 'Kangaroo Punch Club NFT OfficiaI', 'KAN'), + (0xcf3e1a39c28f0cfae798a8d41d1065a0f61abe27, 'Artefacts by Ethlas', 'Artefacts'), + (0xcf4a7e8b367e65e368a021901bfc828acfba31fb, 'CryptoShibaGo', 'SHIBAGO'), + (0xcf4f81d692833a142fbdb57e61e0eb3e20e58d86, '3D-Marketplace', '3D-NFT'), + (0xcf52de3118686279bce687d5b9d5cf0699563260, 'ORIGINALS', 'O'), + (0xcf53c67da7cb05b0e18a9a2090c664095882afae, 'Doodle Ape Club', 'DAC'), + (0xcf54c96cbbeaddcdeced07a21866ab99f1ee1860, 'PunkyStyles', 'C'), + (0xcf5a3692fd3c3ff8edcaf663f1b5d9a2fe261a44, 'mcc', 'mcc'), + (0xcf5af9e7b2922c8cffe3986f8dceb5186835c422, 'Burning Mars Membership_AstroBeasts', 'BMMAB'), + (0xcf5d3438f112c17443617ed42dd8c3b000196c83, 'Unique Art & Paintings', 'unique-art-paintings'), + (0xcf63d192b01e8cf52cda02396d8cc9f730d7d5a1, 'Allbright Metaclub Launch Party', 'DCL-ALLBRGHTMTCLBLNCHPRTY'), + (0xcf6ab5ea140ac96095ae6814abf2d865e9749f5b, 'Raja(rt)', 'Raja the NFT crypto dog'), + (0xcf7e0ad1c7dd17f924f3d7b00e74662ba8f4f0b5, 'Every Minute', 'EM'), + (0xcf7e159c70322346c4624745928ae74b2e03e500, 'KonjoPortals', 'KONPORT'), + (0xcf7f5527e5ddd04f0b29c89b51e18babd9206fba, 'BOMB-Deed', 'SuperDeed'), + (0xcf7f769ea20797f2da34962c72b891e391da8a73, 'Space Candy Shoes', 'DCL-SPCCNDYSHS'), + (0xcf7f951d18d2a31b2980fbeaaaf79d599db87a50, 'Gem', 'GEM'), + (0xcf7fa4316977e164c14847392c5d98ecc2aaebcd, 'NFracTals', 'NFTJ'), + (0xcf8416af0a27e6006e774bbfc87e79cd7864c1bc, 'Ape Poo Club NFT', 'APC'), + (0xcf89ede368c2b470a3bb4c4f11b8691668a164c7, 'L.Skull', 'LotS'), + (0xcf8c6ab4310f16870d0fafecfa315775b6e4db70, 'First Merch', 'DCL-FRSTMRCH'), + (0xcf9005cd3142784a3bf6ac3b9e5c003c02dc9cc2, 'Bored Imaginary Apes', 'BIA'), + (0xcf97c3b8db98733c69b9d6560a27a734c49177fb, 'Ape Harbour Hoodie', 'DCL-APHRBRHD'), + (0xcf99da9a329ca49b72616bf26c5bd273db64a5a0, 'UEHSLightningBunniPups', 'UEHS LBP'), + (0xcfa09401bb0f43c03d84d7a147c3fbdc48b637ab, 'Jinx Arcane', 'JA'), + (0xcfa36da2100f2ee6f7baa69e4f7897d8132e96dd, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD06', 'MLPRC-HMB-C06'), + (0xcfa57c24b5188db2e45f2ef78590198e5013db54, 'VRC x ZED RUN Spring 2021', 'DCL-VRCXZEDRUNSPRNG2021'), + (0xcfa58871a685a6d839b17b816b8ab8c90cd0c125, 'Mystic Mushrooms', 'MM'), + (0xcfa86d9d6b3977d6f465e75fbbd494e8799add69, 'Nike Bored Ape Yacht Club', 'NIKKJK'), + (0xcfb5b4a090ae24996c0ab8e7886abdff9b8b17c2, 'VoxBox Famous Rapper', 'DCL-VXBXFMSRPPR'), + (0xcfbeed2ff9faf9aaa2eb9d7c1b9e9ea88c0609e7, 'HelpfulBabyClub', 'HBC'), + (0xcfc783d69d01c4206221577a764c9c407e1f3f59, 'Jolly Emoji Collection', 'JEC'), + (0xcfda9be9878f06d2fb27a4470f00dd4081058c20, 'Simpsons Paint', 'simpsons-paint'), + (0xcfdbc2ced0c3e4ca0dae797d5bb9f8e631dcd229, 'Polygon_Crypto_Skulls', 'PCS'), + (0xcfe9c30125d5f754bf2cbce973181d145eacdfab, 'Pool Together', 'POOL'), + (0xcfef5f1b2f5f0a426a100704e7f4723ee16e4abf, 'Diamonds Hands V2', 'DCL-DMNDSHNDSV2'), + (0xd00736013f16e4299ba218b7e62ec57f27116685, 'The Dystopians', 'Dystopian'), + (0xd00b7c4c0af6540ce51137506704707e0eefb819, 'TheFloatingStoreNFT', 'TFS'), + (0xd01020928a6db00d97335ac4567b0f44105d2b59, 'Nekochimin', 'NCC'), + (0xd010bfe43c168758a606af3f1d929119d638456f, 'NFT', 'NFT'), + (0xd011ccbf18c844cf39f4825dfe8e7bfe0fbe1a2f, 'Fat Ape Club Official Polygon', 'FAC'), + (0xd01807fe8b54878b6e277d42ae1faddf4f537dd1, 'DeadGoonz', 'DGZ'), + (0xd030578bf769bf493cafaf421a56cd320ba649b1, 'Poly Dinos', 'DINOS'), + (0xd03a549dea136c5216de8f9d290f2990ef0d8f5a, 'Tickets.sol Ticketeer 1', 'getNFT Ticketeer 1'), + (0xd04136ee865338d8a0cb81a49a6062554e427911, 'TOPASS.IN', 'TOPASS'), + (0xd0423e227ef22c90d86a44bd08979a7d79e84fed, 'Ring Planetz', 'RPZ'), + (0xd048b11f7d7e5e2c2666a18225360276a9145fe6, 'Lonely Legends NFTs', 'LLS'), + (0xd053df8757c83e454133d8cb595d89fe2aec9668, 'happyheds', 'hh'), + (0xd05a795d339886bb8dd46cfe2ac009d7f1e48a64, 'Non-Fungible Matic', 'NFM'), + (0xd05ae9edf318aa359cc69742fb92a494ac0a85c3, 'NFTs', 'NFT'), + (0xd05dacc0cf88d44bf2672a0506c2a4bebcd3aea6, 'PolyPunksNFT', 'PPNFT'), + (0xd06246f3b506a0bca79bca4ed7d0d1aa059fff5b, 'MGMNFT9', 'MGMNFT9'), + (0xd064c59edcc56e2388eaaf9f7e7fc78e179710e7, 'Hero Elephant', 'ELP'), + (0xd0690e29f3ae2deb0bbff048bcea681c85b65c9f, 'MetaApes Club', 'ape'), + (0xd06ac17edc908ae0cf7790d66a1ad07dbaa86ace, 'Degenereggs', 'DEGENEREGGS'), + (0xd06c2c49517c3ec1ec0d51f767889989c8c8b8de, 'CharmingHippo', 'CharmingHippo'), + (0xd070c436a8f57e3ca21dcbbb3369fc89ff9e9840, 'NFT MONOPOL-EH', 'MONO'), + (0xd075078da4e9eb525eab252d778930b17c53ebd4, 'Energy Core', 'CORE'), + (0xd07a56f7198ae6e4e3d6738bd8c4b81d21bf0403, 'ICE Bomber', 'DCL-ICEBMBR'), + (0xd07d8db305930405cb71bba00ed54ade9c7cb399, 'Crypto Ape Club', 'PP'), + (0xd07eaca3dc1b6da5f3be0dab316d54c7da54f171, 'UCryptos', 'UC'), + (0xd08404b3358f35ba957c95e658bf845c1df26ee6, '0x707f327a01aF28508d427B3420f0Ac6e1a325DE4', 'XFA'), + (0xd08bf4d4898c03c90a01af526edd5f0a4bd74b90, 'Monster Kyubu', 'MONKYUB'), + (0xd090305bdb9cfb8ea8687c2bee727f07c5b6d0c7, 'INICOBA', 'INICOBA'), + (0xd0982febef1fd1f6e9c417244f986587acd3d537, 'idf3 Crypto Inc. Wild Bunz Collection - Launch Wave Feb 2022', 'IDF3-WBC01'), + (0xd0a031d9f9486b1d914124d0c1fcac2e9e6504fe, 'EthCC 2022 Admission', 'KEY'), + (0xd0a0e7342bc52c6f8d25489e2a97007076b9e6d7, 'Sneaker Heads', 'SNEAKER HEADS'), + (0xd0a33368e3b53e8dca91a18c26dbb3fc0ea68b8d, 'MODA SILVER', 'DCL-MODASILVER'), + (0xd0a3cc1c3d1e6f8d8fe4155e9d13300891213576, 'Gravis Finance (A)steroid Mining Captains Rank II Collection', 'GRVSCAPSII'), + (0xd0a975c2c31d4848719b05bd3b911823bf0fb6e4, 'fMetacat', 'Metacats'), + (0xd0aada9d1e984fd1ee7916e8c4fa5ab341eadbcc, 'star', 'wen'), + (0xd0aba90d969e039df8c2c2750afb721bff4588d1, 'Samurai Rising', 'SR'), + (0xd0c1597f198f48aa7c8994245a1dea75d0557a57, 'LongNeck the NFT', 'LN'), + (0xd0c666ef3560ca57f24945551183b67cb4938769, 'CryptoMonsters', 'MNSTRS'), + (0xd0cc137794c5d0edc5864bab8a56b720d472a794, 'Blockhead.tv', 'BHTV'), + (0xd0d5a1a4b811f95567da86a27b5e80e7354548f3, 'Special Weapon', 'SWEAPON'), + (0xd0d6f9d43667833087e50bc1a573c9433f303897, 'lucky bunniesV2', 'LB'), + (0xd0db5bf65777a34cb923fbf20301f84652c94319, 'STS_nanakusa_3', 'STSN3'), + (0xd0dd716665f057890734b25e3a1793da0ceb892d, 'Baby Lander NFTs', 'BLN'), + (0xd0e80fd6eecdbe738028e2b3a0afbbfb5300847d, 'Extinction Fighterz Cubz Collection', 'CUBZ'), + (0xd0f26467b86e924f983dd93b42e3c11b5589cabd, 'art.army Metaverse', 'AAM'), + (0xd0f3d972731fdde3af1ccdf37f1a6e97ecdc0c4e, 'Crypto Asshats', 'Crypto Asshat #'), + (0xd0f8f535fa1a18581cc4ed617e647d6578b2ca1e, 'Funky Stars', 'FStars'), + (0xd0f9d3afb1c0e11996072a79f83fcb5839c32d10, 'HEXROID', 'DCL-HEXROID'), + (0xd1161cf0b9aed9115e127dea2c7c14d7f7d7ad63, 'Monster Houses Club', 'MH'), + (0xd117183e1b37865ce2a3f29c192283d02e0f72f6, 'Golden Wine Bodysuit', 'DCL-GLDNWNBDYST'), + (0xd13bdee857b2f0f690695695a188ec50a51b4508, 'Atomic''s Auras', 'DCL-ATMC''SARS'), + (0xd13be877a1bc51998745beeaf0e20f65f27efb75, 'Ft. Myers, FL Pop Art Edition', 'SWEDC'), + (0xd14b213123cd78cbcc85380db31d022ab73fa295, 'Cloneverse VIP Mint Pass', 'CVMP'), + (0xd14e81229828b029df37942705451a3ede932bef, 'Space Fire CYBORG Warrior', 'DCL-SPCFRCYBORGWRRR'), + (0xd15c3c9306ccd6d7c575a730a8ccb29bf98db755, 'Unexpected Barbed Wire', 'UBW'), + (0xd15df0895c0eb81cc6a8786fbee456ce3bbbb0f9, 'BitBit Wearables', 'DCL-BTBTWRBLS'), + (0xd16065c054a5442e00d9121eda03fea9e9405c7c, 'Few Ferrets', 'FF'), + (0xd1633d534d1953c8f1bda34c9b39cd27785bf8b8, 'Meta Meow Millionaires', 'MMM'), + (0xd173aeefc833784b388c1022c01774b6dd0f47a9, 'NFTs', 'NFT'), + (0xd17cab0d91c899143637636424ed7d48b0d6a6a2, 'Punk', 'TCPC'), + (0xd17e3d37a8bc0c69fb65d15326a99bab1bea3155, 'Unique Ape Underground Club', 'UAUC'), + (0xd182014854c1cb1a4746db6f42384b74f6f509fe, 'Broccoli Rawars', 'BRS'), + (0xd1834a2162b5b02631eb92da6e90077b96a4f89c, 'Vampire Treats', 'SWEDC'), + (0xd187ecd5de98dc79cebe10d629ef18b5e252111e, 'Coffee to the Moon', 'MUG'), + (0xd193d17d575fcf8ae48155039a6a86cf94154328, 'STAGING "Cut Loose" by Uncut.fm', 'CLO'), + (0xd19731570fbd1c1d8a58876717ce14b3c50009b2, 'MONSTER EGGS', 'M-EGG'), + (0xd199926f50e6fd6cbd4c40aee734edc16fe6d90e, 'Salsa Dancer', 'DCL-SLSDNCR'), + (0xd1ab1b51c373a84d21878a3edc4fff7a8cfedc51, 'Frankenbot', 'SWEDC'), + (0xd1ac3490f97c713e9aa005d727c452d7541afa56, 'BookHead', 'BOOK'), + (0xd1acbc0b8fcca25734f586fe08ac471c2c07bcdd, 'VaginAll', 'C'), + (0xd1b1a29a0d4f7c81d618fe71eec647582f6d9d1f, 'TheOriginalGangsters', 'OG'), + (0xd1b710d7ec191cd42f2fd830f6ab651512901265, 'Drop Bear Helmet', 'DCL-DRPBRHLMT'), + (0xd1c803c2aebf84b09cf418834f507c35b3dac2a6, 'Mutant Shiba Club', 'MSC'), + (0xd1dad932df1cc072c5293833771225fa5b336cd2, 'Sandbox land - QUAN', 'land'), + (0xd1ee0fdf57e4e799a32e671461273db72ed4b45d, '0x86d5c0E82b1b0D89eaA940698E3394194F72EFf7', 'Xcd'), + (0xd1ee5ceafd86f5bf54e0f9dc81a4f3a28d287289, 'Highness', 'DCL-HGHNSS'), + (0xd1f5361588a508acb6a124c59f2d7eacfd2ef405, 'Luxury Watches Club', 'LuW'), + (0xd20d0b1f716330399cd98470a0262003a47c4c85, 'Hog Mob Society NFT', 'HMS'), + (0xd2132c5f42e9b0e2fb494b98963dc9a4470c19d0, 'Red santa hat', 'DCL-RDSNTHT'), + (0xd214e3ed01664ecbe10845848275ce29f251e5fa, 'Comic Con Metaverse', 'VATOM'), + (0xd21b71b7afa00144fbed60d7601e70ce4e4abccb, 'Sensei', 'DCL-SNS'), + (0xd21be95a4c016624bd0e2ea1ef6915cd4941156b, 'CryptoDamsel', 'CD'), + (0xd2291e7bb99deeca4b0c215ad95f6b884c5f58d8, 'The Lonely Toad : Part 2', 'TLOTO'), + (0xd22a0cb08f3d22589a3c757186d43cdd8be7de57, 'Web 3.0 Hackathon 3rd Prize', '3rdPrize'), + (0xd23094f9d4b04a3217adc38977884d5477d7739d, 'Inst2NFT', 'INST'), + (0xd234d762051162f4a9b5e75faa1819e4ad16a58e, 'Dunhuang Grottoes Murals', 'DGM'), + (0xd2350b0bd4a6c779215b9df71a3d2a7ce466b792, 'Sophia the Robot - MVFW', 'DCL-SPHTHRBT-MVFW'), + (0xd23a98018ecaec0cad662fd20e58b350fca68b89, 'SOBRIETY Coin for 9 MONTHS SOBER (from Sobriety Squad)', 'SOBER9Month'), + (0xd25573c896280c456ff65f1db63c21be164313c4, '[DEVELOPMENT] Em Ca NOMCOF', '[DEVELOPMENT] Em Ca - Ed EFKATX'), + (0xd257b3334445e0e4e44b8278909c837712346fb7, 'Digital Diamonds for Her', 'DCL-DGTLDMNDSFRHR'), + (0xd25993328b2275b8048fbb0248025664e2e07153, 'ElonCheeks', 'EC'), + (0xd259e305fcdf36d50af6136d8443db3eac4f5d29, 'NFT Quartet', 'NFTq'), + (0xd265d7cd6691a63b5b9fef895f4b2aaae93e1216, 'Metamodels', 'C'), + (0xd267611c307f1dcfb0a13fdcd570b34b0f326fe0, 'Paperbagyachtclub', 'PBYC'), + (0xd267c5397a2f3b469d30ba55c6b0b1bfe1e22d15, 'CheapChiefNFT', 'CPCF'), + (0xd267ec23215d975e0288b0a59c85339f853bdeaf, 'ThePunkOligarchs', 'TPU'), + (0xd26df4a1b2823cf3b703177cc691314c45177016, 'Fly High Amnesia', 'DCL-FLYHGHAMNS'), + (0xd26f090e41f00596c979185725c7c6e69dc61316, 'Easter Bunny Oregin', 'EBO'), + (0xd28facc75399427453054472fb617b1b6e63a074, 'Big Burgers', 'BB'), + (0xd2909f76183cf69238ca22853cf88dcaf3cf5f89, 'BTCNFTINC ROCKET', 'BTCNFT'), + (0xd2b454f0f389a210cfb7eccdb6e4372e93ffb832, 'Grenade', 'BOMB'), + (0xd2b7e54b8c59b8fd021d0177da8ff0dbafc87175, 'Sweet December', 'SWEDC'), + (0xd2b8f861dfdbc3f89eda8bc50e1ca126ad991d92, 'NinjartPlatinumCollectionReplica', 'NPCR'), + (0xd2bc5c3990c06ccd26f10a3e9d93b19450136c8d, 'BanaCat', 'BanaCat NFT'), + (0xd2bd1cadfe12ee9d37ff95912af7f8a97ae71ba0, 'OG collection FBRN', 'DCL-OGCLLCTNFBRN'), + (0xd2cd3c089c4236c743358bac59caee1047e47520, 'ChoCats', 'CoC'), + (0xd2d8f9de9cbc07e36e9fe6338d96964d97c5c4b6, 'NFT Colle', 'NFTb'), + (0xd2e26d14e9539a146fcc47db2ee33c637a1f6642, 'WantedPixelPutin', 'WPP'), + (0xd2e2dc1f137c28594b7f76e46e17bf112bf132d3, 'VOODOO DOLL', 'DCL-VOODOODOLL'), + (0xd2fb5d531db82d6bf8d5f6f179940f0a1955e1db, 'HYBRIMON', 'HBM'), + (0xd2fe44055b5c874fee029119f70336447c8e8827, 'camDAI MAI Vault', 'camDAIMVT'), + (0xd2ffbe1a10c28328caaceb63670f4f4ef0126981, 'CandlestickNFT', 'CC'), + (0xd30620600300e98b752d959b6ac30a6d7e47a152, 'Coinhub Gift Card NFT', 'GiftCard NFT'), + (0xd30bdd473a8c87eb6122d35b3303ccf22797a78b, 'CryptoError', 'CE'), + (0xd30c035964e791c131829eb7be9aabb1d3c5382a, 'CHATTER BRAINS NFTS', 'CB'), + (0xd30cb8762482b4439e8b801b54a2c87254dd9984, 'R100', 'R100'), + (0xd31328f2036310ae59921c11caa3e41a118ca6cb, 'HEADSHOME', 'HEADSHOME'), + (0xd3189c73241ef3a34757515c90ba9975a0a95cb0, 'PETAVERSE Originals', 'DCL-PETAVERSEORGNLS'), + (0xd322503a710154c0e7927c5533f0d167a420ee1d, 'Kleowork', 'KW'), + (0xd3272e24bf2aa99bab48094daeb798e138e82f64, '315 Guild GM Forge', 'GMForge'), + (0xd32db647d41d8c86d1f39e9996b914ee49fef938, 'Isekai Anime Characters Monochrome', 'IACM'), + (0xd331ea29636fd6e984ddf4b8265d8730c2c34dfe, 'Bettys NFT', 'BET'), + (0xd333db78b7b3cf27d40b98c08b810705f8125624, 'AMEDEO x Exclusible', 'DCL-AMEDEOXEXCLSBL'), + (0xd33459dcdcceed9f1e3ba758cc547a73757d5be5, 'EggPass NFT', 'EGGPASS'), + (0xd3352f4bfd24540af0753ecf4d17123b3f85fcda, 'Buccaneers', 'Bcs'), + (0xd352bb1a11b91b33178239abfadc12907e3157ad, 'Mistery Fish', 'FISH'), + (0xd357aa426bb8354fcdd4359e1acf03697e591601, 'GG Gold Cowboy Boots', 'DCL-GGGLDCWBYBTS'), + (0xd35b1a76721bbb4230f63db3e3e533580fcef369, 'The High Collection: Trophies', 'THCNFT'), + (0xd35e51faccdb695ce4ef3d2333c635b2771a8e39, 'All Class Investments', 'DCL-ALLCLSSINVSTMNTS'), + (0xd35f2bc73d09f1e32ee0dd477f898f6400319465, 'BoredApeMeta2', 'C'), + (0xd3602a0f1a91a27c691fc66ce51c24f8a35bd255, 'OG_Guitar_Club1', 'OGGC_NFT'), + (0xd36159aad7089ead09aa2a47009c8550fd1a90b4, 'black skull', 'BS'), + (0xd367548aff2601dd0b0603cb9baf8e19695f4b57, 'Need For Tower', 'NFT'), + (0xd37b1367b80e0eaac6433b1b3a7274bef393d813, 'Doodles', 'DOODLE'), + (0xd37b852bda031d42fe9ff76201d28e5465457f9a, 'BadPunksSeries', 'BDPS'), + (0xd38092011c49d29ae0eb467f2b7d14ddb6b44ac7, 'Meta Ape Collection', 'MAC'), + (0xd39277af27b8c480937c8b6ce382efadfa474c4a, 'Phantoms NFT OfficiaI', 'Phantoms'), + (0xd39671949341248db92d154326b7b5a60e4d2ac7, 'Untitled', 'UNTLD'), + (0xd39b5eef49dcccb78554c81d12bb77d76065960f, 'North African Man', 'DCL-NRTHAFRCNMN'), + (0xd39d29351c47fd6acd1450e901022ea149d91189, 'ETERNAL-ASCT', 'ETERNAL-ASCT'), + (0xd3a3f2be9fb936479ed5370d085ba4b6f1e29487, 'BeatBlox Early Supporters', 'BBXES'), + (0xd3bc93d164838f4d922784761c1baf1df9e477a0, 'Weird Catgirls', 'C'), + (0xd3bf4a2d63a713fb4f80b0e9f6e20178e2fab028, 'Adorable Bears !!!', 'AB'), + (0xd3c4ca58885d580be39040bf5117891b53c6542f, 'Collider Craftworks', 'Collide'), + (0xd3cc4eaf6e2b33e878406407591ff52acba43160, 'Access Mask', 'DCL-ACCSSMSK'), + (0xd3cddbcec3847bc1d9510c7e9b068d8d5b82196e, 'Garbage Friends Official', 'Trash'), + (0xd3d696f62fd3b2af2551b7ca5fc6f01ebc725c2f, '[DEVELOPMENT] İl Gü2022-03-14T15:37:35.802Z 952400', '[DEVELOPMENT] İl Gü2022-03-14T15:3'), + (0xd3d823f7fba337f86a40afe31a8a6e21b3cbd767, 'Sacramento, CA Pop Art Edition', 'SWEDC'), + (0xd3de6b5aef380c715729a854b25d3d86812c9507, 'Rui Costa', 'RC'), + (0xd3df9c3b6e16a1839bd7ee1e9f3b296c6faa2452, 'kirinLoot', 'kirinLOOT'), + (0xd3e05c12792aae8c9d27ff22d2c2d973aa29032a, 'DBAC Adventure Squad', 'DBACAS'), + (0xd3e29bd21f8e7237a9b06d216a0ef78d79d1785e, 'tudaBirds Virtual Game Room', 'NFTVGR'), + (0xd3ec115602ef8c4fd6d62cc92e3930c8a1a58dee, 'MayaMeta Collection', 'MayaMeta'), + (0xd3ed75b60b5edbf4110e778d3053fedb3e2f2a30, 'Samsung Turning Red Hearts Green', 'DCL-SMSNGTRNNGRDHRTSGRN'), + (0xd3ee1c151e23a66309754eead09cf740f23d1ea3, '[DEVELOPMENT] Ro Go 762205', '[DEVELOPMENT] Ro Go - Ed 889363'), + (0xd3ef9a40806acfe42a5e99257cd8774cd25d525f, 'CFD NFTs V3.0.0', 'CFD3'), + (0xd3f0416524a8f6629ee39a960ec306fa777f3c84, 'Dilli Dabbanggs', 'RAGEDEL'), + (0xd40fd41e9b78b8921755b1138dac044c8df8b19c, 'metameta', 'metameta'), + (0xd4117dfb1d944cbaa88aa5a9b4c924b4bdacc25e, 'mint perilla leaf', 'perilla'), + (0xd41251f39c9098b1b7276bdd7cbdf6cd26d8a52c, 'Hiyoo', 'Hiyoo'), + (0xd4134bccbe1694bb13e668f3468a22ece64f6019, 'Rogue Ape Club', 'RAC'), + (0xd41e4dce1fc8431675eab2bba4048ca8fc208e8c, 'Meta Creatures', 'DCL-MTCRTRS'), + (0xd4225930e82f8b5163484e6bd2e021a86ee0da11, 'New Crypto Heart collection 3', 'NCHC3'), + (0xd423ac796f9ab8ef32c0769a46de63bc974ee080, 'FSB', 'Farsite Blueprint'), + (0xd4273f5a40bc35aa9e5964db4e26685afa14b139, 'Voyder', 'RKN'), + (0xd429262030b75de758ff807282405fc3b32f8416, 'SPKZ Lounge', 'SPKZlounge'), + (0xd4329d796959df5ce64a897a9abac5a779d23511, 'Crazy Dolphins NFT', 'DOLPHIN'), + (0xd43b8ece5f8899f1e82ce873fe29f22c9d2c1477, 'RTFKT Akira Airdrop', 'DCL-RTFKTAKRARDRP'), + (0xd44860968b37ce1c61d5f398fd0cd58a257ce2ad, 'Triple Cream Classicpop', 'SWEDC'), + (0xd44a4220b9451ef8ec4833546afa93fcaeb98575, 'Wen Mars?', 'DCL-WNMRS?'), + (0xd44abc3d95d1583d30715d458eb92184c6ff1cfa, 'Hiroto Kai''s "The Blue Dragon"', 'DCL-HRTK''S"THBLDRGN"'), + (0xd451432407209edb40815c71d11b1f6e63a6731a, 'MoMoney', 'MoMo'), + (0xd4562849d31d7ebf9f7739a340eeb375f2bb33d3, 'ZED Racehorse Nameplate', 'ZEDNAME'), + (0xd4569c472d53bab2252646fb32396a1da6e24095, 'TheOfficialStoneHeads', 'OSH'), + (0xd457a7efbb83428e5f9bf5856770d0b14932d7e7, 'CryptoDolphinz', 'CDZ'), + (0xd47882917e70342c238f1980251d60259e28b704, 'GEN-H28', 'GEN-H28'), + (0xd47dad354dc85acab718aefe94e5c011ac60be7a, 'Flamingo Punks', 'FP'), + (0xd47f54f21785f7fe7150176d45b1793c8f645b9c, 'Club Arnj Lumina Collection', 'DCL-CLBARNJLMNCLLCTN'), + (0xd485b9f05d5d40aaae590538c68e04243d3cb7f4, 'PixelFace', 'PF'), + (0xd4921adfef20293fbb49cefd24361ba9da29b6d4, 'crypto kitty gangs', 'CKG'), + (0xd49879ad55bd52619cd0ca9105b791cf8b7c5567, 'Hypebeast Ape Wrapped Polygon', 'HAPE'), + (0xd49c9d081d5cb1427f5cc95f9673158ab2a605c2, 'ekdfjkelfjlwe', 'SH'), + (0xd49ec6c7e2bb7ba8e36c8af726fce0fa3507efef, 'Panda~Monium', 'PANDAS'), + (0xd4a7b4ee8105791cdc3db6d3de7b173e690a3bb1, 'The Bored Spider Club', 'TBSC'), + (0xd4add5488b1a20df41bbe8374876c00748ae6a8b, 'Non Fungible Token', 'NFT'), + (0xd4ae9e11187b43dd7b154e476a2adddf3dffa1f1, 'Meta Wizards', 'Metaw'), + (0xd4afea0d5d9aa79705691563b01e50a8722d3232, 'CT1.0', 'CT1.0'), + (0xd4b300e53302496c4396c3e7824c601be82d4df6, 'Galaxy Panda', 'Galaxypan'), + (0xd4c1ec904f0d74d8ac32b817e86e98790deff5fc, 'Sende Katzen', 'SEKAT'), + (0xd4c79f1104ef96a9a588fade2c8621ffa05a1a49, 'FOEPOLY', 'FOPOL'), + (0xd4c982ef74c340e00ce888eb29b28f37163b0a3f, 'Rumble Trouble', 'RBTB'), + (0xd4d6e89c806124eab7c50577f17db56426d612f5, 'Uniqly.io Valentines', 'DCL-UNQLY.VLNTNS'), + (0xd4ddba447a5d73cd19f174d64139b7afd6b789d2, 'Alien CluB', 'ACB'), + (0xd4e5c2a3f53eaf83d51ee66d951e1f731ea97a81, 'BetNFT', 'BetNFT'), + (0xd4e9df735bcf1d4b0af8589adcbbbab5803177b0, 'Philadelphia, PA Silver Edition', 'SWEDC'), + (0xd4f40fad80f6e1a8f20a0153049f338a97b56818, 'NAC Gold Members', 'NACGM'), + (0xd4fd02e0c057fb8b5ed1bc0658cd05e068e5dd18, 'OrhanSmartGiftContract', 'ERC-721'), + (0xd503d886db98011085892e82236827c14f6792eb, 'METAWEED', 'DCL-METAWEED'), + (0xd5073eccead36e0eafb75a0d13ac7d2c6b5f71d3, 'MissingPiece', 'MissingPiece'), + (0xd50f488c653434c7d2b7148714f0926fd7c721d8, 'The People', 'TP'), + (0xd512a5c1e694b848271fc3ce879e8e7632e2edeb, 'PolyWars Battleship', 'SHIP'), + (0xd51586bf57ec5b345f67be1f4d31a1ccc3b75125, 'Eyebuddy', 'EBC'), + (0xd5164b97707f2144b218bab0be6fb547b3b8be3f, 'Bored Ape Wives Pixel Party', 'BAWPP'), + (0xd5232b82a761f1608240320b04e918f9dba19533, 'Sulab_AI', 'SAI'), + (0xd5316d36bc5f99a361f8c18620cf4f5b14ef1ead, 'BearEmpire', 'BEAEM'), + (0xd5357d59ac41cf0bdf945c214313dc5b06bfa787, 'Belair NFT', 'BLR NFT'), + (0xd53767fd77f92105dd15867aa9b805a060f57fda, 'bilel ludo', 'lvfc'), + (0xd539cd9ffe8b2c73743a2d170dd728b5216ee09e, 'Poly Python Egg Collection', 'PPECNFT'), + (0xd53da9488b302337e1d40c171d8c090de34f48be, 'Blvck Paris Blvck Paris Blvck Paris Blvck Paris Blvck Paris Blvck Paris', 'NFT'), + (0xd53fd99b5e602d931da65e5bdf09f9d9dce2aa36, 'Mfer Hulking Mfer', 'MFERH'), + (0xd5404e82c3d193c967306f0e9738f761537c8044, 'WitchDoctor', 'DCL-WTCHDCTR'), + (0xd5452c21b8efda4fe20df6b6d64867bd1a298848, 'NewOne', 'NO'), + (0xd54bd8db9455063e9b86c7ed95a0d501a2bf39a1, 'Mars Boyz', 'MarsBoyz'), + (0xd5541c67a73a3b1870352da209c38f32e0e97b9b, 'BapesOfficial', 'BO'), + (0xd558bf191abfe28ca37885605c7754e77f9df0ef, 'Battle Shrooms Gen One', 'BSONE'), + (0xd55cba0a336c1837ad3b8747efc1800de4fb00cd, 'XNFT001', 'XNFT001'), + (0xd55d2906a1121233d78d607e7a5c4e95aa5db305, 'Gaming Ape Club Official', 'GAC'), + (0xd55dfc26890071c42f779060373aa08a91652263, 'Normal Wear Boots', 'DCL-NRMLWRBTS'), + (0xd5603216bc70e0ad462834e8855e146d9e6f260b, 'jj', 'jj'), + (0xd563e7942fc77c6287a94612ff5b26221e5ca60b, 'Weird Catgirls', 'C'), + (0xd568e27b30356a07a2e50d2c8b2d2108cb60205d, 'Organic Wealth', 'Cover'), + (0xd57208797cef962607cf8293b9799efdc45e793a, 'TheCryptoPunkCollection', 'TCPC'), + (0xd577ab1b786519c0d86b44bd454b64a399b2e2be, 'GRxMutant Apes', 'GRxMA'), + (0xd577ea25f0fa7bd192007321c9db5ae5d0d49861, 'PuppyCream', 'PC'), + (0xd57b5f1ad1fef88111b654be3298bbb327e48b22, 'G.E.M.C. Elite Streetwear (G1)', 'DCL-G.E.M.C.ELTSTRTWR(G1)'), + (0xd57c6b28f0c91b2026cb4ef368e20e0987554dc1, 'Calero LDN', 'CLDN'), + (0xd57d9f37a123e8812078d169cd4f76ed520a69b8, 'NFTWOW', 'NWOW'), + (0xd57fc999806765abf9cca7930d734933dabe5551, 'OGG Apes', 'APES'), + (0xd5891abf256c97577664e5a01640433740fc2e4c, 'Fingery Club', 'Fingery'), + (0xd59289e293c22a0247def8042e9f0f21c58c3c97, 'GEN-T18', 'GEN-T18'), + (0xd59765b76913dd781a80f1974487b002406d7b5e, 'CryptoTigerX Den Squad', 'CTXDS'), + (0xd59cda90a0371e921b687eb35728704189ace094, 'stkrjm sneakers_collection', 'DCL-STKRJMSNKRS_CLLCTN'), + (0xd59ec90e9359122f64a9e23fddc9bd9525c184cf, 'Unknower MetaMerch', 'DCL-UNKNWRMTMRCH'), + (0xd59efb1841a2526405d4d6c19faa9649eb187cc2, 'Fancy Frogs', 'FancyFrogs'), + (0xd5a111deb9e7b818ac01a9df508ec7c5e02b1082, 'MAC', 'MAC1'), + (0xd5a22cb1efa368c753b5b7a3879daeb026e7b1f8, 'Baby Spirits Oni Squad', 'BSO'), + (0xd5a2a73015aa155d77051f247d7d0322aafdfc86, 'Ukrainian Fine Smoothie', 'UFC'), + (0xd5a47d63fb8c6c95db38c4cee74cf67e3dfec4f6, 'DEADPXLZ', 'DEADPXLZ'), + (0xd5aafd216ba966691692d46a30c7d95f5f9b4016, 'Thailander Drop #2', 'thailander-drop-2'), + (0xd5ad761702fe9eb323ab7a8751a4a53e8fcfb8ff, 'ORCS', 'ORC'), + (0xd5ae4addaba10c6022e2b28c7c981ba71e7f9246, 'SandStorm', 'SMTA'), + (0xd5b07ae67c1a91990794a651ab0596950ba2be3b, 'Bit Polygon Suit', 'DCL-BTPLYGNST'), + (0xd5b748329fbadc5629958b93a133ef32aef5104a, 'BEEWiN_NFTs x Sup365_IcyLutein', 'Sup365'), + (0xd5befe5b12dea29685044e140c95040791576b29, '0x9fDecF64DAE8C283550C34Dd3356C3EE984C66b4', 'XFD'), + (0xd5c6fbe5768b8878bf28e0ee3daac835546b0964, 'Uniqly Christmas - Hodler Gift', 'DCL-UNQLYCHRSTMS-HDLRGFT'), + (0xd5ca2a41518cbe47af8c062ba75ad0247c4f0715, 'Zed-Run', 'DCL-ZD-RN'), + (0xd5d07bfe4eae6405f8089aead4887bcf3dfd1265, 'My Collection kVvBBs5W2o3zm47I4XsP', 'my-collection-kvvbbs5w2o3zm47i4xsp'), + (0xd5ec0a35c16b528e175b968a7a6921730aa072e0, 'CreepyClowns', 'CC'), + (0xd5ef28e80439f3372f35ada5529bc6fea874af14, 'Moose V1', 'MOOSE'), + (0xd5f386b4d009f9653b0477f623ae8f4fc9b95b7d, 'Thought Key', 'tKEY'), + (0xd5f4cc5fed9fe6af73579fa975bb82026113d139, 'The Pantheum Limping Devils', 'TPLDC'), + (0xd6031419e6d33ad05b0102281b9c4c1c956cf3cc, 'Fully Faltoo_Rangu', 'Rangu'), + (0xd60acd321b281df864e8524ead42bab4981c4346, 'TFS x DCL Fashion Week 03/22', 'DCL-TFSXDCLFSHNWK03/22'), + (0xd60c9a1fc1c630f149aa1c460cf619d050b07f25, 'Phoenix, AZ Pop Art Edition', 'SWEDC'), + (0xd60df30b05eb72a309bc53cf335fc3b5cf93efa2, 'RoyalMetaverse', 'ROY'), + (0xd6156291d26ef0369aaa4e3a5ee4fce8a8af3dbf, 'One Good Eye', 'DCL-ONGDEY'), + (0xd61f47146b84a803ab371131379580b7e841b260, 'Get Clear', 'GCC'), + (0xd623caa6eee63368abf21910a31fcd8b0d11f998, 'G2 Fkn Mint Pass', 'G2FMP'), + (0xd6291bd17e105c5cb3d7e713e95c45cf663c29da, 'Queen Bee Leave', 'QBL'), + (0xd6312d4a09f451eed2dc8dbe747ba64881caf126, 'Gravis Finance Thruster Collection', 'GRVSTHRUSTER'), + (0xd637e55add70c1463db3f6cd22caf9dcc2dec08e, 'Hippocampus Crypto NFTs Collection', 'HCNCNFT'), + (0xd64762ebb975534bb32956c1bf15243c5a6bde1a, 'Tommy Hilfiger - SP22 New Prep', 'DCL-TMMYHLFGR-SP22NWPRP'), + (0xd64deb627d0810bb8e953e4a15b7d5d948b72970, 'GEN-T27', 'GEN-T27'), + (0xd66075f3c335d2255bd09520dbcbe489c31d7aaa, 'Pokespace', 'PKS'), + (0xd668aeac8f52f375fd88c54f0400c44f9532451d, 'PYOBeer NFT', 'PYB'), + (0xd66c5f9010d011d776b7d391e46e8a910812a057, 'Nu Dreaded Lions NFTs', 'NDL'), + (0xd67d5ab3f0606df2b49f1c65d8db77170a39fd64, 'Mussoorie Trip', 'MT'), + (0xd6880409971a4d0f92c40649445609692f421177, 'Blockchain Creative Labs - Maskverse', 'BCL_MV_POLY_001'), + (0xd68bc9a69343dde6ebef1546bd09f3f43fe308c8, 'PRUF EO Staking Token', 'PRST'), + (0xd68e0747aa2fe7812d02df243312c891c695235e, 'BoredApeMeta2', 'C'), + (0xd69b360e612d053d164522280d43c7f0e43a3535, 'The Big Mouth', 'TheBigMouth'), + (0xd69cac37e5a17af922339cefa793534aa879b001, 'The Auerbach Collection. Artdrop III. Frederic Auerbach.', 'FAKTURA'), + (0xd6a632e05f56c127df2af068f5b33e666e5ad389, 'BlackRock Society', 'BS'), + (0xd6ad4b98e8778e0eaa87fbd28be2f75233796fe5, 'btc hodler', 'btc hodler'), + (0xd6b73c478a828a56364fc570613b91a1388aeca7, 'Tons of Tickets Crane', 'SWEDC'), + (0xd6bb022e43f48c64561f671d42629571768debf7, 'Bored Ape Kid Club', 'BAKC'), + (0xd6be2112c17abe65205ca8d197b9e7ada6c08f18, 'Treasure Turds', 'TURDS'), + (0xd6c1b5fe8f8bd35bf4918cb1beefd23470939299, 'Aspired Hands', 'AspiredHands'), + (0xd6c8b1c00838b4b200f0fda21917458782ec2e6b, 'PICASART', 'PIKA'), + (0xd6cbb4974a9b6a38aaa04bb74a1d899aa58c381a, 'Albany, NY Pop Art Edition', 'SWEDC'), + (0xd6ce7f8f24c4ee30fa67d81c0c3a98dc06a1a768, '0x86d5c0E82b1b0D89eaA940698E3394194F72EFf7', 'XDC'), + (0xd6e07a46827f12325cfbef9e2d6a84cdb852bb74, 'Chang Gang Ice Flying Suit', 'DCL-CHNGGNGICFLYNGST'), + (0xd6e371ddee54edd125abedc3fa457527f48611f7, 'Worm Toon', 'WT'), + (0xd6e3f10e749a77c8a8e5f030344ac4c3ae1ff163, 'NFThicc_Candy_Hearts', 'HART'), + (0xd6f548be79cc5a18448343c722974cb177b9a627, 'GemGuardian Dragon', 'GGD'), + (0xd6fe0543b6e8e87e81db95f8338c6f78e03f3aa4, 'MASKED APE SQUAD', 'MAS2'), + (0xd703801cf3aa97631df8ba20fd02b129e9ce1564, 'MEMIK_MONKEY', 'MMK'), + (0xd70505c54e4c76e2bf32125da0984f73fc90d127, 'Marine Krakens', 'MK'), + (0xd707439c7c5a4eecc950b42eb443eed89d286c9c, 'Matic on Sweet', 'SWEDC'), + (0xd70a2c52cfb19403bcbf6e59a26364b30a853477, 'Magical Girl Vibes', 'DCL-MGCLGRLVBS'), + (0xd71251b0631560935559525f83b724161aa23ff3, 'Cap Polygonal Heads', 'DCL-CPPLYGNLHDS'), + (0xd7174511de5c35a120100cb12745360101d8ce58, 'House Party Animals', 'HouseParty'), + (0xd717e7017b672ea5fcdc91eab420f370f8813ce5, 'B.A.Y.C.', 'DCL-B.A.Y.C.'), + (0xd71fe83a8335d7ddbd4934b3b112df26dcbdcd39, '“Goshuin” of Bodhisattva Jizo', 'GOSHUIN'), + (0xd72349964b25a74f5bfbb4c05274560139a0d869, 'PolyPeels', 'PPEEL'), + (0xd724a626efea48745aa5d645170d6d91b23e366e, 'XcapitFinancialFreedom1', 'XcapitFinancialFreedom1'), + (0xd72694b559021a6d04f1cbc63cbee3e25568c7f8, 'CCC Walkman', 'DCL-CCCWLKMN'), + (0xd728a58f231cf0197dad1213c5e52b676fda0a0c, 'CodeGirl', 'CG'), + (0xd72a236100874bb3a03d9b1536dc61b4b5189c08, 'FeeshesAirdrops', 'FEESHDROPS'), + (0xd72f199bcc278bf448665130310ff786b9e9e494, 'InfinityPixelIce', 'IPI'), + (0xd730a5674892bc0471616ca2377fabe59707f82f, 'DoggoDreams', 'DDD1'), + (0xd7320f2d516b801d53768806b7637d4e91804310, 'WhitePunks', 'WP'), + (0xd7324a2e62ffac30c2d25bc84f3d5df5c8d1859c, 'DCLDating Planetarium Collection', 'DCL-DCLDTNGPLNTRMCLLCTN'), + (0xd73b2afa6c8588c16ebd2cc2dd3df2402dc34ea4, 'Grim Reaper Skin', 'DCL-GRMRPRSKN'), + (0xd73f35c4e1c66dd22b929a88465c8a8d63e83b70, 'GEN-H13', 'GEN-H13'), + (0xd74b0391276ede8e392286be6d2752074a089640, 'NBAYC', 'NBAYC'), + (0xd74ea0f5f21fd68b1f5bfed9e6ffb6925140129e, 'The Cranky Clowns', 'CrankyClowns'), + (0xd74f90824ded4d0d1052c28060318137013be787, 'Polygon NFT Collectibles', 'NCP'), + (0xd75e08ec9968f533ab7b3a47114fe6642ce14159, 'CryptoPunksSubtrai', 'CPS'), + (0xd773d23a7139c18568f109544d63934f40e10cd0, 'Cattoonz', 'Cattz'), + (0xd777184f465565cea2ec24d1e8aa46bdb26750f8, 'Delivery Boxes 2.0', 'DB2'), + (0xd7796c86b2e7d8a861c38dd85e6a24f7c190b495, 'KOLEKTIV', 'KLT'), + (0xd77fc725b87b1e8950fea978a1108dcbafa72cea, 'FaultyFoxFam', 'FFF'), + (0xd782ca5ed0b71982833e811048e77e68f5afb865, 'BullsandBearsDiamondHandsCollection', 'bbDIAMOND'), + (0xd791477a836f0811290c106d0e88189dbac40287, 'ArchiDAO', 'DCL-ARCHDAO'), + (0xd79cf5a41d8caec4688e01b4754ea2da6f51e856, 'ICE Linens', 'DCL-ICELNNS'), + (0xd7a890d8c526a5e83cfccf97949873063c7a4d9a, 'Crypto Riders', 'CRH'), + (0xd7ad6ac05e713a04ea3073f15f9f0e553cda4a34, 'Millionaire''s Mining Club', 'MMT'), + (0xd7b42f980afee5b02729db734b5ea39a52fa4181, 'WhatTheHash', 'H'), + (0xd7b89c70f90a906099af1679755d3d10eb873a7e, 'Pandoodles', 'PDDLS'), + (0xd7b934421bfc69c8d282895d83b294ddbcbc2723, 'unit01', 'unit11'), + (0xd7bc6ae88f7685a7da77073f53353982ab347192, 'CityRoots', 'Vault'), + (0xd7bc6f9c3ead1c4fbd86f994b5e69c15b0f05dc2, 'CryptoStrange', 'CS'), + (0xd7be831b794445dd3ae1fbe6a051c3f9f87915d4, 'Don Buttheads', 'DONBUTT'), + (0xd7c7d7f1df32a55239932db80e394a3aad241197, 'killer widows', 'KW'), + (0xd7d3c3111db08e63b92280b3b21385dbdc91f662, 'Crazy Skullz Official', 'SKLZ'), + (0xd7d7cb1b855fa8eaf44b940bbc08c0a8860e69ec, 'Mutant Shiba Club', 'MSC'), + (0xd7e090046f94f3ebfef7be2e3431f2726e5f3a7f, 'Mine1', 'c'), + (0xd7f06a6e31804958dff0defc4e5d674914587d2a, 'Hungry Man', 'DCL-HNGRYMN'), + (0xd7f67a5aab6a418979110f62e2ba45c1cefef452, 'Doodles Baby Ape Club', 'DBAC'), + (0xd7fbbcc31ad32ca67563befbca42363ee1d11b4f, 'DIAMOND CRYPTO DUNK VDAY EDITION', 'DCL-DIAMONDCRYPTODUNKVDAYEDITION'), + (0xd800fd3493fb1efb2370a49f98adcd8664bbb765, 'Crypto Unicorns Shadowcorn''s', 'CRYPTO'), + (0xd80aba9b76bd80a5f561643805cabb7d7d8dbb3c, 'Web3verse', 'Web3verse'), + (0xd80f2a5a66e3e5d303ee3a99ebeb5b11ac560f87, 'AI Generated Images', 'AIGI'), + (0xd813dd84692d5d441b23880162db835b7ac9ad9b, 'MonstaCat card', 'LFG'), + (0xd816f5ae1d5945f127e27c90df9b62c8d34a05da, 'Premium Blockchain Investments', 'PBI'), + (0xd8211eefc9775d3a2923118d9b24f317e56ad7c0, 'One', 'NFT'), + (0xd821b1b7a776e57119d9fd1429629f4914a485aa, 'CBAWarriors', 'CBAs1'), + (0xd8315ba68616ddd7eedf9a41e6208b843933b691, 'The Modern Commons', 'MM'), + (0xd83ef53eec213bfaad9f53157de8b19812fa7c27, 'EGGTOMATONPETS', 'EGGTOMATONPETS'), + (0xd84347e00112489f5018966d6b5a36e73eebc962, 'Jinni - Girl Next Door', 'J-GND'), + (0xd84da43257b7afec75f40325540a28ec0c00409e, 'Doll GF', 'DG'), + (0xd86376949c4ad6eae750e4ff7b43c2b397cbecf5, '7HEYWAVE_ARCHIVE', 'DCL-7HEYWAVE_ARCHIVE'), + (0xd8655fdabc7ce8e7f26acb6a5193d32d5dcd5a5a, 'Puppies Punks', 'PP'), + (0xd870209e6f5608f69d58bdac20668f3d0ae27907, 'Real Items NFT', 'ITEM'), + (0xd87a431067caab669ff72ea4bcfd03a513d80bed, 'Cross Mint 721', 'CM721'), + (0xd87b4a4f6abe9d6ce2e27a027f85b7cef5e288bb, 'FoxDetective', 'FD'), + (0xd88087ded6975784c8896957ec934bb568a8fe33, 'Weird Catgirls', 'C'), + (0xd8849a4e6f77ecd24b479011d1ac6a546921a4e4, 'GenerativeFluctuation', 'GFC'), + (0xd88a4cd555fdabda38621e5513d4af9b2ca2e330, 'Very Long Okabe', 'VLO'), + (0xd88bc0b45f500a1f57a92eba40595a6de8b25c67, 'Mr. Potato Family', 'CP'), + (0xd89beb77a392ce9958761ac0408717fcdbe5a966, 'xpunks', 'xpunks'), + (0xd89efd0be036410d4ff194cd6ecece4ef8851d86, 'WonderZone Apparel Fall 2021', 'DCL-WNDRZNAPPRLFLL2021'), + (0xd89fdb94bd026aa968537ada84eecfb58dccbce4, 'CryptoCloodleZ', 'CCz'), + (0xd8b38e08f4160d0c8e657f3efeaf7e9b883eeacd, 'My Collection KvJ0OSmhnZDngqrRb6bF', 'my-collection-kvj0osmhnzdngqrrb6bf'), + (0xd8b48171a15bbd7e057b7f35fc09eb640e13f91c, 'CryptoBalds', 'C'), + (0xd8b60a4d09bd8cdfe29bb5e3efa68b7dd8e8da79, 'ANGRY_CHICK_OFFICIAL', 'ANGCHICK'), + (0xd8c08633f466cb2b77efd051a1afc4ace007fe84, 'Do-little-Do', 'DO'), + (0xd8c8cd1d68b91392dfd17d2cd120b196841e236c, 'KemonoVerse: Invitation', 'KVI'), + (0xd8d0af3f8ad4662723c7ee2a6cc278341d677c36, 'TitanVerse GameFi by Shingeki', 'TitanVerse'), + (0xd8dfd736fd6612a32851ab02bbc2693e95749d59, 'CityWinnery', 'CW'), + (0xd8e233f319a31a9d5078a53f8a20a6c97d830474, 'YourCollectible', 'YCB'), + (0xd8e2dac82f50c44816f62f5dc845fcbe0651e077, 'MRE PASS', 'MSP'), + (0xd8eab1b0b7d4ea8e45ef7f483bd985c41959d3d6, 'MetaSpecial2', 'MetaSpecial2'), + (0xd8ec0f45d8c71d946dc3905c522c2e6deda4638a, 'HiddenReptile', 'HR'), + (0xd9038d5ff64c7dc888914ecde2a48a2bfb389e3c, 'STAR BATTLES', 'DCL-STARBATTLES'), + (0xd9074134f8b7c119a84b19f8412d301acbee2beb, 'WolfieDeluxe', 'CP'), + (0xd90ee59144c9103f15cf5d1aea6a4bf5c7a95a34, 'Hungry Hungry BAABBoons', 'HHB'), + (0xd916ded28b666d3a9efe3fa822acd28d7b10ee6c, 'Decentral Comedy T-Shirt', 'DCL-DCNTRLCMDYT-SHRT'), + (0xd91796dc0f71b1d3817373aca41e80fa6727ff1d, 'GEN-T43', 'GEN-T43'), + (0xd91895fe1c61299c72858ba0a82f96e69eb22a9a, 'Oasis Apes Club', 'OAC'), + (0xd918ba00512eb8e603a9165642135792afbd2b5e, 'Neighborhood Kids', 'NEIGHBORHOOD'), + (0xd91c3b1b45dd9a9c55cee4aac419b75d3645fd33, 'DeNet Example NFT', 'DeNFT'), + (0xd91f2408a09ffdfd514a70d66831684c524b67d3, 'Nike x Bored Ape collection', 'NIKKIKKIK'), + (0xd928f42752288756b44935f9d0002efe5637df25, 'Web3 Devs Stickers', 'WTD'), + (0xd92ccf69a2db45fc0ec4f5210813320c1ffdb42e, '20220321033', '20220321033'), + (0xd934e7c1aeca3e8aaed7aa84c41726052d20968d, 'Atlantic Voyage Ape Club', 'Atlantic'), + (0xd93be1ecbf412cc54864af5523daa83087b6da8b, 'ImprovArt', 'IA'), + (0xd945635e6a651248d4ff2f7ebae1b000dd338886, 'Angry Aquatics V2', 'Angry Aquatics'), + (0xd94a1cd9ec5a6bc435bec123de4a8bd588cd866c, 'VERIFIED CHERINA NFT', 'DEMO 02'), + (0xd95263158af01b81ee36a9fce1b7cb8a43753f6f, 'Urban Desi Women', 'UDW'), + (0xd95c27105ac4b9c028248777c6780b3db6f7ef9b, 'NFTs', 'NFT'), + (0xd95cdb27934f9b63db05f1a1969b67cffc8245de, 'CoolMoonNFT', 'CMN'), + (0xd9602e3b1d37e1917807f187aa5bdeb839d60429, 'Bored Ape Fat Club', 'BAFC'), + (0xd965cf47c9a9d7decd538d4691686003995dc947, 'Genius Child Space Camp', 'GCSC'), + (0xd96ca9465f59b3c35ea891d0a6699f2ff626a676, 'leaf million collection', 'LMC'), + (0xd974abcc9f024fc97be37ccb8dda23c834367c4e, 'WHELPSPFP', 'WPFP'), + (0xd98360f7ac3a322caaf025adf7fda73d312c2796, 'Vox inWonderLand', 'Vox inWonderLand'), + (0xd985b2f831953c9b4cd44a157bbc9f04371c8f97, 'motoDEXnft', 'MOTO'), + (0xd98a3f22fc8f461d391233b331c78e0ab534cf68, 'BLEND', 'BLEND'), + (0xd98db983fa7cbd21fd24ac84c9aca430191309c2, 'Car', 'CAR'), + (0xd990fc0d0690c5b6ebd26568cbc20b98eace327a, '2020s Umpire Chair', 'SWEDC'), + (0xd9916fb167c1791538badc9cbc2a1d0f9fbad996, 'MURI by Haus Punks', 'MURIPUNKS'), + (0xd99b3e390dd762a5982895afe5a6c32dc51cbbec, 'Polygon Earning Platform', 'PEP'), + (0xd9aa5b920cac4d25b5c28d9c60c3e4c1e859b0f9, 'Monk Chains', 'MonkCh'), + (0xd9ae7fc75e9e466a7e26e539417a22b43fdbf780, 'QTEE', 'QTEE'), + (0xd9b469a068e12dc1d2f2db0b262a58d67d1a3715, 'FantasticAlien', 'FA'), + (0xd9b512b6e2023ed6217daad3dff66c99b5929439, 'Valentine''s Love', 'DCL-VLNTN''SLV'), + (0xd9ba57d5fcaf091bf5c1c8eaecb23533648fb5da, 'Kookd', 'Kookd'), + (0xd9bcfd43e6ba76b1468d0a66325c0c06d6dacf33, 'OG Filosofia Codigo', 'OGFC'), + (0xd9c1c47c3ccf1b2c882dea3c28b976af7727149a, 'My Little Oni', 'MLO2'), + (0xd9c5449efb3f99952f73e824688724aafb81de6e, 'CryptoBlades weapon', 'CBW'), + (0xd9c91d68c1ad0ef29ed705be4b53dacd75329808, 'Jingura', 'Jingura'), + (0xd9cf6bf7938eda32637152fb0a735c89dffb9c37, 'FerrumNetwork', 'FRM'), + (0xd9def5a8b1528a09e5cef49ca0ce0ffdca17bce6, 'GEN-H02', 'GEN-H02'), + (0xd9f28fd92369a5727776a43fb8a6f27ed58c20c5, 'Generated Giraffes', 'GiraffeNFTs'), + (0xd9f72613a258c1c722a863ec99068d69574c3ba1, 'Decentralized Media 2022-2202', '2022-2202'), + (0xda0548342cb2a161e20494d30e170fa38f8467d3, 'Dull Cat', 'DC'), + (0xda06e31a86cb5ebe5dfa08300c8697932d188c4c, 'Anti-Cat Cat Club', 'AntiCat'), + (0xda0e6394a2ef3ee152b3d51dba58ab10db7392e2, 'KyubuNFT', 'KYUBU'), + (0xda1d57772b8b5c02f20ec115aa712cc2621947eb, 'Orlando, FL Silver Edition', 'SWEDC'), + (0xda1e2bd38e5be2dfebe259d5689284edf39eeb80, 'LILHUDDY, Meet Chase', 'SWEDC'), + (0xda267d4d2c0a0ed798ea974ab7c074c066990f3d, 'nft_name_0123', 'nft_name_01'), + (0xda3452d0bd19044ba6ef98c55e4ade6bfb798c9d, 'Mapillai Vanthaachu 2022', 'MPVV'), + (0xda3b1a4517bc14c95c4e0be337c016b1a088dd8a, 'Padangushthasana variation', 'YYH2'), + (0xda3bb9ffbe86e68b4a1f0c2d823d2dd658dba9c0, 'Meta Kicks v3', 'DCL-MTKCKSV3'), + (0xda3d01f8989e3cbd3552b770606d6e1c0b9b2b71, 'poap', 'poap'), + (0xda3e45054f7b3ab64a256b708c149f5117998d7a, 'Filippo Odone', 'FDN'), + (0xda41c9e3808237b4ab8f6abd6936a828f4225263, 'ICE Spartan', 'DCL-ICESPRTN'), + (0xda44f3e560bdd0e9d49f19bfe5565efb506c5ad9, 'Metaverse Art by DEVz', 'DEVz'), + (0xda4dd690b094f7779fb387f4909ae6097ea7dbec, 'SunCity Ape Club', 'SCAC1'), + (0xda57bc513fb80ab8aec20314dacd0be594566990, 'Doctor Who - Worlds Apart', 'DWWA'), + (0xda5c138783a6acd76eec5ddb68aa87e6ee96a88d, 'Boson Protocol x CIDER', 'DCL-BSNPRTCLXCIDER'), + (0xda5f28aa697c6066c5f03f0a56007fd03932be86, 'Creature', 'CREATURE'), + (0xda7b11eb89da6549f6565af5167ee2482edc73c6, 'CrazyGalaxies', 'CG'), + (0xda8aaa00b637befb3808abeb49a94e96466c81be, '0xF18FC10053679ac67ee40e748E88473E167D714B', '0'), + (0xdaa011f866a0415a843430b167b1417e013215ce, 'Weird Catgirls', 'C'), + (0xdab2223274349c1ed7f4cd7b49e266c93c72d224, 'Meta Lion Kingdom OfficiaI', 'MLK'), + (0xdabb5ed8d58476dfd381e609fdf542bad71c389f, 'dd', 'D'), + (0xdac06899bc38e2f5ec09579bc3d5566a81341902, 'Metaverse Brokers', 'MBS'), + (0xdac1b7290b2ee439ef8871311a2f80f269993c5a, 'raeyei', 'RAEYEI'), + (0xdac6d707af678736e931438c52282959ed93229c, 'HalfSucker', 'HSNFT'), + (0xdace1ea4e692302818fcf0d511c4f96d925f6514, 'jansboy', 'jb'), + (0xdae0f5f84531b41e90da2f9a919117d16862f983, 'Pittsburgh, PA Pop Art Edition', 'SWEDC'), + (0xdae2c7570bcafc8157a8395ed19ea6ccbfe10147, 'LOOK Golden Ticket', 'LGT'), + (0xdae38c1062412bf7afbe899e8711ae6aa73b36c4, 'The Backpacker', 'TBP'), + (0xdae73ce5c9a7b4186c872819aafcca3c460e54b9, 'GET Inventory Colleterization Marker', 'GET invCollat'), + (0xdaf16b00fcf650163ef5b18761daf53182a3d690, 'Chameleon NFT Official', 'CHM'), + (0xdaf4d6e0991a510024a3a81e434906f84829b6eb, 'ROYAL CROWS', 'ROYALCR'), + (0xdaf9fac5a4c554903ac7d5cd0893d5c4ff38fd93, 'FairAndSquareNFT', 'FSQ'), + (0xdafac48cdddbd6020343d91f5360d57e04ba960b, 'Froggers NFTs Gen 2', 'FRGGRS'), + (0xdafe58b08810f96c41f9e694e0d9182e2ebf3fd3, 'Lil DAOs', 'LDS'), + (0xdb03346080fbec7cd7cff6141bf41e3392eaf68e, 'Bola de fogo', 'LBGG'), + (0xdb15e830ea9e0e62e683ebe7bb0bf3503eb57a3b, 'Baskerville Club', 'BC'), + (0xdb190379bea4a99f36e1dd6f4d7527a0b6908b62, 'CaptivatARClothNFT', 'CNFT'), + (0xdb1af73a80018f3febe925391a553a63a4a5aa50, 'imperial whale club nft official', 'IWC'), + (0xdb20f0ae988ba20f6a2ed29c30425d64ee4c083c, 'Basketball Pro', 'SWEDC'), + (0xdb2462ff9b614742a3b34a20c5b519ba7f2251d0, 'Bitcoin Big Boy Club', 'BBB'), + (0xdb29c34e60ce7913d333124fa09666099645601e, 'TiA', 'TiA'), + (0xdb2b4645e45f6416ef5fc3326f591f97b93bb7ab, 'The Auerbach Collection. Artdrop VI. Phoebe Tonkin', 'FAKTURA'), + (0xdb2bc1a9c2cb657f3890d24df4481c4c29097f5e, '[DEVELOPMENT] Jo Ki2022-03-14T15:37:36.199Z 458004', '[DEVELOPMENT] Jo Ki2022-03-14T15:3'), + (0xdb2c8798de5009776fba5fd15da3e07bc626cc66, 'Proof of Meditation', 'POM'), + (0xdb2d0adf1464ba41d721e8575e0a5b2a47866afd, 'ConfusedCats', 'CC'), + (0xdb2fa49be9041485a22c9b36e4ffd6e5d6894c0e, 'MetaMiya', 'M&M'), + (0xdb30b3009edeb1c42b596c6d34a54c862b8dbaf3, 'Cyber Mobster: Warrior 3', 'SWEDC'), + (0xdb33d738d328eb274ba41e99c00bd0e36781ce30, 'Bwindi', 'C'), + (0xdb348f248091c41473a630a6ff6c10acc158d22f, 'Poly Duckz', 'PDZ'), + (0xdb35a85748e3fe59d1cc3d039d03ddeeab8875e1, 'Legoot V2', 'LEGO'), + (0xdb386d85a5c3a37b2a98b05ac1280bcfaafee77d, 'Space AstroMonky', 'AMS'), + (0xdb3bd921d02fb56a0443b64f53754537d127acc9, 'My Collection r84STJvqRjvpy4hPeOAN', 'my-collection-r84stjvqrjvpy4hpeoan'), + (0xdb3e7593688eed221d0cf6f5ae2bbaee68fb4bff, 'Uldor', 'Uldor'), + (0xdb3f95e907dc8a02096ab2c2b994466b3b7424e8, 'Bored Ape Yacht Club', 'DCL-BRDAPYCHTCLB'), + (0xdb4f7b461bed8f202095b2d522678497547c9f02, 'Project Meta Planets', 'PMP'), + (0xdb515c0ba4dd60db1eaa4c02c84b217c79e3d8dd, 'UndeadBart', 'UndeadBartNFT'), + (0xdb58c79cb47f521cd08d912fbe2354632ac1c156, 'Terror Bird Family', 'Terror Bird Family'), + (0xdb5c27dd7a53f435a59ddf0c7d2673f01f950dc5, 'IOC x CHRISTIAN BENNER', 'DCL-IOCXCHRISTIANBENNER'), + (0xdb5d8d2b55d85f825316d3b4d548cf59202e3315, 'GEN-L21', 'GEN-L21'), + (0xdb604128a6887adcc5554818b71074d40d87bc85, 'UKRAINIAN TERESA', 'TRSUA'), + (0xdb61683fde923ce4e31edd6469c0f974e50cc398, 'Superlative Mutated Apes', 'SMAPE'), + (0xdb646169044d7f9e58e95b57f9770aae6f962738, 'Grifters Official Polygon', 'GRFT'), + (0xdb714302a7ffcc9610610a01126e1257b90a67a1, 'NestedNFT', 'NESTED'), + (0xdb79d2f90cce00bae3092e83fffc1fc8c53a36a5, 'MeebMaster.com NFT', 'MEEBMASTER'), + (0xdb7cd4ed3db50cf072f8fbbf745d8350a84c6e1b, 'FurbyCatClub', 'FCC'), + (0xdb8ad0d1c79c68cd4850d72ec71b70be34906fcb, 'SuperLand.io', 'SLAND'), + (0xdb8b828159bdf287368d78256fde5fef4950bc56, 'MURAL MAZE', 'MURALMAZE'), + (0xdb8dbee68dd5eff3d87172181a1b9ec0d8ee66e6, '[DEVELOPMENT] Le Sa 511032', '[DEVELOPMENT] Le Sa - Ed 493003'), + (0xdb92d178e155d688079457ed28a2009a76a69253, 'MysteriousFriends', 'MXF'), + (0xdb95a7c5a2c7a2372d4b7f143647f760266985e3, 'GEN-H11', 'GEN-H11'), + (0xdb967a03248c0d594bda1ee1ada623c57a396ba5, 'DW Universe 1 Cupid Alpha Hoodie', 'DCL-DWUNVRS1CPDALPHHD'), + (0xdb9c821142f19ae0172e4e631a3bd185430b7f0d, 'Envelop simple NFT', 'Envelop'), + (0xdbb28111fe1a41e4b5ce6be6c26244f998ebf83b, 'Theos NFT mint', 'THEOS'), + (0xdbb8520260dc8ca7148919fe402e25439e1c7bd4, 'SomeEggs', 'SE'), + (0xdbbfad69339dabde22f9ed327a4f142d761af50e, 'FoxyFox', 'FXF'), + (0xdbc04558a0e0dd281d9d7317f1ab554ddb0a953d, 'Neuro Pandas', 'C'), + (0xdbcafbe6bf10d787bbd01ab1c5983113210d7890, 'The Lucky Sharks', 'TLSNFT'), + (0xdbd679ab0ecfdd36da9cef5015d8a400e0599782, 'ThePenguinSquad', 'TPS'), + (0xdbda23daea63496b467cb15e384d4a8c7d962a22, 'Ursa Paws', 'Ursa Paws'), + (0xdbdc05a8c36d0c751c862f365fa8ca2bfc6b14ea, 'SOBRIETY Coin for 60 DAYS SOBER', 'SOBER60Day'), + (0xdbde5a038320883037b343d1bc2ee3835d4ad7dc, 'StoriedApesLoot1', 'SALB1'), + (0xdbe147fc80b49871e2a8d60cc89d51b11bc88b35, 'Marines & Aliens Game', 'MnA'), + (0xdbede5feb262e73731f2991fe3a7c43dfe8f642b, 'SmolRaptors', 'SR'), + (0xdc02a5955050070748a65b9d8b4a8bb3901b85d4, 'Fudge Classicpop', 'SWEDC'), + (0xdc0479cc5bba033b3e7de9f178607150b3abce1f, 'Crypto Unicorns', 'UNICORNS'), + (0xdc0c4180a30b6c95b51e17999c2cc612e6ff9ce6, 'Parrot Stickerz', 'PROT'), + (0xdc0e9ae3f35c134facd437271aa4c48b331c16a3, 'BunnyByte', 'BB'), + (0xdc0f223a000b08c15eb3c76adbe2f4a34e560b25, 'SmartBabyClubDot', 'SBCD'), + (0xdc1300cf57e79be3f2329f1735616b86451e4e55, 'CryptoNinjasOfUzb', 'CNU'), + (0xdc1b7c187ec88928550cba791812124668a92403, 'Xmas Little One by MetaZoo Intl.', 'DCL-XMSLTTLONBYMTZINTL.'), + (0xdc26ba8359bda45b7faa42dd0ee68b4d2db48052, 'Utility Trousers', 'DCL-UTLTYTRSRS'), + (0xdc26f5ad71c3183fadd6b5761aaf94d092923f03, 'Tigersword', 'TSWORD'), + (0xdc272ea284befe878c8a9d0c74d0177c59fbc542, 'Share''s posts', 'SSPS'), + (0xdc291ecd90a4609ff1e4ebe195f124632d7ca2c3, 'Guo Chan Hua Jia', 'GCHJ'), + (0xdc349913d53b446485e98b76800b6254f43df695, 'Bezogis', 'BEZOGIS'), + (0xdc38cf70ac606db7a5ad8fb7713a86e76d9746d1, 'GumHeadAndy', 'GHATC'), + (0xdc4125f772872d35cba13732ce5a1d7f77f7f177, 'MaticDogs', 'MDOGS'), + (0xdc4c31ffd03b8de9a4246d9c6560ae3e4d832cb1, 'Crypto Gators', 'C'), + (0xdc5239a760ce030b422a8b55219386140ad55dae, 'LunApuPia NFT', 'LAPNFT'), + (0xdc56760688e4bfa263669995575d177c9b5e0015, 'BlockShamBo', 'BSB'), + (0xdc56f5faaebb2c60078af909986af3d34351c815, 'NFTree', 'NFT'), + (0xdc5ffeb686f3cc6a3fb68848ab9f4b3a9ffa6736, 'FancyBabyBirds', 'FBB'), + (0xdc6350d9f1370c7c2b21f48367d00573422915d9, 'cryptofunky-bagz', 'CFBZ'), + (0xdc63554f403e281f30b6103a6355f08a34d4deb8, 'OrangeReputation', 'ORANGE'), + (0xdc67688c44a0161545d48d7f888ac537d46065d4, 'BoredParty - Clubbers', 'BPCLUBBERS'), + (0xdc6acc7e6bf96c0b71c3429b7030b7d6fee3d3a6, 'NFT Collection', 'OSC'), + (0xdc764bf33db66986775244fef0cd94014d87c508, 'YAPING CHEN', 'DCL-YAPINGCHEN'), + (0xdc79f56575df8902efbb5be34703b7ada64c2559, 'Haki Official Collection (Pre Sale) NFT', 'HAKI'), + (0xdc802c245eb6fdfca8ce6510967bf1776508cfd4, 'Eddaverse', 'EDDAVERSE'), + (0xdc82a0ff804967591fdebdce7948a250a4173c3c, 'Espresso Box Club', 'EBCP'), + (0xdc839a03c690c262777359342d93b40db8cc1932, 'Gaming Ape Pre Sale', 'gaming ape'), + (0xdc865f1e26a3b1a2724f833e21625fae483644f9, 'Angel Without Wings', 'AWW99'), + (0xdc87dc7312662ada8b2996c5258dd8df1ab5e366, 'The_Catrina_Collective', 'TCC'), + (0xdc8c9efd751568ab16ec5ba948422469e5fe735d, 'My Collection EOYtxgQYr148K1BVyhTm', 'my-collection-eoytxgqyr148k1bvyhtm'), + (0xdc956d451d993bb700054fdf369ddf7e7566ee33, 'Vegas Family', 'VFMLY'), + (0xdc96bd307baf3418b3e5e0d16b03e4e2b4da0281, 'Duck, Duck, Goose!', '$DDG'), + (0xdc9a9e19c9e4b846ad0b2d35bd766223f16f5a21, 'Bored Ape Yacht Club', 'Bayc'), + (0xdca056fe848f8deb656b669c2d716cbc19645467, 'ypll', 'y0p0l0l'), + (0xdca24c24d8bf235a97fe794ec3a24f4d9a068ee5, 'TheLostSocks', 'TLS'), + (0xdca6b1689f28ab16d488a83d1661716b045adabe, 'Dull Cat', 'DC'), + (0xdcb175696cfb0644bb277b768d0bf30bf188bec9, 'Dominium NFT', 'DOMNFT'), + (0xdcb46b7fce0f6d3d0aa683abb980d5050ddc5662, 'NielsDigital', 'NFT'), + (0xdcb48b993bddd6faca7cea0687ec091a59f14952, 'babyapev3', 'ba'), + (0xdcc253400b89eddd5cbdd2503544ab613b0fb1c6, 'META X PIRATE', 'DCL-METAXPIRATE'), + (0xdccc45c052a0dfde7521866c1b1164447d2d00b5, 'Pineapple Express', 'PNPLEX'), + (0xdcce543fd14c43c8994ec7ef8056006145da0eb5, 'Doodles', 'DOODLE'), + (0xdccfe804b07cb0c42273b3c2419638b46b63b251, 'BFlakes Demon Arm', 'DCL-BFLKSDMNARM'), + (0xdcd1baff16673b64e37c5b3e44787e341ede8f35, 'Fun Frens', 'FF'), + (0xdcd2f3896cec314207700e57439676fe7f3cce0e, 'Chill Horses', 'Chill'), + (0xdcd45f13a392b4260269ad0a1be4669cad868ccb, 'NWL crypto club', 'NWL crypto club'), + (0xdcda09d2acb2cac82051fc2ec26a781bc90d5cf1, 'Damn Boys', 'DB'), + (0xdcdcaa1f011c1693953220896e0f6335e39f1ceb, 'DiddleDinos', 'DD'), + (0xdcdfe58de55952aef1e68cefee9248c6848966ed, 'STOP WAR', 'DCL-STOPWAR'), + (0xdce0db79eec2f6753961f8d4a1b872b826ae69ed, 'Fast Food Wolf Game Restaurants (FFWG)', 'FFREST'), + (0xdce975da4fcb9303363805a532f854ada14a7943, 'Green Bug Collection', 'DCL-GRNBGCLLCTN'), + (0xdcf4b058cafabbb70c54f50ff08494ecab7fdde4, 'NewFashion', 'DCL-NWFSHN'), + (0xdd020b58fe58e95e40d39292165dbbda977bca1b, 'Hedgehog Punks', 'HHP'), + (0xdd0242fe5e22ac76211fd6fa45fa9579294961c3, 'DF x Neuno x Giuseppe Zanotti', 'DCL-DFXNNXGSPPZNTT'), + (0xdd044123fe5d058de8f7691506929d8881fc2944, 'New Years 2022 - Anomalous LTD', 'DCL-NWYRS2022-ANMLSLTD'), + (0xdd11b2cbc68e601c71023a83cec99a82aca56626, 'GEN-B13', 'GEN-B13'), + (0xdd13997393e4ef460c98871c624dd453836e1569, 'SmallBrosNFT Official', 'SBNFT'), + (0xdd1698afd564fec771fbd5ed72d67ba9c69fa023, 'Shining Planets', 'DCL-SHNNGPLNTS'), + (0xdd1e267c5a0ce4ff256dfebfcf74202eaccf4be4, 'SoulBay', 'SB'), + (0xdd2b34e738042413028a82de14b47bf887ff2d29, 'Meta Martian NFT', 'MMN'), + (0xdd2b5c5b12c3878d1cab6b3d05a80d18ac6bf02f, 'Tough Teddez V@', 'TTV2'), + (0xdd2daae523088022b1506c7876484ce734b46334, 'BitcoinNFT', 'BITCOINNFT'), + (0xdd33db17dd2f2df0da3400b471af9b29e92c1c5a, 'CapClothNFT', 'CNFT'), + (0xdd348941d4dcfe20d74f90acb26f2464c115cc82, 'Contract Name', 'TIC'), + (0xdd37ccc138c8d247704d40de1ce79ddd066aa558, 'STICKMAN', 'DCL-STICKMAN'), + (0xdd46d6b49bc215aad637f6a8e8244cb55ab8e9ee, 'Meta Seahorse Lite V2', 'MSL2'), + (0xdd50851e6c90cd0b84dd42894c696749b71d4637, 'SERENADE', 'SERENADE'), + (0xdd52d9eb51bf697e12ceada88c86f2278c10d39e, 'Kuuple Universe VIP Card', 'KVIP'), + (0xdd57cd871d12cde2a4930b9cd79a3e5a6d6c1e1d, 'The Skull King Collection', 'TSKC'), + (0xdd5971efba7f4a8be0b093f52b77febf7291a091, 'GummyBallSquadv2', 'GBSv2'), + (0xdd61c55d941570aeb8f93ba64ca27ceec0ef38c5, 'Zyklops', 'ZYKL'), + (0xdd63ac762d705020f3f9968854650e545fd96ef3, 'Alien Invasion', 'AINFT'), + (0xdd6b644a6acd56b42016b469e10f84db00a8aaf1, 'NFT VIP Card', 'NFT VIP Card'), + (0xdd7071dcca7735948bfe0aff93bb43c6ae4cc270, 'GEN-T01', 'GEN-T01'), + (0xdd9deb76a45683df3c8d8909e76b0b9b0beb1c66, 'ELF PRINCESS ELF PRINCESS', 'PRINCESS'), + (0xddb004046e5fa146af9111919be70ed98d82000d, 'MGMNF14', 'MGMNF14'), + (0xddb630f28a07e62b35a8e2315945167ee4692218, 'BOJACK', 'BJ'), + (0xddbb6c7cdd7f7f2212b49d96b3ff87882c6422d6, 'DajoCat', 'DJC'), + (0xddbccc43d617debcec9128e8be11a7750d1fca8b, 'motoDEXnft', 'MOTO'), + (0xddc1de030a77a8eed19de0c8921ab0bd77326236, 'Newjax UTD', 'NU'), + (0xddc228b182dd6fbedf18c7074cb75734af347e11, 'Forever 21 | Spring 2022 | MVFW', 'DCL-FRVR21|SPRNG2022|MVFW'), + (0xddc4432f4375486c6fa8cbccabbaed4feaf09955, 'Chainblog', 'BLOG'), + (0xddc6ef92a507032977ab2cd98d70ae3a8eaf54b7, 'iOnePin', '1Pin'), + (0xddc9c4f3c97a1dab29719d779cb68962e07691c7, 'Crypto Prophecies Item', 'CPI'), + (0xddd4b814694072c875e910385b34695446e12b91, 'Meta Beast', 'DCL-MTBST'), + (0xddd7db2c0a9f7570df4d012c1081f9fb792190b1, 'Champion Smokers League', 'DCL-CHMPNSMKRSLG'), + (0xddda3a17c80c3df1da3ea0f0350848ab6ee0a28a, 'SCBNFT_TTHP', 'SCBNFT_TTHP'), + (0xdddb51dc95cca28854aedacdddfda3f555a3bf9f, 'Thailander Giveaway', 'thailander-giveaway'), + (0xddde510651f0ca442013b46fbdbdfa39202c8ac8, 'Nike x Bored Ape Yacht Club', 'Nike'), + (0xdddef788c6a926aea76130461a41ef3cfaad1f92, 'Third Dimension Apes', 'Third Dimension Apes'), + (0xdde91bf3b5cd157c5cbd4bde700daf9eb679cd8c, 'Toxic Skulls Club', 'ToxicSkls'), + (0xdded4a64a4c37228711b427e547d924ad4528c93, 'Prova Cyber 2', 'PC2'), + (0xddf446ae9400cc84cdb22e3f95e34baba1fb873b, 'JANSBOY', 'JB'), + (0xddf56a8a203ff824d8d113bc3056629358c1fb06, 'BENUS', 'BS'), + (0xddfc42ccd66a981be4058d823d68eb41c343f5d0, 'My Collection JKTzAOtEhU1e5bagp3XN', 'my-collection-jktzaotehu1e5bagp3xn'), + (0xde100ba3542b774c0c76f6c9ca4901418049927d, 'Chubby Kittens NFT', 'CHK'), + (0xde10d6c22eea0aca486e9f9a617a20396b1b7f30, '10KTF: GUCCI GRAIL MINT PASS OFFICIAL', 'RKTF'), + (0xde13ac5523e7d30f32e032ac1e51bd4b3c6238f8, 'saladgirl', 'sldg'), + (0xde144409a8351f0c13c8d8539480a8d8aed43816, 'Hammer Ape Studio', 'Hammer'), + (0xde18048d6748f262f12a27d9ae5f29b32aa739dc, 'Karma', 'Karma'), + (0xde1a667c5ca82689b3dae33e8097bacba840080d, 'Dagur Premium Exclusivo', 'DGF'), + (0xde1a8bef74f5388c4ea42315243eb495b5ef01f4, 'Meta Lion Kingdom NFT', 'MLK'), + (0xde1c0203e0bd12b2c2b16fc2f9c10bb4fbed1494, 'Mushroom Tales', 'MT'), + (0xde1e2b4e55fe281ce0938f735d5ca4526ee685a9, 'hrzns', 'NFTY'), + (0xde2390322588fdd62903430e40a2ce110811a20f, 'HalfSucker', 'HSNFT'), + (0xde28bb69da94cef63fe3d7f32f09803c728aa3c0, 'Car 22 Waiting to Start', 'SWEDC'), + (0xde2c25552245c0e2e77ff7f4c677e336f7811ca9, 'Fablecoins', 'FABLE'), + (0xde2f0db8cc611dda73ae97827ad2153a2137b6ad, 'Pexel Man #', 'PEXM'), + (0xde34a6f13bd1ae54cda7388050f771194fc62ad4, 'FACE series by Anthony Sims', 'DCL-FACESRSBYANTHNYSMS'), + (0xde378eef4e0de2cde40973fef94c03d31ba90db9, '[DEVELOPMENT] Se Gn JPVDNL', '[DEVELOPMENT] Se Gn - Ed GLPIWO'), + (0xde3f76150e6688a9140400439c2bc761b4048d31, 'Superlative Mutated Apes', 'SMAPE'), + (0xde402c243c17143d05a519cc386928b9d23c686c, 'Property Heist Ape Club', 'PH'), + (0xde430946efec9bf7b352e61ded72bb68bdbf0683, 'Polymancers_NFTxSpiders', 'PMCGS'), + (0xde52d710239aa017a06d1b08f494ad410898295b, 'BKFC X Metaskins', 'DCL-BKFCXMTSKNS'), + (0xde58e75ab61c76a02b8f53adbe0de276df436712, 'ARCHIS HACETTEPE EVENT', 'ARCHIS'), + (0xde59f88dfa67d7e449867a6d2af69ee8b87aef74, 'Cycan DAO NFT', 'Cycan DAO NFT'), + (0xde5dc08fc34bd0c39602092e1f6685d29bafb16f, 'Fame Collection', 'DCL-FMCLLCTN'), + (0xde67bece43446ab98e03a032c237d2b5c7012711, 'Collection', 'c'), + (0xde71fc3a970947143f7dd5d9d09451c38bc2d221, 'Green Bay, WI Pop Art Edition', 'SWEDC'), + (0xde787e00e7f5bfc4d778567cc8068c757a1c4f34, 'BKBEE', 'BKB'), + (0xde7c2a8f81acdc871fb0bef4eee121a618db1bbe, 'Readable NFT', 'RNFT'), + (0xde7c8b5498966edbdc37f53ceb8a0e7b90f1479a, 'Meta Mansions LAND', 'LAND'), + (0xde839b6f1e04dbc44c26b4145de299952ec4a31e, 'ThePizzaSlice', 'PIZZA'), + (0xde869342db2c0d04db1fc35fc050baa783a572aa, 'Artefacts by Ethlas', 'Artefacts'), + (0xde8f45ebaef49110462da4e3fecc734edcd7ce0f, 'zzzz', 'zzzz'), + (0xde92d696a0aae16295a3b85db064b60d0c830c70, 'BitBike', 'BIKE'), + (0xde938cbcde26204c12d866fb0c1a33a399df223c, 'Pixel Frogs', 'PF'), + (0xde945603aa3c9bc22610957dce5646ac6e770e6c, 'Doge 2048 NFT', 'Doge2048'), + (0xde96b3c18f7e86d1725a162afba4e59e20a8a3c7, 'PlayTreks Media Secure', 'PSECURE'), + (0xde979d518b2fc24803f6bf1b7680fd97118be91e, 'Fox Pirates NFT', 'FPN'), + (0xde9f5b5cb556f65f7d8da52421bd16dfd76ebade, 'Hog Mob Society', 'HMS'), + (0xdea09a35914ddcaf60be86521a4873a7d23c33d8, 'Sir Jackie Stewart', 'DCL-SRJCKSTWRT'), + (0xdea4758862fd7cfd38523a8d4c171ebd31ee5599, 'Unicorn Wing', 'DCL-UNCRNWNG'), + (0xdeaa5b14f7721c4b934ec1d622c70e19b928ca99, 'Cyber Skeleton', 'DCL-CYBRSKLTN'), + (0xdeacc397d93aa9513fcdeb5c50da55dbe7116b5c, 'Keypad Bots', 'KPB'), + (0xdeb3446a2a544771fda94e5df0c3800b8577ff88, 'JAMMYDOGE Token Presale NFT', 'JAMMYNFT'), + (0xdeb9b1299448939a256da03e348148dee35e7906, 'RhizomeDAO x Project Galaxy Collection', 'RGC'), + (0xdebac7d32178016999c79b7c35cb28a9f3a9edda, 'CryptoLizardsNFT', 'CLN'), + (0xded8780094a21dcf61fac1b7fe262b8c2e387525, 'Red Eye Rabbit', 'RER'), + (0xdedf9bfc10c7a4c3e7acc5ea0e7b6e1f76a30eb1, 'AngryPixelDudez', 'APD'), + (0xdee97481a8ae80098f8216e9780462a69f0f5902, 'Neon Party Collectibles', 'DCL-NNPRTYCLLCTBLS'), + (0xdef9e25fef2cd5e4980914c219303e9d1abae8e6, 'QUEEN COLLECTION by CRU5HED', 'DCL-QUEENCOLLECTIONBYCRU5HED'), + (0xdefd63f234b69029644c2048878c1c5571536710, 'CryptoPunks Lab Polygon', 'CryptoPunks'), + (0xdf0059c7ca62cdfadc2e468691908661f61c4c6b, 'NFThicc', 'THIC'), + (0xdf0e66c072cb96ab09c222c5637c0ba5367ee455, 'The Little Birdy', 'birdy'), + (0xdf11ecace87f6f39a6d8fc82f568c4ea78aaf14c, 'Bad Ideas - The Last Conversation', 'XOXO'), + (0xdf259a24521de367a155ade270adce21e71698af, 'ledi beyand reality', 'ledi beyand reality'), + (0xdf26488f17a6be6de91df7f2dbdcc6aaa5396273, 'Dogami x Exclusible', 'DCL-DGMXEXCLSBL'), + (0xdf268a459ce948d91d6678788ae08d44608eb9db, 'Baked Bots Club', 'BBC'), + (0xdf2ac11fdcda6ad2e220e2eefd27c28aab6e2959, '2000s Legend: Lindsay Davenport', 'SWEDC'), + (0xdf3ba9f8922e06f86908e13fea0676302d006a68, 'Brainbot #90 Q-Yin', 'SWEDC'), + (0xdf3d7b8d64f6c28a67f96fe77fdac1fb82496032, 'Meta Donkey Club', 'MDC'), + (0xdf48d5eb4c1f57ccdfd3c9d6bd1bc361aca011d9, 'Fat Ape Club', 'FAPE'), + (0xdf4a183fa7cf2678e8ef7397f01aa1b6b862d63d, 'BadassApeNFTclub', 'BA'), + (0xdf50220f22b75896e38e8f541a00af98d57b1aee, 'Null Senders', 'QA2'), + (0xdf53852891df9053e8e189fda839b0ae9d4b3d26, 'Bitpr0 OG Hat', 'DCL-BTPR0OGHT'), + (0xdf5caf68fb47a360dcb2330607777b6186eccf53, 'Gradient Symbols', 'Gadient Symbols'), + (0xdf5e11957a4a76bfd19b534b7b07941382996706, 'CryptoRPGViking', 'VIKING'), + (0xdf60e4f253003b01f8c6863a996b080d0a9f03de, 'Bufalo Cowboy Trench Coat', 'DCL-BFLCWBYTRNCHCT'), + (0xdf64b1ce32139a08cad8fdc3c4998e715fc44791, 'Wrapped Gold Rocks', 'WGR'), + (0xdf6f4408497dfe745b116138b9338490366b2303, 'Polygon 2022 Red Envelop', 'Polygon'), + (0xdf73f818b3c2a930b77d90c524b88ecd749a6e74, 'We Stand With Ukraine Collection', 'UKRHLP'), + (0xdf745373a44ca024d2dbdc3f66a7f16c07fc948b, 'Mushrohm Descendants', 'ShrohmD'), + (0xdf766c1da51769d966d5f122012f84c3a4e99107, 'Scribblz', 'SC'), + (0xdf76e4310165ef3843e4ad2b8a3244a44c352d98, 'FancyRatNFT', 'FR'), + (0xdf8042376c9cd824e476477dc7ba4ea5982c8fe1, 'Green Bay, WI Silver Edition', 'SWEDC'), + (0xdf8671f3f8a6bd957a115be58e125ca5af9f8eb4, 'SnapFingersDAO Fortune Tiger', 'FT'), + (0xdf874aa7b0b2a17164f6029a5ff5706c64ecc4df, 'Father Ape', 'FA'), + (0xdf87e05e035e4be7765971e6f540dc50f81c46f7, 'amanmamgain9', 'AMANMAMGAIN9'), + (0xdf8d72edfc8bc17900761cd4e3f351e47e298a11, 'Awesome Car', 'AC'), + (0xdf8fbe9b74467e0c651d85b3d774b06f37f2bca0, 'AngryModernApes', 'AMA'), + (0xdf9293c820d5ac290b97fa62b449a9c790014296, '10M Users MetaMask Celebration', 'DCL-10MUSRSMTMSKCLBRTN'), + (0xdf9fe4d8772d72a7823b3ea0a63b931111ff1b46, 'Diamond Lovers Club', 'IDN'), + (0xdfa1af168c0368475c0b724dd8150e41a464b3b1, 'GEN-B05', 'GEN-B05'), + (0xdfa45038a47f8c8e3169d84b112783aa2694ef0a, 'Face_Crypto_NFT', 'Face_Crypto_NFT'), + (0xdfa4fa0ddbafbcf89dc3153c371f0865e231480b, 'ColorfulSoccerBalls', 'COL'), + (0xdfa5aea0d5d591f418dfb4116fc9c04643825bba, 'MoonwalkNFT', 'MWNFT'), + (0xdfad2b3941e5d59a865b603dae15076b9eb532e2, 'bad', 'bd'), + (0xdfb566e7aee8b03f0f64398bbd853b5f87655c69, 'The Bitchen Warriors Special Rad Edition', 'BW'), + (0xdfb738025d6d0023e6829199234cd0de9d419159, 'CryptoBadgerClub', 'CBC'), + (0xdfb75fdd0cf882942f2271992c1208b1c1135388, 'Degen Bracket Challenge v1', 'DBC'), + (0xdfb7fc1ad511ab7134fb17e2a000eef9ab14f6ce, 'TheLostPirates', 'TLP'), + (0xdfba4a9eb70ebb48cee85b667aed3db1dd9454e5, 'introverse', 'introverse'), + (0xdfc20d44a40fd501a9e2aec83d4984b92fd3bd91, 'GEN-T47', 'GEN-T47'), + (0xdfc8491f7422ce0a55eb327f7a13bdb2a90f9dd7, 'Higher Life Weed Jacket', 'DCL-HGHRLFWDJCKT'), + (0xdfcbcc1d5333c95f88ca869d56caa308c1c30b77, 'Infinity Flies', 'FLIES'), + (0xdfe8c61574c51e81c9e29e95fa03f7f10ea61dee, 'sinje', 'sin'), + (0xdfe954fd4dc74b4f352868a3266aa93c41352dd4, 'YUNI_METAVERSE', 'YUNI'), + (0xdff475a5d9d3171860d9928e5f8540481d00f046, 'Shibanoid society', 'SHIBS'), + (0xdff6bd1a5971d1f74f0d135da5f7ce722add816e, 'mello', 'MELLO'), + (0xdff760ec52a498464c670b680dc81e6861f10bad, 'PhunkyMAYC', 'PMAYC'), + (0xdff9f8f3e501d967e63c35e9ab9be13069b9bf07, 'PolyMine Land Collection', 'PMLC'), + (0xdffa3bfc1ceea119d85325da29a0cb6a7d5d61c2, 'MagicChildrenArchives', '10'), + (0xe0000526da3bd7ea22655094d3e285540f019d5a, 'Lilims', 'Lilims'), + (0xe002ad318581189702dcf07d04a1f6ed903dba9a, 'IDA Token', 'IDA'), + (0xe018c756ec676cb3dec3fee8fd581df5118a49a3, 'FantasticLand Opening - 2022', 'Badge'), + (0xe01d69c17338091555fc4f3878f19e838dcbfc04, 'Bud Head Hood', 'BHHP'), + (0xe0208d7591ee87db9e0a713ae7591a6348da04b6, 'Bored Ape Yacht Club', 'bored-ape-yacht-club'), + (0xe02e67d28744606520d536f11d871c2355cf5e26, 'BlockchainSpace Founders NFT', 'BSPCFOUNDER'), + (0xe035b4cb5c42f6be1bd0050c1c171a966b2b1bd7, 'ElementPrimeArtifacts', 'EPA'), + (0xe039c183756a9fe372405adb044e103529772af2, 'Digital Stock', 'S004'), + (0xe039e4a6ec9c58cb3a197decac7835532c663760, 'KARAFURU', 'KARAFURU'), + (0xe0401823a41e330eda6acdfb3ccf5713c70b3b14, 'Toledo, OH Pop Art Edition', 'SWEDC'), + (0xe042ff7436c99a178e19761b036cb44825e3d41f, 'Reeva Collation', 'DCL-RVCLLTN'), + (0xe04cb66fd9f6e36bafedb0a052cdd08346b99cf2, 'Tengu''s Bosozoku', 'DCL-TNG''SBSZK'), + (0xe04feaa745fc8b015c986ed3acf8642cd368c6f8, 'Space Kids OfficiaI', 'SPA'), + (0xe051f683107bff73c5c4a305b0cd17137a68cda9, 'DEERoganElonPeterson', 'DEEREP'), + (0xe05dacdf7e8e0f04b59050c8f64f5bde04d58f38, 'Rare Shoe Merch', 'DCL-RRSHMRCH'), + (0xe060db783f66148ed370d31e53bc7b3dbbdd37f2, 'Generative Ape Club', 'GAC'), + (0xe064971382fc9ef9750e3905ac8a17e0ddc9f3f1, 'Doodle Lady Yacht Club', 'DLYC'), + (0xe07eafe9ffc1363b6c4c466837a08aced54f9df9, 'staked spaceships', 'XSHIP'), + (0xe080e74f2940917e9d830ffb9bc0d03e84cab674, 'HotDoge Lovers Club Original', 'HotDoge'), + (0xe0844265acc1598d0e323246277b093e6bfa8ab5, 'Miidas', 'Miidas_NFT_5858'), + (0xe08537992fe9185c5347c5e1f919aea55dcfcb44, 'Meta Pups Club', 'MetaPups'), + (0xe088cef7d184179e24dae837967d36aaf3acaa0e, 'GucciToe''s Regalia', 'DCL-GCCT''SRGL'), + (0xe08ec98cd8a4fff8a40f077a52b3aab1b1fbb3bf, 'Consensus Swag', 'CONSENSUS'), + (0xe092cd863a3411dd05fbe4d69473b8e8feb3a546, 'Haftbefehl', 'HFL'), + (0xe094e727d32da4659f85eb99f1c130f6a62a488e, 'Crows Nest - Jacket', 'DCL-CRWSNST-JCKT'), + (0xe09b469467bf556cd52f9afd5a1b8e9cd4623200, 'CLINFT1', 'CLINFT1'), + (0xe0a1246723d2c1a5598b759f6dd09769aaa4b596, 'IslandYardie', 'OIY'), + (0xe0a5667513e35bc238d97b4a2b4380c96e6bc377, 'Sunflowers for Ukraine', 'S4U'), + (0xe0a5ed7af6d5437f77056eabd4468cf456eb4f68, 'DCL VIP ROBE', 'DCL-DCLVIPROBE'), + (0xe0adfdae0fb98c6a886e64748aca31b9f257f81c, 'CHEEKY ACTION CATS NFT', 'CHE'), + (0xe0bbf9f798e937b5fa219e966c6a789d884f2039, 'The Master of Cards Project', 'SS'), + (0xe0c6ad7b53227ed95333d9e9f9f15deea4f7f12d, 'CryptoBurbs', 'BURB'), + (0xe0ca9a92fb7bb2b0fd14d18764a3a3d7116a0712, 'lucky', 'lucky'), + (0xe0cf0a731aff2297133f504d0553e1db2703976f, 'Ape Not Kill Ape', 'ANKA'), + (0xe0d2962bb3c66d260621395ff613a79cdada51c3, 'Animo.Women', 'Animo.Women'), + (0xe0d9ca99a4bd6e96500512a2b5d370f534ddc498, 'Manic Apes', 'MAPE'), + (0xe0dc2be2666cf4920f8d995babefad577c575a61, 'grad', 'gradient'), + (0xe0df9467b344782c7863ea653bfaf8be6e2c7798, 'Fun', 'F'), + (0xe0e51e106ca57492e4563c0ec1a8b341ab3aaffd, 'GEN-L13', 'GEN-L13'), + (0xe0e772e41d0a94cdd691f28727cf2c1300bc8cba, 'CollectKevin', 'CK'), + (0xe0e99059ecdb32d38e8a6071c205f415166e2ebe, 'VAFFA_CELL_MYSTIC_NFT', 'VCMNFT'), + (0xe0ef468603f6f545bc145dc61d45ff29ec0deacf, 'XMonkey By 1nft Digital', 'XMNFT'), + (0xe0f261f0cc8bd89ec02d740ba4a88a80f0aab951, 'Trading Talents Permit', 'TTP'), + (0xe0ff25948a05c84a566e7399a034d5a761d3b748, 'Miquebabies', 'MQB'), + (0xe106014b2e4d60919508c7853b60afd80247ca57, 'CryptoCrochet', 'CyCh'), + (0xe1082408d6a6abec38b8f74c55cc5c3fb79909ec, 'MetaMonster', 'OMM'), + (0xe10d37756d54b578e112f216dd388ae082520852, 'hefty721trial', 'hefty721'), + (0xe118c6911670f40e1e460a78aa6b35caa28cb9a6, 'NANDHI', 'CP'), + (0xe11de577db5c54b9f25ad2cc5eb709024f5246a9, 'AdRunner', 'AdRunner'), + (0xe1285b06e177e005298bd446a835c1ffa3365569, 'PeaceWeCan', 'PIG'), + (0xe12e5b46be75efa04b5ebd3fa5935fb6ee6d32c7, 'collectID', 'CID'), + (0xe12ebb12e139963d4ec4d8d9da0361d8af1fd6aa, 'Manchester, CT Pop Art Edition', 'SWEDC'), + (0xe12f6832719f313bb95d9437829698404b587b12, 'Womanity', 'Womanity'), + (0xe13382ed90efbfca36405f2914cd62a3377edfcc, 'BunnyGirlsAirdrop2', 'BunAir2'), + (0xe13836c765d0197bfc3973ebf40b0ac19b7cd5a3, 'TitanVerse GameFi by Shingeki', 'TitanVerse'), + (0xe13991a73dedace44668b1a9234cfe66c246b48f, 'Tournament of Mice', 'TMCE'), + (0xe142ee817105ebfa1665cc6a28b8c0fa25b8a61a, 'Crypto Orthodox', 'CROR'), + (0xe14db91f6a4d91a9c03af6130d968cac13c755f2, 'SteamPunkD', 'SPD'), + (0xe155a2d9920cd2b8c629ace0ad589f8ba435e254, 'NFracTals', 'NFTJ'), + (0xe15c910a84cb1f544efc2b0c9f331ac9801e517e, 'DegenTraders', 'DT'), + (0xe16a7175e8834bd67b83a4d5484bcd944f3e0493, 'TGNFT8', 'TGNFT8'), + (0xe16d43fef3b0ed0fbe783a396f92449e46dc5920, 'Bone_Society', 'BS'), + (0xe178435a103d701873f5479b07536ac94bbef6b1, 'Quokka Passports', 'QP'), + (0xe17924aeab7fdc2fd179ee6b0ce64aa9062cb6db, 'CryptoRabbi', 'CRRA'), + (0xe180c3297c4e3a0cb09027ad42771a6e74b26e03, 'World of Ragnarok', 'WOR'), + (0xe186f652b3bc05d5a75ce29dcacebbd61e1ba94c, 'Sneaker Heads', 'Sneakers'), + (0xe18b19b45a790069b04f243f66bf871eb67c5ac1, 'Rebel Roots', 'RR'), + (0xe19ef5ba9d6fe436347b54ed265ca47de2d1fd22, 'DemoDay2022', 'DemoDay2022'), + (0xe19f271fc2534667dc97818365b4ce3a1fe613ae, 'Just Me Promo', 'JMP'), + (0xe1a3a640b585e966921e2f3239ad157c9b9cf627, 'VeggieverseXcoven', 'VXCC'), + (0xe1aaa6673799844c5f7e91f74d8706a7e113745e, 'John', 'JOHN'), + (0xe1ad4297eb923c94fed3ecbeff39e48f76be2c82, 'Lane Master', 'SWEDC'), + (0xe1ad67bf81b0e1f0e38b6afc11a8709106a107a2, 'The Amazing Power', 'DCL-THAMZNGPWR'), + (0xe1b0cef936eba8c7c3a6bdad2e62e2a63da69551, 'Astro Doodz', 'AstroDodz'), + (0xe1b1442bbeb31bc93175a3af228047e3be4e07b5, 'Meta Sankuy', 'MSKY'), + (0xe1ba7c7d15fdb849c35ce395379af7c2c3bfd7ba, 'Ranking of Kings', 'ROK'), + (0xe1c8e0e4ae0fb35ada3fb0e50d1660ed18bd0717, 'DogeKing NFT Golden Crown Boxes', 'DOGEKINGNFT'), + (0xe1dabec4fc8b473a9982f90d351db28053e4d4d5, 'Bilanc goggles', 'DCL-BLNCGGGLS'), + (0xe1db2b8293b13e39da3eff981ad3e2e4041198c2, 'Serena Elis World', 'DCL-SRNELSWRLD'), + (0xe1dc5a6183fdf957f3e856f9c0fb6ff17c06ffce, 'CoinChars', 'CC'), + (0xe1f19e1de8ed596e03be4c0460ad439186e5c31f, 'LamasHeadNomadCrew', 'LHNC'), + (0xe1ffc63e0a4d95fea87006f80164a793722c7cd7, 'Doodle Pal NFT', 'DPN'), + (0xe2045863fa68c22ab97ce82d6e136266c6656b58, 'XinHua', 'XinHua'), + (0xe21890d87732b8f4a104293220d50f11229abf0a, 'Chang Gang Relics', 'DCL-CHNGGNGRLCS'), + (0xe21b9aa319512f68233bb349ea494edf00ce3002, 'MGMNF11', 'MGMNF11'), + (0xe228bd28d74d003db8be13ef3177c93184d4d3dd, 'FancyBirds', 'FB'), + (0xe230ddc9f9a2f81d5c2d8dd22cd11dc1276e0506, 'Doggo Brick', 'DoggoBrick'), + (0xe2316d9b6ea5616ede89b2d6484c2f8836f64c94, 'Apocalyptic Apes Official Club', 'AOC'), + (0xe2334ee577973583d2a7619420c1e4e891ac48e8, 'NFTXXX', 'NFXX'), + (0xe23c3e21245c02c885d1f76477c9c1aa4d24e702, 'Qnftip', 'QTP'), + (0xe23cf3111a7b494b09791497a254c632485808c2, 'RED', 'BUTTON'), + (0xe23f61f0e2332f79852e60080f663020e1969e74, 'METAHEROES -NFTs', 'MTLHN'), + (0xe24033f43abfbeb0af1ea0f764539cbaec240113, 'Ape Azuki', 'APEZUKI'), + (0xe24833bc8c438411e7dc052559d7319db09fbc5f, 'Owl Dudes', 'OWD'), + (0xe24923f126f37a7f01469c6d3a67126488c1b0ce, 'Space of French Breeds', 'SFB'), + (0xe24ace5d681af4422fd121da50c303392d3197c2, 'Meta Fox', 'FOX'), + (0xe2549a135a1483bcd718e855070d2141737b2341, 'Sunset_in_Venice', 'NFT'), + (0xe25a81b589e4591de3e5efbeb88e1ceb163882ed, 'Hack Reg NFT', 'HACK'), + (0xe263bd8c3df991ffd6a5ab6787a75cbb58c9d857, 'ComethPool', 'ComethPool'), + (0xe2760e3469efe72f5ae021a4081f823c54f56140, 'CRK OG Dollars', 'CRKOG'), + (0xe288e4f5270bbdc6027e30ade6e7d56e97e4d7b0, 'Dixels Party', 'DP'), + (0xe298cefeda4787f86c1417b667bb5dd679cf9f50, '8Bit parrot', '8BPnft'), + (0xe2993da3bb55a4759d36c39f29dbf09d965b8a42, 'Baskerville Club', 'Baskervil'), + (0xe29e21f65438b5855899c521b230c0a8f1059df9, 'Omnia Online', 'DCL-OMNONLN'), + (0xe2a21a269b24a58320f400c1d00a2d4b5cd154df, 'bbn', 'jj'), + (0xe2a3068287190215b7cfa20079c6bb84ee7f0ecc, 'Threehe', 'THREEHE'), + (0xe2a8a3db2e446a4638251bdc87e137bbcd8578f7, 'Para-Joes', 'C'), + (0xe2a9b15e283456894246499fb912cce717f83319, 'Charged Particles - Proton', 'PROTON'), + (0xe2c6830bf5cc861045f8b185c84c50699ea924a5, 'Let''s Get Poppin', 'DCL-LT''SGTPPPN'), + (0xe2d2107af56ad92d07b0cef2c6acace984643392, 'MAJESTIC OWL', 'MO'), + (0xe2d4737b23aa0fc151a430af9b51c3bf7a6fe92c, 'Cryptobad', 'CRB'), + (0xe2e5c3dab7cabfd08bc4e1a936d5b2cf475e00b0, 'YOLOvisors by 1620', 'DCL-YOLOVSRSBY1620'), + (0xe2e81194bd80cac9085f24dcad2f05a4e9c79d69, 'Animo.Women', 'Animo.Women'), + (0xe2eaf1f3e77eecd0f938ad4c39dcc4b7a5ae0bf5, 'Kike Hernandez “Boston Strong” V1', 'SWEDC'), + (0xe2ed3b6f58475c8303ac665601a5c7c8053af10a, 'Geta NFTs', 'GNFTs'), + (0xe2f0825a0e6875841a06e3404f8d8ca514f2f8b4, 'EmmBots Unlimited', 'EmmBots'), + (0xe2f767c3c1050123bfdbb0ae732e37b6d369ec4f, 'CRYPTO-COWS NFT', 'CRYPTO-COWS'), + (0xe2faac1d1254c9a67538974c354e007326bdcc55, 'Early Survivor Pass', 'ESP'), + (0xe2feed1fec56bb772dc64c4a85189048ff9e84b2, 'Pexel Man #', 'PEXM'), + (0xe30563e5d5219642c455f50643f388887ccd447f, 'Grogu OpenSea', 'Grogu OpenSea'), + (0xe3086b98ba498501491f69b4bae4ef8960f77a11, 'CryptoBears', 'CB'), + (0xe312e4dfccc28d7af41f6c7d80065696811c2aa3, 'The Junior Barbers', 'JBC'), + (0xe3152ce0e5c19dad195b020a6790311f2d615870, 'Timeswap Collateralized Debt - USD Coin (PoS) - Wrapped Matic - 1648483200', 'TS-CDT-USDC-WMATIC-1648483200'), + (0xe31ede4872ccedc044c1730a5f54431646b3a1ef, 'The Cool Sheep Club', 'TCSC'), + (0xe328f31c6fe79a8dd9500717dd0878437495ff89, 'humanity', 'human'), + (0xe32c352093015585de79b66898d264e640eded4d, 'The Subservient Chicken', 'SWEDC'), + (0xe335010039dfebc880c676ebde05510f26647a6e, 'GEN-L25', 'GEN-L25'), + (0xe336a3a9ed7076ed708423e4bf34e7bf1aa1e1b7, 'San Francisco, CA Gold Edition', 'SWEDC'), + (0xe343b35e0246e927cf2a7d246bd4a0d525e41afb, 'Blockchain', 'Bandits'), + (0xe349e37f4143ac89518ba2a229f389a057a7da4a, 'Frawwgies', 'FRAWG'), + (0xe34d41818f6eabc4e80ef256ff6b37129da359a0, 'VAFFA_CELL_MYSTIC_NFT', 'VCMNFT'), + (0xe36d318484b8ad1ea90311bdf9511d488c31bbb5, 'PixPlatyPus', 'pplatypus'), + (0xe36e67395e1b75155730a9e1e6ad8670d31f6ec7, 'Duction', 'DT'), + (0xe376cb396e10e2332488e561d2eba9376d8dc64a, 'Meta Kicks V1', 'DCL-MTKCKSV1'), + (0xe377b1bb9033e018fffcfc7097d2151b0b42b735, '2022 G.G. Summer Jean Shorts', 'DCL-2022G.G.SMMRJNSHRTS'), + (0xe37b101739f78349d6be4ade64b4c618845f0ce7, 'Animo.Women', 'Animo.Women'), + (0xe37fa8e4295c3e424b8e914abd37d9850904fb52, 'Lux Off', 'DCL-LXOFF'), + (0xe387fcc4d5f94f189697c509eae901e69aa7bd51, 'Metaskins X Holy Ones Avatars', 'DCL-MTSKNSXHLYONSAVTRS'), + (0xe38e6c45225ebc5c77a89512664caa93f127ba24, 'Wabi NFT Collection', 'WNC'), + (0xe38e970946e8bd2584d1be266cb147ec41310aeb, 'Harriet Horror', 'SWEDC'), + (0xe39557267f0528eca4a5f90c1c7a0a4b522797f8, 'TheUnofficialMascot', 'TUM'), + (0xe39b3280240a13089872114460b785d281fbccde, 'Big Bass Wheel', 'SWEDC'), + (0xe39dc8adbfa7c9081977591cd4330d6308923c80, 'Phygital Phactory Genesis', 'DCL-PHYGTLPHCTRYGNSS'), + (0xe3a03e351fe51b6bada554501029dd61c08dfa5c, 'Rtistiq', 'RQT'), + (0xe3a041d6d13f69e6f66e7d08aa87507563aac89d, 'MomoMitsuki', 'momo'), + (0xe3a34d912424458faf5a53d4660c0e7c240dd95a, 'InJesterr - Stream Collectibles', 'DCL-INJSTRR-STRMCLLCTBLS'), + (0xe3a5676b3a6cce258db49c0ee2ca332fc6ffdb8a, 'Crypto K Candy', 'KNDY'), + (0xe3abb429d817bbf38a5b2b0b338e841036f7d54e, 'Fingerdude', 'M*'), + (0xe3ac315ac8b554e86de2b860d94ee216060b1fb0, 'CryptoBlocks', 'CB'), + (0xe3afd7fe98b0b48850eea62196427aa4784a88ea, 'Metamouse Clubhouse OfficiaI', 'MET'), + (0xe3c2e7c82c7d18ab60d490c75b73f5a525541500, 'MetaC', 'MCC'), + (0xe3c5f634f72d2886e3f05f64232c602bc6cc52d1, 'Gorilla Suit', 'DCL-GRLLST'), + (0xe3c64647342fe2853f7229872405b7c0fb6ab5f8, 'StashBoxNft', 'SBN'), + (0xe3c8ec78506269aa5f4298c68e2ea2e7244591b3, '[DEVELOPMENT] Ma te St2022-03-14T16:36:13.830Z 243914', '[DEVELOPMENT] Ma te St2022-03-14T1'), + (0xe3d2c4ec777fb88dd219905cd896f79a592adf30, 'Flat Hat', 'DCL-FLTHT'), + (0xe3d7ad446ea296fa0090c42f7e0637a6deb2d7a9, 'Tai Shang Ascii', 'TSA'), + (0xe3db62114495e1c8d0366bbff7b58ef53d855e6f, 'Off to the Races!', 'DCL-OFFTTHRCS!'), + (0xe3ded17b167e4143abba386af633bfd4eddf1bb4, 'Snappy Piranhas', 'SP'), + (0xe3ea740d786c2eb785ea9fb5a089e3924342a4eb, 'Sugar Club & MichiTodd season1', 'DCL-SGRCLB&MCHTDDSSN1'), + (0xe3ee390f44e33619404576d43ff12b17fe19fb54, 'OmniMeta Monk', 'OMM'), + (0xe3f081dde0ce74f2cd71b412920cf1c4d6ee5961, 'Pancake Squad', 'PS'), + (0xe3f581291838cd50dcb31a20f57ec0aee6230c70, 'Spiral', 'AWNFT'), + (0xe40bed45dae47bd75611d8ec752fb5789a4d2036, 'cftcitipunks', 'cp'), + (0xe41769a97ecc7fd29dab98e5fdad79dc2df232b4, 'Camiiiila', 'CA'), + (0xe41c47d138019864df0d4cf526f64fde99bcf6bc, 'Sugar X Cyber Helmet', 'DCL-SGRXCYBRHLMT'), + (0xe42175970d81dfd44748a0d4315f1f8027afa1a9, 'Bunga Collection', 'BC'), + (0xe42da0b9537f89ec970b118f6b1d5c05723ab77b, 'GOLDENROD by CRU5HED', 'DCL-GOLDENRODBYCRU5HED'), + (0xe430c30040e06acd6def6dc2edac216fa6321d11, 'MerchLounge #1', 'DCL-MRCHLNG#1'), + (0xe43af4b02293d730f6a8b28b6032e03b74cf71f4, 'Bull Market Friends Club', 'BMFC'), + (0xe43da13459aac884e5d92549f973bf112a7fa644, 'GEN-T20', 'GEN-T20'), + (0xe43f9fde0344c9bd172b055a36d322cd974105e9, 'Strange Ape Club', 'SAC'), + (0xe4425a830301cbe352d6b4997549992806773cd3, 'boredlongheadpixel', 'BRPX'), + (0xe446448d7c600d50440e3c63c1c9105bc994e785, 'RugSurgeonTrophy', 'RSTNFT'), + (0xe454028d4d5b7c5c3e380b5248f5c40a1d78ab2c, 'Divine Satoshi DCL Collection', 'DCL-DVNSTSHDCLCLLCTN'), + (0xe45458a8466eafe020e056df0d72dd0c5dceeec5, 'Elton John Rocket Club Pass', 'SWEDC'), + (0xe4590f8a88330d38edc04a00a2c53fc6b0cd0d9a, 'RUBBER CHILDREN', 'RBRCH'), + (0xe4599abc519622265cd13e477189cc3f9797900a, 'TOTF X 3dium', 'DCL-TOTFX3DM'), + (0xe464470ef5542feff5fa21de6834211a6ac4e80d, 'HelpfulBabyClub', 'HBC'), + (0xe468b4fb84d724fc5171a0f54a17edce2fb49679, 'BPA G1', 'BPAGONE'), + (0xe46e55e10be8d05b868c6754945fee9ea494460a, 'Decentrealm_Human_Character', 'HRC'), + (0xe47653613fd665983046957044c026b7c9353fa7, 'Slotheez_NFT', 'SlothNZ'), + (0xe48105c589afde658aa14b8b5bad13d2b6b3437a, 'MadMeerkatBurrowBanner', 'MMBB'), + (0xe4820fcc2b067ff7141d0c6c7b20e58174992638, 'CyberBrokers Matic Collection', 'CBMC'), + (0xe48c238c8172994e94fade9a76cf0833c5d45f6a, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD03', 'MLPRC-HMB-C03'), + (0xe49486f57e7f6752fd06286b0e44612c193857df, 'Cyber Bullies', 'CB'), + (0xe4949ac550756636c19d4f7b562ce062af8abd48, 'Cleveland, OH Gold Edition', 'SWEDC'), + (0xe499da00ffb01238d0e6620cae0cb8087c1267cf, 'Fresno, CA Pop Art Edition', 'SWEDC'), + (0xe4a361475fc62df6880abc0b0fc5793edac9114e, 'MOVDBox721', 'MOVDBox721'), + (0xe4b62f3bbe2b9e7f9e9551f3d06d276d9e5f295d, 'MysticOwl', 'MO'), + (0xe4b674506a3e280e6e0a2bfc4a5afd0d18024ef5, 'Fireworksdesigner3', 'FD12'), + (0xe4b99b9349db4f7919c0dda087f7387db760f0f5, 'Chicks Club NFT', 'CCN'), + (0xe4bda0041e1a345a4c85211c4383b74d9171b244, 'V2 NFT Game', 'V2FSGB1'), + (0xe4bfef019d977991d23262f0c31021eb78254552, 'JGNFT9', 'JGNFT9'), + (0xe4c48940158c6cb295b64afac9537b979516c7ee, 'Tailgate Toss', 'SWEDC'), + (0xe4c81e8d9850cd1eaac01bbb8f9c5863e420d26d, 'Cool Bets', 'CBETS'), + (0xe4cb020e104b8ee763148ef6f4efe4d6972d5fe2, 'Bavarian Octoberfest', 'DCL-BVRNOCTBRFST'), + (0xe4d8f6c40bf8010f190b411721c853e1c8fa5ce5, 'Dark Mane', 'WILDEARTH'), + (0xe4e39af398bf188a7c5e2ad4097a88ef32103d6e, 'DABJESUS505', 'DCL-DABJESUS505'), + (0xe4eb2304b13c31ab13223c42ea18d4061a2805c6, 'Live Nation', 'LIVE'), + (0xe4ff30593a13ac70b6ada920125585985c000800, 'TronWars - Polygon Collection', 'TRON'), + (0xe50947c032efec9f84b7be0f05e4dd4922ee9c62, 'Tubby Reindeer NFT', 'TubbyRNFT'), + (0xe50aed48be6640a229ee54fc3e347089148983c1, 'Juliet Mania', 'JM'), + (0xe50d37139ef662a46b10d1e978d90adf1f51204d, 'The DogeLucky', 'DLK'), + (0xe5155bdfecd69a7dd1433ff6937dc9a5515af9a4, 'Sugar Maple Posters', 'SGMPP'), + (0xe515b7cc1d6c481171d651ab959e037af6223462, 'Kirei Waifu', 'KW'), + (0xe51690e6ccf8f388d683d6a55ffb56dfc5d6bdde, 'PolygonME', 'ME'), + (0xe51f4cf1fb780cf7660b5d4082d18c5c7179f3c6, 'Bee Move', 'DCL-BMV'), + (0xe5299bcb07921f68f68e47c1e4e6d2738f3d2cd3, 'Chubby Bored Ape Club', 'CBAC'), + (0xe53545b9624ab667c4b489b6ee26fc5a324fd586, 'Bitforce 1s', 'DCL-BTFRC1S'), + (0xe5357887c43bb9ecdfe86fb1a1e105fd9eeec6d9, 'NFTStar', 'NST'), + (0xe546425fd437414bdac4f1641deb525e9709468b, 'Butler and Rose', 'Rose'), + (0xe548f91486a677c656172c047dbb8da83c964cf2, 'TerrificTurtles', 'TERIFTURT'), + (0xe54adf663baf8da7a4a87445385bc612c9ae8c46, 'BoneIdleApeClub', 'BIAC'), + (0xe55b8870238b1ad53302daec775a1b89084083fb, 'Diamond Pass', 'KDP'), + (0xe567641c3163bda2b8e4a060fa3e8bc46aefc79e, 'Twig Limited Club', 'TwigLimitedClub'), + (0xe570b2bcbc5f2ec22f5ef16ff9f46ce9456d59bd, 'SpacePepePOLYGON', 'SPPLGN'), + (0xe5781b35bfcfef0951aa25b20a593aaaede32e26, 'KawaiiCupz', 'KC'), + (0xe57c6188b690ccb6c8c8a4d1c0571c0f9d337abc, 'Funky Otters', 'FO'), + (0xe58414ccd92d1d2c222cba14052efb550b4dd9b7, 'Aiko Mask', 'MASK'), + (0xe58c787e666408e8154717c6f87b0bb9e83b1678, 'Skusadjhghfg', 'Skulisljhgdfal'), + (0xe5a0654414955c2dc658c26020415d699d30afef, 'TKK Fried Chicken 頂呱呱 - The Blind BOX of The TKKapsule', 'Blind box of TKKapsule'), + (0xe5a28e29a5e683e79535bd25057f6e0d59e080aa, 'OneBot', 'ONEBOT'), + (0xe5aab708031bb4a1845f0c1aade8d0002bcc8b52, 'Tasty Bones Gallery', 'TastyBonesG'), + (0xe5b3727d464673a86d7ef1d97a78e8ef17a281a6, 'Blazin Armor - Ember Sword', 'DCL-BLZNARMR-EMBRSWRD'), + (0xe5b9fec77f4b8fa8a1f3bfc58ee69012ac408643, 'Pig War', 'Pig War'), + (0xe5c0ac2280d11c6c8759bad2b8782a8eed06ba31, 'MetaTokyo Merch S2', 'DCL-MTTKYMRCHS2'), + (0xe5d2eaa581adb9d0009b40fac9722fa1b464b315, 'YabuChansNFT', 'YT'), + (0xe5daab962893c3a47a7d63b27dbd28057eac147b, 'Chill Clothes - Cloudy City #4', 'DCL-CHLLCLTHS-CLDYCTY#4'), + (0xe5e03baf77f9b479fddbeb6142d8ded8783c43be, 'Duckz Legacy', 'LDZ'), + (0xe5f61c67115af439bf8ff32c74e1a1c2abfc1d99, 'ASCIIMFERS', 'AMF'), + (0xe6027d121d76eeb3bc72a1a9a8b286eb76b256f6, 'Noodle''s Wearable', 'DCL-NDL''SWRBL'), + (0xe602fecef4ad5a29422077817d7710bfa83b21cb, 'Pixelated Loading Screens', 'PLS'), + (0xe609927280d09d25f1540da3591e40ef40e3d939, 'Legendary Location Pass', 'LLP'), + (0xe60e2dbbee92b12e319b9f6e99d65ba0461679ee, 'DOGEpixelNFT', 'DPN'), + (0xe6161f07995ebffc22ea28e6d8b2d4d9fe970d01, 'BATTLE DROIDS - RED SUIT', 'DCL-BATTLEDROIDS-REDSUIT'), + (0xe61b8c377dcc05480163999a3efd51419a70c670, 'Bones and Bananas 3D Airdrop', 'BNB3D'), + (0xe622e1e5a0e3ac8621995c47f068ce25d71b291b, 'Mystery Egg', 'CME'), + (0xe62e0ebe4f4c0a8f814ad36f955407e97e17d1a2, 'Meta Swag Club', 'MSC'), + (0xe630c95134ceadbb3780664e2f4f6ba6f518f77a, 'BOM-Bs', 'BB'), + (0xe64fc271db0fbdd5e57b97e6b0812bfb04f5d95a, 'CryptoBrokePunks', 'C'), + (0xe65438baca89d0f1ffdf01a991537b8f5ea95d9e, 'E721', 'E721A'), + (0xe6564d8fa4dbaaf7773964005dfb81664531f2ce, 'Mutant Ape Yacht Club (Reversed)', 'MAYCR'), + (0xe65fcdb82f516a2361e4e9af9897fd53ef796bb5, 'Meta Solider', 'DCL-MTSLDR'), + (0xe6638de1a6bd9dfd32bc55c8cfef24419a306b6f, 'BFlakes Infernal Slippers', 'DCL-BFLKSINFRNLSLPPRS'), + (0xe6677f053455c9c5024181ec3bc2f9b6e5219f08, 'Bored Ape Yacht Club Metaverse', 'JADR'), + (0xe66970fac32ffc972d2b6ef089d136441bc12b78, 'META DRIP Phase 2', 'DCL-METADRIPPHS2'), + (0xe66ecd2090d7d1f1c692046c382c11711eb5ff52, 'Punk Not Good', 'PNG'), + (0xe66ef19fe8c740285348a03750f37b99bdb4a1bc, 'Crypto Bears Golf Club', 'CBGC'), + (0xe66f4d904c2fc4e92d6b647075d301d670ef87f8, 'The-Dark-Cl0wns', 'TDC'), + (0xe678c6e5ec65071cccc55cb292f7c670e002decb, 'Hella Exclusive Camo Hoodie', 'DCL-HLLEXCLSVCMHD'), + (0xe6794f7321542be4560647221cca958cdaa69217, 'KryptoVirus NFT', 'KVN'), + (0xe67b0073e936aa784268989b99a1571fa3b45dc9, 'Crypto Sloth NFT', 'CSNFT'), + (0xe67eb71ba139cec937e9329b43de563ddae31b3a, 'Rivvoo Artworks', 'RA'), + (0xe67fa1d1c0ed5778af5255360beba3ddffc19fd1, 'Neon Clever Girls', 'DCL-NNCLVRGRLS'), + (0xe6899af877f565a28dd44a13a286e2834bd585a7, 'RugSurgeonTrophy', 'RSTNFT'), + (0xe68af83c6596e6c4b7b1b0d5b7bd66ab44d8b763, 'SUPPORT UKAINE HEART', 'SUH'), + (0xe695a8e8bc8a6ae9784f190698172074411e313f, 'Vampire Ape Syndicate', 'VAS'), + (0xe698bcff82a0be0c636c13b771458e7902c07c24, 'CryptoJen', 'CJ'), + (0xe69d786c181703b4e65283bfb520eedae334143c, 'Dude Apes Club', 'DAC'), + (0xe6a17e745948fbb7327ef87132eb72ee4984b19b, 'Zombie Kids Community', 'ZKC'), + (0xe6a85e3c51eb99bb645c2253e1a77b6dd8ab6e68, 'EZgraphs', 'C'), + (0xe6b968cf9cad0fdc5cbb0b9900c49f0a0f987d44, 'The Wildfires Projekt', 'DCL-THWLDFRSPRJKT'), + (0xe6c16bac69322a05ed6bdd15c469651f63d04e3d, 'NFPandas', 'PNDS'), + (0xe6c2dddae5fd051c0b5abb965b55daffc518f6b9, 'Zeppey', 'ZP'), + (0xe6caba2a817cc2731d69fcd2d2bb86a31d6e94f9, 'Zombie Smashball', 'Z'), + (0xe6d112886e9b789d4b59d1862ebac1cf436ab3a6, 'Executive Privilege', 'EXECPRIV'), + (0xe6dc843e373750b346ba61df5108a26fb0a0f3dc, 'MoodPika', 'MPKM'), + (0xe6e16a155a599abe917bd7dc091ab1effca392db, 'Karma Cats', 'KarmaCat'), + (0xe6e986befb6707a3497141a25e4c8b65ad2ee5b7, 'Angry Pitbull Club Polygon', 'APC'), + (0xe6f3828a9657b00b3fb0d8b0a5c7fc6248ff0e47, 'Pharo''s Collection', 'PHROS'), + (0xe6f9482efc6ef4ccc84be463d6f35991f5345afa, 'Kazokutchi', 'KZK'), + (0xe70dbc9e4504d830905d8c73c32bc6b1e7dd4a58, 'SNW Hero Cubies', 'CUBIES'), + (0xe711d44dadabb030ee80526084b7c72f2a905032, 'EGGS-Club', 'EGG'), + (0xe7126241b15abb923b8d612d4ff743ac4f96a3a3, 'Satellite Spirits PreMEMEium Volume 2', 'MEME'), + (0xe716a503e6d83bee79b6ced5a80375033225e9e9, 'Inmetaversables', 'INMV'), + (0xe717b4f4dc2e4ece9c02f2948e1ebfcf91839fc0, '4MGMNFT', '4MGMNFT'), + (0xe71b34fbca70381f51ab5fae52e2c1fed8b55269, 'Rat Street Official', 'RAT'), + (0xe72323d7900f26d13093cafe76b689964cc99ffc, 'PixelHeroes', 'PHS'), + (0xe72683d124fe6681f5778a8c3c6d079b13d23447, 'The WolfGang Polygon', 'WOLF'), + (0xe7363be9f4a77a21645f259dc887d4bffb4997c5, 'Ocean View Deep Waves Pomade', 'DCL-OCNVWDPWVSPMD'), + (0xe73864beadf6c7b7539320619c5bee2ed73c8f42, 'Void Runner', 'DCL-VDRNNR'), + (0xe738b6dc7ddf705404a5b5b61a15dfa70190292c, 'META_YUNIVERS', 'YUNI'), + (0xe74358b791c1498273fcedf99d6274c9340f0c56, 'Sheep Army NFT', 'SANFT'), + (0xe7439d5754afb8fff54b46bf9bdb637776c57561, 'Mission Chest', 'MCHEST'), + (0xe74ce328d78127402efa633bd76492c49a4bb729, 'launch', 'LP'), + (0xe74db99d32c5bfd71c87a2dc74f40545b4ffdddf, 'DolphinNFT', 'DLP'), + (0xe7539af55ea41ff6b470fe31c8141aa8da24b6eb, 'leaf million collection', 'LMC'), + (0xe756b5a812b8442a2edd0b2516366355926ce8ed, 'Silly Jack', 'SJ'), + (0xe7570e07742979f17ba3c4200e8fa6ced61766d1, 'Kaemi''s Coffee', 'Kaem'), + (0xe766a77122151f820f25d819eb9c5fa774922267, 'Axia NFT Yieldnode', 'AXIA-NFT'), + (0xe76cb17531adaf6c0d3fbc27751d9658ef87c550, 'MonoLocco XZY', 'MNLC'), + (0xe774e0f512972aff87251762b2aca39124fdd94a, 'millenft', 'CC'), + (0xe77856cd4d9de752006a67d3eaf5dbc288ee92d6, 'Fluffers', 'C'), + (0xe7785d2c55589626c0a7988809912d1512201304, 'FacelessBionic', 'FBC'), + (0xe78d3cdab127bb1940b235b09742ae8f1b0d77d8, 'CommanDODOs', 'CommanDODOs'), + (0xe79134e77ec40043af8b434e55871c7bd0dbacd6, 'Isurumaki Slices', 'DCL-ISRMKSLCS'), + (0xe7a8488b85c673bc832d4694485499aebe3178c9, 'Leila Goncalves Azevedo - Povo Surui', 'Povo Surui'), + (0xe7abfe8d6fcda50e0998a74ac5d9901aaf498e1d, '2000s Court', 'SWEDC'), + (0xe7b529c2ab01358870e4e7d2f1ff9a0ded89d606, '(B)APETAVERSE META', 'META'), + (0xe7b78e75dc1d157d08198ce2e7e69834e60a005b, 'CyberKnight', 'CyberKnight'), + (0xe7b81ff9018e1bf75b2910874960086be5fead18, 'Crypto Abstract', 'HARGREAVES'), + (0xe7b9071ffc48ad84caa39dddf3e5c28b5c7dbb3a, 'е1', 'е1'), + (0xe7c721cf66d1666d59bb88427978ff515bfff492, 'RealityCards', 'RC'), + (0xe7c9589271e208297be6656f033547471e6ef759, 'shinsek123132', 'SH'), + (0xe7cdc8ba8f437954a60bacaccefc0766a5e27af9, 'The Final Slice', 'DCL-THFNLSLC'), + (0xe7d08149ef848dc29f8e9f78f290e892dd1947c0, 'Gacha Girl Club', 'GGC'), + (0xe7d0a9c0c01dc0b6ab259deb910f2131c3701e84, 'CLONE X MATIC', 'CLNX'), + (0xe7d117dfeb60975268935ebeb50f03728ecf82ad, 'ECX Badge', 'ECX'), + (0xe7e16f2da731265778f87cb8d7850e31b84b7b86, 'Embersword Land', 'LAND'), + (0xe7fd841dd9537b56a66b274a9715d0de651c2c82, 'Psychedelic Shroom Forest', 'PSF'), + (0xe8075436678192893f96d81f7f640cb44de86f47, 'Doki Doki White Day', 'DDWD'), + (0xe816683d4afc9a6b53486c9429ad0ff18dc4ed58, 'Rich Phancy Pig', 'RCHPP'), + (0xe81b296e17ff282370e73bad45bf72cff75e0221, 'Lazy Duck Club', 'LDC'), + (0xe81d099fadf210e4613f4840974036f80498e0db, 'CryptoCloodleZ', 'CCz'), + (0xe8213fed439c459111510c4f807eaa38d896899e, 'TheCryptoBirds', 'Birb'), + (0xe8270c8a5bbf401c313f4109b8187e8fc2ceffad, 'PooPoo', 'PP'), + (0xe829b136c1b05f3a527d0954f36f5da694d056ce, 'Bored Alligator', 'BAGC'), + (0xe82c2f7a9166d303dda8298814eb614ec85bc696, 'Shit Happens Apologizes', 'SHA'), + (0xe833945f718cdea5958496eb8fd308bd55b84acd, 'GEN-B03', 'GEN-B03'), + (0xe833a6827a6911c370f619fb17154d38567edd0c, 'Fashion Killa FBRN', 'DCL-FSHNKLLFBRN'), + (0xe8344ee9930f413976d4165ad0081db7437f37ed, 'ikebanaworks', 'IWT'), + (0xe83d17cbd0f581e8f55349c8e9492c3483a4da4a, 'Gravis Finance Scanners Collection', 'GRVSSCANNERS'), + (0xe83db04d69e6af8ff1208172100c8162200e1069, 'Anitta Behind The Scenes', 'SWEDC'), + (0xe83e139b47a240b34e4f069418c5cb8d34b576c4, 'MintPass to CryptoPunksBunnies', 'MintPassCPB'), + (0xe841be6f054d173570b9e2ec42ad540776c1c2e0, 'zrnrhmrtwrk', 'ZRNRHMRTWRK'), + (0xe85633316fe810ffff9ac6ac206fab01adbd44b7, 'aliceandolivia', 'ao'), + (0xe85f2170713ce3077020104c7424f9aa2db61110, 'Tokio 2020', 'NFT80'), + (0xe85f8e6e554da74cf402d36e13a6e93405fa0b91, 'Zcash Wearables', 'DCL-ZCSHWRBLS'), + (0xe864055ef006bc15fa2a27455f818d060d5d5f23, 'Just a GIRL', 'jag'), + (0xe86515c8a14ef0ccf772bbf43b77db78fc608b2d, 'Gametaverse Ambassador', 'GAMETA'), + (0xe869a7dad52e5c19db2c9741e4ca964233c00b54, 'MarkX', 'MX'), + (0xe86b091a0e78c9161f63c18638540ebb02243394, 'Pxbee Art', 'PXBEEART'), + (0xe86b24c4e80623673405ca04a7f2c6d75049896d, 'CIMAdown Art Pass', 'CDAP1'), + (0xe87e26c0fdcbde5ea37a24c731a834938093051b, 'Witchcraft', 'DCL-WTCHCRFT'), + (0xe88f3e768a77937c490895661fd0c1dd02493ccc, 'Hungry BAABBoons', 'HB'), + (0xe894b6057ca67ad7aa9281a1071325abf8c0c367, 'WarriorMint1', 'WM1'), + (0xe895c46f760891a31d248a86526628fa3fe7473d, 'Crypto Couture™ Bonus MVFW', 'DCL-CRYPTCTR™BNSMVFW'), + (0xe8976f965a9ca9220afd4069cfb58617511c91b7, 'kirinLoot', 'kirinLOOT'), + (0xe8990e80cc3ed2a6660c0e605fa1081771de88da, 'Tony Faces', 'T'), + (0xe89bf95010796de7823b1d91bf8c1ea0e4bbfba3, 'FootHeroesClub OfficiaI', 'FOO'), + (0xe89c408e25cbafe77f9db23a302595c35767f23d, '1010 dataBarista - Ina Collection', '1010Ina'), + (0xe8a25071d997bad9cdd56d73e6ee5ea1081502ba, 'Snailhouse', 'Snailhouse'), + (0xe8a51d3436d6f59dfb063a9207b6f561192c260b, 'Elfios Hoary War Horn', 'HWH'), + (0xe8a59dd4b19b73dd24a69e6696a281a1e40d0378, 'WorldPeaceNFT', 'WPNFT'), + (0xe8acecca7a58152f74a6d214a7e34a28b645b30f, 'PowerJags', 'PJ'), + (0xe8ad8708a41d0af03b9c73e04b4a4338207df808, 'ColorfulLighthouseCollection', 'CLC'), + (0xe8b2180bb9792f475f754213650636242d25fcb6, 'Memphis, TN Silver Edition', 'SWEDC'), + (0xe8bb1d190a7ccf8de28456a80c9a661d402baf3e, 'BirdCake', 'BIRD'), + (0xe8c1d47bdf06d142dcba72000203773d57cba916, 'TurboSquid', 'T'), + (0xe8c9c266423c9783243a638da5f956919ce8a775, 'Dope Heads NFT OfficiaI', 'DOP'), + (0xe8cff71159614fe412fa2a3cc2578d8994da989b, 'Shinfuru', 'ShinfuruNFT'), + (0xe8d4ac0ff6b39f022f8b876e3f2b4fadf7d07b03, 'PartyApesV2', 'pApesV2'), + (0xe8d6db324532e0ebf89e349488c8ea5c6f73feb0, 'Trybals', 'TRYBALS'), + (0xe8daa3efbf29e9630d39b4e313d5cd2048ef8a48, 'Brainbot #81 Vuzzbuzz', 'SWEDC'), + (0xe8f1bbdbef80af04741ade1bce0b94bc358800e8, 'WarriorMint1', 'WM1'), + (0xe8fdfee6cf77fccb54d2fba7f9b45d5f29797169, 'The Meta Lite Collection', 'DCL-THMTLTCLLCTN'), + (0xe8ff5f0bb0df32cad6fae05c9d0ba255ec3ea2ab, 'SPOTIFY_RAFFLE', 'SR'), + (0xe901cd27ead4381b1a8a73ba9744844b43704656, 'Zombie Kids Community', 'ZKC'), + (0xe90526b5ad9796a96f28e92e2b61b08c821f2385, 'Crazy Gorillas', 'CZG'), + (0xe90be1cb18b396f09a13c68c3f9a5a892293b9fb, 'QRishin3', 'QR3'), + (0xe910ce02be44aebc3f5b23a3e0e06f8591962a2e, 'Dressed Elephants', 'ELE'), + (0xe9119887f15c3e15f8fbd016614cd5c1b7b6101c, 'Crazy Bears National Park', 'CBNP'), + (0xe917f98c88dca570d8c2ec653d77214128fabf17, 'Desperate ApeWives Gallery', 'DesperateAWG'), + (0xe91a7256d51295d3964f011a849b2d6d91cfa816, 'Planet', 'PLANET'), + (0xe91bd2fb48fe10786e29776023acb782ba8fc0f1, 'ZED Racehorse Skin', 'ZEDSKIN'), + (0xe91c7222803494d1750e2650642ca7c05333a9fd, 'Athletic Foxes Club', 'AFC'), + (0xe91ce62ece5f6ba882517f84b89f5b3a758485f3, 'PolygonChainPunks', 'pcp'), + (0xe927335eda5c7a337cb54d58a135091105d0e90d, 'Harshit', 'HJ'), + (0xe92df71eb4df96478afe85da03ad53bc2b55b05b, 'PolyCon 2021 Pass', 'PolyCon21🎫'), + (0xe9328aaf9f250b98b39a759db6480aae021b21b9, 'L2 Punks', 'L2P'), + (0xe9339bd3a3e26ff77ca2c8e661fb12c22ecb2a5c, 'skulltonnse1', 'ST'), + (0xe93494584c2f6bde70cc69c1f38403a5cd95fe28, '101 Data-barista', 'D101'), + (0xe936e6c517f350ee8566d93fe3e2297eaafe2332, 'Cursed Urban Zombie', 'CUZ'), + (0xe93c9ff3d129958d41a9f5a57f62d85b6b0a3d66, 'first ever nft', 'firstever'), + (0xe93e049ec5c3934bc299e26bcf6f239cf7a0cdb6, 'OGUN the Architect', 'OGUN'), + (0xe93e66d8be2a56e5d4b049ab8103064a1fea06cf, 'Maxity', 'MAXITY'), + (0xe9463dd4468d5e47204c0050ab0db42e46f59df5, 'ArmoredPolymancers', 'APMCRS'), + (0xe94c80a37819de2d68b6fa9fdb9e9d97f374ebbe, 'Edu M', 'Ed'), + (0xe94d76bcf55dd8602769ea27c5b1f6892ddd31f3, 'Ampontant', 'APT'), + (0xe9527ea1131e87ec15ae658bb05f09db53564ed0, 'LazyBoysGlobalArt', 'LBGA'), + (0xe957075ed2b0baf9298eb374cbf77382c9822685, 'TheAddicts', 'TAD'), + (0xe959e5083a24ac80dc2d5947204989817068a0d8, 'MODA DAO Mystery NFTs', 'MODADAO'), + (0xe95db50da1fe5985513505725a96b5570a43d485, 'The First 100', 'YMZF100'), + (0xe95f51d73c334adab8ef74277f8c3528bfe5a548, 'Diamond NFTs', 'DIAMOND'), + (0xe966f8a052507248f27afe4393095a6bb3ada8f0, 'Non Fungible Pledge Collection', 'NFP'), + (0xe96a0c76e3469f03f80a12fe7ec87d001b6f3935, 'MCH Soul', 'MCHS'), + (0xe96ba1af879d1f839804d88643e200c5b0d33e83, 'CryptoBears', 'CB'), + (0xe96c4c2db9a81c84707bac78bd93336ac6e3b25c, 'Cat Tronian', 'Cat_Tronian'), + (0xe972183823c8c0b0438bb73d7661d22a706a7c87, 'CloneX#8400', 'CX8400'), + (0xe976f444422181ee78d1f09c532c7825b6584f5e, 'BanknoteNFT', 'BNFT'), + (0xe97dce873c5a071031d3852b179f6fc180c96b37, 'Magical Mandrills Society | NFT Collection OfficiaI', 'MAG'), + (0xe97ddb6979318857cab92a47a70e02d6130dc37b, 'MCP Pet', 'MCPP'), + (0xe9821f779f74e9651a823aa4667e169dc0ac5b09, 'ETHAnglia WIWY 1732022', 'KEY'), + (0xe9841d4dd99f4621f00f2a4b2b1e792e9d771c0f, 'Jack Frost Area 51 Long-Sleeve T', 'DCL-JCKFRSTAR51LNG-SLVT'), + (0xe989774f6bc4cd6e07bd9779b1b7a80b75356f07, 'galaxyx', 'gx'), + (0xe997f121643ef599a2749d33d7bd7ab93b230700, 'Happy Hornets Pixel Friends', 'HHPF'), + (0xe9a046406458a0a2cd50fe6321763ff6da849fe5, 'Leagues', 'LLL'), + (0xe9a2309e50b82fe645296572b308473f3ed02fc7, 'TheGrizzlySociety', 'GRIZZLY'), + (0xe9a2aad58aa9e3855af36ad1d0a1e9236a540a5b, 'BarnCats', 'BnCt'), + (0xe9a67d7c0167dc6d9ba8b60776f2c5139e8a6a29, 'GEN-T17', 'GEN-T17'), + (0xe9a6863d786bb0b4730a4d9b91c64cf4e54a635f, 'FrostNFT', 'FROST'), + (0xe9a7c61c49d7cfa82f4de32f6a4e8ccd33acbaa6, 'etewa', 'sdhgfdh'), + (0xe9acb599817d50b11b7589e3cf8473c66d661792, 'LuckyBuddha', 'LUCKYBUDDHA'), + (0xe9acb686852bc17b023697448022edc1d41e5ff7, 'Ghost Punk Yacht Club', 'GhostPunkYachtClub'), + (0xe9ae9c77340dde123bece0b187d4b6585c210d72, 'CrayzGalaxyPatatos', 'CGP'), + (0xe9b0c486bf51d8e8ebc2c4b60589b873bf9c4029, 'PanzerLeague', 'PL'), + (0xe9b13025d554d12b846c2b735abaaed87267bc58, 'Deluxe Bored Ape', 'DBA'), + (0xe9b6db0bb21e6df1fe6f8c5e076740eebf4d81eb, 'HuddlnMediaAsset', 'HMA'), + (0xe9bae9c23224e3bc24428cc2679c535ee46efef5, 'Weird Owl NFT', 'WO'), + (0xe9d2b57a8ba6a44b0b47a8d8d406b5fe2578aa03, 'Little Big NFT Drop Ticket contract - Whitelist', 'LBTWL'), + (0xe9dc7cf1ffddfb3ee187187c38ea82dc354194ed, 'Carara.1', 'Carara.1'), + (0xe9df4b8bce8b266a3de941e4a66864c64f75cd07, 'HalfSucker', 'HSNFT'), + (0xe9e4faf574706060bb9659504d3c3ec9b27fff2b, 'CreamonsT', 'CRMNT'), + (0xe9e86941b23fbe9d8f4dd0c5b7e5f89722936878, 'Voxters wearables', 'DCL-VXTRSWRBLS'), + (0xe9ecc0bdcb24a22d1ed0fa36fe28b0c885c9b5cb, 'Elves Attack', 'EAN'), + (0xe9eeb1009a731b31ff3df0cca5ba41b33b7da089, 'LittleBigNFT', 'LBNFT'), + (0xe9fc040e0091ae7b74e3b446463e2a8512114609, 'Kidzuki', 'KIDZUKI'), + (0xe9fc3f1c23fa65342452d1fdcf22fa2f51576dec, 'Meckaducks upper body 2022', 'DCL-MCKDCKSPPRBDY2022'), + (0xea00d50f3b3722a335a93ec27ac394c69aa34af1, 'CyberKongz VX Polygon', 'CKVX'), + (0xea018342d08ef6c30c9f01f91cfcf46302793248, 'Lays x Subway', 'DCL-LYSXSBWY'), + (0xea04e17b7c9d85c3433b4d842614accbdb0c9d94, 'DaGM', 'dagm'), + (0xea15aa1197b5c3375caad490e97aa2c28589b592, 'The G.O.A.T. Club - Edition One', 'DCL-THG.O.A.T.CLB-EDTNON'), + (0xea1b4c628a6fffe8fc41a79ef5757b216ae17959, 'Shroom Shroomie', 'SHH'), + (0xea1d85ebadf38b7bdfd73bb329750795095de759, 'KOBOLD GENESIS NFT', 'KCC'), + (0xea29292eb6520a002e3617f3527396626d4823ac, 'Bills', 'BILLS'), + (0xea2ff666f23f9cb3bf0f4dc1836e89f971dfc966, 'BetNFT', 'BetNFT'), + (0xea33a4441f1c73dd1ebed8d28920a7b1e7c67c9e, 'Thespyverse', 'SPY'), + (0xea42d52b189f6b5681ce47da499ac102507ed46a, 'A**S2', 'A**'), + (0xea45e97c4f54eec552b53e9dd3c96e0309f74ad8, 'AlohaNFT', 'AlohaNFT'), + (0xea523912d550cccf9c934746a397d0765b3c4399, 'Dragon Master Box', 'DMB'), + (0xea56375e0ce711da89b3f80c5033408261506645, 'AvoDude', 'AVDUDE'), + (0xea58de3e3c129d21383da7d8fb2b7dc4790976aa, 'Maniac1', 'MANIAC'), + (0xea66fc00c2dfc0b8e8c0a3b7fb6258f2f1705228, 'Secret Gift', 'SECRET'), + (0xea7095183b289bea5da31323e9b3150aec0767b8, 'Hedge Fund Hyenas', 'HedgeF'), + (0xea7172dc24c2837691ba83a1211d589096fbfbaa, 'CT2.0', 'CT2.0'), + (0xea74249b062c0089824499fbf7a82dd9162edaa9, 'TremaxPandaWorld', 'TREMAX'), + (0xea7a4d2a399e0bdf61d099a8576793f379f00f60, 'Mutant Shiba Club', 'Mutant Shiba Club'), + (0xea80b50a6feb94e21273870fe4df890b42c0ee85, 'OPESororo', 'IO'), + (0xea91c129aa9f91bd14e5dd512fa583f6557eb477, 'SkyVerse Official', 'SV'), + (0xea925dcd528972f763538267a66e16b4fbca6d73, 'PAPPU Tiger', 'PAPPU'), + (0xea962ea417f726a0e5d7721d15480d2412783d78, 'CryptoPifi', 'CP'), + (0xea96583c3ba49756e39200ee570bd669346d5888, 'Bone Fighter', 'BF'), + (0xea9a8beb601e00ab7d610e775c874a8f22a3c664, 'Vagina Saver', 'VS'), + (0xea9cf4f98791e47649a43b22f1003a0aa898f63a, 'BingoNFT', 'BINGO'), + (0xea9d9c26187100c20ee7836ca9602a74e39c920e, 'Hypnotic Lollipops', 'HLP'), + (0xeaa11be117134dec922d458d34a40a7b523d1e58, 'CLONES X CLONEVERSE', 'CLCV'), + (0xeaa3f73d4061f81ad7e4ccf249f50cae9aa00b79, 'Etherminaty', 'Eminaty'), + (0xeaba533d468206db03b55e8855ad414b91b2540f, 'PolkaFantasy Souvenir', 'PF_Souvenir'), + (0xeabbfaa4785586254d9dc382164934542d21b975, 'Neonkeys NFT', 'NKY'), + (0xeac59eac8589795cdf38c47d2beab5a2caab52bc, 'MysteriousFriends', 'MXF'), + (0xeac94d501df21d4e45e9db57f3db9cc1c2c588fa, 'Vertual King', 'DCL-VRTLKNG'), + (0xeaca74a994af9f9dae5a9ca38f78e3443fd878ec, 'ZENFT Collection 1', 'DCL-ZENFTCLLCTN1'), + (0xeacc408e04462b959dd38c7da2646e89cfe1b9b4, 'SCooBi LAND', '☼'), + (0xead5d1ec4f7a647de61a7a0225eec7387a25be01, 'PolygonPurpyPenguins', 'PPP'), + (0xead99f954bd05f7e8c799499ef78d548d7674d3e, 'NFTbies', 'NFTBIES'), + (0xeae8f32635a6733db6bd331259926dbc58d7928a, 'GEN-T44', 'GEN-T44'), + (0xeaf8e7223853df87f62ad78001e48020286a43ab, 'Garden Gnomies NFT', 'GG'), + (0xeaf8ef1ea2bf18a1b61ee80bb691387619de99d3, 'HoodRoach1', 'HR'), + (0xeafc90abc04ce240db7bd92237b9e32d51398319, 'Lucky Maneki Arcade NFT', 'ARCADE'), + (0xeaff5998efc71fea5f6a4cd0aef0571becdb4906, 'DOTs NFT ART', 'DOTs'), + (0xeb00805482fd5f9d52ba0ef10bcceffe6dc262c4, 'Troll Game Weapon', 'TROLLGAMEWEAPON'), + (0xeb02d13d5ad0b27707dd3a8cbf37e91ef7d3c77b, 'Sassy Slimes', 'SS'), + (0xeb089a70257d7f118f8b2e1ab25df97a63232456, 'GEN-T16', 'GEN-T16'), + (0xeb0aef9796018779bc73a01ff153eaeecce85054, 'Gorilla Crypto Labs', 'GCL'), + (0xeb0deaf665555825e4818902f26c7e359711874a, 'BullsandBearsInvestorCollection', 'bbINVESTOR'), + (0xeb117504f646579c5497ef712819860b2a950a1f, 'OkCatSkull', 'OKS'), + (0xeb1b5f25b53dca1141b55c01d3397276b9d1f378, 'Pixel G''s', 'C'), + (0xeb2200eac636fb6ba41fd3cbb6538327ef32aa3b, 'METATIGER DaddyCool', 'DCL-METATIGERDDDYCL'), + (0xeb2cfb35d63ff867045dc225e1d5a9f4b8cca01a, 'HEYHEY', 'HEY'), + (0xeb2d4d3a364be0234b12a1f8a776c580ce56699c, 'CryptoBay Harbor', 'HARBOR'), + (0xeb35ad206c57a0ef62ccabe9043dc4ba7f21182e, 'Web3Skills SmartLaw Clones', 'W3SC'), + (0xeb37273c8091711e8beb75bad844d2acfb33ddd3, 'NFTesp - Lanzamiento HQ', 'DCL-NFTSP-LNZMNTHQ'), + (0xeb3cf4992682f7dab028ba2c13e1b70365bcf05f, 'Cyber Babies Official', 'BABY'), + (0xeb517e74651fc95b8f2ee8a5e64d5076d37678f5, 'Paint95', 'Painting'), + (0xeb51ad44865c134414a15e820bf687234845f43f, 'Saudi Man', 'DCL-SDMN'), + (0xeb5de7872a592ce8d602a3ea75e9ed1c714352b0, 'Treewaii', 'TREE'), + (0xeb6360ebfa0fc65a091aae94c2b7636e82a4e047, 'Guardians of The MetaWorlda', 'METAG'), + (0xeb68e882860a151a813d76bf1b44dad1a961bdff, 'ShibjitsuWarrior', 'SW'), + (0xeb6d0faa38304ab96e0fb39bcb06b72384c99da3, 'HyperTrails', 'HT'), + (0xeb6dad897bb1668be574ce66e642c4d97d7ed53d, 'SASH Stargazing Coin', 'SASHCOIN'), + (0xeb6f272723f71974ecdf229e22f0ccb9e1f23258, 'CrazyThumbzz #1', 'CTbzz'), + (0xeb6fa603e2b441f01ea08101f86491ee15cb852d, 'Baby Boomer', 'BB'), + (0xeb800d6364c630f15524cf09434d98079dbeda8b, 'DACBear', 'DB'), + (0xeb87827d5dccdea27ccf6a292ea827e30e4f44cd, 'sl', 'sl'), + (0xeb8f04231dc82285953825385194d119740e0e0c, 'Coastin’ 420 by Jim “TAZ” Evans', 'SWEDC'), + (0xeb8fe5a80ead747b5d11147fa37fc50a606a3496, 'Mr. Alienpop', 'SWEDC'), + (0xeb9357a59422be6d4ad99cbd24f112b81aca3132, 'MayaMeta Collections', 'MAYA'), + (0xeb9a42f955f140dbe98fbce299da65b2287f70f4, '0xb17582b19eF51844a1366fb80b07b60358dD348D', 'Xbb'), + (0xeb9aa11ad1da7e225af1c99fa721092e6619070e, 'TitanOrigins', 'TITAN'), + (0xeba6bf7251752d1f1e022fd70af83adeec25d098, 'Non Fungible Gatas', 'NFG'), + (0xebaecaf32a1ea4dd2ac08f5ec0a3977f3b8dffba, 'Uniqly Christmas - Regular Gift', 'DCL-UNQLYCHRSTMS-RGLRGFT'), + (0xebb1197a7324cb7ff3d85383aeab3c61f1544286, 'NickMixed', 'NCMX'), + (0xebb7fcd24422931e63dc8363cb1c43a1d5f659dc, 'SUNGLASSES MOOD', 'DCL-SUNGLASSESMOOD'), + (0xebb92aafb805f2a8a8144ec7c61c1466fa195bfd, 'ELIXIR', 'ELIXIR'), + (0xebc23218283e57896ea56bfafa5fa43e5bbfb14c, 'ArtlinxDigitaArt', 'ALN'), + (0xebc5bb890317dfb77419e9870ecad528202b25ec, 'Mythical Creatures', 'MYCR'), + (0xebcbe62ff30499451dbd664538aca75cd6076b3d, 'XY Vesting Voucher', 'vvXY'), + (0xebd44ef5bef3d92ce5e7f95b35bb9dfd22fa63f4, 'CrazyThumbzz #2', 'CTbzz'), + (0xebd594c4ffccdd240de4f95fd5c749248fd0a583, 'BalletDemos', 'BD'), + (0xebd6335e1ff98a71faecb290f3a2ef76b81137d3, 'My Collection WBlhdGKStcif8cynmAmk', 'my-collection-wblhdgkstcif8cynmamk'), + (0xebdc89700ce1104897f7c8e385120f95494091e9, 'Vidoozles', 'VDOOZL'), + (0xebdd91a97781549048432324c2e6f4d357e2015a, 'My Collection 2zBKlQP5OTm2RQa5aVxJ', 'my-collection-2zbklqp5otm2rqa5avxj'), + (0xebde6387e4a123568f6950422ddead439db2232b, 'NFOwls', 'C'), + (0xebe16c3bdf690d30b41793c28a8cba120b1240e0, 'EnergyPlus', 'EP'), + (0xebe2cb54cc2bd91a291fe088c70b264f6da3c61c, 'pssssd Official', 'pssssd'), + (0xebe6b6dd10f74ada8c2cf7acbb36c2162a6d9900, 'MMS Blue Chip', 'MMSBC'), + (0xebea00dfdd8c43cdea61c627b888f09bb691dc48, 'Bored Seals', 'BS'), + (0xebeb13a734d695df5c3e5539d6377f5b457daf31, 'lionsi121221', 'ML'), + (0xebf478f04df220d5b59d264857f38c0c0b040672, 'Cyberkongz Classic x Uniqly.io', 'DCL-CYBRKNGZCLSSCXUNQLY.'), + (0xebfaccbdeb47c0e62dffa59d9affa9a6889b59fc, 'JANSBOY', 'JB'), + (0xec08d835d352cfd57862156e8729de0619d9cd04, 'CryptoKhayPunk BeggarApes', 'CKPBA'), + (0xec23180d936fa742d9ef00fd61ffa86dad24152a, 'Rockn Punks Club', 'RPC'), + (0xec2e8326f924f83206daf0c39007a7c77f0402a4, 'Enriqueta Aguiló', 'enriqueta-aguilo'), + (0xec32b72f3aef4f5b5b6ec3348cfd3da5939a4f72, 'Pessimistic Penguinz NFT Collection', 'PePz'), + (0xec34c0fe17bd6acfc0d840be66b36eb7143f44a6, 'Lemur Dynasty Club', 'LemurDC'), + (0xec370c31103dbeb81c845005f01ab1f02597ee4e, 'Beginer', 'BGN'), + (0xec504e82003db45558b83f7e1622f88c7db2e30e, '[DEVELOPMENT] Ma Gi HODHBK', '[DEVELOPMENT] Ma Gi - Ed KDOTDB'), + (0xec51d60b4e0c0bf7e6a95833d3fa27ce2ef943aa, 'hot', 'MHD'), + (0xec6272ec10f39123612d4868ceb5ee95a466d2c4, 'cyber sabertooth', 'Cst'), + (0xec6bd9573ec565dd11d24bd85d702786f7e2ab33, 'PixelLandscapesAGR', 'PL'), + (0xec6c7dabd02b6bc2e5ce2c6a19c3cf09141ed809, 'Merciless Mercenaries', 'MM'), + (0xec72e5475e7bdd322faed3a90619fcd8c7b7949d, 'BAFNFT', 'BAF721'), + (0xec75830219ffa476cfbaa81c554cdd885c5c7241, 'Hello my META name is', 'HMMNI'), + (0xec75c054b1cbdef424ab3e8b255860f6c2eb2a5d, 'NEKODress', 'DCL-NEKODRSS'), + (0xec79f3602bdcf1623096f7db7c1ea195f6c45a85, 'Fidem NFT Club', 'FNC'), + (0xec854d782ec9c3895cdf5cb6e02013b5e57b39c1, 'BinaryPigs', 'BP'), + (0xec94146c8d1db65d84fa722a6e0362e265a53db2, 'Wolvie Wolf Club', 'WWC'), + (0xec9edf157c5a265d85de11194bd0aecf73c971bd, 'TraderAiz', 'C'), + (0xeca4330ece02cfe4c3dfb1bebec747616ab46d98, 'Prime Mates Board Club', 'PMBC'), + (0xeca77006a5721dfe846879192d18c42d68f63315, 'cryptoFunks', 'CF'), + (0xecb2e5f79bdd5d90916f70922f8c0d233f815a0a, 'GOBT Voucher_T', 'GOBTC'), + (0xecb6a1accba62936f6579bf341fdd142831a0ea9, 'Stakes NFTs', 'STKNFT'), + (0xecbd62ef441cde434a35276c2d17499ec718b1b3, 'Freeples', 'FRPL'), + (0xecc6c9d80908d0d87ab239fb35ce86324e566843, 'MutantApePixelParty', 'MAPP'), + (0xecc8256bca3dd3a1312eb81a4b1262de6e4de80c, 'Web3 Skills Clones', 'W3SC'), + (0xecca5f7add0ff33e417ff02114f7e3a648b2db71, 'Creamon', 'CRM'), + (0xecd0786370d05b5e8b06effb2a90f09d9e6c3cb1, 'Devil Hoodie Collection', 'DHC'), + (0xecd093ed38449d8d64bb015d97072bdcaa594832, 'Runnies', 'RUNNY'), + (0xecd178cac515aa8356e6c62272a50e2ce5e3c747, 'GEN-B11', 'GEN-B11'), + (0xecd777421f11d5faa822655e1faa8f10048a8b52, 'Pengy the Penguin', 'PTPNFT'), + (0xecd963ca84f8c935db8aa09651d9477934c98a9a, 'weewwewee', 'COS'), + (0xece877b30cf8f46c852b87ec869a1382c61ad301, 'ManifestoPages', 'MFP'), + (0xece964c45bee634660fa063188b14c318c8d97e2, 'Dusty Old Body Bones', 'DCL-DSTYOLDBDYBNS'), + (0xecedbbc970221bdbb3f603a0bd7336f6a1b8d748, 'YoshikiYamazumi', 'YY'), + (0xed0362ab874f0b3114dfdd6fb59a91238862847b, 'MixGirlsPixel', 'MGP'), + (0xed0c09e68f9e5b437b9735788794ef576a4636f7, 'Dalgona Candy', 'KNDY'), + (0xed0d2b4073940e84e0af950bc6d072e414600f41, 'Generative Constellations', 'GeCo'), + (0xed0e7f7e55469fee7f80fd0e6ab7c0d8ee92edf8, 'SKULLTONS OfficiaI', 'SKU'), + (0xed0f513b78b2f5f8dfc7088659c31d8640c286a0, 'Girls Love Peace', 'GLP'), + (0xed13960c0ab4ff79bf1cd2e8991fde94f60290b7, 'Genesis DSO', 'GDSO'), + (0xed15e4042d27ae5b5445995138caa20fbf1d9156, 'Bulls On The Block', 'DCL-BLLSONTHBLCK'), + (0xed169209e9edb080edc5af326869d44988170e02, 'Banners (for Adventurers)', 'BNNRS'), + (0xed20ad96078c812763149bf891d3b07419e0bf55, 'EMONK', 'EMONK'), + (0xed22f687f6fd26368a4e627921368e80d1f8d791, 'OracularSnowMan', 'OS'), + (0xed23f79044a4bc8c250a7bf71960d6066eca724f, 'CatJam', 'XRJJ'), + (0xed2482e5ce4122e508fafd00ea15fa58420bf103, 'ZeEthbra', 'DCL-ZETHBR'), + (0xed253733a7a4bf8bdbaa5579c8a9829862255485, 'Sushi-Hime', 'SHIME'), + (0xed2b4e15eee1f81a7db35283bc5a02b88da37085, 'The Weedtardz Syndicate', 'SATIVIAN'), + (0xed2e8fa6afe1bd743e17b46eadce69916e32a94e, 'Invisible Collection Genesis', 'DCL-INVSBLCLLCTNGNSS'), + (0xed39ad2dc32d8a7afa6506143a5fa9cc8aa4dd02, 'ThirtyThreeFifty', 'TTF'), + (0xed3b2b6936791bb6a24c1aa9bab54281387a82dd, 'NFC', 'NFC'), + (0xed4bae937cafa7a74ca07261e4e471a2dd9dbbc2, 'FDS Avatar', 'Avatar'), + (0xed5dd603253b5c2548df806ef9d8d4ae84f9473f, 'Zizola-NFT', 'Z'), + (0xed6039a77baebbf4f6c0e49d31f586df8b0940eb, 'Whales Life NFT', 'WHALE'), + (0xed702ac4eb955c7298f39bf53a6100da40da4c0c, 'WeenieBabies', 'WB'), + (0xed720af2cf746fb4f54156263fba791a442eae3a, 'MART', 'MAR'), + (0xed74c438b0bb266ee337d4bed7fcc09d4c04842d, 'Ibex the GOAT', 'BBTGT'), + (0xed7ff1c57dbc68b0e161e6f9c30b6ea2714ded7c, 'Market-LP', 'Market-LP'), + (0xed902de3fba7e1cba0d00bc3e46b3a19d4293714, 'Buddha Labs', 'BUDDHA'), + (0xed957a46feb1c4eae87bba56430480fea506f046, 'NZAD NFT', 'NZAD'), + (0xed964c7245a5f8b5710a322ee7c6ea08afa5d2c1, 'Renaissance King by René Mäkelä', 'DCL-RNSSNCKNGBYRNÉMÄKLÄ'), + (0xed9da2d6756fb163744e92d4ac9671a3180ce37a, 'BlackArks-GhostOfTheUniverse', 'xB4c'), + (0xeda3fc73d47b4aea61a37e8b5167e610ee4b1128, 'GEN-T08', 'GEN-T08'), + (0xeda5c3003b63ff75a9bea8476822bfa6920d7f59, 'Octopus Pirate Head', 'DCL-OCTPSPRTHD'), + (0xeda6b3b34efed1b25ac8c213257f1b5ef55ba1ec, 'Circle Geometry', 'CG'), + (0xedab1c6288fa738574a98a7db5720135b3621e57, 'SpanishMuseum Glasses', 'DCL-SPNSHMSMGLSSS'), + (0xedb8922bb7a73336b69b263f7694f7fae0055378, 'DPU GRADUATION 2022', 'DPU22'), + (0xedb9fb0fe0197949c4818624aa5daf935768bb15, 'Bankless Odyssey', 'ODY'), + (0xedbb1970cf7ac72b7123d44a42133275ee94c211, '2020s Poster', 'SWEDC'), + (0xedc180c395a56929865a7c932df3d6fcb32c19fc, 'JGNFT19', 'JGNFT19'), + (0xedd38d41813df080223c943b217d87732dd881b5, 'TiredSloth', 'TS'), + (0xeddd1d6ca7f804c190cb8c01924846696c2ab097, 'Hungry Hood Lions', 'C'), + (0xede298d988e209da05d1bb623f05aac56250e28d, 'SPQU Of Uniwarp', 'SPQU'), + (0xede30df507576e461cc2cb3ada75bf9b22dc778d, 'XRCouture', 'XRCT'), + (0xedee160aa8b5367eff8bc06de95a68a1d1e0f60b, 'PBJP', 'NLN'), + (0xedffc9355873739f532d36729e6b276c6ae93353, 'My Collection 0J7TVg8cx2IDHmYdVs6N', 'my-collection-0j7tvg8cx2idhmydvs6n'), + (0xee08520c5205c69214cae9affcd443208889798b, 'Fast Food Restaurants', 'FFREST'), + (0xee0b70648722b1561bb618b28e6fca2fec56fbdc, 'RastaShades', 'DCL-RSTSHDS'), + (0xee0d6f9ef399ca845858235d80ac3e80bd00cf23, 'TGMC SHOES', 'DCL-TGMCSHOES'), + (0xee0f71bf3116e17973f9e201242a6b62e7225074, '3_cubist_figures', 'NFT'), + (0xee0f91c9e95781f985e8306ce5c4d0f080062366, 'METACITZN', 'METACITZN'), + (0xee10dbec5d512bf3eb45e3c71137fd6fb749c782, 'Zombie World', 'ZW'), + (0xee18da9d91be1b4df651d895ccad229c520a7872, 'DEFYGenesisMask', 'DGM'), + (0xee1ebcf81b5d3277adca38cba0b8d8868897b1c1, 'DajoCat', 'DJC'), + (0xee2079cbd712203b9c69c9850c75888c4e11aa3b, 'Thenilavan Apple', '62062a9041a18f4601254816'), + (0xee22b4a200924c22f3aa18e989c93fc314ffdfff, 'Farmpop', 'SWEDC'), + (0xee2c2d26a7e7a6a6b0944d09d5005182c53055e1, 'CryptoPunks Lab Polygon', 'CryptoPunks'), + (0xee37b43221375b93e3b3d60092210f681e68aeb2, 'BalthazarManagedAsset', 'BGGBMA'), + (0xee49d692de110db8f627ca6e6cd6a895a32c64fb, 'LetsPlay', 'EPL'), + (0xee4a92292a01313f0981087df041c9a5eda2f0af, 'Vox inWonderLand', 'VoxinWonderLand'), + (0xee4f6e210b940ed6ab7cfcdd0b8588eadd1951e9, 'bored_pise', 'BP'), + (0xee5d848c6d5bf44681610154f733da2ea3e37cf6, 'Billionaire Zombies Club - Skeleton Keys', 'BZC-SK'), + (0xee61790674f7aa5877be6f6bb35ef9bda732378e, 'Butler and Rose', 'Rose'), + (0xee67a1cf8a9714edae32f4d603d430e6ed19b9fe, 'PXLSHT', 'PXLSHT'), + (0xee6f4b2f5e6d8a37213578ad3cc615b858346417, 'Little Green Men', 'LittleG'), + (0xee7402705a7c83080441af0a805b83b8c1dba2fd, 'HazyGallery', 'C'), + (0xee740d2871008a0620b13dbd4406624ca82f288c, 'Sophia — the Robot', 'DCL-SPH—THRBT'), + (0xee7694c34917ff950d46209c4495124e055f7ab7, 'FantasticLand 2022-All For One', 'DCL-FNTSTCLND2022-ALLFRON'), + (0xee77b0a104cd6db1bbbcfa2f13076f234647c017, 'Skeleton Parts', 'DCL-SKLTNPRTS'), + (0xee8648feec071659786d57b58e9102aa248a0f9c, 'Generation #9', 'G#'), + (0xee86654ba4519a428f9889c188f396e6798d810f, 'Babies Ape Social Club', 'BASC'), + (0xee8ae4c668edd43b34b98934d6d2ff82e41e6488, 'RTFKT x Highsnobiety "Paris"', 'DCL-RTFKTXHGHSNBTY"PRS"'), + (0xee8bfb35af884783b66b51da506af1369e1a8c6e, 'MN Genesis', 'MNG'), + (0xee9524a89fa3f01bd0e2baaa5e6975f71c5cd487, 'Bellevue, WA Silver Edition', 'SWEDC'), + (0xeea554c38e07c95dc5a3c46f53f72c08744b9693, 'StoneyEye Private Collection', 'DCL-STNYEYPRVTCLLCTN'), + (0xeebb562aeb5599cab132d0955a5b8a7ada79f9a2, 'Invisible Pets NFT Official', 'Pets'), + (0xeebdcd90f2418831678e21807e55a6fc5998d187, 'ViceDragon', 'VD'), + (0xeebe76dfed8d935c227ab8e7cd48db6a9f36df0b, 'Pixel Prox DAO', 'DPXP'), + (0xeec4854713398b62b22fce1f4550fa45f8d426fc, 'The Blind Club OfficiaI', 'THE'), + (0xeecb0e479d7904af55e619d86e9c1eb270f9f2e9, 'Kudasai Hat', 'KudasaiHat'), + (0xeeccb011dec1e8b4c7379da70d7f47fae574412e, 'HalfSucker', 'HSNFT'), + (0xeecf003bc52574cbc8630ca882973688fdd28357, 'WIFU', 'DCL-WIFU'), + (0xeed0d3473381d1f19f09d206dd5673f0369f8e61, 'PandaOfBorderlands', 'POB'), + (0xeed8e80b8388406c81cdc5e574cf85920a967661, 'contractChange', 'C'), + (0xeedf7c6a8a6a0f022a6df6a0c0c61834f7636bc7, 'the-finger-nft?ref=0xF18FC10053679ac67ee40e748E88473E167D714B', 'THE'), + (0xeedfce7ddddaa7d14ac38c38f56f50e9e5d5c88d, 'The Voyagers', 'TV'), + (0xeef501d813a2bac042f56652f249b3160afd6563, 'ApeDoodles', 'AD'), + (0xef0890e5d8a13c9028bd5182e196e061d25b3992, 'Portion - Digital Space', 'DCL-PRTN-DGTLSPC'), + (0xef0cbf8c5503e7a59733880ff96c60e316790e7f, 'Baby Lander Apes', 'BLA'), + (0xef0fba742c5d32fa0e2eee0f3d4bdc9fe207db2b, 'KoiPet', 'KPT'), + (0xef1385e1ebf87d00e1def8704cc9b90c45671449, 'China Punkz', 'CP'), + (0xef15ace56525df4dfb5dd6ad8823951bb1ae63eb, 'Chibungus', 'CBN'), + (0xef1a331c489e80b9d40142c156ada34c04aeb500, 'ETHDenver2022Feb15', 'ETH1'), + (0xef29a41c01aaa80b30cca65874e173db5b6d02b2, 'The Silk Road Collection', 'SRC'), + (0xef325f4960073497db06794b3baf496a2a90397e, 'TopManager.io', 'TMA'), + (0xef3268239769298241145a7603325e0efed3a0a7, 'Lazy Lions Club Official', 'LLC'), + (0xef377bb92ae295226e3307b47cf5e93ba029855f, 'SoldierKidz', 'C'), + (0xef37aff81bdd24bdbb6db885bb3a11c691777e94, 'CLAYPETS', 'CLAYPETS'), + (0xef3db07907b7de713dd0e03bd157ed5d66266781, 'Pixel Punks Collections', 'PPCT'), + (0xef449e3c225752e3b26dbe1ab62f48a29ef4f838, 'First Discord Member', 'DISC'), + (0xef453154766505feb9dbf0a58e6990fd6eb66969, 'Mr. Crypto by Racksmafia', 'MRC'), + (0xef46926d1f7791a4c36b1b9a388c90b49b4e3be8, 'NAME', 'SYMBOL'), + (0xef47f2f0ccd96beda319da5c068374f4b0947a81, 'DoodleGang', 'DGE'), + (0xef6757fc3cbae0aac2ab3015f313da5ee8cb0f3f, 'MybitCard', 'MBIT'), + (0xef6a0312037721508a1e5df29ac469253f099c3c, 'KAHIRU', 'KAHIRU'), + (0xef783a6997ec366805cc36c3635cd947dcaa1f43, 'leaf million collection', 'LMC'), + (0xef7cccec55ef2cbe9b2749a6d870497050f70b46, 'Amuzed', 'for the contract'), + (0xef833605f1a05e19a626b3b5e90fe7841d44c7cd, 'Loot', 'LOOT'), + (0xef8347993b8cbe9482680c65b9e5f8b92e6c8966, 'WBC04 idf3 Crypto Inc. Wild Bunz Collection - Feb 2022', 'WBC04'), + (0xef85f782cc2cf9e068ad2a1c1f7f612af136737c, 'theOrcaFam', 'ORC'), + (0xef99f27bbe7ebe3e50979cfc8db8e5fa2072621b, 'NFT card release', 'Vevue'), + (0xefa0cab8c86dcf6d2b5679b48a5407741dab07cb, 'Penguins&Pancakes', 'PP'), + (0xefaa6e46c25415eb95fef576fc0a167a3c241207, 'MCP Region', 'MCPR'), + (0xefb043971c7bd3b0a90a81362fea025824e1df41, 'Vertle Beach', 'DCL-VRTLBCH'), + (0xefce58362a0890e9b69b4a7da5b5584446db39be, 'TheCryptoPuppy', 'TCP'), + (0xefd1b73f9475ea0301c58ff4f2c5584f690d20c9, 'Monsta Card', 'LGG'), + (0xefd932cf4dd1304c583820a644b1195bc2e087df, 'CryptoCelebrities NFTs', 'CCNFTS'), + (0xefde0fbed62f1bc78feaa01bf4397b145dfca20c, 'Crypto Chicken Run', 'CCR'), + (0xefe3c2aa0e3ee405d4d5bc729b197df2a04390aa, 'NFTLyrics PunchlineNFT', 'Punchline'), + (0xefe47860514d6abbb58a8ff09d9c597f009d3ff1, 'AvantGarde Launch', 'DCL-AVNTGRDLNCH'), + (0xefe5b39cfbee93b82c33ccac813f9896f1986321, 'HeadsByBnxn', 'HBB'), + (0xefe816afb32fd13c7081b3809c600983f8e3d29d, 'Lazy Turtle Club Collection', 'LZTCLUB'), + (0xefefba24c627ae8a7494b4306fcc067313d70291, 'Lycan Jeans Rocker Edition', 'DCL-LYCNJNSRCKREDTN'), + (0xeff6803046d2e412bfdbebcc259f811f2fb87a94, 'GenArtGrafiti', 'GAG'), + (0xf00123387acdd82d5698f1bae65b8f97b1e8d347, 'Top Dog Pink Eth Hat', 'DCL-TPDGPNKETHHT'), + (0xf0067a523fd6b7e109ca2d9d62f65c97807fd1ed, 'CRYPTOPUNKS', 'C'), + (0xf00a5a463fd90a271bb391dd2e4eee216c616f5f, 'Fox Dude', 'Fox Dude'), + (0xf01c71f75fe99201140fcd0c9939b8bab52eef86, 'Loyalty Crown', 'DCL-LYLTYCRWN'), + (0xf0254a5f9a083313576fca0907748f8425c3ce46, 'Anime Corps', 'ACN'), + (0xf02b926cdfa3a55ebad3e8d031aeffc5d28659d9, 'RAINE DROPS: LANA', 'LANA'), + (0xf03172f6b670dc8ebdea1f209b6ad5549cf05509, 'KNUMMUS', 'KNUS'), + (0xf031ac8cd63e1137b1f83e944a881a2778baf2b1, 'HYPERSLOTHS', 'HS'), + (0xf043fe23c4707b51f633b8945e51e0c03869bf06, 'HAPE GIRLS', 'HAPGIRL'), + (0xf044647af5d795a9459b7bc0bd47625d4764a222, 'Golfcraft', 'GCB'), + (0xf045bafb702bf7de54e880cab854f7cf4b4bc9bf, 'Banana Costume', 'DCL-BNNCSTM'), + (0xf0513a58150919f160053ebcaddea8c86e8f0b9f, 'KukuBear', 'KUBE'), + (0xf06f875bee860f251783bca55243862524f9b11b, 'NinjaTonikgakure', 'TNK'), + (0xf075e6e826edf6b9ece8d7b1062a2b994bcc6a58, 'BullsxBears Bulls', 'BXBS'), + (0xf07bd6c6b40ec7ae461623107a293784223e03ee, 'NTHUxCoExPanda', 'CoE-50th'), + (0xf07c79d4d8900a9d77fc3757549491d1df8df1b1, 'Dinoswap', 'DCL-DNSWP'), + (0xf07ef740c8fd314009b61068ae5a182952af0228, 'itso.art', 'itso'), + (0xf0826a8e30226de6ffd53b41d013a9188bf3cf3f, 'PrismNFT', 'PrismNFT'), + (0xf084939765ab3f56753143904fa2a167482c7c7f, 'CryptoPittiesNFT', 'CRPNFT'), + (0xf086dedf6a89e7b16145b03a6cb0c0a9979f1433, 'GHST MAI Vault', 'GMVT'), + (0xf08b6fb0a068de4a9137f51a997baffc1770d36e, 'Classic', 'TBC'), + (0xf08f2230abd180e9ae95413574620b945e524af8, 'Diamond Fangs Club', 'DCL-DMNDFNGSCLB'), + (0xf092bc6295eb30fc3b1fd02cbc29572c8a02ae70, '0xCdC44df7ba6366355bA661D4a799C83B9ac048d1', 'XCd'), + (0xf0a61294e986145ece50b344b65088985e620b6c, 'CyberPuppies', 'CP'), + (0xf0a647c8588bc447ab65567db64567d84b3f3b3c, 'Wolfi Bunny', 'WB'), + (0xf0aadf546f9196f6dd23b5ad0ca4a95a81c18e53, 'Disparate Monkey Card', 'DMC'), + (0xf0b13993a93755c9e8b98031f4b036cdb70d05e1, 'ZUBERY', 'Z'), + (0xf0b8f9a7f5edb958f0a442303c0e9f450d01e677, 'Charity Cards Club', 'CCC'), + (0xf0bc228116ac95b74a1fa9c41be7b4d81b8d9579, 'iii', 'ig'), + (0xf0bebcd82f7a6fe7ab3a2f1a672301bc0ad86824, 'Sobriety Squad Token for 9 MONTHS of Sobriety', 'SBR9Mon'), + (0xf0c1e2d84f8e02b815076c7318055acaf782731c, 'PictoPus', 'PP'), + (0xf0c3b5571f2b8c90603c51b0952217cc1a0d63c9, 'Meta Lion Kingdom NFT', 'MET'), + (0xf0cf827ee7c8c1144abbf35b74adb1b7782260e8, 'RENOVI', 'RNVI'), + (0xf0d4c4930efe39c18104c57eb90ad7fdc11e3afe, 'Feedback, the little Crypto Bot Promo', 'FBP'), + (0xf0d6b5c90fcee1b6c6faa1eaf14f0b7452268124, 'Northern Sleepy Pack', 'NSP'), + (0xf0d9a21e7a76e183da6614f06e6a29fe7527f457, 'StoriedApesPixels', 'SAP'), + (0xf0ddeef5c3cd5f1029546f5c355c56681abb18bb, 'DaDai Space Rescue', 'DADAI'), + (0xf0de2c1978ab935d027aeb7ff5fe53b1f9d3a162, 'Dwarfies Megaverse', 'Dwarfie'), + (0xf0e2e8f666b62f372153eb6a0c3be0a79921459e, '20220321028', '20220321028'), + (0xf0e6004040c0e4833067249070c3ff0b8a7eef82, 'Gotchi', 'GOTCHI'), + (0xf0ec60f4a7df52cd3e4565aec77bcb6feb7301f7, 'Altcoin Radio Walkman', 'DCL-ALTCNRDWLKMN'), + (0xf0ef8c466556f8db0600b03ff024e95ebc6a4612, 'DudeBoredApes', 'DBAS1'), + (0xf0f4f6536a8ff4c5f26e99d671727f71e7a7cca0, 'Loot', 'LOOT'), + (0xf0f53a35aa4f1868fe3ccceb18a1902c41fddd4b, 'Polypixel Clan', 'PPC'), + (0xf0f5f898d5366b22ad4978cf0e08bd8a1135e78a, 't234ERC721', 't234ERC721'), + (0xf0fd0a2881555c7c25fc699f61f5c03c9da09c81, 'Cyber PIRATE SKULL Droid K1Z9', 'DCL-CYBRPIRATESKULLDRDK1Z9'), + (0xf0ffdff9a1d943dcf37e69bfba55c3a06f544a59, 'Phantoms NFT', 'PHANTOMS'), + (0xf10350f784bb08bec17272d236a179599b80d5b4, 'Ins3.finance Capital Token', 'iNFT'), + (0xf10adfad410f032c0122ce5cb7adeb81c6a17c55, 'Visor-X // FBRN', 'DCL-VSR-X//FBRN'), + (0xf1100619fe373ee8c5a64b83a1f2583742be49d1, 'Diamond', 'DMD'), + (0xf1115c14bfff2e2c62e38ea134bb164ca6a178fe, 'B-Verse Advertising', 'DCL-B-VRSADVRTSNG'), + (0xf1140e68d8fdff5f45175f7f7e2e820d577a27e9, 'SPACE NERD SOCIETY', 'SNS'), + (0xf116e1f122e285548610f8fb0acb2745b1d13b9a, 'NinjaTonikgakure', 'TNK'), + (0xf12031f78e34bd1a93d0c4f996dfe77e9e058f69, 'ddd', 'ddddd'), + (0xf121b6e1c85b35995a4625a62ba94443090ad9f2, 'Bears Kingdom NFT', 'BKN'), + (0xf124806adcf861dbc0588fba51af192d36c58a50, 'Kansas City, KS Silver Edition', 'SWEDC'), + (0xf1404b8cac0cbeb27908ca9945d21a3e9e251733, 'Crypto Greeks', 'CG'), + (0xf144bd303f4f5c42452ce99285a1b09d97bdc575, 'te''resa pieceofme airdrop', 'TPA'), + (0xf1483f042614105cb943d3dd67157256cd003028, 'Xmas-2021', 'DCL-XMS-2021'), + (0xf14934b5203609c4dfca5691272e68c43e68a00f, 'Rhuan Santos | Printed Editions', 'RHU'), + (0xf15d7b54367ae402d84a959fcdc7c1d3b7cb1b40, 'Rajini NFTs', 'RajiniNFT'), + (0xf169bd68ed72b2fdc3c9234833197171aa000580, 'CivTrade Positions NFT', 'CIVNFT'), + (0xf16a0a089cd520b1723ebc15a811f13809b6e3ce, 'DT Guild Nft', 'DT Guild Nft'), + (0xf16f927455f1327d8e79a970636877b38af8becb, 'Franky', 'F'), + (0xf16ff41128b298304b761b49c1c56580972ada32, 'DG Accessories', 'DCL-DGACCSSRS'), + (0xf174491ce81498d59550c079c20495bc41ce5c19, 'Skull Patrol Genesis', 'SPG'), + (0xf17eeb13bb8ea110bfd7956b619a0a51861b98b7, 'Llama Empire', 'LA'), + (0xf1829b968e0b56c49eb39ab87d045db31546cac6, 'Tharani Tharan', '6232e4b2a1f41f7f96c39dc4'), + (0xf197d30bc464f2e97aae9e37861a4bf2a0ea5e14, 'MrGiraffe', 'MRG'), + (0xf19c986ebb664cc1287c060f5394170e997fae8f, 'Bad Punk 666', 'P666'), + (0xf19df25c669e8cfe0ef842a3d172c0d1b5546fca, 'sloth', 'SLO'), + (0xf1a0b1590b45f2494f9aa780ddd894d096edb129, 'Little Rock, AR Pop Art Edition', 'SWEDC'), + (0xf1a6c704daf52763f5237b32d959b692ba6c465c, 'Bad Gorilla Gangster', 'BGG'), + (0xf1a82e931c58e521acffe3fea83133d53ce09e17, 'Sketchy Animal Kingdom Badger', 'SAKB'), + (0xf1b47808166711f89987d768bbb8c8a23143d6c5, 'Azuki Expand', 'AEX'), + (0xf1b981cc934e508b9f52b8c9378c999a0a153e35, 'OnChainPanda', 'OCP'), + (0xf1be3be4c74822e1762eb7258e2636501391bfc7, 'BigWigs', 'BIGW'), + (0xf1bf6c5d3cd9ea3170e6cf8256d133aa56347ac9, 'Screamer Society Official', 'SSO'), + (0xf1c908285245fedc4f0dcee0e5b0d78bdfb055e4, 'The Dita Collection', 'The'), + (0xf1dcc8e1c1a302c27098f581176184bdb01a58e3, 'Generation #20', 'G#'), + (0xf1de3b793e3c903b3daa49eda1c68c65f896c6e6, 'Phantom Frens', 'PFNFT'), + (0xf1e0a508fa5d243423f7f36c717c8ee0d3b6caef, 'mimi', 'mimi'), + (0xf1e49924744e2a2a7b5556f10f2caef25f2a88ab, '55593939', 'C'), + (0xf1e58b430474eca3f55f4b5a0450ce8d87233363, 'Denver, CO Pop Art Edition', 'SWEDC'), + (0xf1ea02228d9c9a53272fba32663723ee35a105ce, 'Party Pumpkins', 'PRTYP'), + (0xf1ec64da82847bc0511c23d16794bc7e1683731f, 'RTFKT AIRDROP 1', 'DCL-RTFKTAIRDROP1'), + (0xf1edeb12d0f2b2f9d12222d1c79aed6498485194, 'MicroMachineWarBots', 'MMWarBot'), + (0xf1f93ce4566e0704708e2479f8fa2bfea904d138, 'Hallucination Heads', 'HALLUHEADS'), + (0xf1fb97d02fa3928802ec081bd1ca939278529672, 'Celsius X Wrapped ETH MAI Vault', 'cxWEMVT'), + (0xf1ffd742e4c7712628ee55479e568a3342b2ba58, 'Poly Toadz', 'PTDZ'), + (0xf20106574cad9ff95938c2416d3c6a332e3ad243, 'Monster Clown', 'DCL-MNSTRCLWN'), + (0xf202914c44abc45cb99be16fff8f96fcacd56c87, 'Vox Boards NFT', 'DCL-VXBRDSNFT'), + (0xf20890b7798f93bc929bceff69e954c9dd26b1fe, 'JDOTF', 'DCL-JDOTF'), + (0xf20b7a05a5360db9d81a701c348a1ffe6a9327ae, 'Mini Supers Polygon Official', 'MINISUPERS'), + (0xf20c58cf8fbe9a605a9d741a5cbdf8d68666e43f, 'Red Carpet Turtles', 'RCT'), + (0xf20efabf65cdd7834960dae43955dc831448f86a, 'Chainstarters NFT Club', 'CSNC'), + (0xf20f953e838ef31a34034968cc3e411c98ab6631, 'LettuceHeadzClub', 'LH'), + (0xf20fc00c646c501ae9a8e10ffc7be52ca04d3a2b, 'The Backpacker', 'TBP'), + (0xf213000d809e13dbb3e43bd098c276991a277b91, 'Uniqly Christmas - Degen Gift', 'DCL-UNQLYCHRSTMS-DGNGFT'), + (0xf21e834af69638416608ac05db7588db19b4034e, 'The Chinese One', 'C'), + (0xf22be3c03ed3177216df994f9b89578e82bcb8ff, 'UniqlyChristmas', 'UniqXmas'), + (0xf22d5663ef30a283326f25512bf19a02bf5eefc9, 'Camouflage Halo', 'DCL-CMFLGHL'), + (0xf22f436734a4dd0b1647ea4ccb2b83189db6a6ce, 'ewweewe123132', 'Meta Triads'), + (0xf24334cb0cbab507cc2201ad58324fa9960a790a, 'KRS', 'KRS'), + (0xf2441a7c5b75d9903c10f2345980e0f4e365e699, 'The Doge Kennel Club', 'TDKC'), + (0xf2485f3c975969a5c5e4e25604205b106d91afa8, 'Nuke Bunny', 'NBRC'), + (0xf24897f2e1668d9d2ac84d260bb5155672166407, 'Next-Gen Integra', 'NGI'), + (0xf24d41b633387b304e4f73e5ec42527e97b3c4e8, 'GEN-B00', 'GEN-B00'), + (0xf2555550f28f65023f40166608a0cb62b86c2052, 'circlesrectangles', 'CRS'), + (0xf25952a38011c446964c6dbee591545c1593cbf4, 'CLONE X - X TAKASHI MURAKAMI', 'CLONEX'), + (0xf25f31cb258bec9be5b85fd79806b86997e6f3dc, 'Karma', 'Karma'), + (0xf261be49539d07b07c15a73509f23bf10fd62ee0, 'Fake Contract', 'FAKE'), + (0xf268ca05ae0f0f7bbd6896a9576a6f741f0735d3, 'Supernerds', 'Supern'), + (0xf2703a1d27f0a01011777cb072fbf717db35e4dc, 'Crazy Fruitis NFTs', 'CFNFT'), + (0xf275b61d065de00c538a8fff194fcddf4a515f8b, 'Poopies Polygon', 'POOP'), + (0xf27be59a3ff16fa1c7071cc1aa8dd3fc97379b84, 'Pixel Ape Social Club (GEN 03)', 'PASCGEN03'), + (0xf27c24af06c033ef93d22ac5582ff8b51ab4f21c, 'NoobieZombiesGang', 'NZG'), + (0xf27e800e8ff740b8e5b67859cb4c0d9b7d8ee937, 'TIKSTER', 'TIK'), + (0xf28068dbf56de0fcb153fc06eaa3adaaaabe7934, 'Tugo contract', 'PAHN'), + (0xf28aa84e93bc58a18f884eef8a36adb826cff6e5, 'Frawwgies', 'FRAWG'), + (0xf28feac548f106eeb55f069c1b19df9787f1947c, 'Hater Slayer', 'DCL-HTRSLYR'), + (0xf2901d64eca849f11be9cf1f8ba7f2b1efe30377, 'Cryptospacefleet', 'CSF'), + (0xf290e819cc4b0f13eb2ad2c80dc317f93c5710a9, 'No War in Ukraine and on Planet', 'NOWARINU'), + (0xf29135d49d423bd7175d1d4c12c76c02367cf3b5, 'Foxyland', 'FL'), + (0xf297a6f3e0f3d0ee3bb060d9d304a29b04ce42f4, 'RhinoZ', 'RZ'), + (0xf297ba3e1c8accd0d3e0a7f1511b3f6e8d9b7baf, 'Eye see you with love', 'ESYWL'), + (0xf297beca3d72144374b45ea9a980db555dca4671, 'Black Label Wearables', 'DCL-BLCKLBLWRBLS'), + (0xf297f8970ef3dadb3beb6de78b135debaad3a626, 'DragonVerse Spells', 'DGVSPL'), + (0xf29a25f4c9edee16042ea71ec1daa1dbcc45e5b5, 'The Jelly Genesis Collection', 'JELLY'), + (0xf29fd40f82bbb288e1d8064c452fcb0962c9225e, 'David Hobbs', 'SWEDC'), + (0xf2acd4de63b9d8365100ca7291dc3e045b447bf9, 'Cool Quokkas', 'CQ'), + (0xf2af460449087bb7bd87780db9ae5d88db33d990, 'CryptoPsyKitties', 'CryptoPsyKitties'), + (0xf2b098fd6e7553034702583f40cba0d370f1e849, 'Elfgameinvitation', 'EGI'), + (0xf2b55ac9da325cfd4601910a6c39f7ffeb4aa65b, 'The Anglerfish Society', 'AS'), + (0xf2bf9a4679b31b9d0ad17fb3118af32f67b22f95, 'Out of Fries', 'SWEDC'), + (0xf2bfa3b44fd1918a5fd58337a16e8972488de882, 'Goated Animals', 'GA'), + (0xf2c1d55c40c127c10bbfecd17edbfe797e3d6338, 'CloudyHumans', 'CH'), + (0xf2c2a8900079871d6b01c08e4fa2901779308a06, 'fMetacat', 'Metacats'), + (0xf2c87e2dbdde64b6d46204f8048029fa93b9f9d7, 'Crypto_Gent Accessories', 'DCL-CRYPT_GNTACCSSRS'), + (0xf2d95e8382ad9081868eba2089540ae6fd8a34e6, 'Mutated WowDalmatians', 'MWD'), + (0xf2dd2a367ef219d2176a311c9f4a94b5d234f5a6, 'Clan Pigeons NFT', 'CPN'), + (0xf2f143b5973aac67beb01f84f0b6e89694b5b060, 'MysteryBox', 'MTIX'), + (0xf302f117907bd2df0b27c9ac69a26321353fd9f0, 'MaddBonez', 'MBMS'), + (0xf30f12b39fcf13f3735c4b688a25eb0796eeec1f, 'HYDRAVERSE', 'HRV'), + (0xf30ffbefbfedc5a60a50fa31e9a473eb75e3e629, 'BlogFrog Collection', 'BFC'), + (0xf312df26101fa2eaa6f8c82f822eb86b5bfb86c8, 'New Col', 'NCL'), + (0xf314c4d162112112a2ce52818f92ebbcdc1ed8ee, 'NFSpace Alien Token', 'NFSAT'), + (0xf3162762fdc1abb0317193516f72a4a73cbfe8c8, 'Crypto Family Girls', 'CFG'), + (0xf32cefb83d0f91610a441356701c9547fa5031a7, 'MolaNFT721', 'MNFTS'), + (0xf32cf42f54c611072137d712683671c8a6b2aa6f, 'EXIPTLD', 'EXIPT'), + (0xf32d1e84a94da85031c74fa64a44e033f84ee18c, 'Ruggles', 'RUG'), + (0xf336451e30bee2cbdd1df72ce0fb6cd68eee1159, 'Los Muertos', 'LosMuerts'), + (0xf33699e7917cadd75c03e7681fba47ed990a8ca7, 'Classic', 'CLS'), + (0xf33ba004e202c81a17d3d5a98c23994abd5a02b2, '[DEVELOPMENT] Jo Ho 516677', '[DEVELOPMENT] Jo Ho - Ed 221191'), + (0xf33e023c3d380cc587c395ecaeb62fcd628e5de2, 'The Cult DAO', 'CULD'), + (0xf343dfbc81d29918786688ae9fcb56c8e61fa687, 'HAPE PRIME Polygon', 'HAPE'), + (0xf3444b821270c6f86764c40c688dabb4e04955bc, 'Big Tiddy Goth GFs', 'GOTH'), + (0xf346ec2a2f032468a37edf87487910b2ff2bf8b8, 'SafeArt', 'SAF'), + (0xf34c85a07eb543618fe5964759a3c04a9f28336a, 'Androbo', 'ROBO'), + (0xf35b2760cc725f3fd6a77ce9f7c032cb3d2df141, 'MetaKnightHuman', 'MKH'), + (0xf3602758d4dd22f42be352c558b5e3ce647c40f9, 'AI Robot', 'ARB'), + (0xf363771505510eeebe4c4b083b5d0e5d5f30d94d, 'TheKanguruLogic', 'TKL'), + (0xf36ad95f33ce352574d18494d8a1240f1da6efb3, 'Genesis Alpixzca', 'GNPX'), + (0xf371dabf9dfbfad3ce6fa40364067c626a8f95ff, 'hhotdf', 'MHD'), + (0xf373d9c3ccb9fa9227e8eb96903f2d183d7ba7e0, 'CyberKnight', 'CyberKnight'), + (0xf37ad5432c9a306787578e2d2cda62aad64273a6, 'Neong', 'Neong'), + (0xf3841647f0aba7d7faa2fe0a8426251a38a10846, 'Polywhips', 'PW'), + (0xf3892ecb9802c4bd13a123d9d1041654583915e1, 'Crypto DragonKing', 'Pi NFT'), + (0xf396a132d3896956998a5c0747cfc42e89e1bd35, 'Wonderful World', 'LOC'), + (0xf396c11826ef66d0381aabf99a661edc9e1ceae7, 'Hyped Ape', 'HANFT'), + (0xf39db8c58131949614f039a7e45e4fbe2943b418, 'Richmond, VA Pop Art Edition', 'SWEDC'), + (0xf3a0c74913042a5e74ed6f0a08047f242ad91c80, 'Unique Agent Member NFT''s', 'UAM'), + (0xf3a17c57ebed355cd5ad57c1f8f93351e798b85f, 'Dogandme', 'Dogandme'), + (0xf3a7f5823b5f7d56be31e79a4425296dd20bfab3, 'PIXELSFRIENDS', 'PXF'), + (0xf3a87735669c4eaf54d5dfea3dadfbe1d95fb8e3, 'ChummyFinClub', 'CFC'), + (0xf3a94d6aa2cb76a5846f49afbe0ab76582bdd22c, 'Braad The Monkey', 'Braad The Monkey'), + (0xf3b19a7173537c8f57490f4e58d8d96b59872275, 'popopottt', 'popopottt'), + (0xf3b20ba42e4f32d28b96058adabc6040d24e3f03, 'Spaz Gang "OG" Steppers', 'DCL-SPZGNG"OG"STPPRS'), + (0xf3b8ceafa93bdf827aa5f9e2c740173383153f12, 'KEEKEEZ', 'KEEKEEZ'), + (0xf3b9256f014f5d28babfe78e24346991f44a77b1, 'New Stickers', 'NS'), + (0xf3b9a85af7a594f174031a8c432c7122d3af7a82, 'CryptoRPGShip', 'SHIP'), + (0xf3bed743e334b86f3de4d40f50efe6fafe7722b3, 'Royal Suits Club x DCLRealEstate', 'DCL-RYLSTSCLBXDCLRLESTT'), + (0xf3c40eae995fd276abce28787ba77eba497bd45f, 'Square Toads', 'ST'), + (0xf3c697e241f9354efb776ad52d5eae66022e4d40, 'stickmen', 'S'), + (0xf3cc64f2c36c2d04b6c1682d9d6658955a1a1ab8, 'EVOL Content', 'ECDrop1'), + (0xf3ccf0b2775618b2854789e028208c1ee3206dbd, 'Seahorse NFTs Collection', 'SEAHORSE'), + (0xf3d23ed3870be83571552399168a536ec98e890c, 'Sizziers', 'SZ'), + (0xf3dbbfd9ce483b2c31c871ca70c9097dfdf0e88d, 'Smallnaut', 'SMLNT'), + (0xf3dc59c1981f041e9953720adfe4663396acd758, 'Justinchi', 'JU$T'), + (0xf3e308ae0b0dd3feb6a039fb09cab1a2ac0164e7, 'Poly Sheeps', 'PSN'), + (0xf3e33934249f51f8737091afa070193c0b4c2a24, 'ETHicalAngels', 'ETHA'), + (0xf3e78e9ba26041b31ae05baf82a01b4ef774079a, 'Mr Olympian NFT', 'MrO'), + (0xf3eaf55ace4f68bd30af6f77f16b794a56e364b1, 'WowDalmatians', 'WD'), + (0xf3fd88cdae66c9e480a563fc9e625554afe778bc, 'TRIBE X TRIBE X TRIBE X TRIBE X TRIBE X TRIBE X TRIBE X TRIBE X TRIBE X`', 'TRIBEX'), + (0xf3fff272937c94ae20570171814aaf4d64959559, 'The Day of Doom', 'The Days'), + (0xf402f4836a21b950e33db4a8ce6e505f5887f597, 'Varicorn', 'VRC'), + (0xf4052755cccf326a6791e02ceff90e243f356f23, 'NIVEA The Value of Touch', 'NIVEA'), + (0xf407b994f05d2b2ca66534517a9c85a117db54a5, 'Capture Captains', 'Captains'), + (0xf407c7b3688a4111082ddc7727b690c2e5626204, 'ThePoodleCollection', 'PC'), + (0xf41027b86b3d3d05828ace82e301d499a5d0d2dc, 'Baby Demon', 'BabyDemon'), + (0xf41420f0e02d4cafbe3b29bd0982c5b9763d8bc7, 'Boodle Apes', 'BAPES'), + (0xf41a2f6dc2fdddcaa0897d3504a509ef50afb7ec, 'IsThatMak', 'MAK'), + (0xf42507cf270b982269244833c2987a7f4a9455f1, 'Ear Club Bingo Cards', 'EARC-BINGO-SIMPLE'), + (0xf43420e0d8a3ee42603fddfa01e49162a9397580, 'Mega Claw', 'DCL-MGCLW'), + (0xf4346a2ef916a10344a2a3c920ceb917793067fb, 'TheDarkCl0wns', 'TDC'), + (0xf4463f400ea5476acd8bbb704d14ba793ee6aca5, 'fMetacat', 'Metacats'), + (0xf44677bbf52ff785cd13165f9d150b4c8b3595d9, 'P3nksContract', 'PC'), + (0xf44ab9e0ea0c58d06fcbf50dbd112e22e3a7284e, 'Celestials', 'CELES'), + (0xf44af82964e551a3586a95e048ba4331f6e35d18, 'Koia Fraction - Rolex Submariner Date', 'SUBD'), + (0xf44dfaa6d798a23c185668d4ddad0a52b2c315a0, 'World Cup Heroes', 'WORLDCUP'), + (0xf45125dc7802dcaaf8f24cd1cf559689a6326843, 'Gaming Ape Club Genesis', 'Gaming Ape Club'), + (0xf45730e956faff50e4c9a0bed687ca5e5e5dc595, 'Fingery Club', 'Fingery'), + (0xf458452cabefe117757b0cb9afd1bff139c478bf, 'Kittiez Gone Wild', 'KGW'), + (0xf47321cfbea4353cd1aa014959a84ae2940f29cd, 'Grazia', 'GRAZIA'), + (0xf48377330620ef0310c62c4437449f8585d5fbc1, 'dAppyBears', 'DAPP'), + (0xf484380a4b7846006d0645e4f1748d7c3f215d8d, 'EMOJIS DECENTRALAND', 'DCL-EMOJISDECENTRALAND'), + (0xf487df003ca44933635625b0a31e6aeb1a64990d, 'Vikees', 'VIKEES'), + (0xf4889e4ef1b47150e382faa87f0a8fe09ba2b67c, 'Munks', 'Ṁ'), + (0xf48912eb66e423bd480a567f3c9fd35e32a29ff4, 'HYPEVISION4K', 'Hype'), + (0xf48e37562d206738bd6bdae3bc4927f003f4362e, 'Try1', 'T'), + (0xf49148b01f92cab9765677b2118f3c04bdef637d, 'Fortune Cactus Secret Club', 'FORTUNE'), + (0xf493f46b2b5834fff36dea0d2de1aa0ce0eb84e2, 'VeggiesFarm', 'VF'), + (0xf496d4c2e4b523fd290a39f4a1f0f1e685f966da, 'Orderinbox', 'OIX'), + (0xf4997ad3bb5e7b99bde363b71a6e09c2c9c11d90, 'CryptoRonins', 'RONIN'), + (0xf4a22226d623a58fc5a004610f156aec8058de12, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD02', 'MLPRC-HMB-C02'), + (0xf4a57dac3d3a4772347f813c6bf52b6286ac649e, 'FounderPass', 'FP'), + (0xf4a62b85e6009d2fe8950ac4270ebf6854752434, 'AO Trophies', 'SWEDC'), + (0xf4aa06eff036e9b6d663f528e55d17c25400a589, 'Unbearables', 'UBS'), + (0xf4adc57439c42cf1e8ea111abdc649d4bf72aed8, 'Brennen Davis “Suns in 4” V1', 'SWEDC'), + (0xf4b06d30eda0ec91c9604511d93d86314a06992b, 'MANA-DECENTRALAND EMOJI', 'DCL-MANA-DECENTRALANDEMOJI'), + (0xf4b2f8ffd3bd619237a2152b5a10047217149ad1, 'Kalart', 'NFT'), + (0xf4bf62617cb85b738052a14a3fe04f3bfd6c0888, 'IAMSOURCE "SPACEBOOT"', 'DCL-IAMSOURCE"SPACEBOOT"'), + (0xf4bf8a75c2f62f1c74dea9b5506a026692fbe091, 'Cool suits', 'DCL-CLSTS'), + (0xf4bfd693461fa87ea78c02b8924c9d1f341e848a, 'Need For Tower', 'NFT'), + (0xf4c8d62cebaf437caa2567cb7229b9cbae5ce143, 'Weird Catgirls', 'C'), + (0xf4c901e294d3ceefd47853c46fbc419492982713, 'Sacramento, CA Silver Edition', 'SWEDC'), + (0xf4de0d9e6edb681e6ec04e6037db41711de05954, 'AncientScrolls', 'ANCS'), + (0xf4e0b8ccad6a62559da6ffc59bd4bb6de22a4dda, 'Trophecase', 'TROPHECASE'), + (0xf4e44c4da40a9e5e1d91c642da6aa6c12ff1cc15, 'Tomato Rawars', 'TORWS'), + (0xf4e55dc0ddbf8d794b21e76c91e99cb8bdad830b, 'Big CAT', 'DCL-BGCAT'), + (0xf4e6e9c7993b0660b4ed2aa3e2321710b04916e7, 'Bored Ape Yacht Mining Club', 'BAYMC'), + (0xf4f3c6b24eac343ce5ccaebe5e78507691ee95e9, 'ShibaStars SupeStar Special Mints', 'SHSTRSM'), + (0xf4f957b0f2d3510330f872ca8801aa551b7dc986, 'INCLUSIVE ZOMBIES', 'IZ'), + (0xf4fa7054676601a8a8ae572f68e1dcb50e1a1841, 'Billysun', 'Blysun'), + (0xf4fa851b0aad47ded1bdd923e7e5467ea4ff2fb7, 'Dojo Fish Heads', 'DCL-DJFSHHDS'), + (0xf5058490906f22900f582e1f207e80ea10dd590a, 'DeFi Dinos NFT', 'DeFiDinosNFT'), + (0xf506f4da7414b76c48d1c37da47b3ebe04545fea, '[DEVELOPMENT] Ke Tr 396483', '[DEVELOPMENT] Ke Tr - Ed 568270'), + (0xf50b05ff6b87b549edec83c9c56e83c33d5d4d33, 'KUBOS PLANET', 'CUBE'), + (0xf50c81f0e1f9980866a9e74ac8490e8a2c98c753, 'AIOO - Pregame', 'AIOO'), + (0xf516098b1be053d7696f1a14852d7c7cd447507d, 'Bored Ape Yacht Club', 'BAYC'), + (0xf52243f8b33d67ff83a0cb0fdde51ee6d287e925, 'MV3 official nft', 'MV3'), + (0xf527031ec152922616ff75edaff3cfbf11e69a6f, 'vb', 'nnn'), + (0xf528b8d74e6a5ebec801c5129e388a711db16d3f, 'Jack Shreds - Animated “Monsters Of Metal” Card #3', 'SWEDC'), + (0xf534ddc66fb302b3d8d323c50462413b27ad305b, 'DROP 1.0', 'DROP'), + (0xf53972bdfdf673f1d632420bfd1a01b6358c3187, 'Portion x Monster Gang', 'DCL-PRTNXMNSTRGNG'), + (0xf54c23828b1191486d1c68d05e8fcf2438398597, 'Faceless Gentleman', 'NFT81'), + (0xf556faf23fc2feefa33ee6db2d1ee4c70e534513, '0xUniverse', 'PLANET'), + (0xf558d6fef6f9b53c8950add803562d8622156f6a, 'TheGiraffes', 'TG'), + (0xf55afae51e08920469fcfd05c6d1c9905370e3d1, 'KidSuper MVFW 2022', 'DCL-KDSPRMVFW2022'), + (0xf55e5e03055aaa7ee214244874f352ce479cc3a4, 'LittleTerrorsClub', 'LTC'), + (0xf56139d278481c7d2b86ab3396188f3ae69ee9fa, 'Apocalyptic Punks', 'PAP'), + (0xf56867aa4ebc059253eda1b94582f5744f0f107e, 'Otter Academy', 'OTTA'), + (0xf57009b9b654303b913e55b3b294da2c16f65fa4, 'Vegas City x Aquarium', 'DCL-VGSCTYXAQRM'), + (0xf571a5dfca3c47d57d001b6c12ca3fce31c2772c, 'My Collection Ar9LXGPllDieQkkCqLo1', 'my-collection-ar9lxgplldieqkkcqlo1'), + (0xf576ae3a5ca3fd03e0e8c2534f650d0d743e9e72, 'Marble', 'MIB'), + (0xf57e5d9586c69a7d503797835e7c0d68044f0ebb, 'Pet Dog - Brown', 'DCL-PTDG-BRWN'), + (0xf584eff55eb1bb7ccade64473f0523d64f3fda6c, 'FreedomConvoyNFT', 'FCNFT'), + (0xf58c57424ee23ed25c40f5643552d2943331bfb5, 'VscaNFT', 'VSCARNFT'), + (0xf58c7323cedb828a2b5d0af202ec265de826c794, 'GenBun: Etion', 'GENBUN-E'), + (0xf58d6814c8e3505692d41c4b585692f68a10127a, 'Snoop Dogg On it Vol 1.', 'snoop'), + (0xf591785eb7e613e9d5613c019fbd057ef0ae4bf4, 'HalfSucker', 'HSNFT'), + (0xf596ce331787a8eec172484e7e10087b8b061332, 'MineVerse', 'MNV'), + (0xf599c71b93888448adb6b59a7df584f9a123cb35, 'Generation #14', 'G#'), + (0xf5a15b0f56dd93e40dcb7b89744bee64e7058acd, 'WildcardsTokens', 'WT'), + (0xf5a2038a1d22907ce824d5dc832e13e7ba29c12c, 'Hamsters for Ukraine', 'HU'), + (0xf5a3e744526ce022ee899e110993b9bac07a0086, 'PlaNFT_HashNFT', 'PHS'), + (0xf5a54e3f9ca5007f3163b36abec5e4486889324d, 'BETNFT', 'BetNFT'), + (0xf5ac0c06bfcde79af8387a83a6101c9570a265e0, '[DEVELOPMENT] Jo Lö 711290', '[DEVELOPMENT] Jo Lö - Ed 995882'), + (0xf5b4d3ae6d1a60a2bd5a9bf7d459bf6462813ef2, 'CFD NFTs V2.0.7', 'CFD207'), + (0xf5bafa76fff3aecee1ef15f2c83fa211fbcc61da, '20220316024', '20220316024'), + (0xf5be6d6ce1040b9af56e8bc7e8196154eed84c6e, 'Washington, DC Pop Art Edition', 'SWEDC'), + (0xf5c32a543b642ece3d597a652dab3351d7b9bf89, 'Funny Panda', 'PANDA'), + (0xf5d0afa75c4565896172cd308c4af251423c1fc8, 'My Collection 6UMXmqDEJQCngdgD8cJq', 'my-collection-6umxmqdejqcngdgd8cjq'), + (0xf5d254ea618de3927ac7a25834877ad9b68dd867, 'Official Hash Cows NFT', 'NFT'), + (0xf5d66855412402951380dd5f780194d8124522bd, 'SpaceKiddos', 'SK'), + (0xf5e32000dcd5e17324abd7c55d29a8748df20315, 'Metaskins X The Holy Ones', 'DCL-MTSKNSXTHHLYONS'), + (0xf5e42806522662472182b8fd3ae73264b17471f0, 'SCNFT9', 'SCNFT9'), + (0xf5f3c645ebdc0d654a51410b5fb25f0f6a0c8b19, 'Rebel', 'RBL'), + (0xf5f8d323eb73a87cdeee76a2b16e88fd264f7e10, 'Baby Ape Manga Club', 'BAMC'), + (0xf5fd9ccfe26e0195ab58e71d3fe6f54dc405f817, 'Brainbot #66 Waazzer', 'SWEDC'), + (0xf5fe4dd3b4f19bfc44062c2dbcc1766965e90040, 'BOBO MEMBER CLUB', 'BOBO'), + (0xf6074c228bda2eff83c04a4d31f242bf053d0fa8, 'Pignoise: Pignoise Pigs - Álvaro Pig', 'PGN'), + (0xf6097cc48e7b2523e50acaac6696248f666c54fd, 'CryptoHumans', 'CH'), + (0xf60ce0d4bd4de920b8f831e97995022aaa081659, 'AdmenDAO Cap', 'AdmenDAOCap'), + (0xf60f33d2a41ce3a93ae038a2a01cd612d93910f1, '0xpansion Apes', 'OXPA'), + (0xf617df01f25723f410136c2ab63674751cf2990b, 'Metafox Golden Boss', 'DCL-MTFXGLDNBSS'), + (0xf61d27b7899d2641b02c56f4617f2d01f63f7ee5, 'Illuminated by the Eye', 'DCL-ILLMNTDBYTHEY'), + (0xf62decb7b031288dcb55728160d224828d4cd7a5, 'adidas Originals Into Bored Ape', 'ADIADIADI'), + (0xf633bafab5b8ce63cfd1c07ebca63e81f5d11063, 'BetNFT', 'BetNFT'), + (0xf63ac2e1fba53f7e0f4572ea0f0761d4d41b5270, 'Squid Royale', 'SRT'), + (0xf6400d4ae4c2a713a3c9d3049df0c1e191e8dd44, 'Grand Rapids, MI Pop Art Edition', 'SWEDC'), + (0xf641b4739c2ee6331fcb723d436d1ca78c03272d, 'Invluencer', 'INVLN'), + (0xf652ee4ff931c18be737afecf9d28b7b367d979f, 'NinjaTonikgakure', 'TNK'), + (0xf66d9216debcdffdcd1f9e344d2343378149445a, 'Sleepy Cat NFT Club', 'SCNC'), + (0xf6713a1019c0bb1735ca3ba2cb8a9fb5ee0cd705, 'Unique Ape Underground Club', 'Unique Ape Underground Club'), + (0xf67b5f34228bb434e62d9eee34b4d24125455d58, 'Origami Salad', 'NFTY'), + (0xf67d1e4d53485b86dba9df1107167cdf905ba2ae, 'Cute Cat Outfit', 'DCL-CTCTOTFT'), + (0xf67f5e817c1a1133cc1550441d175e8b25a1183c, 'Eva Wonderland', 'WL21'), + (0xf6817f7cc575aa1ade75d9fa2df90b7bda3ecda1, 'Candy Mandy', 'CM'), + (0xf6902c3e726c8fa46a46e2f8d6267473148305c8, 'Auroboros Drop for Boson', 'DCL-ARBRSDRPFRBSN'), + (0xf6906b1cf79ab14c79ddc7d763c1a517cf9968a5, 'BAL MAI Vault', 'BMVT'), + (0xf699fa85c910ec006e66a4d2db9d359dd2211f16, 'MayoPixel', 'MP'), + (0xf6a660fe9a76e94d3bcbb15ed8698600b9211e5f, 'Everai', 'Everai'), + (0xf6a695b7bed9fa655e9325514c0e213c1436cf90, 'Balloodle Catz', 'BCZ'), + (0xf6ad13bb8577eae173c9ef6d3dd3d3cb4e54aab8, 'TakoClan', 'OCTO'), + (0xf6adbc0454c55aa7ce7293311a7110439cc98ed1, 'Galaxy OAT', 'OAT'), + (0xf6b1b14e9887c64327800e25554202f09a7fc158, 'DynaStripes', 'DSS'), + (0xf6ba7727dba2a5f3abb645eee976334436e780c1, 'Festival Girl', 'DCL-FSTVLGRL'), + (0xf6bc474c1cd2a7c6b1a40ba6832bfe71f1a6cb7a, 'Nike Bored Apes', 'NIIIKKKK'), + (0xf6d8e606c862143556b342149a7fe0558c220375, 'Polygon Thunder 2021', 'DCL-PLYGNTHNDR2021'), + (0xf6e74e34df0fe057ff09c94cac3a48e1b88b5b77, 'PFPAnimals', 'PFPA'), + (0xf6e7c671ab4decaa2550528199ada87e36046e68, 'ApeWarriors', 'APEWAR'), + (0xf6e8a69da209b849f0afb519147c5105b57667e6, 'Xeon', 'XEON'), + (0xf6f0c516f8f439428f5897457288f56f9b1205de, 'SaysoonAsset', 'SA'), + (0xf6f867a5855f9e23add29e0f4c833996bc3926e4, 'IrishNiftyRams', 'INR'), + (0xf6fa6ac7fad338ab81c347dfcd74163c34a37205, 'Incognitos', 'DCL-INCGNTS'), + (0xf701f007daa54e5cc3b70a1fc306a6e80e5b41b9, 'ChipnoPunks', 'CHIP'), + (0xf702bef4bfe7d788bd2afaf32055df4ce12b6794, 'Warriors_Eagles', 'WE'), + (0xf70dfff27cec0420208e98d9ab0f234f5867ac7d, 'Bakra.com #', 'BC'), + (0xf70e9559a468a4fd49bd2b07db22d54de4b887e0, 'The Tribute Club', 'TTC'), + (0xf71043c61349ae15ce90c4a2d5d51592407c3557, 'DripPunk', 'DCL-DRPPNK'), + (0xf72035373728ab34728c57bdc5208fe37fdccb69, 'Penguins of Doom (NFT-Authenticated Autographed Hardcover)', 'PoDLTD'), + (0xf7207d13e5fcc33b3ff1636326812c9cc7b9238d, 'Moon Ape Lab Polygon', 'MAL'), + (0xf721f65ac4785724962fd3a65494a63282c1ad07, 'UrbanBoy NFT', 'UB'), + (0xf7291c1c9ffd0cc997540e0b48a01438fe4ba0b2, 'DugoutPunksRewards', 'DoPr'), + (0xf7296b3291a81ab84216ea5f6eafae962b707606, 'Larissa’s Real Signature', 'SWEDC'), + (0xf72be83a7dfcacf39d2b551436bef2660d4a32db, 'PsychicMushrooms', 'PSYMS'), + (0xf72e06ed6b967f89749df3837b7a7e76a832172a, 'Cyber Mobster: Warrior 1', 'SWEDC'), + (0xf73060f9f521621c2f4abedfad3fcbe17d68a8b8, 'NFT', 'NFT'), + (0xf73841bd6ee00efd3036a54bffc5f914ea1ef469, 'Michi_Todd in Wonderland', 'DCL-MCH_TDDNWNDRLND'), + (0xf739e2fbb5fbf4d3c6b1a3e6c4261d3b17a450e9, 'Astro Dreamerz', 'ASTRO'), + (0xf73bd3d243d529245e726efd1f6418433822614a, 'Wilderness - Gen 1 (Royal)', 'DCL-WLDRNSS-GN1(RYL)'), + (0xf74d751c72ff13d0756c56fccc7397862138e08c, 'NFT Garden', 'NFTG'), + (0xf754515a16b4f4366d32a5106431d1e68b36c930, 'apewin', 'ape'), + (0xf762b5ecc6f4fd498825face8dcd0a3a9aa5ae92, 'Boston, MA Gold Edition', 'SWEDC'), + (0xf76b67f1189b9184f357bfcf7f9fb0d9d1720e32, 'tudaBirds Virtual Game Room', 'NFTVGR'), + (0xf7700cf0dee385e6f86ed7acb287455aa139002e, 'SQUAD APE', 'SA'), + (0xf7733f9c8b22e2cd8dbd4ca9acd9666a6ab2f092, 'AO 2022 - 80s', 'DCL-AO2022-80S'), + (0xf779156cdef8787a0e74981d0875db675b15e02b, 'Inscrutable Apes Official', 'IA'), + (0xf784065a8bf10e08200c27c84acf64386899c9b2, 'Delicious Meals', 'delicious-meals'), + (0xf78cfdc1e7bfa9e125a6e69a8ba5c43b4c63864e, 'MASKED APE SQUAD', 'MAS'), + (0xf798d42995f03c3f5e775748aa1462b776b44a4e, 'dfhx', 'cnx'), + (0xf79fff3cd535bf3e5ff4f56715524aed3b12a15e, 'CryptoApes', 'cryptoapes'), + (0xf7b48257dda8206aac9acff6892f717edd2571ed, 'Meta Clique', 'MC'), + (0xf7b8557d78e2a0055ba8cebcb9926848084bc9d2, 'JarO''Cat', 'JAR'), + (0xf7ba3f18fcb0aeb56d1340be8282e634fc2cc05e, 'Schroot', 'SCHROOT'), + (0xf7ba4db84f1738241be5870e0ada9082c5cdf907, 'Kleoverse Genesis Tokens', 'KLVRS-GNS'), + (0xf7d9a0ab41ab5392f8d8ba8b6808563f68826830, 'Whitelist Ape Club', 'WAC'), + (0xf7e4ffe56d9244da2d1a3f083095ae98e52de0ac, 'Unapologetic Apes', 'UApes'), + (0xf7ea1ef8c7561223952b3ab28bde7c615df62392, 'Dreidelpop', 'SWEDC'), + (0xf7f1917d9eb8ad58644d3a27554fcb92b4f05e87, 'LuxoBvlgariNft', 'LUXO_BVLGARI_NFT'), + (0xf7f42e46f163a9334d84e122625777be61dc6457, 'ARTEM Coin Rewards: Derrick Santini', 'ARTEM'), + (0xf806ab3ac70d3f6342fb1aa1de0a857bd75cb5fb, 'MASKED_APE', 'MAS2'), + (0xf80c39699e7b4100936b49994ba6f250332f4f76, 'SillySallySealSix', 'SSSS'), + (0xf811fb0cf1088daaa50e73756acd62b5ba8873ac, 'DORKSLAYER', 'DORKSLAYER'), + (0xf814f7f68dd00d89c2b35efcb0ce90cea4e32f3d, 'Moltken', 'MOL'), + (0xf81996f167e5f1a24145e0e9a72a60a0882a97ad, 'Ancient Dinosaurs', 'AD'), + (0xf81d923511b29134cfdbcee205b9b2228e9f8e80, 'Cybernaut by NeoCyber.eth', 'DCL-CYBRNTBYNCYBR.TH'), + (0xf81fccbedbec953a7b82dc6778e62c408c9c5a2b, 'PunkOligarchs', 'PO'), + (0xf8207a7a9cc5e20955c7eada1dabf504590cb783, 'MOUSTACHIO', 'STACH'), + (0xf823a733f2463092531d62dc3e8be888afb98dfc, 'bangabganag', 'bangaga'), + (0xf825800629ff1dff1ba5607fd7fd73633d31e9d4, 'emonkesnft', 'emonkesnft'), + (0xf82cacaa23a570c0cc40fe3c436d591369b21c0c, 'GEN-L05', 'GEN-L05'), + (0xf82fd2264c6cf0f129a08ad54db335908a5fc18f, 'IRA!', 'IRA!'), + (0xf83d6de2e44a918f8bb577816e42d7c888cc11c7, 'Verse of Ghosts', 'VoG'), + (0xf83f0103083bfabcb405cc53999c2f0b21be847a, '特攻队勋章', '特攻队勋章'), + (0xf84443958f56d82957dafd788d4f76cea82a91e0, 'Gemstone Collective', 'GC'), + (0xf844c6cf361f38fc046ee895f9906a4bce1f9eb2, 'OG200', 'OG200'), + (0xf84f70b77d2edd65576db9624b62324b1e822943, '420 Fam NFT', '420FAM'), + (0xf8583c1e7455afafd109d56d9fce2716e1fa498f, 'Atlantis World: Founding Atlantean Scrolls', 'AWFAS'), + (0xf85946d001127feb508c5a7c2c340cde88155522, 'Gum Head Andy Toon Club', 'GHATC'), + (0xf85d2d6ad7446fd0f638bb891cc6f13196c3302f, 'Alienpops', 'SWEDC'), + (0xf85f2d617fc2214e3868380ffc71e6cb782a345d, 'Laser Eyes Ape Club', 'LEAC'), + (0xf86488a3e957d97ad2a33ab0553a3e239755b650, 'Digital Dachshunds', 'DDS'), + (0xf865ac6bd8d6f907d9621d8795e15d1eae76e350, 'The Invincible Ukraine Project', 'IUA'), + (0xf86da3f02ad0937509bc85535d3af62fb840fc9c, 'cryptoPixelPigs', 'CP'), + (0xf8704773e2917ff2633e3166c3b0efd8ffeede24, '10x10 GxNG', 'GxNG'), + (0xf87077739ddf0f58f6285e1c17309b2706012abe, 'HypeBeastPunks', 'HYPEBEASTPUNKS'), + (0xf870d38afdf421e4437b16f9dc5f4f64096f806d, 'Matthias Nadler', 'matnad'), + (0xf87676b0ab5f765dbe1ad0ca36126ad69212e4a8, 'Forik', 'forik'), + (0xf87a8372437c40ef9176c1b224cbe9307a617a25, 'The Last Slice', 'DCL-THLSTSLC'), + (0xf87da761b02bf5aa13c03cc1cebe7103643512e2, 'ShirokumaStudentV1', 'SKV1'), + (0xf87e1aaee072f2486fee4ab5bf18fcff55874cd4, 'Moodi Melons', 'MMC'), + (0xf88fb1715c227bb1cf8ae5f0a7e06fded51405bf, 'Photopop', 'SWEDC'), + (0xf8939bef0bd49a0297b6a180188f116fd2254df7, 'autistic apes', 'AA'), + (0xf899599a72b9c31e20d18fbc1c7136f5eb39a0b1, 'Rise Of Chickens', 'ROC'), + (0xf899b2996680e3e41d35ac92d1f6f903284c6398, 'MetaSmokers Braided Joints', 'DCL-MTSMKRSBRDDJNTS'), + (0xf899f68abe476bd68c5b223518362ec6d665eaa6, 'The Shiruto NFT', 'TSHNFT'), + (0xf8a401a73149dc6340745dfe08645ea44e47b387, 'ExpressiveJelly', 'EJ'), + (0xf8a46d79476e8d3d112477dd3183857a3de20462, 'Lazy Dragons NFT', 'LDN'), + (0xf8ae2b7b3a7d95d0396a0df559b3a007983077d2, 'WarriorMint2', 'WM2'), + (0xf8b032eb2b2765fe4eb38adaa84cd4f6f925d92d, 'Samurai Army', 'SKA'), + (0xf8c29354d656172f1fe08c3d7011b135161636b0, 'Hunt Me Down', 'DCL-HNTMDWN'), + (0xf8c999b64f33cb052ddff038acf81cca89c6d6f8, 'Bad Face Bots Official', 'BFBS'), + (0xf8cc525955ff4c1101fff903525e24e2b2ed3bc6, 'Bionic Era OfficiaI', 'BEO'), + (0xf8cdda1c50d9e76c0f42e807a81ab5f9440d20f8, 'GumHeadAndyToonClub', 'GHATC'), + (0xf8d28bc33c52a5b13f26fc39c51fccf065555c9c, 'MoonLanding', 'DOGEMOON'), + (0xf8edc2926fabfef9c7f5fa0b535bba504906d23a, 'Kidoods', 'KDD'), + (0xf8f1fdd39f14d42d39892192c2bebfb1651d8f42, 'LucKois', 'LUCKOIS'), + (0xf8fd59885d471e3ddb53c7ddb963aada5180c3ab, 'Merchnesia x Pusakata', 'MSU'), + (0xf8ffe11cc5825d9532b8c2e99bcba4f73293bfd3, 'Zeus Coin', 'ZC'), + (0xf905e803c1beff0081eb6a02e89d7bb2af327699, 'New Jeneration Angry Shibes', 'DCL-NWJNRTNANGRYSHBS'), + (0xf907a26bad5baf4365704cbb9087ee7c600448d3, 'Gangs_of_New_York', 'NFT'), + (0xf90e62858a22073f83a2ea6e8f7ffcaded1cfb5c, 'Classified ChangGang Epic Armour', 'DCL-CLSSFDCHNGGNGEPCARMR'), + (0xf90ee38ee5ffbe474f7d4c88eb58a95037b85b5c, 'LazadaLazzie Collection', 'LLT'), + (0xf911ae8dc9f01c4fca89bb7a65a7d44c798542cf, 'Komy thirdweb', 'KTW'), + (0xf916cd5dcc5d47205fbb9971860dd3c19261e51d, 'Crypto Power Girl', 'CPG'), + (0xf91a8c71a5b73b1cb09f43972a5b79eb0d7b32ad, 'Metobot Creations', 'Metobot'), + (0xf91c5c0805762fe1652cfa961c2b99aee437a9cf, 'Colorful Mask Club', 'CMC'), + (0xf92857b6dc8340ad4ce7250fe68a809283c26672, 'Blobfish Bits', 'BLOB'), + (0xf92aa73a168f3cd6fdf7f233a6d8237684231b6f, 'Itaian Club', 'ITC'), + (0xf937e76f01adeeec0fdc855b837f96add55c830f, 'Grand Rapids, MI Silver Edition', 'SWEDC'), + (0xf93997ac10ee52a08cef64cc9a75466203036842, 'NIFTY Souq', 'NS'), + (0xf93b0737b917ce93b3c6b5e930eb3587a62a583d, 'WonderBox', 'WonderBox'), + (0xf947e6a6be87294fa5f467c9dc513249a9e54ad5, 'CryptoApe Nft', 'CAN'), + (0xf94ef28cd6931ff01f61dd76890c43646d0130e3, 'Killer Goose Club', 'KGC'), + (0xf96347bcefb36e9e850890b00847648e5408e19d, 'polyMFERS', 'pMFERS'), + (0xf96adffdf0e2cb02311ed7e911a607dda99ba18e, 'GEN-H06', 'GEN-H06'), + (0xf97e90fa3ff04093b413347b2fb8528f8391e016, 'METAGOLDEN', 'DCL-METAGOLDEN'), + (0xf98ae589f3a76cba53961d4a765930cbb7687eb3, 'GEN-L04', 'GEN-L04'), + (0xf98fdb458bef6414f19b2e86c73002d6323bff15, 'Sweet Candy Apple', 'SWEDC'), + (0xf991a773a1673e9a5ab6d81cfba632caf612ab1f, 'Bapes OfficiaI', 'BAP'), + (0xf9960639eb69a0a3fd8627d4532641492bbe0e49, 'Skyverse Metaverse', 'SV'), + (0xf99d855511fd5ecc947edfc6d7620a60f02bf6ce, '2088.fun', '2088FUN'), + (0xf9a09b96b36f0836c70454f8e431fcdaa09a71e5, 'BABY_GROOT_1', 'BGNFT'), + (0xf9a4c522e327935bd1f5a338c121e14e4cc1f898, 'GFARM2 NFT 1', 'GFARM2NFT1'), + (0xf9b81c93207d70d3240ac34da1c67a018c7606e3, 'Walk Mfer', 'WM'), + (0xf9b95a817f7467effd90d9a92af35ed03d27e2a5, 'World of Elves', 'WOE'), + (0xf9bbdf9ea2c019340ed97e1fbe1ad9afb322cb40, 'Somebody once told me', 'SOTM'), + (0xf9bc733a9998f7a101ef9398839a436e7662a0a9, 'Cangala', 'CNGL'), + (0xf9bc8d7c3246ec6e2c9bbec034e7223ac08f1708, 'KAZUTO Drip Maxx Neon Nightz', 'DCL-KAZUTODRPMXXNNNGHTZ'), + (0xf9bf18cc5924a266c66460bbbe86b805b7e27471, 'BTCv2', 'BTC'), + (0xf9cad30a4f57a02a703099cae38076000685ffe3, 'Doge Planet NFT', 'DP'), + (0xf9d081bbbdf14ae4f7e38591d4e1df814cbaec22, 'Sloth Warriors', 'SlothW'), + (0xf9d48dedbdb1bc51c5c3d41879313fca144337ff, 'StonkPOol', 'STONK'), + (0xf9da0602bfafafba1f93d3b52f6724083e6a48e0, 'Little Rock, AR Silver Edition', 'SWEDC'), + (0xf9dc839e0629f04f0bb0d6c027bb7f271117dc46, 'Backwards Hat', 'DCL-BCKWRDSHT'), + (0xf9dd967be2873509505db7dd426728111a648a82, 'Kansas City, KS Pop Art Edition', 'SWEDC'), + (0xf9e64008180447834002a3415ed5f53327d8aba6, 'Edu', 'EDU'), + (0xf9e9838932a85193ada9c375b99c1efc2ad04f66, 'GalaxyCats Chapter 2 (Official)', 'GC-CH2'), + (0xf9f9fddbb8f97089b2bccea42bc8e5ad39741884, 'AlfaNFT', 'Alfa'), + (0xf9faaa8c2728e38998fc5a40b1d1916d86a52f7d, 'Mad Octopus Lambo Club', 'MOLC'), + (0xfa03512fe7b6ba32c6dd3f23ba99f307cc72b8f0, 'RazorHead Nation NFT', 'RZHN'), + (0xfa094e0c7fd0603acfa9d7b12cc51282895cb723, 'Race Giraffe', 'Race Giraffe'), + (0xfa0f52611b9e1cb4fb326ba693f601dd5c788fea, 'EMOJI SUPER MANA-SPIDER', 'DCL-EMOJISUPERMANA-SPIDER'), + (0xfa1474957006d3f46c54aca91721ecd791453b2b, 'luky devil club', 'LDC'), + (0xfa17a2751576277176627c1f525f1eda94575555, 'MCP Appliance', 'MCPA'), + (0xfa1ae3a2ee58cae2e594ebe9a0b4fe95be57b316, 'Ferrari', 'FERRARI'), + (0xfa1b58ae44c68cc4fb95e7b50d70124f4530a7a3, 'PixelTRex_v2', 'PTR'), + (0xfa21d2e1b2f4e08eae33beba42ba04ce28f39efb, 'NFTs', 'NFT'), + (0xfa21e2782f7fe3edae81e561bbad89d2a0fd2d7a, 'Eyes of Konjo', 'IKON'), + (0xfa366878a954254abc75572b41436e88dfd6e384, 'Blazin Armor - Ember Wings', 'DCL-BLZNARMR-EMBRWNGS'), + (0xfa3733e69cfba3a5fd07ef22459f89b0f01913f9, 'Crown & Wing', 'DCL-CRWN&WNG'), + (0xfa3a449fab2222bbe9c9707a549597fda3b8a2d7, 'LLD LLC - Business Card NFT', 'LLD'), + (0xfa3ce51f6a4520d729d7a6c56a61831730612f9f, 'BabyBallerWhale', 'BBW'), + (0xfa3d46a44252ce4945b2d9aa48c71bd5f747b9bd, 'MIINTMELABS PAULO RICARDO COLLECTION - HEROI MADE IN BRAZIL-CARD10', 'MLPRC-HMB-C10'), + (0xfa4bb27710156a8a685f85ed76e747c3b75b0791, 'CuriousCubsClub', 'CCC'), + (0xfa5a248453bc6bb0677ae82058fbbeac63d3dc91, 'SweetRobotsClub', 'SRC'), + (0xfa5a4697b6834b77dbe8471e8f14874281bbfeaa, 'SuperTiny NFT', 'SuperTiny'), + (0xfa7493bb083404c6a904eea38c48b4b18392941f, 'OG100', 'OG100'), + (0xfa75d37b8607eff73f9f418663b7c006c8f7449b, 'TheFutureGalaxyWarrios', 'IW'), + (0xfa7aebfda89d56027d87265cc8123ba767959483, 'Big Brain Alien Official', 'BBA'), + (0xfa7e3420e2fd73fad52fd470b4812c0629bd8dfd, '2022 Dataverse Spacecraft', 'DVSC'), + (0xfa7face65913ed960dfec0357f3d3f19a8ced6b1, 'Helix', 'HLX'), + (0xfa878f8051f38bbe09d3a3147e8fb6efefff7319, 'CryptoRPGFleet', 'FLEET'), + (0xfa8929524642c3ddbf734e1571b5537cf5e40390, 'Little Esther officiaI', 'LEO'), + (0xfa93449502d39f9af64fa28cb6bb29ffad521b80, 'Liko', 'LKO'), + (0xfa9ec173654a055cd0f07262d56110848efe7ac3, 'Hungry BAABBoons', 'HB'), + (0xfaa306a0d205c22398fb90ddad72d3259949d1c0, 'assheads phase one', 'ASSPHASEONE'), + (0xfaa35642fa8cfda7ea64121f442f1bfe3025f9e9, 'METAYUNI', 'YUN1'), + (0xfaa4cdfdf77ca3c2093bb125fc79c4be322609bb, 'Rottweiler KING', 'ROOTT'), + (0xfaa965373cf4f310589c953b0fbded618feff52d, '12 ZODIAC BIRTH DATE NFT', 'ZUENZODIAC'), + (0xfaa99e11cf1cd37660975ae7f3623114b1e1b7a6, 'Baby Shadow Fiend', 'DCL-BBYSHDWFND'), + (0xfaadc2ef7468da43bff45f3310ce071307e6585e, 'zazaza', 'za'), + (0xfaae1a13b191962d851e52039662d65e63a0f13e, 'GEN-B06', 'GEN-B06'), + (0xfaafff8ed7a921f3bc465e1a51ceb6d32a23c601, 'LazyBabes', 'LazyB'), + (0xfab70739bab17f498fb72ac245d999a28198d5ea, 'cube frens', 'cube frens'), + (0xfab9db3f6a3faacf8cacd2575964d96e53e35882, 'DeFi Drip', 'DCL-DFDRP'), + (0xfab9e7adb33e8324f577c022bc93ba83b19876e4, 'Hahhhsis -「 Necrobot 」', 'DCL-HHHHSS-「NCRBT」'), + (0xfac858109b0f36224f4e62b85c340b1bdb9a4029, 'EngagemintNFT', 'ENFT1'), + (0xfacea36e9745ae6bae38cc8b85a120fdec727f8b, 'LILHUDDY Behind The Scenes', 'SWEDC'), + (0xfad725386effa8a7a448b6623ea0dd7d2a47d496, 'MN', 'MN'), + (0xfae5a6b36e2928250cb527fb7bcecfe6ed09a0d1, 'PolyDoge Cards', 'PD♠️♥️♣️♦️'), + (0xfaf9bfc7e70b79703388900555ecce58d99cf944, 'É gol', 'EGLAR'), + (0xfafb8cce5e60e9e29c995ab06ea8668f954d54d0, 'Bored Kid Club', 'BKC'), + (0xfb01153abcecd286a714c99a8edbe45ba1b90ade, 'The Hexican', 'HX'), + (0xfb02e2651fc22a411cd4490323e915aa30fec80b, 'Unlock Protocol Feb 2022 Voting', 'KEY'), + (0xfb03a6ceb67821a5798891f15372da2a8e1060b5, 'BelugaBayLegendsOfHallo', 'BBLOH'), + (0xfb03c2aa80e31c1612247368705fd3a37f931d16, 'Crypto Bird', 'CBRD'), + (0xfb03db62ee95a4bf3e38c8d21cdc123f2165ec3f, 'Bushido, The Way of The Warrior', 'BW'), + (0xfb124079fcb41f998155f0c4856e8a391c9065d1, 'curry2974', 'curry2974'), + (0xfb1bb31edec3a567293215771ac00000516874ac, 'CryptoSteinz', 'CSZ'), + (0xfb1e7f40706ef6278589c6d76c71f81024b5cb75, 'SnarkySharkzHoodie1', 'DCL-SNRKYSHRKZHD1'), + (0xfb238d5273286e0bf6f44153a85014352cafd972, 'CBomber Character', 'CBOMBERC'), + (0xfb3308b04fababaffadd799d348f8c50abd423f8, 'META PANTHER CLUB', 'MPC'), + (0xfb438c7c0d31df12bd13de9e022b25993e08b3d2, 'Sprogs', 'SPR'), + (0xfb43a97a645c17129bcde04203ef95e83a4ab1f7, 'Brainbot #25 Yikes', 'SWEDC'), + (0xfb45ae9b4002d5de86b0ea61f1ecf3b22a6095d6, 'guys', 'YC'), + (0xfb4f4b65705664a3f5acf05ea1738a13cd223016, 'Atlantic Voyage Ape Club', 'AV'), + (0xfb5932901a153494625e2b7ed5e9fbbcc6fbf404, 'BrawlStarsNFT', 'B'), + (0xfb68395323346770ae0209b98f7d0eff3bc0fa5d, 'Pixel Ape Social Club (GEN 02)', 'PASCGEN02'), + (0xfb68a3721894f41300e51a7075427ba7c6431ee1, 'Popó Retrô', 'Prpo'), + (0xfb7390526ac9ed43469d128c5d09711ee9ac1f24, 'ShooShoo Virtual Pop Store', 'DCL-SHSHVRTLPPSTR'), + (0xfb75321d99e121a36ac3a6cd296b770b16f464a9, '1980s Poster', 'SWEDC'), + (0xfb7bbaa0c62cb64fe10c9fea4497df546b6a590c, 'Mighty Bird', 'MGHB'), + (0xfb7bede8b65dcc4a8230bb55f5552f68e9690510, 'Dunhuang Flying lady', 'DFL'), + (0xfb8096b2472579fb943a572dc2704430d4c7d75c, 'VikingGoddess', 'VIK'), + (0xfb9f59936d6c3f7b69704e6e7b57607bcb07743a, 'INNOVATE Gaming & Esports', 'IGE'), + (0xfba31b76fb1ade6ef5c2c4bf004933ac89b668d2, 'Mars Lottery Ticket', 'PLT'), + (0xfba3af5b7a87fd414f72bb6ea1f358657e5e0bd0, 'PukangBombanoolg', 'PKBN'), + (0xfba410acf9ee6edf2e695c7ccaf69f494d4cfe11, 'DigiKi', 'DCL-DGK'), + (0xfbaa98691eeddc11103d053de8e3f5a1b6f08e76, 'Wings', 'DCL-WNGS'), + (0xfbae1c49dcefa3981ec8b15446268c72880eccc5, 'BapesOfficial', 'BO'), + (0xfbb1c583fca22a4ebb87bdf397b10c133a4ff8ee, 'Badaam', 'Badaam'), + (0xfbb7f201e1d107a692e4e2621539db70a85fabd0, 'Gangsta Crypto', 'GCNFT'), + (0xfbbaff501cc32b345b63fef663c44b9427537007, 'Buffalo, NY Gold Edition', 'SWEDC'), + (0xfbc2f94880b06b99809a8c8c4af8ca60c5504942, 'Rami Kleinstein NFT', 'RK'), + (0xfbcd0b3a02efa51b25db9628a70da87606baf085, 'CRNFT', 'DCL-CRNFT'), + (0xfbcd803156a0aac98bf680e1861a8b9bfb29a2d3, 'Ninja Noun Punks', 'SHINOBI'), + (0xfbd7d324c5aa99c418cea8322fde8c0ba1d732b0, 'Cyprien.eth & julien51.eth show', 'KEY'), + (0xfbe489e731ca73256a466ba54e60f38b0074b962, 'PlayableNFTSeries1', 'PLAYNFT1'), + (0xfbe9c453954fbf170a6154b2ecc30879441f3dd9, 'Gamer Ape Player Club', 'GAPC'), + (0xfbfce45cfa6d888f10c616eaf46b62590eb107c4, 'Bakra.com #', 'BC'), + (0xfbfe5895d4144b5d60cdae03afa3740a6628b5bd, 'KrazyMoppet Doodles (Polygon)', 'KMDP'), + (0xfc0056c416530464a45e44c6e7fca263d922c6ac, 'TitanOrigins Trinket', 'TRINKET'), + (0xfc06f2fdfc4081d4f92879f0c7d7f7a02f4c6171, 'Threehe', 'THREEHE'), + (0xfc0bcfc9d9644aab499087ca8d4e8572e3173a72, 'Mad Blob Records', 'MBR'), + (0xfc1cc03c3550053f84618cf7267361b3d3010811, 'Ballz Game', 'BALLZ'), + (0xfc26a8ef948584653011235a6ffaf9097945fa24, 'GLOOPEEZ', 'GLOOP'), + (0xfc322a97f129a52b2ceac2442a3ddab5eaa610ad, 'Pepper Pups', 'PUPS'), + (0xfc352617e4868c41c15877eb2357afa37fc001d6, 'Replica Kanji Flowers Black', 'RKFB'), + (0xfc39510fe97d4ffe183a5c79c64f8f18dbe030bb, 'Ancient Skull Ya Club', 'AS'), + (0xfc3a49798aea76e12f49d5de9f1af7ab23a40471, 'Turkey Leg Rawars', 'TLRWS'), + (0xfc3ad4116eecae71253529c8b690685b1560ae74, 'BoodlesClub', 'Boodle'), + (0xfc450ec6601eb05ccf6becad26e7c6116bb51c86, 'MintMoney Beta', 'BETA'), + (0xfc486fdeff176c329f75fa885bfb56674189a4e4, 'leaf million collections', 'LMC'), + (0xfc4cfbf02a1b31d95af7c663385ad8b1a413bfbc, 'Chubby Bird', 'CB'), + (0xfc57025f5c1ac58cf387150ec4b7e5944553416f, 'Potata BFF', 'POTBFF'), + (0xfc5e4cc63ee8c9c62bac1098fe2587129268544e, 'Pro Punks', 'PNKS'), + (0xfc62a77f112551e9fd2209591ca71738155da741, 'Crypto Mages Invest Club', 'CMIC'), + (0xfc6715762903d9b52725f064407be0ff3d658791, 'MutantApeYachtClub', 'MAYC'), + (0xfc703b783f30c93a6d1b9693ae56d6fd7e62e69e, 'Smallnaut', 'SMLNT'), + (0xfc767f472e9a4168d8df1cd70a8d929f4effbb17, 'ORIGINALS', 'O'), + (0xfc7ac322c93c990016c3bac209ac6dc3341dfa73, 'AO 2022 - 90s', 'DCL-AO2022-90S'), + (0xfc8074430f7aaaaa057f781134494bac5835e7d9, 'Kool Bear Club', 'KBC'), + (0xfc80e2f668aeedec7dd04b43209271fdbc78574a, 'Simply Bear Head', 'SBH'), + (0xfc8363f86f285dcd620b8c2a5eff6b1d2374b4da, 'LuxyUniques', 'LuxyU'), + (0xfc85a83cd0f9f61b75499b4ff82f5e7100c588a2, 'alexTS', 'ads'), + (0xfc89c45a4ef5c0484fe9389f1b32a4c21f7d20aa, 'Knicks Foam Finger', 'SWEDC'), + (0xfc8c53dfb267aa8b5157b0b0225042c27abfdd07, 'BDNFT5', 'BDNFT5'), + (0xfc92a46f38b5a347ab5ea2e764390ac8bb4057f6, 'Skeleton Kings', 'BZC-K'), + (0xfc96ec2bdaae4a7f6ad850d7ff13635a8a9763dd, 'El Paso, TX Silver Edition', 'SWEDC'), + (0xfc9aa6b3eafe82f2208888d77214ea8d394ec7d5, 'BlockZillas', 'BZ'), + (0xfc9ea4b586b803d7240a4e70e718aae62dabded6, 'ViolinPixelArt', 'VLN'), + (0xfca5ba1dc3abb57cfc2e521666435ce0af54ca82, 'MuffinsNFT', 'MFFN'), + (0xfca650ad4e921130411d8cbd1d571a5462a7789a, 'Red Panda Pendants', 'RPP'), + (0xfcaaac754ee4e327af3847022177dd9ebc626c05, 'Cyborg RGB Collection', 'DCL-CYBRGRGBCLLCTN'), + (0xfcb56a3c91d339d67b6becdab771254bf48eb741, 'BigEaredApesClub', 'BEAC'), + (0xfcc0c6ccba91808625043d068e0f1a2228901ad9, 'Quantum Fighter Shoes!', 'DCL-QNTMFGHTRSHS!'), + (0xfccbd8855de4f8974739fe9101198785893ccc29, 'Rumble Rabbits', 'Rabbits'), + (0xfcd14a764591e36351fc33d34a31a0d08d855318, 'JoesBreakfastClub', 'JBC'), + (0xfcd4020541d4917ce503074df8627b6bcb4a00e7, 'HAPE MULTIVERSE', 'HPMV'), + (0xfce2a68887545f0e705d244f1697b9a3a03089bb, 'cryptoskullhead', 'C'), + (0xfce4ae589f6bc04727e29ac0a16fa594889ed8ae, 'Fully Faltoo_Majnu', 'Majnu'), + (0xfcf2ea9c8be672e3a22979dc1f2e9b8ac295babf, 'Retro Summer 2022', 'DCL-RTRSMMR2022'), + (0xfcf98acb3a1ec2434a4ef66352e199433c2da169, 'Plague-Doctor', 'DCL-PLG-DCTR'), + (0xfcf9b6e19a6aa3bf74b0dea3cc5b386209bb5f7f, 'APY Vision Trial NFT', 'TRIALNFT'), + (0xfcfa6e97f88f571a775ea758ae9722d7f43d9d10, 'CandyCat', 'CC'), + (0xfcfc650c69104990cd4411995af0b276d500b8f3, 'DoggeCreypto', 'D'), + (0xfcffb9771b5872264de59652684f018b754a06e3, 'Metaverse Forest', 'FOREST'), + (0xfd11684804daa24e9633a9fdb477ec6c6ea89c26, 'N12 Lady Punk Club', 'LP'), + (0xfd126d21b9cf4188ef032ea99041fce8644e41ec, 'aurora', 'missyou'), + (0xfd1270e98dfd11c1a80d1715339504b53730ac6a, 'Putin_Rush_To_Space', 'C'), + (0xfd12ec7ea4b381a79c78fe8b2248b4c559011ffb, 'CryptoRaiders', 'RAIDER'), + (0xfd15bd6c720c8e6530cb8c17274f8f4570c13b0e, 'Guccigrail', 'GUCCI'), + (0xfd1628820175456a292c9c0ba91428ae2b3fa245, 'IdleHero', 'IDH'), + (0xfd17e265104aa837ccb98504ce39834f0a4b6c9c, 'VeganBurgerShack', 'VBS'), + (0xfd18418c4aef8edcaff3efea4a4be2cc1cf2e580, 'Good Morning News', 'GMN'), + (0xfd1fb11a1c3ee4ae11f39dd16c5d84c443a9c692, 'Anymagik Free Wearables 34, -82', 'DCL-ANYMGKFRWRBLS34,-82'), + (0xfd219bc574d9809df8e50ce46ed301150e27716e, 'Look at my horse', 'DCL-LKTMYHRS'), + (0xfd257ddf743da7395470df9a0517a2dfbf66d156, 'DEFYGenesisMask', 'DGM'), + (0xfd2692d0e6c30a2b3a921d9d9ca2c6b960b52444, 'PuriPets.net', 'PP'), + (0xfd2aa589f52eae2e0133f048fad7544863ee0842, 'MyToken', 'MTK'), + (0xfd368e129e0b2638a8eac2533cb0d082436876ba, 'Famous Mansion (Miami)', 'FAME TEST'), + (0xfd3d2260d99a842bfdd62381b98ee802d231bc40, 'ffffff', 'C'), + (0xfd4222a7e3591a36a9caa0a8ef021c5131712589, 'NFT Panama Presents', 'DCL-NFTPNMPRSNTS'), + (0xfd4b837086c601a0d1edb38e5f98290c4f5cc867, 'NaughtySkullPunks', 'NSP'), + (0xfd4f6afa4da383b6ff4af8f5d6554b8e70c94760, 'Skulloids', 'SKULLOIDS'), + (0xfd692747620aedae135fb1c426a140ab372e4bbe, 'WarDawgz', 'C'), + (0xfd72b32f6d581a81336b5fd4c4504b8afdbb54df, 'People Of Artificial Community', 'POAC'), + (0xfd7b93d6833099dce1f3281729161d3726806cc0, 'BicolorApeGeneration', 'BAG'), + (0xfd82260f90bc332b257fb1fe31ac006c60dd0285, 'Ci Tian Tang', 'CTT'), + (0xfd859a60f9506e6a06963b772f304c417cfc076a, 'CROMULON Festival / Rave Gear', 'DCL-CROMULONFSTVL/RVGR'), + (0xfd9026d984f8785767c2e00cd415c8c9f754305b, '[DEVELOPMENT] Ni Sü PFIRGA', '[DEVELOPMENT] Ni Sü - Ed INUYDE'), + (0xfd93119a6ec3817a56170747b57853fb56131388, 'Weapons of Glory', 'DCL-WPNSFGLRY'), + (0xfd98bb9037679329152fbfa586e6112595110467, 'cipher kings pyramid club', 'CKPC'), + (0xfd994283ebdd96251b0f188aa2e6858f86c63baf, 'adidas Originals Bored Ape', 'AOBAPE'), + (0xfd9ba6139af6f30e1fe13b440184092e76333aee, 'BVerse', 'BVS'), + (0xfda60b061af724a858c047abec43bcf56cabcf7f, 'TypeformNFT', 'TYPEFORM'), + (0xfda775f04193575becfdcea8793e0c4411b66cd4, 'IMATAC', 'ATAC'), + (0xfdac3c4ffccb6e05d3e9a9d69ec95edeb6e8c844, 'AO 2022 - Accessories', 'DCL-AO2022-ACCSSRS'), + (0xfdb2f2550b916112fb84e32d2bc5b7046fd59f7c, 'Slava Ukraini NFt Collection', 'SLU'), + (0xfdb783014ee63d0b56e58e7b2ca93939cdd8effd, 'NFTs', 'NFT'), + (0xfdb8780587d947f910289a8148159cd20f221647, 'META MANSIONS KEYS', 'KEYS'), + (0xfdb91f46919961bde261842185581353088f0e99, 'Panda Universe', 'PANDA'), + (0xfdbc11ebae5f5c6a053b8a07672f844010560ca1, 'Organic Banana', 'RPP'), + (0xfdbf48a97918cf4936ffad157e53728ac150d7e9, 'MetaBikers', 'DCL-MTBKRS'), + (0xfdc99c124f1fcfe1247a88b7f28f62dc5d574f0e, 'Kirk P Hansen NFT artist', 'Kir'), + (0xfdd02612aa2c873fa21be8a9c46872acd143fddf, 'IslandsEarlyAdopter', 'ISLN-EA'), + (0xfdd15743e140c18cbcd94c4cfdac0cff47fb4e71, 'Beach Bodies (ARNJ X TANG)', 'DCL-BCHBDS(ARNJXTANG)'), + (0xfde2bde3f3eb13410b07f0817ba534e2cdb54719, 'Meta Tiger NFT', 'Meta Tiger'), + (0xfde6726631624cf015bcf2b29768eaa161e479c6, 'CoolFoxGang', 'CFGG'), + (0xfdea628f49897c49a8d7824ab286e236e42d4f8f, 'Collage of Myself', 'MYSELF'), + (0xfded171d346107c1d4eb20f37484e8dd65beac9b, 'Bufalo BFL Genesis Hats', 'DCL-BFLBFLGNSSHTS'), + (0xfdf4ba0f049ff19d12f141c6706655179a4849c5, 'Super Ordinary Villains Official', 'SOV'), + (0xfdff8d3ba8a9755d7dd01a9c1a84c5df4f7e9e66, 'Fantasy GF', 'FGF'), + (0xfe063cf67b1f05f7eafe351e9a67a290f74dda9b, 'CryptoElephantsClub', 'CEC'), + (0xfe15aaa0bbc735eae32d7191a509b0b9dd02ae52, 'Death Mole 8bit Gen2', 'mole'), + (0xfe1bf81db86cbfd83682fc78e09f5d0f86345f7f, 'Riot Racers Drivers', 'RRDA'), + (0xfe1eec5b6c3eaf0705fcfd56623e367aabd985fb, 'NFT-LP', 'NFT-LP'), + (0xfe1f5cb22cf4972584c6a0938feaf90c597b567b, 'DeNet Private Node NFT', 'Node'), + (0xfe21d124a0c4691386f1c6acb67b7475c32f3d81, 'Goon Galaxy Batch #1', 'GG'), + (0xfe2ad121a65a6e4b9a1cd1a1d5e35b5288a88759, 'DinoJaws', 'DJNFT'), + (0xfe2e5372d9b584cff13abf424cbec8caba0f3e49, 'Romario', 'RO'), + (0xfe2efc75f08b4a18eea5e94f57b7955133341f5f, 'GEN-T10', 'GEN-T10'), + (0xfe301f8cb9c722db6d3dbcbeeb1a0c52a40d4301, 'M5NFT16', 'M5NFT16'), + (0xfe49f34e1b21603abb8d975b63ff7413c228ee7e, 'FakeSmilersCityContract', 'Smiler'), + (0xfe4d8f0783688bf97ec4f3b6fcdc9428cd69dfd0, 'Degens of Trash', 'DEGEN'), + (0xfe5a34c2ef133afe238d03b72a9fed842daeff89, 'Flurrballs', 'FB'), + (0xfe65961e2c0e81758cf789c59aa84d788b56047b, 'Square Toads', 'ST'), + (0xfe66f76b6a8d9e7f7cdd1d08db15c8aab98161f0, 'BoringBrussels', 'BXL'), + (0xfe70c721bcb9bf75fed0ab391c5c8b77d204b3de, 'Rocket', 'GOGL'), + (0xfe72c559069fe00ed492a1399e564ec1404f39ba, 'MoshiHeads', 'MoshiHeads'), + (0xfe72e85c1225151b64765462b6f2a43fb27c8a53, 'SnarkySharkz Society Collection', 'DCL-SNRKYSHRKZSCTYCLLCTN'), + (0xfe8979a62388c02b05d9f505a4ba83527695ac8d, 'Portion - Black History Month', 'DCL-PRTN-BLCKHSTRYMNTH'), + (0xfe8be00b50312ad4c4a2af8f0dbe1f47a1d6fa85, 'Kozmik', 'KZMK'), + (0xfe94affb8b4044ed02f80411a87dffc6a9b39918, 'Formal Weed Suit by Kandy Girl', 'DCL-FRMLWDSTBYKNDYGRL'), + (0xfea3f07592a2655afe6ac9a8ee015b18c9965093, 'The Chinese One', 'C'), + (0xfea4249dbe63cf7d1875dc03c40a38a975d0c403, '🍄Garden Gnomies🍄', 'GG'), + (0xfea8aa5b9bb75f9b4a515081c29a34da1718682d, 'JoMFounder', 'JoM'), + (0xfec937573654a4c62499eb2fd9601a24f86b29af, 'American Footbal Skins', 'DCL-AMRCNFTBLSKNS'), + (0xfec97da9fb9d0ace4e832f927797c99bbc004942, 'Speech to Smart Info Graphic', 'Voice'), + (0xfed19b6f65900d7d109b0213b35ceac8ec4d3d70, 'Yolo Kamakazi Bugz', 'YKB'), + (0xfeda293f9d316fea927df17a78693092ebf826f8, 'Msnft', 'msnft'), + (0xfedd286a6e317042b001ec73e31acc99391d95b9, 'YouManZ 10K Drop', 'YMZ'), + (0xfede1acfb2fbc32d1910f604b4a272874bebd1c6, 'TFA Omonia Nicosia Fans', 'TFAOMO'), + (0xfee1a388e5f64d9e4dafc1d8c06d6abe57dc6692, 'BoPunk', 'BoPunk'), + (0xfee8c7098e62ff8d8ed481640d1420b8eeaeb568, 'dApps Demo Access NFT By dProgrammingUniversity', 'KEY'), + (0xfee9768f2750364d71fbb677a8e96aa507a92d65, 'Skyverse Official', 'NFTC'), + (0xfeec05d823b2e25b79dd90bdce6e66ddd1c01b44, 'Red', 'SWEDC'), + (0xfeedf78582197596dae9a97fef0b135fe6414cc1, 'barewords', 'barewords'), + (0xfeefeb15604b8791aa3dc90bc1cfde2bc626e41a, 'Sweetcorn', 'SWEDC'), + (0xfef612bf739a843a18e36f7291241cbe90b91894, 'Donate To Ukraine', 'C'), + (0xfefa032cb169ca191da66ee687b9293b0456a350, 'Chicago, IL Pop Art Edition', 'SWEDC'), + (0xff0ed3ef22e3a986de1063d9a578d0727dbbcc87, 'Bored Dilfs Raffle Ticket', 'BDRONE'), + (0xff14c0d06ec7b8bdff2533cd706841126ce66795, 'From web2 to web3', 'F2T3'), + (0xff18651adfb7189fa96a0f98ead400e6a1ded9e0, 'Team Tokens', 'test'), + (0xff1afb94ee9f95170855a0f73d580232fc0d57e0, 'Alpha Bot Society', 'ABS'), + (0xff1b69361d8b138d9b00a79427080e1f335026dc, 'STEDHEDZ NFT', 'STEDHEDZ'), + (0xff1c0b40fe43b274e3d10b8775e29076a6129c9e, 'NftdonationUKR', 'UKR'), + (0xff1f098ef4334cb01e9493c8fafa771d5817d28e, 'SKULLTONS OfficiaI', 'SKU'), + (0xff2b0204134efe8f9b682da38dd69d8b4446fc90, 'Symbio', 'Symbio'), + (0xff2c44fb819757225a176e825255a01b3b8bb051, 'Frax Share MAI Vault', 'FXSMVT'), + (0xff3e8edd75d2f726f949b106f754fdcde74e074c, 'Meta Trinity (v1)', 'MT.v1'), + (0xff3f095c23e2412097a16680571c4980e7012a42, '[DEVELOPMENT] Ma Hu 234427', '[DEVELOPMENT] Ma Hu - Ed 777301'), + (0xff44e151cd113c5561bddf37c217ebb31cf43aeb, 'Serum CY-666', 'CY-666'), + (0xff480e6dde2eab7821384ae2af58774165d10be3, 'ThorGuards', 'THORGUARDS'), + (0xff524f73a7cc275432538ccdf4bbea3954ff6e5f, 'The MetaThar Collection', 'M&M'), + (0xff5e011f4e636b08ade4e8eab8c690230476e6eb, 'Pirates', 'DCL-PRTS'), + (0xff5e87c1ba0a3cd3f87455f48d9c77205476dbd4, 'The Blockhead Crew', 'TBHC'), + (0xff86022f3d9307a76a971fa775d47a72940bf9e5, 'Upper body for sale', 'DCL-UPPRBDYFRSL'), + (0xff880d9dc4ed76fe657b4457607aa684237d6124, 'EmojiCoins', 'ECoin'), + (0xff88e7eb441bf2f7377b88c53a735aa18b583165, 'Gem Gard NFT', 'GGNFT'), + (0xff94a0a2ecc4bf322382df8ab1dd81e81b2e84ee, 'JANS BOYS', 'JB'), + (0xff9c151e3cdb82c65646dbe98a6c64d1f063e1c8, 'ishanshrivastava1', 'ISHANSHRIVASTAVA1'), + (0xffa027c38827344ea84dd2cb3392f9870363852d, 'Avatars of Zixel', 'avatars-of-zixel'), + (0xffa2a0a0f818df196d8cb8457094b85be640c6df, 'Fayetteville, AR Pop Art Edition', 'SWEDC'), + (0xffa7bf0f87aba31daaa8349d99bf5cd02e0fd409, 'TheNoodies', 'NOODS'), + (0xffb13387bb5724d90645fb63f43703f744c4de83, 'Pittsburgh, PA Pop Art Edition', 'SWEDC'), + (0xffbce889d62f6c73f005b836255ad69b0a01b222, 'MurAll L2', 'L2MURALL'), + (0xffbf73fe811e987034bb5d0252d2173e0670faa7, 'WeirdRoboClubOfficial', 'WRCO'), + (0xffbfcf9feda83c38904cc27ce6ac4cb52a60eb32, 'YOYO NFT Trend monste', 'YOTM'), + (0xffc0a2585b8787da92fe5ecbc3e707e06004fbce, 'SaDe', '3K'), + (0xffc4d32c68e283da61d9ab86ac13a97897c42ee4, 'Stoner Eye Genesis', 'DCL-STNREYGNSS'), + (0xffcd4ed063be152145fd4462ca64c61214b34174, 'Punk glasses', 'DCL-PNKGLSSS'), + (0xffd79018292eac548cc4d110930361ee3e682540, 'Butterfly Updo', 'DCL-BTTRFLYUPD'), + (0xffd9032bba41b36c3c8bf00c745a1d029e9ed092, 'Baby Ape Bone Hound Society', 'BABHS'), + (0xffe2958d1fb73533e107f1889d31e3a9d93d68c2, 'Phetta From Phettaverse', 'DCL-PHTTFRMPHTTVRS'), + (0xffe32ad63e4df4924d2389345fecb3aaa40c1c7e, 'Azuki Polygon', 'OPP'), + (0xffe90453584d1e7cb66f52ec32cce9e7093b057d, 'HalfSucker', 'HSNFT') +) as temp_table (contract_address, name, symbol) diff --git a/models/tokens/polygon/tokens_polygon_schema.yml b/models/tokens/polygon/tokens_polygon_schema.yml index 1dab28d9b51..e505a4cd5d2 100644 --- a/models/tokens/polygon/tokens_polygon_schema.yml +++ b/models/tokens/polygon/tokens_polygon_schema.yml @@ -58,9 +58,9 @@ models: - accepted_values: values: [ 'erc721', 'erc1155' ] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. - If you are adding a token with a new standard, remember to add it the accepted values list. + If you are adding a token with a new standard, remember to add it the accepted values list. - name: tokens_polygon_nft_standards meta: @@ -80,4 +80,4 @@ models: description: "The NFT standard erc721/erc1155/..." tests: - accepted_values: - values: [ 'erc721', 'erc1155' ] + values: [ 'erc721', 'erc1155' ] \ No newline at end of file diff --git a/models/tokens/solana/tokens_solana.sources.yml b/models/tokens/solana/tokens_solana.sources.yml index c420ec03bf5..aeacb67070a 100644 --- a/models/tokens/solana/tokens_solana.sources.yml +++ b/models/tokens/solana/tokens_solana.sources.yml @@ -11,6 +11,28 @@ sources: loaded_at_field: call_block_time - name: spl_token_call_initializeMint2 loaded_at_field: call_block_time + - name: spl_token_call_transfer + loaded_at_field: call_block_time + - name: spl_token_call_transferChecked + loaded_at_field: call_block_time + - name: spl_token_call_mintTo + loaded_at_field: call_block_time + - name: spl_token_call_mintToChecked + loaded_at_field: call_block_time + - name: spl_token_call_burn + loaded_at_field: call_block_time + - name: spl_token_call_burnChecked + loaded_at_field: call_block_time + - name: system_program_solana + description: "system program decoded tables" + freshness: # default freshness + warn_after: { count: 12, period: hour } + error_after: { count: 24, period: hour } + tables: + - name: system_program_call_Transfer + loaded_at_field: call_block_time + - name: system_program_call_TransferWithSeed + loaded_at_field: call_block_time - name: mpl_token_metadata_solana description: "mpl metadata decoded tables" freshness: # default freshness diff --git a/models/tokens/solana/tokens_solana_fungible.sql b/models/tokens/solana/tokens_solana_fungible.sql index abb0ffa58da..5f26d007d6c 100644 --- a/models/tokens/solana/tokens_solana_fungible.sql +++ b/models/tokens/solana/tokens_solana_fungible.sql @@ -91,8 +91,7 @@ SELECT , tk.call_block_time as created_at FROM tokens tk LEFT JOIN metadata m ON tk.account_mint = m.account_mint -WHERE tk.decimals != 0 -and m.master_edition is null +WHERE m.master_edition is null UNION ALL diff --git a/models/tokens/solana/tokens_solana_schema.yml b/models/tokens/solana/tokens_solana_schema.yml index 847f228916f..ab3b17f52e5 100644 --- a/models/tokens/solana/tokens_solana_schema.yml +++ b/models/tokens/solana/tokens_solana_schema.yml @@ -62,4 +62,30 @@ models: - name: call_tx_id - name: call_block_time - name: call_block_slot - - name: call_tx_signer \ No newline at end of file + - name: call_tx_signer + + + - name: tokens_solana_transfers + meta: + blockchain: solana + contributors: [ilemi] + config: + tags: ['solana','transfers','erc20','nft','spl'] + description: > + get all spl token transfers (will add in token2022 later) + columns: + - name: block_time + - name: block_date + - name: block_slot + - name: action + - name: token_mint_address + - name: amount + - name: from_owner + - name: to_owner + - name: from_token_account + - name: to_token_account + - name: tx_signer + - name: tx_id + - name: outer_instruction_index + - name: inner_instruction_index + - name: outer_executing_account \ No newline at end of file diff --git a/models/tokens/solana/tokens_solana_transfers.sql b/models/tokens/solana/tokens_solana_transfers.sql new file mode 100644 index 00000000000..a28903cf3d4 --- /dev/null +++ b/models/tokens/solana/tokens_solana_transfers.sql @@ -0,0 +1,69 @@ + {{ + config( + schema = 'tokens_solana', + alias = 'transfers', + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + partition_by = ['block_date'], + incremental_predicates = [incremental_predicate('DBT_INTERNAL_DEST.block_time')], + unique_key = ['tx_id','outer_instruction_index','inner_instruction_index', 'block_slot'], + post_hook='{{ expose_spells(\'["solana"]\', + "sector", + "tokens", + \'["ilemi"]\') }}') +}} + +SELECT + call_block_time as block_time + , cast (date_trunc('day', call_block_time) as date) as block_date + , call_block_slot as block_slot + , action + , amount + , COALESCE(tk_s.token_mint_address, tk_d.token_mint_address) as token_mint_address + , tk_s.token_balance_owner as from_owner + , tk_d.token_balance_owner as to_owner + , account_source as from_token_account + , account_destination as to_token_account + , call_tx_signer as tx_signer + , call_tx_id as tx_id + , call_outer_instruction_index as outer_instruction_index + , COALESCE(call_inner_instruction_index,0) as inner_instruction_index + , call_outer_executing_account as outer_executing_account +FROM ( + SELECT account_source, account_destination, amount, call_tx_id, call_block_time, call_block_slot, call_outer_executing_account, call_tx_signer, 'transfer' as action, call_outer_instruction_index, call_inner_instruction_index + FROM {{ source('spl_token_solana','spl_token_call_transfer') }} + + UNION ALL + + SELECT account_source, account_destination, amount, call_tx_id, call_block_time, call_block_slot, call_outer_executing_account, call_tx_signer, 'transfer' as action, call_outer_instruction_index, call_inner_instruction_index + FROM {{ source('spl_token_solana','spl_token_call_transferChecked') }} + + UNION ALL + + SELECT null, account_account as account_destination, amount, call_tx_id, call_block_time, call_block_slot, call_outer_executing_account, call_tx_signer, 'mint' as action, call_outer_instruction_index, call_inner_instruction_index + FROM {{ source('spl_token_solana','spl_token_call_mintTo') }} + + UNION ALL + + SELECT null, account_account as account_destination, amount, call_tx_id, call_block_time, call_block_slot, call_outer_executing_account, call_tx_signer, 'mint' as action, call_outer_instruction_index, call_inner_instruction_index + FROM {{ source('spl_token_solana','spl_token_call_mintToChecked') }} + + UNION ALL + + SELECT account_account as account_source, null, amount, call_tx_id, call_block_time, call_block_slot, call_outer_executing_account, call_tx_signer, 'burn' as action, call_outer_instruction_index, call_inner_instruction_index + FROM {{ source('spl_token_solana','spl_token_call_burn') }} + + UNION ALL + + SELECT account_account as account_source, null, amount, call_tx_id, call_block_time, call_block_slot, call_outer_executing_account, call_tx_signer, 'burn' as action, call_outer_instruction_index, call_inner_instruction_index + FROM {{ source('spl_token_solana','spl_token_call_burnChecked') }} +) tr +--get token and accounts +LEFT JOIN {{ ref('solana_utils_token_accounts') }} tk_s ON tk_s.address = tr.account_source +LEFT JOIN {{ ref('solana_utils_token_accounts') }} tk_d ON tk_d.address = tr.account_destination +WHERE 1=1 +{% if is_incremental() %} +AND {{incremental_predicate('call_block_time')}} +{% endif %} +-- AND call_block_time > now() - interval '600' day \ No newline at end of file diff --git a/models/tokens/zksync/tokens_zksync_schema.yml b/models/tokens/zksync/tokens_zksync_schema.yml index befefe9ebde..d6bab71eddb 100644 --- a/models/tokens/zksync/tokens_zksync_schema.yml +++ b/models/tokens/zksync/tokens_zksync_schema.yml @@ -62,10 +62,10 @@ models: - accepted_values: values: [ 'erc721', 'erc1155'] description: > - The token standard. This is the set of rules that the contract must respect + The token standard. This is the set of rules that the contract must respect to be compatible with the common standards. Accepted values are presently standards represented. If you are adding a token with a new standard, remember to add it the accepted values list. - + - name: tokens_zksync_nft_standards meta: @@ -82,4 +82,4 @@ models: tests: - unique - name: standard - description: "The NFT standard erc721/erc1155/..." + description: "The NFT standard erc721/erc1155/..." \ No newline at end of file diff --git a/models/tokens/zora/tokens_zora_nft_curated.sql b/models/tokens/zora/tokens_zora_nft_curated.sql index 628d5a5f689..b89381adbd1 100644 --- a/models/tokens/zora/tokens_zora_nft_curated.sql +++ b/models/tokens/zora/tokens_zora_nft_curated.sql @@ -7,6 +7,13 @@ SELECT contract_address, name, symbol FROM (VALUES - (0x1F781d47cD59257D7AA1Bd7b2fbaB50D57AF8587, 'BLOCKS', 'BLOCKS') + (0x1F781d47cD59257D7AA1Bd7b2fbaB50D57AF8587, 'BLOCKS', 'BLOCKS') + ,(0x1225c2d6e987aa95b76e0d03b505696a1b7a080f, 'Serene Lake Twilight', 'SLT') + ,(0xbc2ca61440faf65a9868295efa5d5d87c55b9529, 'sqr(16)', 'SQR') + ,(0x53cb0b849491590cab2cc44af8c20e68e21fc36d, 'Allure', 'ALL') + ,(0x4073a52a3fc328d489534ab908347ec1fcb18f7f, 'GoldenFla', 'GFLA') + ,(0x8974b96da5886ed636962f66a6456dc39118a140, 'Zoggles', '.ZOGGLE...') + ,(0x199a21f0be1cdcdd882865e7d0f462e4778c5ee4, 'Galaxy Zorb', 'GZRB') + ,(0x9eae90902a68584e93a83d7638d3a95ac67fc446, 'Fla', 'FLA') ) as temp_table (contract_address, name, symbol) diff --git a/models/trader_joe/avalanche_c/trader_joe_avalanche_c_schema.yml b/models/trader_joe/avalanche_c/trader_joe_avalanche_c_schema.yml index 9df427ac7f4..4e04b5559fb 100644 --- a/models/trader_joe/avalanche_c/trader_joe_avalanche_c_schema.yml +++ b/models/trader_joe/avalanche_c/trader_joe_avalanche_c_schema.yml @@ -143,6 +143,54 @@ models: - *tx_to - *evt_index + - name: trader_joe_v2_1_avalanche_c_trades + meta: + blockchain: avalanche_c + sector: dex + project: trader_joe_v2_1 + contributors: chef_seaweed + config: + tags: ['avalanche_c','trader_joe_v2_1','trades', 'Trader Joe','dex'] + description: > + Trader Joe Liquidity Book trades on avalanche_c chain + tests: + - dbt_utils.unique_combination_of_columns: + combination_of_columns: + - block_date + - blockchain + - project + - version + - tx_hash + - evt_index + - check_dex_seed: + blockchain: avalanche_c + project: trader_joe + version: 2.1 + columns: + - *blockchain + - *project + - *version + - *block_date + - *block_month + - *block_time + - *token_bought_symbol + - *token_sold_symbol + - *token_pair + - *token_bought_amount + - *token_sold_amount + - *token_bought_amount_raw + - *token_sold_amount_raw + - *amount_usd + - *token_bought_address + - *token_sold_address + - *taker + - *maker + - *project_contract_address + - *tx_hash + - *tx_from + - *tx_to + - *evt_index + - name: trader_joe_avalanche_c_trades meta: blockchain: avalanche_c diff --git a/models/trader_joe/avalanche_c/trader_joe_avalanche_c_sources.yml b/models/trader_joe/avalanche_c/trader_joe_avalanche_c_sources.yml index 683a7f36921..4b72f09d9c1 100644 --- a/models/trader_joe/avalanche_c/trader_joe_avalanche_c_sources.yml +++ b/models/trader_joe/avalanche_c/trader_joe_avalanche_c_sources.yml @@ -120,4 +120,17 @@ sources: description: "tokenX" - &tokenY name: tokenY - description: "tokenY" \ No newline at end of file + description: "tokenY" + + - name: trader_joe_v2_1_avalanche_c + description: "avalanche_c chain decoded tables related to Trader Joe contract" + freshness: + warn_after: { count: 12, period: hour } + tables: + - name: LBPair_evt_Swap + loaded_at_field: evt_block_time + description: "Liquidity book Pair swap event decoded table" + + - name: LBFactory_evt_LBPairCreated + loaded_at_field: evt_block_time + description: "Liquidity Book Factory pair create decoded table" \ No newline at end of file diff --git a/models/trader_joe/avalanche_c/trader_joe_avalanche_c_trades.sql b/models/trader_joe/avalanche_c/trader_joe_avalanche_c_trades.sql index e49faa65054..a79a69c4336 100644 --- a/models/trader_joe/avalanche_c/trader_joe_avalanche_c_trades.sql +++ b/models/trader_joe/avalanche_c/trader_joe_avalanche_c_trades.sql @@ -6,6 +6,7 @@ {% set trader_joe_models = [ ref('trader_joe_v1_avalanche_c_trades') ,ref('trader_joe_v2_avalanche_c_trades') +,ref('trader_joe_v2_1_avalanche_c_trades') ] %} diff --git a/models/trader_joe/avalanche_c/trader_joe_v2_1_avalanche_c_trades.sql b/models/trader_joe/avalanche_c/trader_joe_v2_1_avalanche_c_trades.sql new file mode 100644 index 00000000000..8572d94cb53 --- /dev/null +++ b/models/trader_joe/avalanche_c/trader_joe_v2_1_avalanche_c_trades.sql @@ -0,0 +1,110 @@ +{{ config( + schema = 'trader_joe_v2_1_avalanche_c', + alias = 'trades', + partition_by = ['block_month'], + materialized = 'incremental', + file_format = 'delta', + incremental_strategy = 'merge', + unique_key = ['block_date', 'blockchain', 'project', 'version', 'tx_hash', 'evt_index'], + post_hook='{{ expose_spells(\'["avalanche_c"]\', + "project", + "trader_joe_v2_1", + \'["chef_seaweed"]\') }}' + ) +}} + +{% set project_start_date = '2023-04-05' %} + +WITH dexs AS +( + SELECT + t.evt_block_time AS block_time + , t."to" AS taker + ,CAST(NULL AS VARBINARY) AS maker + ,CASE WHEN amount0 < INT256 '0' THEN abs(amount0) ELSE abs(amount1) END AS token_bought_amount_raw -- when amount0 is negative it means trader_a is buying token0 from the pool + ,CASE WHEN amount0 < INT256 '0' THEN abs(amount1) ELSE abs(amount0) END AS token_sold_amount_raw + ,NULL AS amount_usd + ,CASE WHEN amount0 < INT256 '0' THEN f.tokenX ELSE f.tokenY END AS token_bought_address + ,CASE WHEN amount0 < INT256 '0' THEN f.tokenY ELSE f.tokenX END AS token_sold_address + ,t.contract_address AS project_contract_address + ,t.evt_tx_hash AS tx_hash + ,t.evt_index + FROM ( + select a.* + ,CAST(bytearray_to_int256(bytearray_substring(amountsIn,17,32)) AS INT256) - CAST(bytearray_to_int256(bytearray_substring(amountsOut,17,32)) AS INT256) AS amount0 + ,CAST(bytearray_to_int256(bytearray_substring(amountsIn,1,16)) AS INT256) - CAST(bytearray_to_int256(bytearray_substring(amountsOut,1,16)) AS INT256) AS amount1 + from {{ source('trader_joe_v2_1_avalanche_c', 'LBPair_evt_Swap') }} a + ) t + INNER JOIN {{ source('trader_joe_v2_1_avalanche_c', 'LBFactory_evt_LBPairCreated') }} f + ON f.LBPair = t.contract_address + {% if is_incremental() %} + WHERE t.evt_block_time >= date_trunc('day', now() - interval '7' day) + {% endif %} +) + +SELECT + 'avalanche_c' AS blockchain + ,'trader_joe' AS project + ,'2.1' AS version + ,TRY_CAST(date_trunc('DAY', dexs.block_time) AS date) AS block_date + ,CAST(date_trunc('month', dexs.block_time) AS date) AS block_month + ,dexs.block_time + ,erc20a.symbol AS token_bought_symbol + ,erc20b.symbol AS token_sold_symbol + ,case + when lower(erc20a.symbol) > lower(erc20b.symbol) then concat(erc20b.symbol, '-', erc20a.symbol) + else concat(erc20a.symbol, '-', erc20b.symbol) + end as token_pair + ,CAST(dexs.token_bought_amount_raw AS UINT256) / power(10, erc20a.decimals) AS token_bought_amount + ,CAST(dexs.token_sold_amount_raw AS UINT256) / power(10, erc20b.decimals) AS token_sold_amount + ,CAST(dexs.token_bought_amount_raw AS UINT256) AS token_bought_amount_raw + ,CAST(dexs.token_sold_amount_raw AS UINT256) AS token_sold_amount_raw + ,coalesce( + dexs.amount_usd + ,(CAST(dexs.token_bought_amount_raw AS UINT256) / power(10, p_bought.decimals)) * p_bought.price + ,(CAST(dexs.token_sold_amount_raw AS UINT256) / power(10, p_sold.decimals)) * p_sold.price + ) AS amount_usd + ,dexs.token_bought_address + ,dexs.token_sold_address + ,coalesce(dexs.taker, tx."from") AS taker -- subqueries rely on this COALESCE to avoid redundant joins with the transactions table + ,dexs.maker + ,dexs.project_contract_address + ,dexs.tx_hash + ,tx."from" AS tx_from + ,tx.to AS tx_to + ,dexs.evt_index +FROM dexs +INNER JOIN {{ source('avalanche_c', 'transactions') }} tx + ON tx.hash = dexs.tx_hash + {% if not is_incremental() %} + AND tx.block_time >= TIMESTAMP '{{project_start_date}}' + {% endif %} + {% if is_incremental() %} + AND tx.block_time >= date_trunc('day', now() - interval '7' day) + {% endif %} +LEFT JOIN {{ ref('tokens_erc20') }} erc20a + ON erc20a.contract_address = dexs.token_bought_address + AND erc20a.blockchain = 'avalanche_c' +LEFT JOIN {{ ref('tokens_erc20') }} erc20b + ON erc20b.contract_address = dexs.token_sold_address + AND erc20b.blockchain = 'avalanche_c' +LEFT JOIN {{ source('prices', 'usd') }} p_bought + ON p_bought.minute = date_trunc('minute', dexs.block_time) + AND p_bought.contract_address = dexs.token_bought_address + AND p_bought.blockchain = 'avalanche_c' + {% if not is_incremental() %} + AND p_bought.minute >= TIMESTAMP '{{project_start_date}}' + {% endif %} + {% if is_incremental() %} + AND p_bought.minute >= date_trunc('day', now() - interval '7' day) + {% endif %} +LEFT JOIN {{ source('prices', 'usd') }} p_sold + ON p_sold.minute = date_trunc('minute', dexs.block_time) + AND p_sold.contract_address = dexs.token_sold_address + AND p_sold.blockchain = 'avalanche_c' + {% if not is_incremental() %} + AND p_sold.minute >= TIMESTAMP '{{project_start_date}}' + {% endif %} + {% if is_incremental() %} + AND p_sold.minute >= date_trunc('day', now() - interval '7' day) + {% endif %} \ No newline at end of file diff --git a/models/velodrome/optimism/velodrome_optimism_airdrop_claims.sql b/models/velodrome/optimism/velodrome_optimism_airdrop_claims.sql index 1b3a546dc5a..ae9cfaea183 100644 --- a/models/velodrome/optimism/velodrome_optimism_airdrop_claims.sql +++ b/models/velodrome/optimism/velodrome_optimism_airdrop_claims.sql @@ -8,7 +8,7 @@ file_format = 'delta', incremental_strategy = 'merge', unique_key = ['recipient', 'tx_hash', 'evt_index'], - post_hook='{{ expose_spells(\'["optimsm"]\', + post_hook='{{ expose_spells(\'["optimism"]\', "project", "velodrome", \'["hildobby"]\') }}' diff --git a/models/zeroex/polygon/zeroex_polygon_schema.yml b/models/zeroex/polygon/zeroex_polygon_schema.yml index 8d2e5781721..73c96197d67 100644 --- a/models/zeroex/polygon/zeroex_polygon_schema.yml +++ b/models/zeroex/polygon/zeroex_polygon_schema.yml @@ -265,4 +265,4 @@ models: - *matcha_limit_order_flag - &protocol_fee_paid_eth name: protocol_fee_paid_eth - description: "The protocol fee paid in ETH" \ No newline at end of file + description: "The protocol fee paid in ETH" diff --git a/models/zipswap/optimism/zipswap_optimism_sources.yml b/models/zipswap/optimism/zipswap_optimism_sources.yml deleted file mode 100644 index 75f843b2118..00000000000 --- a/models/zipswap/optimism/zipswap_optimism_sources.yml +++ /dev/null @@ -1,51 +0,0 @@ -version: 2 - -sources: - - name: zipswap_optimism - description: "Optimism decoded tables related to zipswap contract" - freshness: - warn_after: { count: 12, period: hour } - tables: - - name: UniswapV2Pair_evt_Swap - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &amount0In - name: amount0In - - &amount0Out - name: amount0Out - - &amount1In - name: amount1In - - &amount1Out - name: amount1Out - - &contract_address - name: contract_address - - &evt_block_number - name: evt_block_number - - &evt_block_time - name: evt_block_time - - &evt_index - name: evt_index - - &evt_tx_hash - name: evt_tx_hash - - &sender - name: sender - - &to - name: to - - name: UniswapV2Factory_evt_PairCreated - loaded_at_field: evt_block_time - description: "" # to-do - columns: - - &_0 - name: _0 - - *contract_address - - *evt_block_number - - *evt_block_time - - *evt_index - - *evt_tx_hash - - &pair - name: pair - - &token0 - name: token0 - - &token1 - name: token1 \ No newline at end of file diff --git a/seeds/_sector/dex/_schema.yml b/seeds/_sector/dex/_schema.yml index 3f780250f04..0f26a1ffa80 100644 --- a/seeds/_sector/dex/_schema.yml +++ b/seeds/_sector/dex/_schema.yml @@ -255,6 +255,21 @@ seeds: token_sold_amount_raw: uint256 block_date: timestamp + - name: apeswap_ethereum_base_trades_seed + config: + column_types: + blockchain: varchar + project: varchar + version: varchar + tx_hash: varbinary + evt_index: uint256 + block_number: uint256 + token_bought_address: varbinary + token_sold_address: varbinary + token_bought_amount_raw: uint256 + token_sold_amount_raw: uint256 + block_date: timestamp + - name: apeswap_polygon_base_trades_seed config: column_types: @@ -315,6 +330,36 @@ seeds: token_sold_amount_raw: uint256 block_date: timestamp + - name: balancer_avalanche_c_base_trades_seed + config: + column_types: + blockchain: varchar + project: varchar + version: varchar + tx_hash: varbinary + evt_index: uint256 + block_number: uint256 + token_bought_address: varbinary + token_sold_address: varbinary + token_bought_amount_raw: uint256 + token_sold_amount_raw: uint256 + block_date: timestamp + + - name: balancer_base_base_trades_seed + config: + column_types: + blockchain: varchar + project: varchar + version: varchar + tx_hash: varbinary + evt_index: uint256 + block_number: uint256 + token_bought_address: varbinary + token_sold_address: varbinary + token_bought_amount_raw: uint256 + token_sold_amount_raw: uint256 + block_date: timestamp + - name: balancer_ethereum_base_trades_seed config: column_types: @@ -915,6 +960,21 @@ seeds: token_sold_amount_raw: uint256 block_date: timestamp + - name: honeyswap_polygon_base_trades_seed + config: + column_types: + blockchain: varchar + project: varchar + version: varchar + tx_hash: varbinary + evt_index: uint256 + block_number: uint256 + token_bought_address: varbinary + token_sold_address: varbinary + token_bought_amount_raw: uint256 + token_sold_amount_raw: uint256 + block_date: timestamp + - name: integral_arbitrum_base_trades_seed config: column_types: @@ -1185,21 +1245,6 @@ seeds: token_sold_amount_raw: uint256 block_date: timestamp - - name: pancake_bnb_base_trades_seed - config: - column_types: - blockchain: varchar - project: varchar - version: varchar - tx_hash: varbinary - evt_index: uint256 - block_number: uint256 - token_bought_address: varbinary - token_sold_address: varbinary - token_bought_amount_raw: uint256 - token_sold_amount_raw: uint256 - block_date: timestamp - - name: pancakeswap_arbitrum_base_trades_seed config: column_types: @@ -1948,4 +1993,19 @@ seeds: token_sold_address: varbinary token_bought_amount_raw: uint256 token_sold_amount_raw: uint256 - block_date: timestamp \ No newline at end of file + block_date: timestamp + + - name: shibaswap_ethereum_base_trades_seed + config: + column_types: + blockchain: varchar + project: varchar + version: varchar + tx_hash: varbinary + evt_index: uint256 + block_number: uint256 + token_bought_address: varbinary + token_sold_address: varbinary + token_bought_amount_raw: uint256 + token_sold_amount_raw: uint256 + block_date: timestamp diff --git a/seeds/_sector/dex/apeswap_ethereum_base_trades_seed.csv b/seeds/_sector/dex/apeswap_ethereum_base_trades_seed.csv new file mode 100644 index 00000000000..c1020e404bb --- /dev/null +++ b/seeds/_sector/dex/apeswap_ethereum_base_trades_seed.csv @@ -0,0 +1,4 @@ +blockchain,project,version,block_date,tx_hash,evt_index,token_bought_address,token_sold_address,block_number,token_bought_amount_raw,token_sold_amount_raw +ethereum,apeswap,1,2022-05-23,0xa91f86a83271a0bcadf9a5bd0ca370be68f6e21c938fedbe67e1869d2f1e3b4d,42,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,14831119,358734079,174571346247299880 +ethereum,apeswap,1,2022-10-01,0xafb8736122eff94d0939112ab681b8232dae2e3950c31dffba106887d9a3979e,92,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,15654790,280752382,213252691357925493 +ethereum,apeswap,1,2022-08-07,0xe13667ee8828e7c70e29829d9da7c2de3dfda72b5dc727dda1252ae23e97a3c3,120,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,15293929,76824257522729958,129468241 \ No newline at end of file diff --git a/seeds/_sector/dex/balancer_avalanche_c_base_trades_seed.csv b/seeds/_sector/dex/balancer_avalanche_c_base_trades_seed.csv new file mode 100644 index 00000000000..783214a4f33 --- /dev/null +++ b/seeds/_sector/dex/balancer_avalanche_c_base_trades_seed.csv @@ -0,0 +1,4 @@ +blockchain,project,version,block_date,tx_hash,evt_index,token_bought_address,token_sold_address,block_number,token_bought_amount_raw,token_sold_amount_raw +avalanche_c,balancer,2,2023-12-10,0x29f3e09514ecf9385850e8fa3ab8e7ff608ad35cc1964239e75e93d0f70f530c,5,0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7,0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be,38859800,27908078360001183895,25000000000000000000 +avalanche_c,balancer,2,2023-12-10,0x29f3e09514ecf9385850e8fa3ab8e7ff608ad35cc1964239e75e93d0f70f530c,27,0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be,0x228a48df6819ccc2eca01e2192ebafffdad56c19,38859800,25103904239466998288,790762325051109113884 +avalanche_c,balancer,2,2023-12-10,0x29f3e09514ecf9385850e8fa3ab8e7ff608ad35cc1964239e75e93d0f70f530c,17,0x228a48df6819ccc2eca01e2192ebafffdad56c19,0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e,38859800,790923599218364991400,899592057 diff --git a/seeds/_sector/dex/balancer_base_base_trades_seed.csv b/seeds/_sector/dex/balancer_base_base_trades_seed.csv new file mode 100644 index 00000000000..e36bbaf8644 --- /dev/null +++ b/seeds/_sector/dex/balancer_base_base_trades_seed.csv @@ -0,0 +1,4 @@ +blockchain,project,version,block_date,tx_hash,evt_index,token_bought_address,token_sold_address,block_number,token_bought_amount_raw,token_sold_amount_raw +base,balancer,2,2023-12-10,0x97dd1e3f2b0691e0d6f6b51223f1259a0c4f443e71b56d4b0530dbe43d5f253a,24,0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22,0x4200000000000000000000000000000000000006,7707517,2845748796132167,3000000000000000 +base,balancer,2,2023-12-10,0xaa8d804bebd1a15ac6ab190f5a3d9f23582b5e254125edb500de8675fef262ed,7,0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c,0x4200000000000000000000000000000000000006,7707379,911615613459236,1000000000000000 +base,balancer,2,2023-12-10,0x0c9e52e42c2d94b17d82b585ac6d16e6d052eb1bd30548a3ebd3d92fea438eda,19,0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca,0x833589fcd6edb6e08f4c7c32d4f71b54bda02913,7707267,1037690,1038034 diff --git a/seeds/_sector/dex/camelot_arbitrum_base_trades_seed.csv b/seeds/_sector/dex/camelot_arbitrum_base_trades_seed.csv index df767f29b58..1fa05cc2c58 100644 --- a/seeds/_sector/dex/camelot_arbitrum_base_trades_seed.csv +++ b/seeds/_sector/dex/camelot_arbitrum_base_trades_seed.csv @@ -1,9 +1,9 @@ blockchain,project,version,block_date,tx_hash,evt_index,token_bought_address,token_sold_address,block_number,token_bought_amount_raw,token_sold_amount_raw -arbitrum,camelot,1,2023-02-10,0x03bad3b7a62d5dcde805ebcf1441e6966fdf66f4d03fabc040955e953b26e8e9,3,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0x1426cf37caa89628c4da2864e40cf75e6d66ac6b,59667017,90335152139627480,249541232038182390258 -arbitrum,camelot,1,2023-02-06,0x04fd14aa1471a9561a66fd804a5c995ec211aa7e96bbcbeb48801efdbdb236d6,3,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0x088cd8f5ef3652623c22d48b1605dcfe860cd704,58627357,224578145897488366,100000000000000000000 -arbitrum,camelot,1,2023-02-16,0x0aba2b8e2046b670abd3046e28e55e5fb521b6271d2ec8fb72c54df1f5977079,3,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0x51318b7d00db7acc4026c88c3952b66278b6a67f,61574629,707795125477354996,1759981972564611608732 -arbitrum,camelot,1,2023-02-08,0x317879e802e220cd2b910c2b477406506eff5ef62894344adc9f7e26fa3589e0,3,0xff970a61a04b1ca14834a43f5de4533ebddb5cc8,0xba42a714bc9c16be6a1ce5eb66ab4deb3904862a,59056151,466224209,3624317471564377906 -arbitrum,camelot,1,2023-02-20,0x2d820ba0c8ee0b2b3dfbe1002520bfd952fd65e6f52217722fdd83ed44b982cb,3,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0x1426cf37caa89628c4da2864e40cf75e6d66ac6b,62747795,187703905142476529,225000000000000000000 +arbitrum,camelot,2,2023-02-10,0x03bad3b7a62d5dcde805ebcf1441e6966fdf66f4d03fabc040955e953b26e8e9,3,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0x1426cf37caa89628c4da2864e40cf75e6d66ac6b,59667017,90335152139627480,249541232038182390258 +arbitrum,camelot,2,2023-02-06,0x04fd14aa1471a9561a66fd804a5c995ec211aa7e96bbcbeb48801efdbdb236d6,3,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0x088cd8f5ef3652623c22d48b1605dcfe860cd704,58627357,224578145897488366,100000000000000000000 +arbitrum,camelot,2,2023-02-16,0x0aba2b8e2046b670abd3046e28e55e5fb521b6271d2ec8fb72c54df1f5977079,3,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0x51318b7d00db7acc4026c88c3952b66278b6a67f,61574629,707795125477354996,1759981972564611608732 +arbitrum,camelot,2,2023-02-08,0x317879e802e220cd2b910c2b477406506eff5ef62894344adc9f7e26fa3589e0,3,0xff970a61a04b1ca14834a43f5de4533ebddb5cc8,0xba42a714bc9c16be6a1ce5eb66ab4deb3904862a,59056151,466224209,3624317471564377906 +arbitrum,camelot,2,2023-02-20,0x2d820ba0c8ee0b2b3dfbe1002520bfd952fd65e6f52217722fdd83ed44b982cb,3,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0x1426cf37caa89628c4da2864e40cf75e6d66ac6b,62747795,187703905142476529,225000000000000000000 arbitrum,camelot,3,2023-10-15,0x939231c21d47605a86fce8536da3cfb556a7ca4334e3f1963a23006633597f03,6,0x2ac2b254bc18cd4999f64773a966e4f4869c34ee,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,140890601,15722592055218978005,10000000000000000 arbitrum,camelot,3,2023-10-15,0xe12624f375d78828270cf0b84757b6c1e3fd2a8efddb3c25cac301fe5bfb71ae,6,0x2ac2b254bc18cd4999f64773a966e4f4869c34ee,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,140890457,264361709033944425908,168000000000000000 arbitrum,camelot,3,2023-10-15,0x810b6259d2171ca029a3ddb86dfbf682a9306443424082198afe63050fc699a9,6,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0x2ac2b254bc18cd4999f64773a966e4f4869c34ee,140887043,25539950372892309,41291921799617421711 diff --git a/seeds/_sector/dex/honeyswap_gnosis_base_trades_seed.csv b/seeds/_sector/dex/honeyswap_gnosis_base_trades_seed.csv index 8a774de76cd..5b9d9859ca5 100644 --- a/seeds/_sector/dex/honeyswap_gnosis_base_trades_seed.csv +++ b/seeds/_sector/dex/honeyswap_gnosis_base_trades_seed.csv @@ -1,6 +1,6 @@ blockchain,project,version,block_date,tx_hash,evt_index,token_bought_address,token_sold_address,block_number,token_bought_amount_raw,token_sold_amount_raw gnosis,honeyswap,2,2023-08-21,0xe0945f4c866da125593006178aebc47ad709977fa1cef3267f2f393998096208,5,0xe91d153e0b41518a2ce8dd3d7944fa863463a97d,0x9c58bacc331c9aa871afd802db6379a98e80cedb,29563580,56587850723139188289,554425654077439632 -gnosis,honeyswap,2,2023-08-21,0x61cb55ee2597cf986e9c7008d22dbed8a3199db268f1778640a7be6b69755ea5,34,0x9c58bacc331c9aa871afd802db6379a98e80cedb,0x3a97704a1b25f08aa230ae53b352e2e72ef52843,29565432,26616366730299,261298539303 -gnosis,honeyswap,2,2023-08-21,0x61cb55ee2597cf986e9c7008d22dbed8a3199db268f1778640a7be6b69755ea5,37,0xe91d153e0b41518a2ce8dd3d7944fa863463a97d,0x9c58bacc331c9aa871afd802db6379a98e80cedb,29565432,261298539303,1006924689829 +gnosis,honeyswap,2,2023-08-21,0x61cb55ee2597cf986e9c7008d22dbed8a3199db268f1778640a7be6b69755ea5,34,0x9c58bacc331c9aa871afd802db6379a98e80cedb,0x3a97704a1b25f08aa230ae53b352e2e72ef52843,29565432,261298539303,1006924689829 +gnosis,honeyswap,2,2023-08-21,0x61cb55ee2597cf986e9c7008d22dbed8a3199db268f1778640a7be6b69755ea5,37,0xe91d153e0b41518a2ce8dd3d7944fa863463a97d,0x9c58bacc331c9aa871afd802db6379a98e80cedb,29565432,26616366730299,261298539303 gnosis,honeyswap,2,2023-08-21,0x47b8a32f6fb1c87166640072a6e882be5751c9cf32bbb5bfbc0c6283b135d5c3,45,0xe91d153e0b41518a2ce8dd3d7944fa863463a97d,0x524b969793a64a602342d89bc2789d43a016b13a,29565543,3449911839519,124343025949923 gnosis,honeyswap,2,2023-08-21,0xe9a4089db84306526abfab3fd1410a6b55104753b7a2cee09353ca4754bbfff6,9,0xe68856eb29b2fb39699286cca7f10f90ce8ae9de,0xe91d153e0b41518a2ce8dd3d7944fa863463a97d,29563804,3243743285956065,10000000000000 diff --git a/seeds/_sector/dex/honeyswap_polygon_base_trades_seed.csv b/seeds/_sector/dex/honeyswap_polygon_base_trades_seed.csv new file mode 100644 index 00000000000..22105968aa7 --- /dev/null +++ b/seeds/_sector/dex/honeyswap_polygon_base_trades_seed.csv @@ -0,0 +1,4 @@ +blockchain,project,version,block_date,tx_hash,evt_index,token_bought_address,token_sold_address,block_number,token_bought_amount_raw,token_sold_amount_raw +polygon,honeyswap,2,2023-12-03,0x65d6c8f8f05ca11010bb017cb26b2f3c093742993f2a46c0c6dec7af3b508eaa,190,0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270,0x7ceb23fd6bc0add59e62ac25578270cff1b9f619,50695936,101739355794950,37950740494 +polygon,honeyswap,2,2023-12-03,0x65d6c8f8f05ca11010bb017cb26b2f3c093742993f2a46c0c6dec7af3b508eaa,184,0xb371248dd0f9e4061ccf8850e9223ca48aa7ca4b,0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270,50695936,4619480040432,100000000000000 +polygon,honeyswap,2,2023-12-03,0x65d6c8f8f05ca11010bb017cb26b2f3c093742993f2a46c0c6dec7af3b508eaa,187,0x7ceb23fd6bc0add59e62ac25578270cff1b9f619,0xb371248dd0f9e4061ccf8850e9223ca48aa7ca4b,50695936,37950740494,4619480040432 diff --git a/seeds/_sector/dex/pancake_bnb_base_trades_seed.csv b/seeds/_sector/dex/pancake_bnb_base_trades_seed.csv deleted file mode 100644 index 17c07fb7dd6..00000000000 --- a/seeds/_sector/dex/pancake_bnb_base_trades_seed.csv +++ /dev/null @@ -1,3 +0,0 @@ -blockchain,project,version,block_date,tx_hash,evt_index,token_bought_address,token_sold_address,block_number,token_bought_amount_raw,token_sold_amount_raw -bnb,pancake,2,2022-10-02,0x621c3436f07ab0c7228b50618195a1d9c19c62268d51f556fe3e9595c21cb2c6,140,0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d,0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82,21836538,4128690371495819498,918229127857603586 -bnb,pancake,2,2022-10-06,0x60655c0da9953df69117f9b0d3ff1872a50c97657ace896b365b5781f96d97cf,46,0x60655c0da9953df69117f9b0d3ff1872a50c97657ace896b365b5781f96d97cf,0xaef0d72a118ce24fee3cd1d43d383897d05b4e99,21939022,29176228605313702756,266659423741634885391646 diff --git a/seeds/_sector/dex/pancakeswap_bnb_base_trades_seed.csv b/seeds/_sector/dex/pancakeswap_bnb_base_trades_seed.csv index 438d850fdbc..51cd51a988f 100644 --- a/seeds/_sector/dex/pancakeswap_bnb_base_trades_seed.csv +++ b/seeds/_sector/dex/pancakeswap_bnb_base_trades_seed.csv @@ -12,3 +12,5 @@ bnb,pancakeswap,stableswap,2023-02-23,0xe71f7a8812df06a0b36b88a2746d1d48ad39bb5b bnb,pancakeswap,3,2023-04-02,0x34e2f3b9224779e88f114b4c4a65f1480e9caa66ff85921f9c3bba825ef51f63,266,0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c,0x55d398326f99059ff775485246999027b3197955,26999780,3526055978426,100000000000000000 bnb,pancakeswap,3,2023-04-02,0x54ce217448356994969038a892c0e7b5613ae237305a8191a95ff0d034321c52,174,0x55d398326f99059ff775485246999027b3197955,0xe9e7cea3dedca5984780bafc599bd69add087d56,27000141,193397138052959238,193427536941615611 bnb,pancakeswap,3,2023-04-02,0x570f6d65a9f3046b184feb4efea90de552b31e6b06c1a04baf645636a3389ca1,265,0x55d398326f99059ff775485246999027b3197955,0xe9e7cea3dedca5984780bafc599bd69add087d56,27000522,1000000000000000000,1002954374181880957 +bnb,pancakeswap,2,2022-10-02,0x621c3436f07ab0c7228b50618195a1d9c19c62268d51f556fe3e9595c21cb2c6,140,0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d,0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82,21836538,4128690371495819498,918229127857603586 +bnb,pancakeswap,2,2022-10-06,0x60655c0da9953df69117f9b0d3ff1872a50c97657ace896b365b5781f96d97cf,46,0xe9e7cea3dedca5984780bafc599bd69add087d56,0xaef0d72a118ce24fee3cd1d43d383897d05b4e99,21939022,29176228605313702756,266659423741634885391646 diff --git a/seeds/_sector/dex/shibaswap_ethereum_base_trades_seed.csv b/seeds/_sector/dex/shibaswap_ethereum_base_trades_seed.csv new file mode 100644 index 00000000000..ab252728e65 --- /dev/null +++ b/seeds/_sector/dex/shibaswap_ethereum_base_trades_seed.csv @@ -0,0 +1,4 @@ +blockchain,project,version,block_date,tx_hash,evt_index,token_bought_address,token_sold_address,block_number,token_bought_amount_raw,token_sold_amount_raw +ethereum,shibaswap,1,2023-12-02,0x33219e36f63e43330110152f669ef8b87c32192ff5fbc6c4affddf358dd0a667,280,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce,18699836,360302674812735419,90038948773804000000000000 +ethereum,shibaswap,1,2023-12-02,0x17fd40bfc92b4b552d9bc54eccb67ca475ac0b09428e80c3956251939485e3de,160,0x39207d2e2feef178fbda8083914554c59d9f8c00,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,18699816,525076985021237460177953682,7235374747500000 +ethereum,shibaswap,1,2023-12-02,0x569b16af719cb1aecc553a0d3d5f81b798d7d490d366c4821b76972536cd0c4c,387,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce,18699804,368918807653338456,92144923521508900500000000 diff --git a/seeds/_sector/dex/trader_joe_avalanche_c_base_trades_seed.csv b/seeds/_sector/dex/trader_joe_avalanche_c_base_trades_seed.csv index 25e697b0262..de3a1f95993 100644 --- a/seeds/_sector/dex/trader_joe_avalanche_c_base_trades_seed.csv +++ b/seeds/_sector/dex/trader_joe_avalanche_c_base_trades_seed.csv @@ -3,3 +3,5 @@ avalanche_c,trader_joe,1,2022-11-08,0x1f90838d916d2edf881ba53d8abfe5b557ff2a8d23 avalanche_c,trader_joe,1,2022-11-09,0x82cd2992be090d073b82406e3f3882c43eeb4ac7e7ce26839290c6e028b2ac3b,130,0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e,0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7,22165542,30093631,2354558311510002477 avalanche_c,trader_joe,2,2023-02-17,0x51c5b4dabbcedf31ab4379eeb163dd8a72db4ed827655e6c4019a84d59e45c0b,55,0x152b9d0fdc40c096757f570a51e494bd4b943e50,0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab,26392546,18848680,2719848912526247991 avalanche_c,trader_joe,2,2023-02-17,0x582496cdacfa83cbb32bdc9e6a7a0baecb31e43ca798728500e783b95c2b6673,14,0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab,0x152b9d0fdc40c096757f570a51e494bd4b943e50,26392419,2719848912526247990,18848680 +avalanche_c,trader_joe,2.1,2023-05-18,0x2dd8b4f7f504a643093cf610673cd64987e13d524464765bf8b276d4c35ad42c,17,0x152b9d0fdc40c096757f570a51e494bd4b943e50,0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e,30196829,4102051,1103889131 + diff --git a/seeds/dex/aggregator/dex_aggregator_seed.csv b/seeds/dex/aggregator/dex_aggregator_seed.csv index 0c4fae7faf1..d205034f618 100644 --- a/seeds/dex/aggregator/dex_aggregator_seed.csv +++ b/seeds/dex/aggregator/dex_aggregator_seed.csv @@ -59,41 +59,6 @@ fantom,lifi,2,2023-01-25,0x38b600b3239705220334188a4c7cba04e8600030ea89e2559b951 fantom,lifi,2,2023-01-25,0x47dbfbce72781d9d17c6f85c75c439d14f5b168a2660c2dbac70cba322ea329a,260,-1,0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83,34.76518051250479,0x74e23df9110aa9ea0b6ff2faee01e740ca1c642e,14 avalanche_c,odos,1,2023-01-18,0x2b315350cbc1687f12976e66c0a7b7c9d5dbaca94c3b1ab5fa1a73ca359b523e,11,,0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7,5.000449073174419283,0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be,4.716087894336552324 avalanche_c,odos,1,2023-01-18,0x7b4b4d34804f1302ba0c5eeb402af7100adb1673e90de7939263e01419201dd1,17,,0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e,1.099939,0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664,1.1 -ethereum,1inch,1,2019-06-07,0x001d8b88e6acecdd3e9102e011905b51c4223687d5a76feb32927cf9469890ee,-1,"",0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.0117241246838387,0x595832f8fc6bf59c85c527fec3740a1b7a361269,25.915473 -ethereum,1inch,1,2019-06-07,0x0197e2dc77d2bf020059569106263c7c3d6a6b23f873cb9e2f95a4139f96e32e,-1,"",0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.00148691133938498,0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6,1.14407080954539 -ethereum,1inch,2,2022-10-22,0x052b2ca8db4ca821beb3d3e6102e08a83dadfd90093e40a75c70870c18eb6374,113,-1,0x57ab1ec28d129707052df4df418d58a2d46d5f51,148.173885037512,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.115384128118319 -ethereum,1inch,2,2022-10-31,0x1c592109b15875144f64a31e73c8308889370535d83132d9c2fbabbc6c786763,372,-1,0x57ab1ec28d129707052df4df418d58a2d46d5f51,6.41798914220416,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.004112504256096 -ethereum,1inch,3,2022-12-26,0x00052d19f3a4d665c63cb49bb7b6a1cc73c66c1dd9f6d306cc30cd52827214f6,199,-1,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.0547708038990101,0xb8c77482e45f1f44de1745f52c74426c631bdd52,0.1 -ethereum,1inch,3,2022-12-14,0x0014bb84eea7796fd338d9f10ac8b58b7a30582e100de62bf29cfe4d018921ad,172,-1,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,1349.992036,0xdac17f958d2ee523a2206206994597c13d831ec7,1350 -ethereum,1inch,4,2022-11-08,0x0000967e8a44591129468a3c47a281e750daf5131816685dd0eddda71606075d,-1,"",0x2260fac5e5542a773aa44fbcfedf7c193bc2c599,0.12684114,0x0000000000085d4780b73119b644ae5ecd22b376,2500 -ethereum,1inch,4,2023-01-14,0x0000fa286524450303127a0b1e0a50c85ad3bb7c52964070649f051383274bc9,-1,"",0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.08575,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.08575 -ethereum,1inch,5,2022-12-21,0x0000252c0f5eaebc23cc5842af33f4ad12842f8d7a4829ebaf1eb44cb572ea20,-1,"",0xdac17f958d2ee523a2206206994597c13d831ec7,3173.453544,0xdb25f211ab05b1c97d595516f45794528a807ad8,3008.37 -ethereum,1inch,5,2022-11-21,0x0000359b6daee1ea68d6a0f9136133a1cf2c4fe7531b829ca83a2e084cf6f935,-1,"",0x1776e1f26f98b1a5df9cd347953a26dd3cb46671,49.5495858171502,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.47034 -ethereum,1inch,ZRX,2021-01-20,0x5ae53b77708e821a7707013d3f37bd7ff286148cd74c951fc7397010b832147c,212,-1,0x2260fac5e5542a773aa44fbcfedf7c193bc2c599,149.26094375,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,3846.93153996687 -ethereum,1inch,ZRX,2021-03-17,0x83278604e84d581f3cec336a850062eb5cfcc02233ba695992c3d3939cac7f36,48,-1,0xdac17f958d2ee523a2206206994597c13d831ec7,10926198.698548,0x6b175474e89094c44da98b954eedeac495271d0f,10915294.319523 -ethereum,1inch,1proto,2020-10-22,0x8ca987bc3f2a1edd99b73455a088748701567763e309b9503540bfe826d9626e,152,-1,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,10502982.371089,0x6b175474e89094c44da98b954eedeac495271d0f,10429242 -ethereum,1inch,1proto,2021-01-02,0xedef63db80ef2eec3ac04d1d4cc644e9aadd440fd8a58fc1d287a52d38333cf6,175,-1,0x6b175474e89094c44da98b954eedeac495271d0f,10522193.6428671,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,10522920.32 -ethereum,1inch,1split,2021-01-22,0x1c99f52052214876225a532c26dfa089865c713b34007026e28055afdaac29c9,-1,"",0x6b175474e89094c44da98b954eedeac495271d0f,24721544.1924,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,25000000 -ethereum,1inch,1split,2021-01-02,0xc5969c6dfe2243cc438f2b5fdc081ef0cfe599b034f060657268b7d6cc2df096,-1,"",0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,24798732.7302,0x6b175474e89094c44da98b954eedeac495271d0f,25000000 -ethereum,1inch,UNI v2,2022-07-13,0xb07da7aad9046972d35e0b12594ff02831bd24b6c4190cd515919bc2c4223c67,-1,"",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,9.23233046384343,0x2a3bff78b79a009976eea096a51a948a3dc00e34,45346.535645483 -ethereum,1inch,UNI v2,2022-07-17,0xb07db858ac9c83e6b4da0082e65f2136da7efb6419c45272714a7e2b8cfb2afd,-1,"0,8",0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.0305993596526917,0xdac17f958d2ee523a2206206994597c13d831ec7,41.046258 -ethereum,1inch,Clipper v1,2022-12-15,0x29259ec8a40818db6eb084d6637b2d7a253bd37be75663c4d4f9e710b04328dc,-1,"",0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,15.6758485336811,0x6b175474e89094c44da98b954eedeac495271d0f,20000 -ethereum,1inch,Clipper v1,2023-01-14,0xfa17f14c024cc38e7f89cc835378a61a008cdd109995966de53a86625c56e3f5,-1,"",0x6b175474e89094c44da98b954eedeac495271d0f,4657.5304371519,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,3 -ethereum,1inch Limit Order Protocol,eRFQ v1,2023-01-14,0x0f52698d9c9cfaf4d24210c1656494fd3c30dc0e05fbabf426b7515e492eaf27,-1,"1,0,1",0x514910771af9ca656af840dff83e8264ecf986ca,1101.3610280,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,7689.930488 -ethereum,1inch Limit Order Protocol,eRFQ v1,2023-01-14,0x3831567d4e3b4154c2d94932ae67ae744f6f037cfbc4bc2579ab0c7d946921da,-1,"1,0,2,3,1",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,3.44600806325028,0x6b3595068778dd592e39a122f4f5a5cf09c90fe2,4144.79450857425 -ethereum,1inch Limit Order Protocol,RFQ v1,2021-09-25,0x000d1395d95c67450d2e46493063710d17d19ccc38f2c4d5855947f91cb8a6c9,-1,"1,3",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,1.05,0x6b175474e89094c44da98b954eedeac495271d0f,3058.32714701875 -ethereum,1inch Limit Order Protocol,RFQ v1,2021-10-26,0x001524f6d88449bf018c6034c251d9eec18b0549b45d676d8ec7a9b47ee28aee,-1,"2,2",0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,40000,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,9.51118978982138 -ethereum,1inch Limit Order Protocol,RFQ v2,2021-12-21,0xa9a3835417067a0fbc1a83eba09569c683720097bb8ef21fb3f6d239b3c76b12,-1,"",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.00002,0xdac17f958d2ee523a2206206994597c13d831ec7,1 -ethereum,1inch Limit Order Protocol,RFQ v3,2023-01-14,0xaba4a14da90b238a0a812d061ffb11cf8e23235b1e2489f5edce9f1bf0595324,-1,"0,3,1",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.326865,0xdac17f958d2ee523a2206206994597c13d831ec7,508.216239 -ethereum,1inch Limit Order Protocol,RFQ v3,2023-01-14,0xe04fcbddc42601170e4d1d984cd1360b0892d3a7bd373a90e583db9f8c74909d,-1,"1,0,1,0,0,0,1,1,1",0xdac17f958d2ee523a2206206994597c13d831ec7,33914.728149,0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0,33997.4376931112 -ethereum,1inch Limit Order Protocol,1,2022-12-03,0x16d338669352e5e09317d076869e445defb1985c877679b23494b4a25a7b1b69,-1,"1,1,0",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.0754813187810949,0xb8c77482e45f1f44de1745f52c74426c631bdd52,0.1161251058170690 -ethereum,1inch Limit Order Protocol,1,2022-12-12,0x6d0b6db10767a92787e10ba33d0d0cff5d690610f4cd37ebae93a06fd2c2055c,-1,"5,1,5",0x68eb95dc9934e19b86687a10df8e364423240e94,0.0824886222139734,0xdac17f958d2ee523a2206206994597c13d831ec7,18.55994 -ethereum,1inch Limit Order Protocol,2,2022-12-12,0x07467de601ef2837781750d193fb357beef0d50b511c5c849a0247708f3bfa4d,-1,"1,0,1",0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2,0.13615628,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.0673987201628 -ethereum,1inch Limit Order Protocol,2,2023-01-14,0x41c3ba345bd8cb15618bb552ad028a9d71569ec83a9a50784087bbdf4bd939a1,-1,"1,2,1",0x075b1bb99792c9e1041ba13afef80c91a1e70fb3,0.0655792525715509,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.00003934755154293 -ethereum,1inch Limit Order Protocol,3,2023-01-14,0x0446ab4f7a9a4d765f928db00e4beb28bd5aa199e9b88bd527cc2ba28948ecdb,-1,"1,0",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.107251774396181,0xa8b919680258d369114910511cc87595aec0be6d,17.9896 -ethereum,1inch Limit Order Protocol,3,2023-01-14,0x05ac50d8058e90417c85e0cd87508722ccaae23c8249e319f6ae5cffda8107b2,-1,"1,0",0xdd974d5c2e2928dea5f71b9825b8b646686bd200,682.810765065945,0xdac17f958d2ee523a2206206994597c13d831ec7,450 -ethereum,1inch,UNI v3,2022-07-30,0xb07db4e27b69f65568026181ffba85a37c93baebd23812332232b18f30abad2a,-1,"1,0,1",0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.0198255454655366,0xae78736cd615f374d3085123a210448e74fc6393,0.0194817986885722 -ethereum,1inch,UNI v3,2022-11-12,0xb07dcf3cf82bb1dd1f9ab6da1562b1af01297e39c9a412a040e9570a67dbd833,-1,"",0x9aab071b4129b083b01cb5a0cb513ce7eca26fa5,10053.0060517593,0xdac17f958d2ee523a2206206994597c13d831ec7,2396.746429 polygon,bebop,2,2023-04-07,0x3107f005f3069e340d7316a5a6372cce5e0b2ba3c42eedc1f4e08e29903620c2,194,"0,0",0x7ceb23fd6bc0add59e62ac25578270cff1b9f619,0.16149840785059086,0x2791bca1f2de4661ed88a30c99a7a9449aa84174,300 arbitrum,bebop,2,2023-04-07,0xeec27114877fa983d5c8cbc9a5cb55dd966ad35e0d35ce30394ed8cd03faee12,12,"0,0",0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9,152.13967,0x539bde0d7dbd336b79148aa742883198bbf60342,115 ethereum,bebop,2,2023-04-07,0xd41613c9af3ef4adf84279f2b211a441aa3a37dd1c546d018ca6082911ccf743,24,"0,0",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.08539524191852751,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,170.855956 @@ -108,6 +73,7 @@ ethereum,tokenlon,5,2021-06-25,0xede75bd74812fc682e62f03190abe22d2fdb11e1c3cf6cc ethereum,tokenlon,5,2022-12-20,0xb68614d5fdcefcb9ea869dfe0a1381f115d3f8077bf82ab6517ebbb0f4772588,389,,0xdac17f958d2ee523a2206206994597c13d831ec7,47.083995,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.039 ethereum,tokenlon,5,2022-10-18,0xc168eb7ad27401aeea77e7b1c7f4dc77f8ee2453de1baec2cd3dea32c9e09c3c,384,,0xdac17f958d2ee523a2206206994597c13d831ec7,9806.7654,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,7.47 ethereum,tokenlon,5,2021-05-24,0xbe1eda9d0666fd82196e45134909e55a504c6001a43ebc5eadfd55f9dbf8fc1f,101,,0xdac17f958d2ee523a2206206994597c13d831ec7,12905.054001,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,5 +ethereum,tokenlon,5,2023-09-12,0x70849c292241579da9fdf1b77402c767ab85b46d2feb22fbfdaa27ca78133332,321,-1,0xdac17f958d2ee523a2206206994597c13d831ec7,1.574092,0x0000000000000000000000000000000000000000,0.001 optimism,lifi,2,2022-11-18,0xf97908921fddb1fdbaecc62e25a405ecca6f9acf39c7d2e0daf35b2e799c4797,19,-1,0x7f5c764cbc14f9669b88837ca1490cca17c31607,7.301198,0x4200000000000000000000000000000000000006,0.006 optimism,lifi,2,2023-08-15,0x23fb004c92fad2fd7003093e8f6c6a0b3eb3830b55e736eaa4cbe044f9fea8d5,64,-1,0x94b008aa00579c1307b0ef2c499ad98a8ce58e58,931.396156,0x4200000000000000000000000000000000000006,0.505 arbitrum,kyberswap,meta_2,2023-08-13,0x0a3b1054c1065828d7cd76e68f59f20ff06adabcfdedf45268829a7bd13e4d96,18,-1,0xff970a61a04b1ca14834a43f5de4533ebddb5cc8,3.38666,0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb,4.990012883404284347 @@ -119,3 +85,35 @@ polygon,kyberswap,meta_2,2023-08-14,0xfe7648d2d2ed49aec73161ad9cbafc683c8064c6aa polygon,bebop,2,2023-09-25,0x2abbf7e30ae6ef8e17118b79b598a917f96f22f02c6eee2a13c29ab2961e881d,176,"0,0",0x7ceb23fd6bc0add59e62ac25578270cff1b9f619,0.049985504181956,0x2791bca1f2de4661ed88a30c99a7a9449aa84174,78.771411 arbitrum,bebop,2,2023-09-25,0x2af142a5552d7503a1b5439dfc603b8c4b3e6d5f562851c4d9d1a8a96c8a9e5d,4,"0,0",0xda10009cbd5d07dd0cecc66161fc93d7c9000da1,267.88882458663824,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0.17 ethereum,bebop,2,2023-09-25,0xc6c34a5aafe799c871433153f537bdf846262f38728f8f26c53975e1cd2b433b,181,"0,0",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,0.4004483561850776,0xdac17f958d2ee523a2206206994597c13d831ec7,636.7891 +arbitrum,1inch,AR v3,2021-09-14,0x4b7f48006780dae4a566383ad44929e6aeb56efae97549b1277fab5f770b92b0,-1,,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0.005,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.005 +arbitrum,1inch,AR v4,2021-11-13,0x23f1ffb23f419a54c04afdba025ed5a6aef5b94a25875e51341cdb17aaf3e0ac,-1,,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,1,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,1 +arbitrum,1inch,AR v5,2022-11-07,0xac0cb36f667bff10c966b40a148b114f91d14f2b45eedcb118d1385cff5bc28f,-1,,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.000940493004326449,0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9,1.476325 +avalanche_c,1inch,AR v4,2022-01-18,0x557fa395cc5aad611d4e7ba0db9f2e67eedf91b6d67d4014aa7caaee827f0494,-1,,0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab,0.001351293360018017,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.05 +avalanche_c,1inch,AR v5,2022-11-07,0x953064be41aeb1bc998cf233b14b7f9dc1d2dbe365a3a2626726c6ba80500c3d,-1,,0xc7198437980c041c805a1edcba50c1ce5db95118,0.018208,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.001 +base,1inch,AR v5,2023-08-11,0x72ae4fe4f8090355db406dbc3b570c5b073079e23f26a80471f5fc87a9011bc3,-1,,0x27d2decb4bfc9c76f0309b8e88dec3a601fe25a8,166.14608558640663,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.001 +bnb,1inch,AR v2,2021-02-18,0x77013b0382fd64e0fef779c9011a5d5a771a4c891a9ba3c48141660c57d8aa38,-1,,0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c,0.0001,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.0001 +bnb,1inch,AR v3,2021-03-15,0x54b707cec680715f58cc2abf64cb1bc253ccacdb7feaf54576f35ae22cd039e3,-1,,0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c,0.12677988506630714,0x111111111117dc0aa78b770fa6a738034120c302,7.8447 +bnb,1inch,AR v4,2021-11-09,0xfdc65a12ac7eb12940c7831fe30b1e73f118fe65223f1f74b55391ec6d158e42,-1,,0x52ce071bd9b1c4b00a0b92d298c512478cad67e8,0.002768320737827286,0x55d398326f99059ff775485246999027b3197955,1 +bnb,1inch,AR v5,2022-11-04,0xe0c9c0f1ad68af51f3a1f7c1eddfea20ed17705e74136eaeecc2fce4abc4f9d0,-1,,0x55d398326f99059ff775485246999027b3197955,1.9997160579148516,0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d,2 +ethereum,1inch,AR v0.1,2019-06-03,0x4324e81f21c5fb885b7a7235d448a27af0ccba9887f60dcf7f80467ddb7bc650,-1,,0xdd974d5c2e2928dea5f71b9825b8b646686bd200,0.9767535519008722,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.001 +ethereum,1inch,AR v0.2,2019-06-10,0xfbece2cccbaa4fb2aec9d8b95cbba4cc0b827441f41f9f1e664bae651f20bcfa,-1,,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.1190076630698747,0xdd974d5c2e2928dea5f71b9825b8b646686bd200,105.75082157610001 +ethereum,1inch,AR v0.3,2019-06-19,0xc2484e0642168421e6cd3147354b25975d9640eb2dac4ef2c520693698fa6f3f,-1,,0x39bb259f66e1c59d5abef88375979b4d20d98022,255.07025047,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.1 +ethereum,1inch,AR v0.4,2019-07-19,0xb357f7c17dd510732d636f7d2436822d8f36d73415e744b5b5e5ad559408ec66,-1,,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.66822525612731,0x514910771af9ca656af840dff83e8264ecf986ca,56.315 +ethereum,1inch,AR v0.5,2019-07-18,0x9c586500c398ed8bcd0e9e135723ac595f950588bc2f435e7ba0d1fa9c69f33f,-1,,0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206,5984.216073204434,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,2.5 +ethereum,1inch,AR v0.6,2019-07-19,0x397efff22d853f6b6155db71cf599d28e632762288757e10f3fdde9614105b11,-1,,0xdd974d5c2e2928dea5f71b9825b8b646686bd200,12.134432799221276,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.01 +ethereum,1inch,AR v0.7,2019-09-17,0x24d0d8b14cbf960366f34bae5cc35b228278755c92b265a1692534db64df3632,-1,,0x0d8775f648430679a709e98d2b0cb6250d2887ef,1021.7806889519711,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.9 +ethereum,1inch,AR v1,2019-09-28,0x889164e561a65fdd3990af835b8a369f2849d16fe32b6085c74056d70de1e889,-1,,0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf,1.054116024,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.28 +ethereum,1inch,AR v2,2020-11-04,0x50184c6a531249c82084d5b1e680ba6d4da09686f551f03051f8f97b3c60cd1c,-1,,0xdac17f958d2ee523a2206206994597c13d831ec7,4.008924,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.01 +ethereum,1inch,AR v3,2021-03-15,0x745eac933cdf39c5438488869ce8c03fe2038eb948ad211a963f571f68bad949,-1,,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.01343962981217908,0x2260fac5e5542a773aa44fbcfedf7c193bc2c599,0.0004 +ethereum,1inch,AR v4,2021-11-07,0x78289103b6f397040bbb31e24705915a11e49be7901a0cfd817661b8d42df4cf,-1,,0x1f9840a85d5af5bf1d1762f925bdaddc4201f984,0.10551485773862178,0xdac17f958d2ee523a2206206994597c13d831ec7,2 +ethereum,1inch,AR v5,2022-11-04,0x571d46da95231ba558d87cb27c67efd50c7adca076b17c7f20a1cdbcb1c802ab,-1,"3,1",0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,100.18425233390363,0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2,100 +fantom,1inch,AR v4,2022-04-05,0x4640969934ce8fb96b72778fd5790f23fa14df5a5831931df81d463a1f9965f5,-1,,0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83,1,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,1 +fantom,1inch,AR v5,2022-11-04,0x61edaf65a4f8eb9645707c9b18ca74dbd8d5b0944def94c60eb241cdc95bc873,-1,"3,1",0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83,5003.345593241593,0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83,5000 +gnosis,1inch,AR v4,2022-01-14,0x971f68985032b6a50aaeeaaeb4962655803f765dfd2efb4e46511b0c5741aae4,-1,,0xe91d153e0b41518a2ce8dd3d7944fa863463a97d,12.609,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,12.609 +gnosis,1inch,AR v5,2022-11-07,0xe0cfdc8b93d26f2b07fb1cdf5c2cd3f8b72d7a548180047d72c1f6a7870f9e8d,-1,,0x4ecaba5870353805a9f068101a40e0f32ed605c6,0.99968,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,1 +optimism,1inch,AR v3,2021-11-13,0xe6d782086c67cf7336d3b614c70df2a0a6fa509e502256f5139633cc206e6f06,-1,,0x4200000000000000000000000000000000000006,3.7787093753041474,0x68f180fcce6836688e9084f035309e29bf0a2095,0.27474175 +optimism,1inch,AR v4,2021-11-15,0x15d1c28f18ad6e3152abaa2a00046b02980acd434dde8195fb1dbf98dddd320e,-1,,0xda10009cbd5d07dd0cecc66161fc93d7c9000da1,0.009993224321710448,0x94b008aa00579c1307b0ef2c499ad98a8ce58e58,0.01 +optimism,1inch,AR v5,2022-11-07,0x65458306424f0f21248dcd1758dbf91decb41f853e52a4273c9a04501cb41f67,-1,,0xda10009cbd5d07dd0cecc66161fc93d7c9000da1,1.605915705033996,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,0.001 +polygon,1inch,AR v3,2021-05-12,0xfa3f410f0dc275ade43e009e1289e455b1ee16b4c50bccf52ddbabad0bf77474,-1,,0x8f3cf7ad23cd3cadbd9735aff958023239c6a063,0.011620135007290292,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, +polygon,1inch,AR v4,2021-11-09,0x5c3f93d52361e3337a84493efd7a55ff669c1f754facf477f63fbdf427298052,-1,,0x8f3cf7ad23cd3cadbd9735aff958023239c6a063,1.8364855389353625,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, +polygon,1inch,AR v5,2022-11-04,0x3713f6bc4d359117f43a9358d14c8ee6067de1bb2451d821a046ec5736057c4c,-1,"3,1",0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270,5000.269483526215,0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270,5000 diff --git a/seeds/dex/offers/dex_offers_seed.csv b/seeds/dex/offers/dex_offers_seed.csv index 5b9f13122ea..c6027d41094 100644 --- a/seeds/dex/offers/dex_offers_seed.csv +++ b/seeds/dex/offers/dex_offers_seed.csv @@ -1,5 +1,5 @@ blockchain,project,version,block_date,block_time,block_number,tx_index,evt_index,maker,sell_token_symbol,buy_token_symbol,sell_token_address,buy_token_address,token_pair,sell_amount,buy_amount,sell_amount_raw,buy_amount_raw,sold_amount,bought_amount,sold_amount_raw,bought_amount_raw,sell_amount_usd,buy_amount_usd,sold_amount_usd,bought_amount_usd,gas_price,gas_used,l1_gas_price,l1_gas_used,l1_fee_scalar,txn_cost_eth,eth_price,txn_cost_usd,project_contract_address,tx_hash,tx_from,tx_to -optimism,rubicon,1,2022-10-27,2022-10-27 07:48:11.000 UTC,31906489,0,21,0x1be63db5051c126f54ad0807e1b471ad9aa0befd,USDC,WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,0x4200000000000000000000000000000000000006,USDC-WETH,7766.727108,4.996029381343988,7766727108,4996029381343988440,0.318763,0.000205047672145577,318763,205047672145577,7764.420390048924,7763.979539489998,0.31866832738900003,0.318650233944391,1000000,1434427,10230959721,7800,1,0.0000812359128238,1554.2,0.12402890369434996,0x7a512d3609211e719737e82c7bb7271ec05da70d,0xcc53ee38bb1c612028e2b72c520a3f048a1dcdd41624fa6e0249b13c10d7e9d8,0xde4de639d699a66f860814468298639c49e4f778,0x1be63db5051c126f54ad0807e1b471ad9aa0befd -optimism,rubicon,1,2022-10-27,2022-10-27 18:30:41.000 UTC,32055606,0,16,0x1be63db5051c126f54ad0807e1b471ad9aa0befd,WETH,USDC,0x4200000000000000000000000000000000000006,0x7f5c764cbc14f9669b88837ca1490cca17c31607,USDC-WETH,4.095978184020971,6375.706062,4095978184020970581,6375706062,0.013464157529524373,20.957999,13464157529524374,20957999,6355.155911199577,6375.055739981676,20.890448256508837,20.955861284102,1000000,1435736,23865784492,7800,1,0.0001875888550376,1554.99,0.2894676743082776,0x7a512d3609211e719737e82c7bb7271ec05da70d,0xe71047b9d0f7d444c9e76c9a778134bf31804a9b114785454e0e18482ceb7147,0xde4de639d699a66f860814468298639c49e4f778,0x1be63db5051c126f54ad0807e1b471ad9aa0befd -optimism,rubicon,1,2022-10-27,2022-10-27 10:54:18.000 UTC,31950512,0,26,0x1be63db5051c126f54ad0807e1b471ad9aa0befd,WETH,USDC,0x4200000000000000000000000000000000000006,0x7f5c764cbc14f9669b88837ca1490cca17c31607,USDC-WETH,0.7632149059767752,1179.360048,763214905976775215,1179360048,0.013562828439531176,20.957999,13562828439531177,20957999,1179.846291000437,1179.235035834912,20.96664085638685,20.955777452106,1000000,1423622,13787500847,7788,1,0.00010880067859643599,1543.17,0.16570247604992214,0x7a512d3609211e719737e82c7bb7271ec05da70d,0x14e33c6482d81ea69a67b9da604ef62926cd0aeaa83fcf6d319d4c6751aa0cd9,0xde4de639d699a66f860814468298639c49e4f778,0x1be63db5051c126f54ad0807e1b471ad9aa0befd -optimism,rubicon,1,2022-10-27,2022-10-27 07:48:11.000 UTC,31906489,0,26,0x1be63db5051c126f54ad0807e1b471ad9aa0befd,WETH,USDC,0x4200000000000000000000000000000000000006,0x7f5c764cbc14f9669b88837ca1490cca17c31607,USDC-WETH,0.7959047066234507,1239.796719,795904706623450697,1239796719,0.014706167521776623,22.908091,14706167521776622,22908091,1236.859791234041,1239.428499374457,22.853825513866525,22.901287296973,1000000,1434427,10230959721,7800,1,0.0000812359128238,1554.2,0.12402890369434996,0x7a512d3609211e719737e82c7bb7271ec05da70d,0xcc53ee38bb1c612028e2b72c520a3f048a1dcdd41624fa6e0249b13c10d7e9d8,0xde4de639d699a66f860814468298639c49e4f778,0x1be63db5051c126f54ad0807e1b471ad9aa0befd +optimism,rubicon,1,2022-10-27,2022-10-27 07:48:11.000 UTC,31906489,0,21,0x1be63db5051c126f54ad0807e1b471ad9aa0befd,USDC.e,WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,0x4200000000000000000000000000000000000006,USDC.e-WETH,7766.727108,4.996029381343988,7766727108,4996029381343988440,0.318763,0.000205047672145577,318763,205047672145577,7764.420390048924,7763.979539489998,0.31866832738900003,0.318650233944391,1000000,1434427,10230959721,7800,1,0.0000812359128238,1554.2,0.12402890369434996,0x7a512d3609211e719737e82c7bb7271ec05da70d,0xcc53ee38bb1c612028e2b72c520a3f048a1dcdd41624fa6e0249b13c10d7e9d8,0xde4de639d699a66f860814468298639c49e4f778,0x1be63db5051c126f54ad0807e1b471ad9aa0befd +optimism,rubicon,1,2022-10-27,2022-10-27 18:30:41.000 UTC,32055606,0,16,0x1be63db5051c126f54ad0807e1b471ad9aa0befd,WETH,USDC.e,0x4200000000000000000000000000000000000006,0x7f5c764cbc14f9669b88837ca1490cca17c31607,USDC.e-WETH,4.095978184020971,6375.706062,4095978184020970581,6375706062,0.013464157529524373,20.957999,13464157529524374,20957999,6355.155911199577,6375.055739981676,20.890448256508837,20.955861284102,1000000,1435736,23865784492,7800,1,0.0001875888550376,1554.99,0.2894676743082776,0x7a512d3609211e719737e82c7bb7271ec05da70d,0xe71047b9d0f7d444c9e76c9a778134bf31804a9b114785454e0e18482ceb7147,0xde4de639d699a66f860814468298639c49e4f778,0x1be63db5051c126f54ad0807e1b471ad9aa0befd +optimism,rubicon,1,2022-10-27,2022-10-27 10:54:18.000 UTC,31950512,0,26,0x1be63db5051c126f54ad0807e1b471ad9aa0befd,WETH,USDC.e,0x4200000000000000000000000000000000000006,0x7f5c764cbc14f9669b88837ca1490cca17c31607,USDC.e-WETH,0.7632149059767752,1179.360048,763214905976775215,1179360048,0.013562828439531176,20.957999,13562828439531177,20957999,1179.846291000437,1179.235035834912,20.96664085638685,20.955777452106,1000000,1423622,13787500847,7788,1,0.00010880067859643599,1543.17,0.16570247604992214,0x7a512d3609211e719737e82c7bb7271ec05da70d,0x14e33c6482d81ea69a67b9da604ef62926cd0aeaa83fcf6d319d4c6751aa0cd9,0xde4de639d699a66f860814468298639c49e4f778,0x1be63db5051c126f54ad0807e1b471ad9aa0befd +optimism,rubicon,1,2022-10-27,2022-10-27 07:48:11.000 UTC,31906489,0,26,0x1be63db5051c126f54ad0807e1b471ad9aa0befd,WETH,USDC.e,0x4200000000000000000000000000000000000006,0x7f5c764cbc14f9669b88837ca1490cca17c31607,USDC.e-WETH,0.7959047066234507,1239.796719,795904706623450697,1239796719,0.014706167521776623,22.908091,14706167521776622,22908091,1236.859791234041,1239.428499374457,22.853825513866525,22.901287296973,1000000,1434427,10230959721,7800,1,0.0000812359128238,1554.2,0.12402890369434996,0x7a512d3609211e719737e82c7bb7271ec05da70d,0xcc53ee38bb1c612028e2b72c520a3f048a1dcdd41624fa6e0249b13c10d7e9d8,0xde4de639d699a66f860814468298639c49e4f778,0x1be63db5051c126f54ad0807e1b471ad9aa0befd diff --git a/seeds/dex/trades/dex_trades_seed.csv b/seeds/dex/trades/dex_trades_seed.csv index 748c700eea6..bf55f1b2dcb 100644 --- a/seeds/dex/trades/dex_trades_seed.csv +++ b/seeds/dex/trades/dex_trades_seed.csv @@ -532,4 +532,9 @@ optimism,mummy_finance,1,2023-06-30,0x671265ebe5dd61134633adf575ba80faec6be09027 optimism,mummy_finance,1,2023-06-09,0xd7cadb14f39a79bf0ca3ea0ebf9aa85caa1465da154010294ee502942a8de5d4,21,0x4200000000000000000000000000000000000006,1.530834771081591,0x4200000000000000000000000000000000000042,2097.160814236567 optimism,hashflow,1,2023-04-13,0x0c2c4ed714220d38b0f93b13398e7bd7454120a07a1188095a740afc055e85dd,5,0xda10009cbd5d07dd0cecc66161fc93d7c9000da1,1.0942802244,0x7f5c764cbc14f9669b88837ca1490cca17c31607,1.0945 optimism,hashflow,1,2023-07-26,0xc5237e5f00c0f8059bf9d21edca6f541fdd3e11331e0204aa3792be7d71742f8,54,0x4200000000000000000000000000000000000006,0.22758095181286583,0x94b008aa00579c1307b0ef2c499ad98a8ce58e58,425.593457 -optimism,hashflow,1,2022-10-26,0xa4cc224376e71b43c83a9913f466986d2b51f0b0bd5e6102d2e93ade474991d8,1,0x7f5c764cbc14f9669b88837ca1490cca17c31607,0.999996,0x94b008aa00579c1307b0ef2c499ad98a8ce58e58,1 \ No newline at end of file +optimism,hashflow,1,2022-10-26,0xa4cc224376e71b43c83a9913f466986d2b51f0b0bd5e6102d2e93ade474991d8,1,0x7f5c764cbc14f9669b88837ca1490cca17c31607,0.999996,0x94b008aa00579c1307b0ef2c499ad98a8ce58e58,1 +avalanche_c,trader_joe,2.1,2023-08-17,0x3eccbee27f56c671eccd2ad82fca3b0448053d8d978a2003025817529b33c47a,5,0xc7198437980c041c805a1edcba50c1ce5db95118,154.777492,0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7,154.714055 +avalanche_c,trader_joe,2.1,2023-08-17,0xd74525e25428aa4d32f129511ed8349516aeff791691277551663ad944fafeed,2,0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7,100.00000003864702,0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e,1120.132837 +avalanche_c,trader_joe,2.1,2023-08-17,0xbacddb47282c250d7126995a0a32a77e2be8c98e69b85c7dd3ef9cdb295b5084,8,0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7,8.961454748219834,0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e,99.979979 +avalanche_c,trader_joe,2.1,2023-08-17,0x29946138727b0557036d93d5b4c81f95175e711ce8ab443d2f6b1b1c8c92786e,14,0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7,7427.555309,0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7,672.1804038165711 +avalanche_c,trader_joe,2.1,2023-08-17,0x29946138727b0557036d93d5b4c81f95175e711ce8ab443d2f6b1b1c8c92786e,13,0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7,0.847235,0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7,0.07651931900157347 diff --git a/seeds/zeroex/fantom/zeroex_fantom_api_fills_deduped_sample.csv b/seeds/zeroex/fantom/zeroex_fantom_api_fills_deduped_sample.csv index a2a2c06bace..00457add041 100644 --- a/seeds/zeroex/fantom/zeroex_fantom_api_fills_deduped_sample.csv +++ b/seeds/zeroex/fantom/zeroex_fantom_api_fills_deduped_sample.csv @@ -1,5 +1,5 @@ blockchain,block_date,block_time,taker_symbol,maker_symbol,token_pair,taker_token_amount,maker_token_amount,taker_token_amount_raw,maker_token_amount_raw,volume_usd,taker_token,maker_token,taker,maker,affiliate_address,tx_hash,tx_from,tx_to,evt_index,type,swap_flag,fills_within -fantom,2023-01-01,2023-01-01 21:08,WFTM,USDC,USDC-WFTM,60.28560824406663,12.123117,6.028560824406663e+19,1.2123117e+07,12.130099915392,0x82f0b8b456c1a451378467398982d4834b6829c1,0x04068da6c83afcfa0e13ba15a6696662335d5b75,0x534967322b518ca7910eb019220c3a2b4ca778e4,0x0000000f53796e61707365000000000000000000,0x1000000000000000000000000000000000000011,0x09812753d268ee194af25985d4e1b859fa4d26348c22e32468e744bf639de68e,0x534967322b518ca7910eb019220c3a2b4ca778e4,0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae,247,BridgeFill,true,2 +fantom,2023-01-01,2023-01-01 21:08,WFTM,USDC,USDC-WFTM,60.28560824406663,12.123117,6.028560824406663e+19,1.2123117e+07,12.130099915392,0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83,0x04068da6c83afcfa0e13ba15a6696662335d5b75,0x534967322b518ca7910eb019220c3a2b4ca778e4,0x0000000f53796e61707365000000000000000000,0x1000000000000000000000000000000000000011,0x09812753d268ee194af25985d4e1b859fa4d26348c22e32468e744bf639de68e,0x534967322b518ca7910eb019220c3a2b4ca778e4,0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae,247,BridgeFill,true,2 fantom,2023-01-01,2023-01-01 02:13,ICE,USDC,ICE-USDC,,313.643813,7.347494171021889e+20,3.13643813e+08,313.781188990094,0xf16e81dce15b08f326220742020379b855b87df9,0x04068da6c83afcfa0e13ba15a6696662335d5b75,0xa311f7ca3eb2fb98123a807f9b8e4bbbdbdcb2ee,0x0000000253757368695377617000000000000000,0x1000000000000000000000000000000000000011,0x0bc2c2e389c7b7be1476061da617e0edf77e0d1e7cb16137a1a7d943021c8a3e,0xa311f7ca3eb2fb98123a807f9b8e4bbbdbdcb2ee,0xdef189deaef76e379df891899eb5a00a94cbc250,38,BridgeFill,true,1 fantom,2023-01-01,2023-01-01 02:13,ICE,USDC,ICE-USDC,,393.987003,9.184367713777359e+20,3.93987003e+08,394.159569307314,0xf16e81dce15b08f326220742020379b855b87df9,0x04068da6c83afcfa0e13ba15a6696662335d5b75,0xa311f7ca3eb2fb98123a807f9b8e4bbbdbdcb2ee,0x0000000253706f6f6b7953776170000000000000,0x1000000000000000000000000000000000000011,0x0bc2c2e389c7b7be1476061da617e0edf77e0d1e7cb16137a1a7d943021c8a3e,0xa311f7ca3eb2fb98123a807f9b8e4bbbdbdcb2ee,0xdef189deaef76e379df891899eb5a00a94cbc250,30,BridgeFill,true,1 fantom,2023-01-01,2023-01-01 02:13,ICE,USDC,ICE-USDC,,156.79855,3.6737470855109444e+20,1.5679855e+08,156.8672277649,0xf16e81dce15b08f326220742020379b855b87df9,0x04068da6c83afcfa0e13ba15a6696662335d5b75,0xa311f7ca3eb2fb98123a807f9b8e4bbbdbdcb2ee,0x0000000253706972697453776170000000000000,0x1000000000000000000000000000000000000011,0x0bc2c2e389c7b7be1476061da617e0edf77e0d1e7cb16137a1a7d943021c8a3e,0xa311f7ca3eb2fb98123a807f9b8e4bbbdbdcb2ee,0xdef189deaef76e379df891899eb5a00a94cbc250,22,BridgeFill,true,1 diff --git a/seeds/zeroex/polygon/_schema.yml b/seeds/zeroex/polygon/_schema.yml index b42ec9d5ab1..ba9c8de25e1 100644 --- a/seeds/zeroex/polygon/_schema.yml +++ b/seeds/zeroex/polygon/_schema.yml @@ -1,6 +1,16 @@ version: 2 seeds: + - name: zeroex_polygon_nft_fills_sample + config: + column_types: + block_date: timestamp + evt_index: int + tx_hash: varbinary + maker: varbinary + taker: varbinary + nft_address: varbinary + nft_id: int - name: zeroex_polygon_api_fills_sample config: column_types: @@ -55,4 +65,4 @@ seeds: volume_usd: double tx_from: varbinary tx_to: varbinary - fills_within: int \ No newline at end of file + fills_within: int diff --git a/seeds/zeroex/polygon/zeroex_polygon_nft_fills_sample.csv b/seeds/zeroex/polygon/zeroex_polygon_nft_fills_sample.csv index 07921d580a2..8006547d632 100644 --- a/seeds/zeroex/polygon/zeroex_polygon_nft_fills_sample.csv +++ b/seeds/zeroex/polygon/zeroex_polygon_nft_fills_sample.csv @@ -1,6 +1,6 @@ -block_time,block_date,evt_index,tx_hash,maker,taker,matcher,nft_address,nft_id,label,price_label,token,token_amount_raw,symbol,price_usd,token_amount,project_name -2023-01-06 15:51,2023-01-06 0:00,361,0x945f18e5f1d87d27002f44dedc26f41eb5368d423739f594c4b3d7bca32ab62d,0x928a3bf08207133af0ec7b27be751678b1e40672,0xc2ce94d1a39e1a2e39f6b88da42c8e5cc89f2e6c,0,0x54a3543ca1a7176ba36fbcf45a0314e849590e0c,178,erc721,0x7ceb23fd6bc0add59e62ac25578270cff1b9f619,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,1.96E+18,ETH,2467.6988,1.96E+00, -2023-01-06 15:38,2023-01-06 0:00,250,0x1ba0fdf399c7559d3d9b87197ecbf2525c1c71fd97fe4b6399897cd22d47a3b1,0xa448f1f0d68f9743485fde794065bc7fadc85f28,0xc2ce94d1a39e1a2e39f6b88da42c8e5cc89f2e6c,0,0x37a310401d58c9545da86ff66aa953bae6fb6272,11321,erc721,0x7ceb23fd6bc0add59e62ac25578270cff1b9f619,0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,1.48E+18,ETH,1.85E+03,1.48E+00, -2023-01-06 9:58,2023-01-06 0:00,410,0x75e51058a3fd4948adabfab3556ba852465dd3c3afc4c1582ba30be14dbf1441,0x4b22c6ebfef335953fb33adfa0196c80a3a5ee97,0x472afd5a5303ac2799475687e943bba72846bd6b,0,0x2014ff34f615b811d784a7947492482ca2e8a016,1,erc721,0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270,0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270,1.81E+17,WMATIC,1.41E-01,1.81E-01, -2023-01-06 6:46,2023-01-06 0:00,166,0xf8a5711aa2cf4bbb9eb9d59a53cc66cb6f8c8e438667b151a4449ac983dd1017,0x6934b7875feabe4fa129d4988ca6decd1dca9c2b,0xdaf60d937a200b36688e4bfba68ef026231570ef,0,0xa72bb52957b60a1a41d0f33a1d5685f12c0df3b5,68,erc721,0x2791bca1f2de4661ed88a30c99a7a9449aa84174,0x2791bca1f2de4661ed88a30c99a7a9449aa84174,1.00E+05,USDC,1.00E-01,1.00E-01, -2023-01-06 5:30,2023-01-06 0:00,323,0x59b2ece53b6c4aa2174d9a294cf1b060c25cdf268be56e21a0f3a81896f1d53b,0x6934b7875feabe4fa129d4988ca6decd1dca9c2b,0xdaf60d937a200b36688e4bfba68ef026231570ef,0,0xa3031276b6679274abcdeb354cdfd38864f05669,36,erc721,0x2791bca1f2de4661ed88a30c99a7a9449aa84174,0x2791bca1f2de4661ed88a30c99a7a9449aa84174,1.00E+04,USDC,0.01000746,1.00E-02, \ No newline at end of file +block_date,evt_index,tx_hash,maker,taker,nft_address,nft_id +2023-01-06 0:00,361,0x945f18e5f1d87d27002f44dedc26f41eb5368d423739f594c4b3d7bca32ab62d,0x928a3bf08207133af0ec7b27be751678b1e40672,0xc2ce94d1a39e1a2e39f6b88da42c8e5cc89f2e6c,0x54a3543ca1a7176ba36fbcf45a0314e849590e0c,178 +2023-01-06 0:00,250,0x1ba0fdf399c7559d3d9b87197ecbf2525c1c71fd97fe4b6399897cd22d47a3b1,0xa448f1f0d68f9743485fde794065bc7fadc85f28,0xc2ce94d1a39e1a2e39f6b88da42c8e5cc89f2e6c,0x37a310401d58c9545da86ff66aa953bae6fb6272,11321 +2023-01-06 0:00,410,0x75e51058a3fd4948adabfab3556ba852465dd3c3afc4c1582ba30be14dbf1441,0x4b22c6ebfef335953fb33adfa0196c80a3a5ee97,0x472afd5a5303ac2799475687e943bba72846bd6b,0x2014ff34f615b811d784a7947492482ca2e8a016,1 +2023-01-06 0:00,166,0xf8a5711aa2cf4bbb9eb9d59a53cc66cb6f8c8e438667b151a4449ac983dd1017,0x6934b7875feabe4fa129d4988ca6decd1dca9c2b,0xdaf60d937a200b36688e4bfba68ef026231570ef,0xa72bb52957b60a1a41d0f33a1d5685f12c0df3b5,68 +2023-01-06 0:00,323,0x59b2ece53b6c4aa2174d9a294cf1b060c25cdf268be56e21a0f3a81896f1d53b,0x6934b7875feabe4fa129d4988ca6decd1dca9c2b,0xdaf60d937a200b36688e4bfba68ef026231570ef,0xa3031276b6679274abcdeb354cdfd38864f05669,36 \ No newline at end of file diff --git a/seeds/zeroex/zeroex_api_fills_deduped_sample.csv b/seeds/zeroex/zeroex_api_fills_deduped_sample.csv index df7fb00260b..e2ad586ce5c 100644 --- a/seeds/zeroex/zeroex_api_fills_deduped_sample.csv +++ b/seeds/zeroex/zeroex_api_fills_deduped_sample.csv @@ -1,11 +1,11 @@ volume_usd,block_date,block_time,blockchain,evt_index,maker,taker,maker_symbol,token_pair,taker_token,taker_token_amount,taker_symbol,trace_address,tx_from,tx_hash,tx_to,taker_token_amount_raw,maker_token,maker_token_amount,version,maker_token_amount_raw 29.62565417333819,2023-04-04,2023-04-04 20:18:46.000 UTC,polygon,319,0x000000024d657368537761700000000000000000,0x21f96887b77f0ef00a33b148965269fcd14f3f62,WMATIC,USDT-WMATIC,0xc2132d05d31c914a87c6611c10748aeb04b58e8f,,USDT,[],0x21f96887b77f0ef00a33b148965269fcd14f3f62,0x6cee7ce88c9d9f441bda4d751832b2e6cf5fbad1cd5e23a56430762b0383fff4,0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31,29740815,0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270,26.054563579943917,,26054563579943916000 -1313.8937061251322,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,22,0x00000012556e6973776170563300000000000000,0xdef1c0ded9bec7f1a1670819833240f027b25eff,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,1314662670,0x4200000000000000000000000000000000000006,0.7028875856613949,,702887585661394800 -1051.1007943624827,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,30,0x0000001d56656c6f64726f6d6500000000000000,0xdef1c0ded9bec7f1a1670819833240f027b25eff,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,1051730135,0x4200000000000000000000000000000000000006,0.56230248778272,,562302487782719940 -7094.404668872238,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,6,0x00000012556e6973776170563300000000000000,0xdef1c0ded9bec7f1a1670819833240f027b25eff,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,7099178417,0x4200000000000000000000000000000000000006,3.795260564962038,,3795260564962038000 -1051.061195219627,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,14,0x00000012556e6973776170563300000000000000,0xdef1c0ded9bec7f1a1670819833240f027b25eff,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,1051730136,0x4200000000000000000000000000000000000006,0.5622813036140263,,562281303614026300 +1313.8937061251322,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,22,0x00000012556e6973776170563300000000000000,0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,1314662670,0x4200000000000000000000000000000000000006,0.7028875856613949,,702887585661394800 +1051.1007943624827,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,30,0x0000001d56656c6f64726f6d6500000000000000,0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,1051730135,0x4200000000000000000000000000000000000006,0.56230248778272,,562302487782719940 +7094.404668872238,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,6,0x00000012556e6973776170563300000000000000,0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,7099178417,0x4200000000000000000000000000000000000006,3.795260564962038,,3795260564962038000 +1051.061195219627,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,14,0x00000012556e6973776170563300000000000000,0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,1051730136,0x4200000000000000000000000000000000000006,0.5622813036140263,,562281303614026300 7.411073983046853,2023-04-04,2023-04-04 20:17:51.000 UTC,arbitrum,14,0x000012556e697377617056330000000000000000,0x9afde46508b8d659bb0ffcdfd769ec37f7199cfa,WETH,USDC.e-WETH,0xff970a61a04b1ca14834a43f5de4533ebddb5cc8,,USDC.e,[],0x9afde46508b8d659bb0ffcdfd769ec37f7199cfa,0xf17ddcf43ef53af1b5377706298851c2dc55738b74e91480dc9fef68ae21eb19,0x9dda6ef3d919c9bc8885d5560999a3640431e8e6,7418076,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0.00396466767046502,,3964667670465020 7.1442258283893505,2023-04-04,2023-04-04 20:17:26.000 UTC,polygon,148,0x0000000241706553776170000000000000000000,0x9c32b24373f571ec5b6791ed93abf3b721fd4648,WMATIC,WETH-WMATIC,0x7ceb23fd6bc0add59e62ac25578270cff1b9f619,,WETH,[],0x9c32b24373f571ec5b6791ed93abf3b721fd4648,0x3f9aea7d0632669b92e938787115cc02cc0dfa929ada9d383bd07b9499aaaab8,0xdef1c0ded9bec7f1a1670819833240f027b25eff,3836860083468541,0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270,6.283057413218761,,6283057413218761000 1.9167938344396847,2023-04-04,2023-04-04 20:17:08.000 UTC,polygon,101,0x876cea61f692f1624b6c8b1a8ac3d7a978a9f4fb,0x03421553988977107a7cdd4432036f8cf46bd986,WMATIC,USDC-WMATIC,0x2791bca1f2de4661ed88a30c99a7a9449aa84174,,USDC,[],0x03421553988977107a7cdd4432036f8cf46bd986,0x5516cddee0696f2879c86a267b62c9190a6f4c65ba0e41d261b8a41839ed08bd,0xdef1c0ded9bec7f1a1670819833240f027b25eff,1939993,0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270,1.685742584344288,,1685742584344288100 -4.9504863536259585,2023-04-04,2023-04-04 20:17:06.000 UTC,optimism,7,0x0000001942656574686f76656e78000000000000,0xdef1c0ded9bec7f1a1670819833240f027b25eff,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0xc68ac244a944896efed6077c7bd3e0b9e1a2a013,0x36afdb610015ea42c3ac96ea39ff822e60e103cc8cc571d356dab8db13c50585,0xdef1abe32c034e558cdd535791643c58a13acc10,4950000,0x4200000000000000000000000000000000000006,0.00264833858684946,,2648338586849460 +4.9504863536259585,2023-04-04,2023-04-04 20:17:06.000 UTC,optimism,7,0x0000001942656574686f76656e78000000000000,0xc68ac244a944896efed6077c7bd3e0b9e1a2a013,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0xc68ac244a944896efed6077c7bd3e0b9e1a2a013,0x36afdb610015ea42c3ac96ea39ff822e60e103cc8cc571d356dab8db13c50585,0xdef1abe32c034e558cdd535791643c58a13acc10,4950000,0x4200000000000000000000000000000000000006,0.00264833858684946,,2648338586849460 49.546377456572095,2023-04-04,2023-04-04 20:16:52.000 UTC,arbitrum,10,0x000012556e697377617056330000000000000000,0xcc6a141d85872fde54e527b3438aa1ddb478ed1f,WETH,ARB-WETH,0x912ce59144191c1204e64559fe8253a0e49e6548,,ARB,[],0xcc6a141d85872fde54e527b3438aa1ddb478ed1f,0x5d3d3c993bdabbfa6307b157842c61a114614a4dae9827af95b413bc07a21cc6,0x00000000009726632680fb29d3f7a9734e3010e2,40000000000000000000,0x82af49447d8a07e3bd95bd0d56f35241523fbab1,0.026505594376750458,,26505594376750455 diff --git a/seeds/zeroex/zeroex_api_fills_sample.csv b/seeds/zeroex/zeroex_api_fills_sample.csv index b93e55782c5..49177e383b5 100644 --- a/seeds/zeroex/zeroex_api_fills_sample.csv +++ b/seeds/zeroex/zeroex_api_fills_sample.csv @@ -7,5 +7,5 @@ volume_usd,block_date,block_time,blockchain,evt_index,maker,taker,maker_symbol,t 504.32666693752896,2023-04-04,2023-04-04 20:18:35.000 UTC,ethereum,70,0x1b425529c9d7472603e2dcf125fd195f71dfb412,0x980a76779950f2c7cc06478f3933754839eb0577,WETH,RINIA-WETH,0x307838663832386130363434663132666133353238383865363435613930333333643330663666643764,,RINIA,[],0x980a76779950f2c7cc06478f3933754839eb0577,0x9e77263bc7c05219af3393e3fed53e4affbdcadb168fb0272f1f66a404c2a7f5,0xdef1c0ded9bec7f1a1670819833240f027b25eff,0x307863303261616133396232323366653864306130653563346632376561643930383363373536636332,0.2697972839475782,,2.697972839475782E17 1187.960462635206,2023-04-04,2023-04-04 20:18:23.000 UTC,ethereum,67,0xe3baa96ad46457d9e6cdd4e32abc11e2c124ec49,0xe66b31678d6c16e9ebf358268a790b763c133750,MATIC,MATIC-WETH,0x307863303261616133396232323366653864306130653563346632376561643930383363373536636332,0.6355176659650807,WETH,[],0xc2c5075f7ab3c7ec9137818321d141591fd64bbe,0xdc8f6fc4096ed10ef8de4dd8fd8d417f3d0e813803106a2f404191a59f2a3af6,0xe66b31678d6c16e9ebf358268a790b763c133750,0x307837643161666137623731386662383933646233306133616263306366633630386161636665626230,,,1.0412282002731007E21 49.49835260980026,2023-04-04,2023-04-04 20:17:59.000 UTC,ethereum,48,0x945bcf562085de2d5875b9e2012ed5fd5cfab927,0xe66b31678d6c16e9ebf358268a790b763c133750,MATIC,MATIC-WETH,0x307863303261616133396232323366653864306130653563346632376561643930383363373536636332,0.02647990274854503,WETH,[],0x59d68b8c82079568c9907903f554d2e7e25ebf55,0xd73d99416671b47e2f821bdf332a4283a31d002c8ff02918c5c2fcfbe2625d58,0xe66b31678d6c16e9ebf358268a790b763c133750,0x307837643161666137623731386662383933646233306133616263306366633630386161636665626230,,,43273671441228360000 -1051.1007943624827,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,30,0x0000001d56656c6f64726f6d6500000000000000,0xdef1c0ded9bec7f1a1670819833240f027b25eff,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,0x4200000000000000000000000000000000000006,0.56230248778272,,5.6230248778271994E17 -1051.061195219627,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,14,0x00000012556e6973776170563300000000000000,0xdef1c0ded9bec7f1a1670819833240f027b25eff,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,0x4200000000000000000000000000000000000006,0.5622813036140263,,5.622813036140263E17 \ No newline at end of file +1051.1007943624827,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,30,0x0000001d56656c6f64726f6d6500000000000000,0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,0x4200000000000000000000000000000000000006,0.56230248778272,,5.6230248778271994E17 +1051.061195219627,2023-04-04,2023-04-04 20:17:51.000 UTC,optimism,14,0x00000012556e6973776170563300000000000000,0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,WETH,USDC.e-WETH,0x7f5c764cbc14f9669b88837ca1490cca17c31607,,USDC.e,[],0x6cf233cb7a0a1878ef2d315f77e6c8b925f12cec,0xd95e7f7008d83757d379ae63f102fe1b4e3a8cd90f561b608b909eab75e38ed6,0xdef1abe32c034e558cdd535791643c58a13acc10,0x4200000000000000000000000000000000000006,0.5622813036140263,,5.622813036140263E17 diff --git a/tests/generic/check_dex_base_trades_seed.sql b/tests/generic/check_dex_base_trades_seed.sql new file mode 100644 index 00000000000..e0b856cdfcc --- /dev/null +++ b/tests/generic/check_dex_base_trades_seed.sql @@ -0,0 +1,10 @@ +-- this tests checks a dex base_trades model for every row in a seed file. +-- actual implementation in macros/test-helpers/check_seed.sql +{% test check_dex_base_trades_seed(model, seed_file, filter=None) %} + + {%- set seed_check_columns = ['block_number','token_bought_address','token_sold_address','token_bought_amount_raw','token_sold_amount_raw'] -%} + {%- set seed_matching_columns = ['tx_hash','evt_index'] -%} + + {{ check_seed_macro(model,seed_file,seed_matching_columns,seed_check_columns,filter) }} + +{% endtest %}