diff --git a/src/contextualizers/contextualizer.spec.ts b/src/contextualizers/contextualizer.spec.ts index f221e013..944dcfad 100644 --- a/src/contextualizers/contextualizer.spec.ts +++ b/src/contextualizers/contextualizer.spec.ts @@ -44,6 +44,10 @@ import ens0xdb203e93 from './test/transactions/ens-0xdb203e93.json'; import ens0xea1b4ab6 from './test/transactions/ens-0xea1b4ab6.json'; import ensRegistrar0xb14b4771 from './test/transactions/ensRegistrar-0xb14b4771.json'; import ensBulkRenew0x25add712 from './test/transactions/ensBulkRenew-0x25add712.json'; +// CropXyz +import cropXyzPlotAction0x9436b659 from './test/transactions/cropXyzPlotAction-0x9436b659.json'; +import cropXyzPlotAction0x9bb5a737 from './test/transactions/cropXyzPlotAction-0x9bb5a737.json'; +import cropXyzPlotAction0x496c6309 from './test/transactions/cropXyzPlotAction-0x496c6309.json'; describe('ContextualizerService', () => { describe('Detect transactions correctly', () => { @@ -234,5 +238,22 @@ describe('ContextualizerService', () => { ); expect(bulkRenew.context?.summaries?.en.title).toBe('ENS'); }); + + it('Should detect CropXYZ', () => { + const plotAction1 = contextualizer.contextualize( + cropXyzPlotAction0x9436b659 as unknown as Transaction, + ); + expect(plotAction1.context?.summaries?.en.title).toBe('CropXYZ'); + + const plotAction2 = contextualizer.contextualize( + cropXyzPlotAction0x9bb5a737 as unknown as Transaction, + ); + expect(plotAction2.context?.summaries?.en.title).toBe('CropXYZ'); + + const plotAction3 = contextualizer.contextualize( + cropXyzPlotAction0x496c6309 as unknown as Transaction, + ); + expect(plotAction3.context?.summaries?.en.title).toBe('CropXYZ'); + }); }); }); diff --git a/src/contextualizers/protocol/gold/README.md b/src/contextualizers/protocol/cropXyz/README.md similarity index 80% rename from src/contextualizers/protocol/gold/README.md rename to src/contextualizers/protocol/cropXyz/README.md index e54ac5c7..ad31c459 100644 --- a/src/contextualizers/protocol/gold/README.md +++ b/src/contextualizers/protocol/cropXyz/README.md @@ -4,3 +4,4 @@ | ------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -------- | | PackActivationSource | [0xde1bc6e9164af5a48c45111b811c61f11ce58d91](https://www.onceupon.xyz/0xde1bc6e9164af5a48c45111b811c61f11ce58d91:8453) | Base | | PackActivationDestination | [0x21170f8bd35d0afa8ad55719ce29d6489a8585db](https://www.onceupon.xyz/0x21170f8bd35d0afa8ad55719ce29d6489a8585db:4653) | Gold | +| PlotAction | [0xb45805566a842efb6329c11e092158f3e0eddaa2](https://www.onceupon.xyz/0xb45805566a842efb6329c11e092158f3e0eddaa2:4653) | Gold | diff --git a/src/contextualizers/protocol/gold/abis/PackActivationDestination.ts b/src/contextualizers/protocol/cropXyz/abis/PackActivationDestination.ts similarity index 91% rename from src/contextualizers/protocol/gold/abis/PackActivationDestination.ts rename to src/contextualizers/protocol/cropXyz/abis/PackActivationDestination.ts index 02590ea2..fb23ab1c 100644 --- a/src/contextualizers/protocol/gold/abis/PackActivationDestination.ts +++ b/src/contextualizers/protocol/cropXyz/abis/PackActivationDestination.ts @@ -1,6 +1,11 @@ const abi = [ { inputs: [ + { + internalType: 'address[]', + name: 'addressListing', + type: 'address[]', + }, { internalType: 'uint256', name: 'activationSourceNonce', @@ -26,11 +31,6 @@ const abi = [ name: 'randomListingYield', type: 'uint8[]', }, - { - internalType: 'address', - name: 'activator', - type: 'address', - }, { internalType: 'uint8', name: 'season', @@ -70,6 +70,12 @@ const abi = [ { anonymous: false, inputs: [ + { + indexed: false, + internalType: 'address[]', + name: 'addressListing', + type: 'address[]', + }, { indexed: false, internalType: 'uint256[]', @@ -94,10 +100,16 @@ const abi = [ name: 'admin', type: 'address', }, + { + indexed: true, + internalType: 'bytes32', + name: 'sugarcaneId', + type: 'bytes32', + }, { indexed: true, internalType: 'address', - name: 'activator', + name: 'assetDestination', type: 'address', }, { diff --git a/src/contextualizers/protocol/gold/abis/PackActivationSource.ts b/src/contextualizers/protocol/cropXyz/abis/PackActivationSource.ts similarity index 92% rename from src/contextualizers/protocol/gold/abis/PackActivationSource.ts rename to src/contextualizers/protocol/cropXyz/abis/PackActivationSource.ts index 3b93270c..114eb722 100644 --- a/src/contextualizers/protocol/gold/abis/PackActivationSource.ts +++ b/src/contextualizers/protocol/cropXyz/abis/PackActivationSource.ts @@ -2,6 +2,12 @@ const abi = [ { anonymous: false, inputs: [ + { + indexed: false, + internalType: 'address[]', + name: 'addressListing', + type: 'address[]', + }, { indexed: false, internalType: 'bytes32', @@ -27,7 +33,7 @@ const abi = [ type: 'uint256', }, { - indexed: false, + indexed: true, internalType: 'uint256', name: 'sizeSpecificTokenId', type: 'uint256', @@ -50,12 +56,6 @@ const abi = [ name: 'tokenURI', type: 'string', }, - { - indexed: true, - internalType: 'address', - name: 'activator', - type: 'address', - }, ], name: 'ActivatedStarterPackOnSource', type: 'event', diff --git a/src/contextualizers/protocol/cropXyz/abis/PlotAction.ts b/src/contextualizers/protocol/cropXyz/abis/PlotAction.ts new file mode 100644 index 00000000..51a9fe8f --- /dev/null +++ b/src/contextualizers/protocol/cropXyz/abis/PlotAction.ts @@ -0,0 +1,188 @@ +const abi = [ + { + anonymous: false, + inputs: [ + { + indexed: true, + internalType: 'address', + name: 'player', + type: 'address', + }, + { + indexed: true, + internalType: 'uint256', + name: 'plotId', + type: 'uint256', + }, + { + indexed: true, + internalType: 'uint256', + name: 'stakedElement', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint256', + name: 'newStakedElement', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint16', + name: 'harvestableAmount', + type: 'uint16', + }, + { + indexed: false, + internalType: 'uint16', + name: 'actuallyProducedAmount', + type: 'uint16', + }, + { + indexed: false, + internalType: 'uint24', + name: 'plotHarvests', + type: 'uint24', + }, + ], + name: 'HarvestedPlot', + type: 'event', + }, + { + anonymous: false, + inputs: [ + { + indexed: true, + internalType: 'address', + name: 'player', + type: 'address', + }, + { + indexed: true, + internalType: 'uint256', + name: 'plotId', + type: 'uint256', + }, + { + indexed: true, + internalType: 'uint256', + name: 'diedStakedElement', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint256', + name: 'newStakedElement', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint16', + name: 'diedAmount', + type: 'uint16', + }, + { + indexed: false, + internalType: 'uint24', + name: 'plotDeaths', + type: 'uint24', + }, + ], + name: 'ClearedDiedHarvest', + type: 'event', + }, + { + anonymous: false, + inputs: [ + { + indexed: true, + internalType: 'address', + name: 'player', + type: 'address', + }, + { + indexed: true, + internalType: 'uint256', + name: 'plotId', + type: 'uint256', + }, + { + indexed: true, + internalType: 'uint256', + name: 'clearedStakedElement', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint256', + name: 'newStakedElement', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint16', + name: 'clearedAmount', + type: 'uint16', + }, + { + indexed: false, + internalType: 'uint24', + name: 'plotClears', + type: 'uint24', + }, + ], + name: 'ClearedHarvest', + type: 'event', + }, + { + anonymous: false, + inputs: [ + { + indexed: true, + internalType: 'address', + name: 'player', + type: 'address', + }, + { + indexed: true, + internalType: 'uint256', + name: 'plotId', + type: 'uint256', + }, + { + indexed: true, + internalType: 'uint256', + name: 'stakedElement', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint16', + name: 'stakedAmount', + type: 'uint16', + }, + { + indexed: false, + internalType: 'uint64', + name: 'timeStartStaked', + type: 'uint64', + }, + { + indexed: false, + internalType: 'uint64', + name: 'timeReadyDelta', + type: 'uint64', + }, + { + indexed: false, + internalType: 'uint64', + name: 'timeExpiredDelta', + type: 'uint64', + }, + ], + name: 'StakedCrop', + type: 'event', + }, +] as const; + +export default abi; diff --git a/src/contextualizers/protocol/gold/constants.ts b/src/contextualizers/protocol/cropXyz/constants.ts similarity index 78% rename from src/contextualizers/protocol/gold/constants.ts rename to src/contextualizers/protocol/cropXyz/constants.ts index f803d55d..4aab0813 100644 --- a/src/contextualizers/protocol/gold/constants.ts +++ b/src/contextualizers/protocol/cropXyz/constants.ts @@ -1,5 +1,6 @@ import packActivationDestinationAbi from './abis/PackActivationDestination'; import packActivationSourceAbi from './abis/PackActivationSource'; +import plotActionAbi from './abis/PlotAction'; export const PACK_ACTIVATION_DESTINATION_CONTRACT = '0x21170f8bd35d0afa8ad55719ce29d6489a8585db'; @@ -9,6 +10,9 @@ export const PLOT_ERC721_CONTRACT = '0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8'; export const Z_GOLD_CONTRACT_ADDRESS = '0x387d73bd8682dceb3327b940213d5de50ee2bba2'; +export const PLOT_ACTION_CONTRACT_ADDRESS = + '0xb45805566a842efb6329c11e092158f3e0eddaa2'; export const PACK_ACTIVATION_SOURCE_ABI = packActivationSourceAbi; export const PACK_ACTIVATION_DESTINATION_ABI = packActivationDestinationAbi; +export const PLOT_ACTION_ABI = plotActionAbi; diff --git a/src/contextualizers/protocol/cropXyz/destination.spec.ts b/src/contextualizers/protocol/cropXyz/destination.spec.ts new file mode 100644 index 00000000..c8f6b275 --- /dev/null +++ b/src/contextualizers/protocol/cropXyz/destination.spec.ts @@ -0,0 +1,26 @@ +import { Transaction } from '../../../types'; +import { detect, generate } from './destination'; +import { containsBigInt, contextSummary } from '../../../helpers/utils'; +import goldDestination0x2b1c6528 from '../../test/transactions/goldDestination-0x2b1c6528.json'; + +describe('CropXYZ Destination', () => { + it('Should detect transaction', () => { + const isCropXYZDestination1 = detect( + goldDestination0x2b1c6528 as unknown as Transaction, + ); + expect(isCropXYZDestination1).toBe(true); + }); + + describe('Should generate context', () => { + it('Should generate context for one tx', () => { + const transaction1 = generate( + goldDestination0x2b1c6528 as unknown as Transaction, + ); + expect(transaction1.context?.summaries?.en.title).toBe('CropXYZ'); + expect(contextSummary(transaction1.context)).toBe( + '0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f RECEIVED plots 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #4 and 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #5 and 9 0xf4a785a80d91cadc149f778ee17d35cd008203f7 and 202816 0x387d73bd8682dceb3327b940213d5de50ee2bba2', + ); + expect(containsBigInt(transaction1.context)).toBe(false); + }); + }); +}); diff --git a/src/contextualizers/protocol/gold/destination.ts b/src/contextualizers/protocol/cropXyz/destination.ts similarity index 83% rename from src/contextualizers/protocol/gold/destination.ts rename to src/contextualizers/protocol/cropXyz/destination.ts index 4c5cd3a2..727552f4 100644 --- a/src/contextualizers/protocol/gold/destination.ts +++ b/src/contextualizers/protocol/cropXyz/destination.ts @@ -7,7 +7,7 @@ import { CHAIN_IDS } from '../../../helpers/constants'; import { Transaction, EventLogTopics, - GoldContextActionEnum, + CropXyzContextActionEnum, AssetType, ContextNumberType, } from '../../../types'; @@ -15,7 +15,6 @@ import { PACK_ACTIVATION_DESTINATION_ABI, PACK_ACTIVATION_DESTINATION_CONTRACT, PLOT_ERC721_CONTRACT, - Z_GOLD_CONTRACT_ADDRESS, } from './constants'; export function contextualize(transaction: Transaction): Transaction { @@ -81,7 +80,7 @@ export function generate(transaction: Transaction): Transaction { // decode ActivatedStarterPackOnDestination event let activatedStarterPackOnDestinationDecoded, mintedPlotPackActivateDecoded; - const gameMintedTokenDecoded: any[] = []; + // const gameMintedTokenDecoded: any[] = []; for (const log of transaction.logs) { const decoded = decodeLog(PACK_ACTIVATION_DESTINATION_ABI, log.data, [ log.topic0, @@ -98,32 +97,38 @@ export function generate(transaction: Transaction): Transaction { case 'MintedPlotPackActivate': mintedPlotPackActivateDecoded = decoded; break; - case 'GameMintedToken': - gameMintedTokenDecoded.push(decoded); - break; + // case 'GameMintedToken': + // gameMintedTokenDecoded.push(decoded); + // break; default: break; } } + if ( !activatedStarterPackOnDestinationDecoded || - !mintedPlotPackActivateDecoded || - gameMintedTokenDecoded.length !== 2 + !mintedPlotPackActivateDecoded + // || gameMintedTokenDecoded.length !== 2 ) return transaction; // grab variables from decoded event // const cropName = decodedInput.args[2]; const plotIds = activatedStarterPackOnDestinationDecoded.args['plotIds']; - const zGoldAmount = BigInt( - gameMintedTokenDecoded[0].args['amount'], - ).toString(); - const cropAmount = BigInt( - gameMintedTokenDecoded[1].args['amount'], - ).toString(); - const zGoldGameAddress = gameMintedTokenDecoded[0].args['gameAddress']; - const cropGameAddress = gameMintedTokenDecoded[1].args['gameAddress']; - const activator = activatedStarterPackOnDestinationDecoded.args['activator']; + // const zGoldAmount = BigInt( + // gameMintedTokenDecoded[0].args['amount'], + // ).toString(); + // const cropAmount = BigInt( + // gameMintedTokenDecoded[1].args['amount'], + // ).toString(); + // const zGoldGameAddress = gameMintedTokenDecoded[0].args['gameAddress']; + // const cropGameAddress = gameMintedTokenDecoded[1].args['gameAddress']; + const addressListing = + activatedStarterPackOnDestinationDecoded.args['addressListing']; + const activator = + addressListing && addressListing.length > 0 + ? addressListing[0].toLowerCase() + : ''; const erc721PlotArray = plotIds.length > 0 @@ -146,7 +151,7 @@ export function generate(transaction: Transaction): Transaction { summaries: { category: 'PROTOCOL_1', en: { - title: `Gold`, + title: `CropXYZ`, default: plotIds?.length === 2 ? '[[activator]][[received]]plots[[plotId0]]and[[plotId1]]and[[crop]]and[[zGold]]' @@ -170,7 +175,7 @@ export function generate(transaction: Transaction): Transaction { }, received: { type: 'contextAction', - value: GoldContextActionEnum.RECEIVED, + value: CropXyzContextActionEnum.RECEIVED, }, }, }; diff --git a/src/contextualizers/protocol/gold/index.ts b/src/contextualizers/protocol/cropXyz/index.ts similarity index 61% rename from src/contextualizers/protocol/gold/index.ts rename to src/contextualizers/protocol/cropXyz/index.ts index 9d560386..c42b44e9 100644 --- a/src/contextualizers/protocol/gold/index.ts +++ b/src/contextualizers/protocol/cropXyz/index.ts @@ -1,11 +1,12 @@ import { makeContextualize } from '../../../helpers/utils'; import { contextualize as source } from './source'; import { contextualize as destination } from './destination'; +import { contextualize as plotAction } from './plotAction'; -const children = { source, destination }; +const children = { source, destination, plotAction }; const contextualize = makeContextualize(children); -export const goldContextualizer = { +export const cropXyzContextualizer = { contextualize, }; diff --git a/src/contextualizers/protocol/cropXyz/plotAction.spec.ts b/src/contextualizers/protocol/cropXyz/plotAction.spec.ts new file mode 100644 index 00000000..39ac55ac --- /dev/null +++ b/src/contextualizers/protocol/cropXyz/plotAction.spec.ts @@ -0,0 +1,54 @@ +import { Transaction } from '../../../types'; +import { detect, generate } from './plotAction'; +import { containsBigInt, contextSummary } from '../../../helpers/utils'; +import cropXyzPlotAction0x9436b659 from '../../test/transactions/cropXyzPlotAction-0x9436b659.json'; +import cropXyzPlotAction0x9bb5a737 from '../../test/transactions/cropXyzPlotAction-0x9bb5a737.json'; +import cropXyzPlotAction0x496c6309 from '../../test/transactions/cropXyzPlotAction-0x496c6309.json'; + +describe('CropXYZ PlotAction', () => { + it('Should detect transaction', () => { + const isPlotAction1 = detect( + cropXyzPlotAction0x9436b659 as unknown as Transaction, + ); + expect(isPlotAction1).toBe(true); + + const isPlotAction2 = detect( + cropXyzPlotAction0x9bb5a737 as unknown as Transaction, + ); + expect(isPlotAction2).toBe(true); + + const isPlotAction3 = detect( + cropXyzPlotAction0x496c6309 as unknown as Transaction, + ); + expect(isPlotAction3).toBe(true); + }); + + it('Should generate context', () => { + const transaction1 = generate( + cropXyzPlotAction0x9436b659 as unknown as Transaction, + ); + expect(transaction1.context?.summaries?.en.title).toBe('CropXYZ'); + expect(contextSummary(transaction1.context)).toBe( + '0x402533d5240a0c51e02d3714c0d0a057384d4872 HARVESTED_PLOT 257 0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321', + ); + expect(containsBigInt(transaction1.context)).toBe(false); + + const transaction2 = generate( + cropXyzPlotAction0x9bb5a737 as unknown as Transaction, + ); + expect(transaction2.context?.summaries?.en.title).toBe('CropXYZ'); + expect(contextSummary(transaction2.context)).toBe( + '0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7 CLEARED_HARVEST', + ); + expect(containsBigInt(transaction2.context)).toBe(false); + + const transaction3 = generate( + cropXyzPlotAction0x496c6309 as unknown as Transaction, + ); + expect(transaction3.context?.summaries?.en.title).toBe('CropXYZ'); + expect(contextSummary(transaction3.context)).toBe( + '0x402533d5240a0c51e02d3714c0d0a057384d4872 STAKED_CROP 36 0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321', + ); + expect(containsBigInt(transaction3.context)).toBe(false); + }); +}); diff --git a/src/contextualizers/protocol/cropXyz/plotAction.ts b/src/contextualizers/protocol/cropXyz/plotAction.ts new file mode 100644 index 00000000..11d177f6 --- /dev/null +++ b/src/contextualizers/protocol/cropXyz/plotAction.ts @@ -0,0 +1,186 @@ +import { + Transaction, + EventLogTopics, + CropXyzContextActionEnum, + AssetType, +} from '../../../types'; +import { PLOT_ACTION_CONTRACT_ADDRESS, PLOT_ACTION_ABI } from './constants'; +import { decodeLog, processAssetTransfers } from '../../../helpers/utils'; +import { CHAIN_IDS } from '../../../helpers/constants'; + +export function contextualize(transaction: Transaction): Transaction { + const isPackActivationSource = detect(transaction); + if (!isPackActivationSource) return transaction; + + const result = generate(transaction); + return result; +} + +export function detect(transaction: Transaction): boolean { + /** + * There is a degree of overlap between the 'detect' and 'generateContext' functions, + * and while this might seem redundant, maintaining the 'detect' function aligns with + * established patterns in our other modules. This consistency is beneficial, + * and it also serves to decouple the logic, thereby simplifying the testing process + */ + // check logs + if (!transaction.logs) return false; + + for (const log of transaction.logs) { + if (log.address !== PLOT_ACTION_CONTRACT_ADDRESS) continue; + + const decoded = decodeLog(PLOT_ACTION_ABI, log.data, [ + log.topic0, + log.topic1, + log.topic2, + log.topic3, + ] as EventLogTopics); + + if ( + decoded && + (decoded.eventName === 'HarvestedPlot' || + decoded.eventName === 'ClearedDiedHarvest' || + decoded.eventName === 'ClearedHarvest' || + decoded.eventName === 'StakedCrop') + ) { + return true; + } + } + + return false; +} + +export function generate(transaction: Transaction): Transaction { + if ( + !transaction.logs || + transaction.chainId !== CHAIN_IDS.gold || + !transaction.assetTransfers || + !transaction.netAssetTransfers + ) + return transaction; + + const { erc20Payments } = processAssetTransfers( + transaction.netAssetTransfers, + transaction.assetTransfers, + ); + + let decoded; + for (const log of transaction.logs) { + if (log.address !== PLOT_ACTION_CONTRACT_ADDRESS) continue; + + decoded = decodeLog(PLOT_ACTION_ABI, log.data, [ + log.topic0, + log.topic1, + log.topic2, + log.topic3, + ] as EventLogTopics); + + if (!decoded) continue; + + let player = ''; + switch (decoded.eventName) { + case 'HarvestedPlot': + player = decoded.args['player'].toLowerCase(); + transaction.context = { + summaries: { + category: 'PROTOCOL_1', + en: { + title: `CropXYZ`, + default: '[[player]][[harvested]][[crop]]', + }, + }, + variables: { + player: { + type: 'address', + value: player, + }, + crop: { + type: AssetType.ERC20, + token: erc20Payments[0].contract, + value: erc20Payments[0].value, + }, + harvested: { + type: 'contextAction', + value: CropXyzContextActionEnum.HARVESTED_PLOT, + }, + }, + }; + return transaction; + case 'ClearedDiedHarvest': + player = decoded.args['player'].toLowerCase(); + transaction.context = { + summaries: { + category: 'PROTOCOL_1', + en: { + title: `CropXYZ`, + default: '[[player]][[clearedHarvest]]', + }, + }, + variables: { + player: { + type: 'address', + value: player, + }, + clearedHarvest: { + type: 'contextAction', + value: CropXyzContextActionEnum.CLEARED_HARVEST, + }, + }, + }; + return transaction; + case 'ClearedHarvest': + player = decoded.args['player'].toLowerCase(); + transaction.context = { + summaries: { + category: 'PROTOCOL_1', + en: { + title: `CropXYZ`, + default: '[[player]][[clearedHarvest]]', + }, + }, + variables: { + player: { + type: 'address', + value: player, + }, + clearedHarvest: { + type: 'contextAction', + value: CropXyzContextActionEnum.CLEARED_HARVEST, + }, + }, + }; + return transaction; + case 'StakedCrop': + player = decoded.args['player'].toLowerCase(); + transaction.context = { + summaries: { + category: 'PROTOCOL_1', + en: { + title: `CropXYZ`, + default: '[[player]][[stakedCrop]][[crop]]', + }, + }, + variables: { + player: { + type: 'address', + value: player, + }, + crop: { + type: AssetType.ERC20, + token: erc20Payments[0].contract, + value: erc20Payments[0].value, + }, + stakedCrop: { + type: 'contextAction', + value: CropXyzContextActionEnum.STAKED_CROP, + }, + }, + }; + return transaction; + default: + break; + } + } + + return transaction; +} diff --git a/src/contextualizers/protocol/cropXyz/source.spec.ts b/src/contextualizers/protocol/cropXyz/source.spec.ts new file mode 100644 index 00000000..7e19f745 --- /dev/null +++ b/src/contextualizers/protocol/cropXyz/source.spec.ts @@ -0,0 +1,24 @@ +import { Transaction } from '../../../types'; +import { detect, generate } from './source'; +import { containsBigInt, contextSummary } from '../../../helpers/utils'; +import goldSource0x31893393 from '../../test/transactions/goldSource-0x31893393.json'; + +describe('CropXYZ Source', () => { + it('Should detect transaction', () => { + const isCropXYZSource1 = detect( + goldSource0x31893393 as unknown as Transaction, + ); + expect(isCropXYZSource1).toBe(true); + }); + + it('Should generate context', () => { + const transaction1 = generate( + goldSource0x31893393 as unknown as Transaction, + ); + expect(transaction1.context?.summaries?.en.title).toBe('CropXYZ'); + expect(contextSummary(transaction1.context)).toBe( + '0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f ACTIVATED_A_STARTER_PACK', + ); + expect(containsBigInt(transaction1.context)).toBe(false); + }); +}); diff --git a/src/contextualizers/protocol/gold/source.ts b/src/contextualizers/protocol/cropXyz/source.ts similarity index 88% rename from src/contextualizers/protocol/gold/source.ts rename to src/contextualizers/protocol/cropXyz/source.ts index a4125822..2daf98cc 100644 --- a/src/contextualizers/protocol/gold/source.ts +++ b/src/contextualizers/protocol/cropXyz/source.ts @@ -1,7 +1,7 @@ import { Transaction, EventLogTopics, - GoldContextActionEnum, + CropXyzContextActionEnum, } from '../../../types'; import { PACK_ACTIVATION_SOURCE_CONTRACT, @@ -67,13 +67,17 @@ export function generate(transaction: Transaction): Transaction { if (!decoded) return transaction; // grab variables from decoded event - const activator = decoded.args['activator']; + const addressListing = decoded.args['addressListing']; + const activator = + addressListing && addressListing.length > 0 + ? addressListing[0].toLowerCase() + : ''; transaction.context = { summaries: { category: 'PROTOCOL_1', en: { - title: `Gold`, + title: `CropXYZ`, default: '[[activator]][[activated]]', }, }, @@ -84,7 +88,7 @@ export function generate(transaction: Transaction): Transaction { }, activated: { type: 'contextAction', - value: GoldContextActionEnum.ACTIVATED_A_STARTER_PACK, + value: CropXyzContextActionEnum.ACTIVATED_A_STARTER_PACK, }, }, }; diff --git a/src/contextualizers/protocol/gold/destination.spec.ts b/src/contextualizers/protocol/gold/destination.spec.ts deleted file mode 100644 index 04264036..00000000 --- a/src/contextualizers/protocol/gold/destination.spec.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { Transaction } from '../../../types'; -import { detect, generate } from './destination'; -import { containsBigInt, contextSummary } from '../../../helpers/utils'; -import goldDestination0x85058886 from '../../test/transactions/goldDestination-0x85058886.json'; -import goldDestination0x469f8c9c from '../../test/transactions/goldDestination-0x469f8c9c.json'; - -describe('Gold Destination', () => { - it('Should detect transaction', () => { - const isGoldDestination1 = detect( - goldDestination0x85058886 as unknown as Transaction, - ); - expect(isGoldDestination1).toBe(true); - - const isGoldDestination2 = detect( - goldDestination0x469f8c9c as unknown as Transaction, - ); - expect(isGoldDestination2).toBe(true); - }); - - describe('Should generate context', () => { - it('Should generate context for one tx', () => { - const transaction1 = generate( - goldDestination0x85058886 as unknown as Transaction, - ); - expect(transaction1.context?.summaries?.en.title).toBe('Gold'); - expect(contextSummary(transaction1.context)).toBe( - '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 RECEIVED plots 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #0 and 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #1 and 81 0x12647ceec053d386a7343b7739a1e1fddadef796 and 912670 0x387d73bd8682dceb3327b940213d5de50ee2bba2', - ); - expect(containsBigInt(transaction1.context)).toBe(false); - }); - it('Should generate context for another tx', () => { - const transaction2 = generate( - goldDestination0x469f8c9c as unknown as Transaction, - ); - expect(transaction2.context?.summaries?.en.title).toBe('Gold'); - expect(contextSummary(transaction2.context)).toBe( - '0x18F33CEf45817C428d98C4E188A770191fDD4B79 RECEIVED plots 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #2 and 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #3 and 9 0x56d66d7637f5b6235ad212043d35cc5e035dac68 and 202816 0x387d73bd8682dceb3327b940213d5de50ee2bba2', - ); - expect(containsBigInt(transaction2.context)).toBe(false); - }); - }); -}); diff --git a/src/contextualizers/protocol/gold/source.spec.ts b/src/contextualizers/protocol/gold/source.spec.ts deleted file mode 100644 index 8779a649..00000000 --- a/src/contextualizers/protocol/gold/source.spec.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { Transaction } from '../../../types'; -import { detect, generate } from './source'; -import { containsBigInt, contextSummary } from '../../../helpers/utils'; -import goldSource0x3374f5f4 from '../../test/transactions/goldSource-0x3374f5f4.json'; -import goldSource0xef715998 from '../../test/transactions/goldSource-0xef715998.json'; - -describe('Gold Source', () => { - it('Should detect transaction', () => { - const isGoldSource1 = detect( - goldSource0x3374f5f4 as unknown as Transaction, - ); - expect(isGoldSource1).toBe(true); - - const isGoldSource2 = detect( - goldSource0xef715998 as unknown as Transaction, - ); - expect(isGoldSource2).toBe(true); - }); - - it('Should generate context', () => { - const transaction1 = generate( - goldSource0x3374f5f4 as unknown as Transaction, - ); - expect(transaction1.context?.summaries?.en.title).toBe('Gold'); - expect(contextSummary(transaction1.context)).toBe( - '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 ACTIVATED_A_STARTER_PACK', - ); - expect(containsBigInt(transaction1.context)).toBe(false); - - const transaction2 = generate( - goldSource0xef715998 as unknown as Transaction, - ); - expect(transaction2.context?.summaries?.en.title).toBe('Gold'); - expect(contextSummary(transaction2.context)).toBe( - '0x18F33CEf45817C428d98C4E188A770191fDD4B79 ACTIVATED_A_STARTER_PACK', - ); - expect(containsBigInt(transaction2.context)).toBe(false); - }); -}); diff --git a/src/contextualizers/protocol/index.ts b/src/contextualizers/protocol/index.ts index 3c09e767..e5f2f09c 100644 --- a/src/contextualizers/protocol/index.ts +++ b/src/contextualizers/protocol/index.ts @@ -20,7 +20,7 @@ import { bnsContextualizer } from './bns'; import { highlightContextualizer } from './highlight'; import { warpcastContextualizer } from './warpcast'; import { boomboxContextualizer } from './boombox'; -import { goldContextualizer } from './gold'; +import { cropXyzContextualizer } from './cropXyz'; import { rodeoContextualizer } from './rodeo'; const children = { @@ -45,7 +45,7 @@ const children = { highlightContextualizer, warpcastContextualizer, boomboxContextualizer, - goldContextualizer, + cropXyzContextualizer, rodeoContextualizer, }; diff --git a/src/contextualizers/test/transactions/cropXyzPlotAction-0x496c6309.json b/src/contextualizers/test/transactions/cropXyzPlotAction-0x496c6309.json new file mode 100644 index 00000000..332882f2 --- /dev/null +++ b/src/contextualizers/test/transactions/cropXyzPlotAction-0x496c6309.json @@ -0,0 +1,6897 @@ +{ + "accessList": [], + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "chainId": 4653, + "from": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "gas": 1413063, + "gasPrice": "1000251", + "hash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "input": "0x1fad948c000000000000000000000000000000000000000000000000000000000000004000000000000000000000000080213f829c8543eda6b1f0f303e94b8e504b53d800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a622000000000000000000000000000000000000000000000000000000000000012a0000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000aa83b00000000000000000000000000000000000000000000000000000000000141a8000000000000000000000000000000000000000000000000000000000002912500000000000000000000000000000000000000000000000000000000000f433b00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e40000189a000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d48720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002446a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044f9504a900000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e7fd3904450911e08c84de59d981c35fa94497a96dc3c1f30619989bd31e61ed515b0d0bcc41184a89b4f44dff8c743cd4a9e934acc86a5947e09e1c309b161a1c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011400000f79b7faf42eebadba19acc07cd08af4478900000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d000000000000000000000000000000000000000000000000000000006682f5b7000000000000000000000000000000000000000000000000000000006682eeaf00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000041f31b15a48a9c40a12edef9f0f72acbdcd52ecaa02ae13b5d32a9688bf141d5567eaed0a651d3437696c861bdb197cfa25906cdb82b12cce89eab4bb9e4116a881c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000824dc138db84fd9109fc154bdad332aa8e0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cfeebf504a6f5c2e54e5246e5d2f337f9d571b9d04656cb65e8ea17bb16596900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041a31c8d505786f07b20e13c8e4cde4fd8fbb548908a4df8437d34fc849e4f56fa7d397fe4800384707c2f5c082a736558f17ca435c8c763c13122a3aea451198a1c00000000000000000000000000000000000000000000000000000000000000", + "maxFeePerGas": "1000251", + "maxPriorityFeePerGas": "1000000", + "nonce": 10843, + "r": "0x513e0a6c3076181a320269a52556a3325364780ea9972d48c51ed7eb6a875903", + "s": "0x1e83d6f217ff3179050616d31368fbce7f983fe3094b6c0d79ec8ea94cfb403c", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": 1, + "type": 2, + "v": "0x1", + "value": "0", + "yParity": "0x1", + "receipt": { + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "contractAddress": null, + "cumulativeGasUsed": 750492, + "effectiveGasPrice": 1000251, + "from": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "gasUsed": 703615, + "l1Fee": "0x28a57f8f9", + "l1FeeScalar": "0.0684", + "l1GasPrice": "0x9bf2a9", + "l1GasUsed": "0x3cf8", + "logsBloom": "0x000010005000100000000000000000000080020000000000000000000400000000090000000000010002010100400000001000000000000000000200002000000000000000000000000000480008000000000400000280000000000000020000000000000a0801000000000000004808000000000840400000000010000800000080080000004800000000020008000000004000000000000000000000000000020000000682000000400000200004000000000000008400000002080000000000000002200008000001000008020000004008048008000000000000000020000011000210000000000000000000000000000000000000000400880000000420", + "status": true, + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "type": "0x2", + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x", + "logIndex": 0, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_d75195db", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 4653, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000044f9504a900000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e7fd3904450911e08c84de59d981c35fa94497a96dc3c1f30619989bd31e61ed515b0d0bcc41184a89b4f44dff8c743cd4a9e934acc86a5947e09e1c309b161a1c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000012a000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a6220000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 1, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_2138c848", + "decoded": null, + "chainId": 4653, + "topic0": "0x66753cd2356569ee081232e3be8909b950e0a76c1f8460c3a5e3c2be32b11bed" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff492", + "logIndex": 2, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_ac63923d", + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x402533d5240a0c51e02d3714c0d0a057384d4872" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129637010" + } + ] + }, + "chainId": 4653, + "topic0": "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "topic1": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic2": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x0000000000000000000000000000000000000000000000000000000000000024", + "logIndex": 3, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_215c8589", + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x402533d5240a0c51e02d3714c0d0a057384d4872" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "36" + } + ] + }, + "chainId": 4653, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "logIndex": 4, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_ba4996bc", + "decoded": null, + "chainId": 4653, + "topic0": "0xc33fc8644a8c2d2c3ef893be3ba39da859f46ffc36febcbb4cdb32154195d89a", + "topic1": "0x07acfe1750b3e75dd44709cc7a40cb780dc33f59345fe77cb053f61fb7b41bee", + "topic2": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000024" + }, + { + "address": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000006682eed000000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e40", + "logIndex": 5, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_8555c5c0", + "decoded": null, + "chainId": 4653, + "topic0": "0xd086f394c5778b5188242331e43da7656c1a10ad27cc2abe8d3628e2a57ef9ea", + "topic1": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000045", + "topic3": "0x000000000000000000000000000000000000000000000000000000000000000f" + }, + { + "address": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0xe07d2ca36438301f32bcc911b01f2bba7dcc72093dee1cf50e6154cbff4c17a10000000000000000000000000000000000000000000000000000000000000000", + "logIndex": 6, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_0f93e946", + "decoded": { + "signature": "ExecutionSuccess(bytes32,uint256)", + "signature_with_arg_names": "ExecutionSuccess(bytes32 txHash,uint256 payment)", + "name": "ExecutionSuccess", + "decoded": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "txHash", + "type": "bytes32", + "decoded": "0xe07d2ca36438301f32bcc911b01f2bba7dcc72093dee1cf50e6154cbff4c17a1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "payment", + "type": "uint256", + "decoded": "0" + } + ] + }, + "chainId": 4653, + "topic0": "0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e" + }, + { + "address": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x", + "logIndex": 7, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_977d5e4c", + "decoded": { + "signature": "GasBalanceDeducted(address,uint256)", + "signature_with_arg_names": "GasBalanceDeducted(address indexed _paymasterId,uint256 indexed _charge)", + "name": "GasBalanceDeducted", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "_paymasterId", + "type": "address", + "decoded": "0x38369853c72295737b457fb98cbdcf61d224aa0d" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "_charge", + "type": "uint256", + "decoded": "827865742158" + } + ] + }, + "chainId": 4653, + "topic0": "0x5dc1c754041954fe976773fa441397a7928c7127a1c83904214a7d2563399007", + "topic1": "0x00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", + "topic2": "0x000000000000000000000000000000000000000000000000000000c0c0a4bb4e" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x000000000000000000000000000000000000000000000000000000000000012a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000c03160a87d00000000000000000000000000000000000000000000000000000000000c97a7", + "logIndex": 8, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_d66becc6", + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0xb7de9f901c2890fdf8140b17e46e7d8659c2ceff9b3169099e3228d7f556c8df" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x00000f79b7faf42eebadba19acc07cd08af44789" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "298" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "825462139005" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "825255" + } + ] + }, + "chainId": 4653, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0xb7de9f901c2890fdf8140b17e46e7d8659c2ceff9b3169099e3228d7f556c8df", + "topic2": "0x000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "topic3": "0x00000000000000000000000000000f79b7faf42eebadba19acc07cd08af44789" + } + ] + }, + "decoded": null, + "pseudoTransactions": [], + "assetTransfers": [ + { + "contract": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "from": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0x0000000000000000000000000000000000000000", + "value": "36", + "type": "erc20" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "type": "eth", + "value": "825462139005" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "gas": "0x128dc", + "input": "0x3a871cdd0000000000000000000000000000000000000000000000000000000000000060b7de9f901c2890fdf8140b17e46e7d8659c2ceff9b3169099e3228d7f556c8df0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a622000000000000000000000000000000000000000000000000000000000000012a0000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000aa83b00000000000000000000000000000000000000000000000000000000000141a8000000000000000000000000000000000000000000000000000000000002912500000000000000000000000000000000000000000000000000000000000f433b00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e40000189a000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d48720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002446a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044f9504a900000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e7fd3904450911e08c84de59d981c35fa94497a96dc3c1f30619989bd31e61ed515b0d0bcc41184a89b4f44dff8c743cd4a9e934acc86a5947e09e1c309b161a1c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011400000f79b7faf42eebadba19acc07cd08af4478900000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d000000000000000000000000000000000000000000000000000000006682f5b7000000000000000000000000000000000000000000000000000000006682eeaf00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000041f31b15a48a9c40a12edef9f0f72acbdcd52ecaa02ae13b5d32a9688bf141d5567eaed0a651d3437696c861bdb197cfa25906cdb82b12cce89eab4bb9e4116a881c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000824dc138db84fd9109fc154bdad332aa8e0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cfeebf504a6f5c2e54e5246e5d2f337f9d571b9d04656cb65e8ea17bb16596900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041a31c8d505786f07b20e13c8e4cde4fd8fbb548908a4df8437d34fc849e4f56fa7d397fe4800384707c2f5c082a736558f17ca435c8c763c13122a3aea451198a1c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x4284", + "output": "0x000000000000ffffffffffff0000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "gas": "0xa7c1c", + "input": "0x0000189a000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d48720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002446a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044f9504a900000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e7fd3904450911e08c84de59d981c35fa94497a96dc3c1f30619989bd31e61ed515b0d0bcc41184a89b4f44dff8c743cd4a9e934acc86a5947e09e1c309b161a1c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x8f795", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "gas": "0xa08ba", + "input": "0x6a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044f9504a900000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e7fd3904450911e08c84de59d981c35fa94497a96dc3c1f30619989bd31e61ed515b0d0bcc41184a89b4f44dff8c743cd4a9e934acc86a5947e09e1c309b161a1c00000000000000000000000000000000000000000000000000000000000000", + "to": "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x8d652", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "gas": "0x936b0", + "input": "0xf9504a900000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x848ef", + "output": "0x0" + }, + "subtraces": 28, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x8b34b", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x88652", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x177e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x86316", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x83664", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x9db", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x8288b", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 4, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "gas": "0x7fc6b", + "input": "0x82afd23b0000000000000000000000000000000000000000000000000000000000000045", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xbefe", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x7b0b6", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x784b8", + "input": "0x59a7715a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x9b6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000864" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x77707", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x76d0e", + "input": "0x2d72225b0000000000000000000000000000000000000000000000000000000000000045", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x612b", + "output": "0x00000000000000000000000000000000000000000000000000000000000000457c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x73f0d", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 6, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x73543", + "input": "0x6352211e0000000000000000000000000000000000000000000000000000000000000045", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xab9", + "output": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 7, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x7264b", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 8, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x6fa2b", + "input": "0xe29ab076000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x5540", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 9, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x6b6cf", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 9, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x6abe6", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xfae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 9, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x68ffd", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 9, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x685a2", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 9, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x6a35a", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 10, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "gas": "0x69990", + "input": "0xbaa51f860000000000000000000000000000000000000000000000000000000000000045", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x7ab0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 6, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 11, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x66096", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 11, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x656ef", + "input": "0x59a7715a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x1e6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000864" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 11, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x6508a", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 11, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x64690", + "input": "0x2d72225b0000000000000000000000000000000000000000000000000000000000000045", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x1adb", + "output": "0x00000000000000000000000000000000000000000000000000000000000000457c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 11, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x61d3f", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 11, + 0, + 4, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x61342", + "input": "0x2d72225b0000000000000000000000000000000000000000000000000000000000000045", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x1adb", + "output": "0x00000000000000000000000000000000000000000000000000000000000000457c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 11, + 0, + 5, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x61db5", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 12, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x613ba", + "input": "0x2d72225b0000000000000000000000000000000000000000000000000000000000000045", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x1adb", + "output": "0x00000000000000000000000000000000000000000000000000000000000000457c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 13, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x5eb2b", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 14, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x5e12d", + "input": "0x2d72225b0000000000000000000000000000000000000000000000000000000000000045", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x1adb", + "output": "0x00000000000000000000000000000000000000000000000000000000000000457c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 15, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x5b89b", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 16, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x5ae9b", + "input": "0x2d72225b0000000000000000000000000000000000000000000000000000000000000045", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x1adb", + "output": "0x00000000000000000000000000000000000000000000000000000000000000457c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x5856f", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 18, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x5586a", + "input": "0xa6c4a837000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000024", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x10f98", + "output": "0x0" + }, + "subtraces": 10, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x52153", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x5166a", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x5022f", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x4f7d4", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x4f16a", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 4, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x4e7a0", + "input": "0xe29ab076000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x3600", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 5, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x4bc49", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 5, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x4b161", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xfae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 5, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x49d09", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 5, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x492ad", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 5, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x4aef1", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 6, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x4a526", + "input": "0x4e471913000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x4a39", + "output": "0x0000000000000000000000009c82ca3332898bea9c9fa5f9642ba4a4628e1321" + }, + "subtraces": 5, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 7, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x47bb1", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 7, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x470c8", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 7, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x46403", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 7, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x459a8", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 7, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x447e8", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122639c87bf009adf9207f7fd7d6c4092a9a0fa810a665ca86e238872b10ae670e5", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000009c82ca3332898bea9c9fa5f9642ba4a4628e1321" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 7, + 0, + 4, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "gas": "0x43f32", + "input": "0x70a08231000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xa5f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000418" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 8, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "gas": "0x43259", + "input": "0xdd62ed3e000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xaee", + "output": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff4b6" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 9, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x44cc5", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 20, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x442c0", + "input": "0x2d72225b0000000000000000000000000000000000000000000000000000000000000045", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x1adb", + "output": "0x00000000000000000000000000000000000000000000000000000000000000457c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x41a83", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 22, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x410ac", + "input": "0xaf111257000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x3099", + "output": "0x00000000000000000000000000000000000000000000000000000000000070800000000000000000000000000000000000000000000000000000000000007080000000000000000000000000000000000000000000000000000000000000a8c0000000000000000000000000000000000000000000000000000000000003f480" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 23, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3ebca", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 23, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x3e0e1", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 23, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3d41c", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 23, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x3c9c1", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 23, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3d8da", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 24, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x3ce27", + "input": "0xd48e9e08000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000024", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x1bef0", + "output": "0x0" + }, + "subtraces": 13, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x397c0", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x38cd7", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3802e", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x375d3", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x36f82", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 4, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x364bc", + "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee61000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x17af", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 5, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3497d", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 6, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x33fb4", + "input": "0xe29ab076000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x2e30", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 7, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x32182", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 7, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x31699", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 7, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x309d4", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 7, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x2ff79", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 7, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x30e98", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 8, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x304cf", + "input": "0x4e471913000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x3a99", + "output": "0x0000000000000000000000009c82ca3332898bea9c9fa5f9642ba4a4628e1321" + }, + "subtraces": 5, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 9, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x2e843", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 9, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x2dd5b", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 9, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x2d094", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 9, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x2c63a", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 9, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x2bc0c", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122639c87bf009adf9207f7fd7d6c4092a9a0fa810a665ca86e238872b10ae670e5", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009c82ca3332898bea9c9fa5f9642ba4a4628e1321" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 9, + 0, + 4, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "gas": "0x2c8ac", + "input": "0x70a08231000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x28f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000418" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 10, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "gas": "0x2c320", + "input": "0xdd62ed3e000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x31e", + "output": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff4b6" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 11, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "gas": "0x2bc84", + "input": "0x271292f5000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d48720000000000000000000000000000000000000000000000000000000000000024", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xc2c0", + "output": "0x0" + }, + "subtraces": 9, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x29a74", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x28f8c", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0, + 1, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x27b50", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0, + 2, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x270f5", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0, + 3, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x26a8b", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0, + 4, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x24a5b", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0, + 5, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x23f71", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0, + 6, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x232c9", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0, + 7, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x2286b", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 25, + 0, + 12, + 0, + 8, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x21975", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 26, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x20db5", + "input": "0xe35a45910000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000006682eed000000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0x12389", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 27, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1d979", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ce2530f026ba2746d685b33f4f08aed74d7ab945c5ccda6cf0c480b6cfb03212", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 27, + 0, + 0, + 0 + ], + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionPosition": 1, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "0x000000824dc138db84fd9109fc154bdad332aa8e", + "0x0000000000000000000000000000000000000001", + "0x00000f79b7faf42eebadba19acc07cd08af44789", + "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4", + "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "0x588ac84db09fe2cdcde602502be3791475733ed2", + "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "0x02fe344708d804958aa355954df481be45c01b0d", + "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "0xecdee3f86dde93e77a692870d469498735305a41", + "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "0x0000000000000000000000000000000000000000", + "0x38369853c72295737b457fb98cbdcf61d224aa0d" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "sigHash": "0x3a871cdd" + }, + { + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "sigHash": "0x3a871cdd" + }, + { + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "to": "0x000000824dc138db84fd9109fc154bdad332aa8e", + "sigHash": "0xfff35b72" + }, + { + "from": "0x000000824dc138db84fd9109fc154bdad332aa8e", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xfc6dbca6" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "sigHash": "0xf465c77e" + }, + { + "from": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xe24a40a7" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "sigHash": "0x0000189a" + }, + { + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "sigHash": "0x0000189a" + }, + { + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "to": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "sigHash": "0x6a761202" + }, + { + "from": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "sigHash": "0x6a761202" + }, + { + "from": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xe07d2ca3" + }, + { + "from": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "sigHash": "0xf9504a90" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4", + "sigHash": "0xf9504a90" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "sigHash": "0x82afd23b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "sigHash": "0x82afd23b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x59a7715a" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x59a7715a" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x6352211e" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x6352211e" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "sigHash": "0xbaa51f86" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "sigHash": "0xbaa51f86" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x59a7715a" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x59a7715a" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "sigHash": "0xa6c4a837" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "sigHash": "0xa6c4a837" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0x4e471913" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0x4e471913" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "sigHash": "0x70a08231" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "sigHash": "0x70a08231" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "sigHash": "0xdd62ed3e" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "sigHash": "0xdd62ed3e" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0xaf111257" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0xaf111257" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "sigHash": "0xd48e9e08" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "sigHash": "0xd48e9e08" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0xcb545a77" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0xcb545a77" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0x4e471913" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0x4e471913" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "sigHash": "0x70a08231" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "sigHash": "0x70a08231" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "sigHash": "0xdd62ed3e" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "sigHash": "0xdd62ed3e" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "sigHash": "0x271292f5" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "sigHash": "0x271292f5" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0xe35a4591" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0xe35a4591" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "sigHash": "0xa9a23409" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "sigHash": "0x" + } + ], + "timestamp": 1719856848, + "baseFeePerGas": 251, + "transactionFee": "10910955769027200703791607365", + "contextActions": [ + "INTERACTED_WITH", + "HEURISTIC.INTERACTED_WITH" + ], + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x", + "logIndex": 0, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_d75195db", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 4653, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000044f9504a900000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e7fd3904450911e08c84de59d981c35fa94497a96dc3c1f30619989bd31e61ed515b0d0bcc41184a89b4f44dff8c743cd4a9e934acc86a5947e09e1c309b161a1c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000012a000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a6220000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 1, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_2138c848", + "decoded": null, + "chainId": 4653, + "topic0": "0x66753cd2356569ee081232e3be8909b950e0a76c1f8460c3a5e3c2be32b11bed" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff492", + "logIndex": 2, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_ac63923d", + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x402533d5240a0c51e02d3714c0d0a057384d4872" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129637010" + } + ] + }, + "chainId": 4653, + "topic0": "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "topic1": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic2": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x0000000000000000000000000000000000000000000000000000000000000024", + "logIndex": 3, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_215c8589", + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x402533d5240a0c51e02d3714c0d0a057384d4872" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "36" + } + ] + }, + "chainId": 4653, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "logIndex": 4, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_ba4996bc", + "decoded": null, + "chainId": 4653, + "topic0": "0xc33fc8644a8c2d2c3ef893be3ba39da859f46ffc36febcbb4cdb32154195d89a", + "topic1": "0x07acfe1750b3e75dd44709cc7a40cb780dc33f59345fe77cb053f61fb7b41bee", + "topic2": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000024" + }, + { + "address": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000006682eed000000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e40", + "logIndex": 5, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_8555c5c0", + "decoded": null, + "chainId": 4653, + "topic0": "0xd086f394c5778b5188242331e43da7656c1a10ad27cc2abe8d3628e2a57ef9ea", + "topic1": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000045", + "topic3": "0x000000000000000000000000000000000000000000000000000000000000000f" + }, + { + "address": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0xe07d2ca36438301f32bcc911b01f2bba7dcc72093dee1cf50e6154cbff4c17a10000000000000000000000000000000000000000000000000000000000000000", + "logIndex": 6, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_0f93e946", + "decoded": { + "signature": "ExecutionSuccess(bytes32,uint256)", + "signature_with_arg_names": "ExecutionSuccess(bytes32 txHash,uint256 payment)", + "name": "ExecutionSuccess", + "decoded": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "txHash", + "type": "bytes32", + "decoded": "0xe07d2ca36438301f32bcc911b01f2bba7dcc72093dee1cf50e6154cbff4c17a1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "payment", + "type": "uint256", + "decoded": "0" + } + ] + }, + "chainId": 4653, + "topic0": "0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e" + }, + { + "address": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x", + "logIndex": 7, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_977d5e4c", + "decoded": { + "signature": "GasBalanceDeducted(address,uint256)", + "signature_with_arg_names": "GasBalanceDeducted(address indexed _paymasterId,uint256 indexed _charge)", + "name": "GasBalanceDeducted", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "_paymasterId", + "type": "address", + "decoded": "0x38369853c72295737b457fb98cbdcf61d224aa0d" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "_charge", + "type": "uint256", + "decoded": "827865742158" + } + ] + }, + "chainId": 4653, + "topic0": "0x5dc1c754041954fe976773fa441397a7928c7127a1c83904214a7d2563399007", + "topic1": "0x00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", + "topic2": "0x000000000000000000000000000000000000000000000000000000c0c0a4bb4e" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0x07c47c2c7123366afac9bbfd7844e12e6d85a3cddfcfa1286ffbcb58d3ffb439", + "blockNumber": 11219023, + "data": "0x000000000000000000000000000000000000000000000000000000000000012a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000c03160a87d00000000000000000000000000000000000000000000000000000000000c97a7", + "logIndex": 8, + "removed": false, + "transactionHash": "0x496cc109fd3eee7c7be5eb01f76f7219cc8bd7fac395dd20f110d3b490536309", + "transactionIndex": 1, + "id": "log_d66becc6", + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0xb7de9f901c2890fdf8140b17e46e7d8659c2ceff9b3169099e3228d7f556c8df" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x00000f79b7faf42eebadba19acc07cd08af44789" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "298" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "825462139005" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "825255" + } + ] + }, + "chainId": 4653, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0xb7de9f901c2890fdf8140b17e46e7d8659c2ceff9b3169099e3228d7f556c8df", + "topic2": "0x000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "topic3": "0x00000000000000000000000000000f79b7faf42eebadba19acc07cd08af44789" + } + ], + "netAssetTransfers": { + "0x402533d5240a0c51e02d3714c0d0a057384d4872": { + "received": [], + "sent": [ + { + "contract": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "type": "erc20", + "value": "36" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "type": "erc20", + "value": "36" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "825462139005" + } + ] + }, + "0x80213f829c8543eda6b1f0f303e94b8e504b53d8": { + "received": [ + { + "type": "eth", + "value": "825462139005" + } + ], + "sent": [] + } + }, + "pseudotransactions": [], + "contractsCreated": [], + "enrichedParties": { + "0x80213f829c8543eda6b1f0f303e94b8e504b53d8": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000002512019dafb59528b82cb92d3c5d2423ac": [ + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x000000824dc138db84fd9109fc154bdad332aa8e": [ + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000000000000000000000000000000000000001": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x00000f79b7faf42eebadba19acc07cd08af44789": [ + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x402533d5240a0c51e02d3714c0d0a057384d4872": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xfb1bffc9d739b8d520daf37df666da4c687191ea": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xb45805566a842efb6329c11e092158f3e0eddaa2": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x588ac84db09fe2cdcde602502be3791475733ed2": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x9f53fde530411f5ea31e8c952422a81acc4567ab": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x02fe344708d804958aa355954df481be45c01b0d": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xee1f3a233e2197463598f6f5d332a6447aaff4b8": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x01f6f0c59ed955c24808b18444bd65d696531a09": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8": [ + { + "chainId": 4653, + "label": { + "public": "Sky Plot" + }, + "isContract": true, + "tokenStandard": "erc721", + "imgUrl": "", + "decimals": "", + "symbol": "zPLOT", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x1310d5a06b1caaea25af09197288f7c2d2c40eed": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xecdee3f86dde93e77a692870d469498735305a41": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321": [ + { + "chainId": 4653, + "label": { + "public": "Crop: Galaxybloom" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": 0, + "symbol": "zGALAXYBLOOM", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x38b8220482633a0113a6aa6463c4d92aecea6142": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000000000000000000000000000000000000000": [ + { + "chainId": 11155111, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x38369853c72295737b457fb98cbdcf61d224aa0d": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": "cropxyz.eth", + "avatar": "https://assets.airstack.xyz/image/nft/nNBFvZ6wvuIHqDzTFi5pM/pM0Q1IAUgJRNTJrw7f4s39637TbeaxKQdxkyaNPl5SeuxN6/faPhHOVjEgBJkD4nzjtqxboqlHMJ2wa/bdN9q8CZ4Ce+0O0ANOlyWXcQcSr7MPyVNiWyAlOhedEBLXHsIdRO/GpV6e22mUhQzlsCw=/medium.png" + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ] + }, + "assetsEnriched": {} +} \ No newline at end of file diff --git a/src/contextualizers/test/transactions/cropXyzPlotAction-0x9436b659.json b/src/contextualizers/test/transactions/cropXyzPlotAction-0x9436b659.json new file mode 100644 index 00000000..4d99196b --- /dev/null +++ b/src/contextualizers/test/transactions/cropXyzPlotAction-0x9436b659.json @@ -0,0 +1,7346 @@ +{ + "accessList": [], + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "chainId": 4653, + "from": "0x6dcdd525084aef7ba3819ba819b3fbba0bf9af2e", + "gas": 1489502, + "gasPrice": "1000251", + "hash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "input": "0x1fad948c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000006dcdd525084aef7ba3819ba819b3fbba0bf9af2e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a62200000000000000000000000000000000000000000000000000000000000001280000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000bf0fb00000000000000000000000000000000000000000000000000000000000141a8000000000000000000000000000000000000000000000000000000000002b1b600000000000000000000000000000000000000000000000000000000000f433b00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e40000189a000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d48720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002446a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044ed38981a000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000416dcfced521e49c29d218d9710dc9e368ec63c61f8e6f1e4b8fa29ffa8bf33a8857be43cb7d115bf141992bb5b544a37d9b0d9109fa602d9e16c0cbb5cafac72e1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011400000f79b7faf42eebadba19acc07cd08af4478900000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d000000000000000000000000000000000000000000000000000000006682f59c000000000000000000000000000000000000000000000000000000006682ee9400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000041b47530a67a0500bfa4b086b7b913ffb3649fafa2a31aa6ea331b9df84c6d6bd90fbd195d09fe6f66e77255fd455088d7d1bbdedc00fbe7116e4db98808bc34621c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000824dc138db84fd9109fc154bdad332aa8e000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ddf7ab256fb6685fd83977f123add74250b63648c04a50d6b58d3913b571c08300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000413af5259c9e1b4295f8d65251784855a33d8e563680be6de611bde03189016aea2517643f7a6e0413dbc383e741e44c55777dcf5a6564630909009100fa76b6a01c00000000000000000000000000000000000000000000000000000000000000", + "maxFeePerGas": "1000251", + "maxPriorityFeePerGas": "1000000", + "nonce": 10838, + "r": "0x98b7f6dd71b26859aa182887a99e4e50d26839ebc6611e56c2575df07c6b1529", + "s": "0x6884cf831f31f0eebd28da544a9f78c0c07d6e18be76c99cb013989e124cb8c0", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": 1, + "type": 2, + "v": "0x0", + "value": "0", + "yParity": "0x0", + "receipt": { + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "contractAddress": null, + "cumulativeGasUsed": 806140, + "effectiveGasPrice": 1000251, + "from": "0x6dcdd525084aef7ba3819ba819b3fbba0bf9af2e", + "gasUsed": 759275, + "l1Fee": "0x284404da0", + "l1FeeScalar": "0.0684", + "l1GasPrice": "0x9b1548", + "l1GasUsed": "0x3cbc", + "logsBloom": "0x080000005040000000000000000000000000000040000000040000000400000000090000100000010002000100400000001010000000000020000200010000000040000000000000000000480000000000000400000080000000000100020000000000040a0001000000008000000810000000000840000000000010000800000000080000004800000000020000000000000020000000000000000001000000000080000600000000400000200004000000000000008400000002080000000000000002200008000001000008020000004008048008000000000000000020000001000210000000000000004000000000000000000000000400000000000020", + "status": true, + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "type": "0x2", + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x", + "logIndex": 0, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_7d5248bf", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 4653, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000044ed38981a000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000416dcfced521e49c29d218d9710dc9e368ec63c61f8e6f1e4b8fa29ffa8bf33a8857be43cb7d115bf141992bb5b544a37d9b0d9109fa602d9e16c0cbb5cafac72e1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000128000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a6220000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 1, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_f90aca92", + "decoded": null, + "chainId": 4653, + "topic0": "0x66753cd2356569ee081232e3be8909b950e0a76c1f8460c3a5e3c2be32b11bed" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x0000000000000000000000000000000000000000000000000000000000000101", + "logIndex": 2, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_1a2ac437", + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x402533d5240a0c51e02d3714c0d0a057384d4872" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "257" + } + ] + }, + "chainId": 4653, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "logIndex": 3, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_8a914fe1", + "decoded": null, + "chainId": 4653, + "topic0": "0x32e35ee54f728c6ab26c641bc3e9660695fa4c4bc83c0cc135770c35561fb35b", + "topic1": "0x07acfe1750b3e75dd44709cc7a40cb780dc33f59345fe77cb053f61fb7b41bee", + "topic2": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000101" + }, + { + "address": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000f", + "logIndex": 4, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_3a7efe3e", + "decoded": null, + "chainId": 4653, + "topic0": "0x2c319d4cc9f75e1621750b186560d82ad742f2ff069c2ad5fe6dc78611055670", + "topic1": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic2": "0x000000000000000000000000000000000000000000000000000000000000004e", + "topic3": "0x000000000000000000000000000000000000000000000000000000000000000f" + }, + { + "address": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0xa5855f0ec28208bbc3830ac6745ca9f0fbf284778160c317ae5f9a5e957790970000000000000000000000000000000000000000000000000000000000000000", + "logIndex": 5, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_c74831e8", + "decoded": { + "signature": "ExecutionSuccess(bytes32,uint256)", + "signature_with_arg_names": "ExecutionSuccess(bytes32 txHash,uint256 payment)", + "name": "ExecutionSuccess", + "decoded": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "txHash", + "type": "bytes32", + "decoded": "0xa5855f0ec28208bbc3830ac6745ca9f0fbf284778160c317ae5f9a5e95779097" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "payment", + "type": "uint256", + "decoded": "0" + } + ] + }, + "chainId": 4653, + "topic0": "0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e" + }, + { + "address": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x", + "logIndex": 6, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_af108e4c", + "decoded": { + "signature": "GasBalanceDeducted(address,uint256)", + "signature_with_arg_names": "GasBalanceDeducted(address indexed _paymasterId,uint256 indexed _charge)", + "name": "GasBalanceDeducted", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "_paymasterId", + "type": "address", + "decoded": "0x38369853c72295737b457fb98cbdcf61d224aa0d" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "_charge", + "type": "uint256", + "decoded": "906342434865" + } + ] + }, + "chainId": 4653, + "topic0": "0x5dc1c754041954fe976773fa441397a7928c7127a1c83904214a7d2563399007", + "topic1": "0x00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", + "topic2": "0x000000000000000000000000000000000000000000000000000000d306380831" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x00000000000000000000000000000000000000000000000000000000000001280000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000d276f3f56000000000000000000000000000000000000000000000000000000000000dca20", + "logIndex": 7, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_f0735ca0", + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x6745c911852c9b5028dd8ad1e8cb33a6322a5f5090bb37b4d3d3d0a0849edcd7" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x00000f79b7faf42eebadba19acc07cd08af44789" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "296" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "903938831712" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "903712" + } + ] + }, + "chainId": 4653, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x6745c911852c9b5028dd8ad1e8cb33a6322a5f5090bb37b4d3d3d0a0849edcd7", + "topic2": "0x000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "topic3": "0x00000000000000000000000000000f79b7faf42eebadba19acc07cd08af44789" + } + ] + }, + "decoded": null, + "pseudoTransactions": [], + "assetTransfers": [ + { + "contract": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "value": "257", + "type": "erc20" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x6dcdd525084aef7ba3819ba819b3fbba0bf9af2e", + "type": "eth", + "value": "903938831712" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "gas": "0x128dc", + "input": "0x3a871cdd00000000000000000000000000000000000000000000000000000000000000606745c911852c9b5028dd8ad1e8cb33a6322a5f5090bb37b4d3d3d0a0849edcd70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a62200000000000000000000000000000000000000000000000000000000000001280000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000bf0fb00000000000000000000000000000000000000000000000000000000000141a8000000000000000000000000000000000000000000000000000000000002b1b600000000000000000000000000000000000000000000000000000000000f433b00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e40000189a000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d48720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002446a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044ed38981a000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000416dcfced521e49c29d218d9710dc9e368ec63c61f8e6f1e4b8fa29ffa8bf33a8857be43cb7d115bf141992bb5b544a37d9b0d9109fa602d9e16c0cbb5cafac72e1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011400000f79b7faf42eebadba19acc07cd08af4478900000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d000000000000000000000000000000000000000000000000000000006682f59c000000000000000000000000000000000000000000000000000000006682ee9400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000041b47530a67a0500bfa4b086b7b913ffb3649fafa2a31aa6ea331b9df84c6d6bd90fbd195d09fe6f66e77255fd455088d7d1bbdedc00fbe7116e4db98808bc34621c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000824dc138db84fd9109fc154bdad332aa8e000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ddf7ab256fb6685fd83977f123add74250b63648c04a50d6b58d3913b571c08300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000413af5259c9e1b4295f8d65251784855a33d8e563680be6de611bde03189016aea2517643f7a6e0413dbc383e741e44c55777dcf5a6564630909009100fa76b6a01c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x4284", + "output": "0x000000000000ffffffffffff0000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "gas": "0xbbfb9", + "input": "0x0000189a000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d48720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002446a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044ed38981a000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000416dcfced521e49c29d218d9710dc9e368ec63c61f8e6f1e4b8fa29ffa8bf33a8857be43cb7d115bf141992bb5b544a37d9b0d9109fa602d9e16c0cbb5cafac72e1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xa097d", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "gas": "0xb424e", + "input": "0x6a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044ed38981a000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000416dcfced521e49c29d218d9710dc9e368ec63c61f8e6f1e4b8fa29ffa8bf33a8857be43cb7d115bf141992bb5b544a37d9b0d9109fa602d9e16c0cbb5cafac72e1b00000000000000000000000000000000000000000000000000000000000000", + "to": "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x9e83a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "gas": "0xa668a", + "input": "0xed38981a000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x95ad7", + "output": "0x0" + }, + "subtraces": 22, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x9d9e4", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x9aceb", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x177e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x989af", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x95cfd", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x9db", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x94f24", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 4, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "gas": "0x92304", + "input": "0x82afd23b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xbefe", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x8ce2d", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x8a22f", + "input": "0x59a7715a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x9b6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000864" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x8947e", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x88a85", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x612b", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x865a5", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 6, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x85bdc", + "input": "0x6352211e000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xab9", + "output": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 7, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x84bca", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 8, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x841ce", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 9, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x817f1", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 10, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x80df3", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 11, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x7e562", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 12, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x7db61", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 13, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x7b2c8", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 14, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x7a8c4", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 15, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x77f94", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 16, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "gas": "0x775ca", + "input": "0xf502ce2e000000000000000000000000000000000000000000000000000000000000004e", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x41761", + "output": "0x0000000000000000000000000000000000000000000000000000000000000101" + }, + "subtraces": 26, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x735eb", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x72b02", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xfae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x70f12", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x704b8", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x6fe16", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 4, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x6f470", + "input": "0x59a7715a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1e6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000864" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 5, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x6ee0b", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 6, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x6e414", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 7, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x6babd", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 8, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x6b0c1", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 9, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x688af", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ba2467d79783d80785af98d8954d247e4c0cdccd6e11af0df93564a383266283", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x00000000000000000000000084bcb8f621f6385dcdecda2ad6519016d59e0855" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 10, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x675b6", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 11, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x66bb6", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 12, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x6434b", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 13, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x63948", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 14, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x610d6", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 15, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x606cf", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 16, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x5de54", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 17, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x5d44d", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 18, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x5abf1", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 19, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x5a1e5", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 20, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x579c6", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 21, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x56fb9", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 22, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x5468c", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 23, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x53c7e", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000004e", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000004e205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000006681648e00000000000000000000000000000000000000000000000000000000000189c00000000000000000000000000000000000000000000000000000000000057e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 24, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "gas": "0x4fa15", + "input": "0xfec32dfd00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000005205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000", + "to": "0xccda49df62f14dca9a4cf5e24e129792b5c8c2ba", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1c34b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000101" + }, + "subtraces": 11, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x4c437", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x4b94e", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xfae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x49d65", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x4930a", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x48c84", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 4, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x46064", + "input": "0xe29ab076000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x5540", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 5, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x431ad", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 5, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x426c4", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000084bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xfae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 5, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x40ada", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 5, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x4007f", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 5, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x40995", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 6, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "gas": "0x3dd75", + "input": "0x1a8028f9205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa3468", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x4331", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 7, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3b2b6", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 7, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x3a7cd", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000084bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 7, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x39391", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 7, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x38936", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 7, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3982a", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122a7aca4651592361767f31a71cc625eaebaaac01cdbb6d87ab68fbd52bab3fe72", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000387d73bd8682dceb3327b940213d5de50ee2bba2" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 8, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3857d", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 9, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x37bb3", + "input": "0x4e471913000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x4a39", + "output": "0x0000000000000000000000009c82ca3332898bea9c9fa5f9642ba4a4628e1321" + }, + "subtraces": 5, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 10, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x35b77", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 10, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x3508e", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000084bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 10, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x343c9", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 10, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x3396e", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 10, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x327ae", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122639c87bf009adf9207f7fd7d6c4092a9a0fa810a665ca86e238872b10ae670e5", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000009c82ca3332898bea9c9fa5f9642ba4a4628e1321" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 25, + 0, + 10, + 0, + 4, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x378d3", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 18, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x36d14", + "input": "0xe35a4591000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6615", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x32df3", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ce2530f026ba2746d685b33f4f08aed74d7ab945c5ccda6cf0c480b6cfb03212", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 19, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3068b", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 20, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x2d990", + "input": "0x87db2cd9000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000101", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x1d827", + "output": "0x0" + }, + "subtraces": 11, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x2a316", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x2982e", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x283f3", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x27997", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x27346", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 4, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x26880", + "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee61000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x17af", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 5, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x24d41", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 6, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x24378", + "input": "0xe29ab076000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x3600", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 7, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x22d18", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 7, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x2222f", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xfae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 7, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x20dd8", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 7, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x2037d", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 7, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x20acb", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 8, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x20101", + "input": "0x4e471913000000000000000000000000000000000000000000000000000000000000000f", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x3a99", + "output": "0x0000000000000000000000009c82ca3332898bea9c9fa5f9642ba4a4628e1321" + }, + "subtraces": 5, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 9, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1ec83", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 9, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x1e19b", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 9, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1d4d5", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 9, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x1ca79", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 9, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1c04c", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122639c87bf009adf9207f7fd7d6c4092a9a0fa810a665ca86e238872b10ae670e5", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009c82ca3332898bea9c9fa5f9642ba4a4628e1321" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 9, + 0, + 4, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "gas": "0x1a99b", + "input": "0x4eb90299000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d48720000000000000000000000000000000000000000000000000000000000000101", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0xb51e", + "output": "0x0" + }, + "subtraces": 9, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x18fe7", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0, + 0, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x184ff", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0, + 1, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x170c4", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0, + 2, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x16668", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0, + 3, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x15ffe", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0, + 4, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1549a", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0, + 5, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x149b1", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0, + 6, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x13d07", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0, + 7, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x132a9", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 21, + 0, + 10, + 0, + 8, + 0 + ], + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionPosition": 1, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x6dcdd525084aef7ba3819ba819b3fbba0bf9af2e", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "0x000000824dc138db84fd9109fc154bdad332aa8e", + "0x0000000000000000000000000000000000000001", + "0x00000f79b7faf42eebadba19acc07cd08af44789", + "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4", + "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "0x588ac84db09fe2cdcde602502be3791475733ed2", + "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "0x02fe344708d804958aa355954df481be45c01b0d", + "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "0xccda49df62f14dca9a4cf5e24e129792b5c8c2ba", + "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "0x7858176524906a49be14f50f6c6150b45f0224ab", + "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "0xecdee3f86dde93e77a692870d469498735305a41", + "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "0x0000000000000000000000000000000000000000", + "0x38369853c72295737b457fb98cbdcf61d224aa0d" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x6dcdd525084aef7ba3819ba819b3fbba0bf9af2e", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "sigHash": "0x3a871cdd" + }, + { + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "sigHash": "0x3a871cdd" + }, + { + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "to": "0x000000824dc138db84fd9109fc154bdad332aa8e", + "sigHash": "0xfff35b72" + }, + { + "from": "0x000000824dc138db84fd9109fc154bdad332aa8e", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0x2be12ec8" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "sigHash": "0xf465c77e" + }, + { + "from": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xc400e03b" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "sigHash": "0x0000189a" + }, + { + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "sigHash": "0x0000189a" + }, + { + "from": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "to": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "sigHash": "0x6a761202" + }, + { + "from": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "sigHash": "0x6a761202" + }, + { + "from": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xa5855f0e" + }, + { + "from": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "to": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "sigHash": "0xed38981a" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4", + "sigHash": "0xed38981a" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "sigHash": "0x82afd23b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "sigHash": "0x82afd23b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x59a7715a" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x59a7715a" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x6352211e" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x6352211e" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "sigHash": "0xf502ce2e" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "sigHash": "0xf502ce2e" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x59a7715a" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x59a7715a" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "sigHash": "0xfec32dfd" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0xccda49df62f14dca9a4cf5e24e129792b5c8c2ba", + "sigHash": "0xfec32dfd" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "sigHash": "0x1a8028f9" + }, + { + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "sigHash": "0x1a8028f9" + }, + { + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x84bcb8f621f6385dcdecda2ad6519016d59e0855", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0x4e471913" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0x4e471913" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0xe35a4591" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0xe35a4591" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "sigHash": "0x87db2cd9" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "sigHash": "0x87db2cd9" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0xcb545a77" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0xcb545a77" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0xe29ab076" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0x4e471913" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0x4e471913" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "sigHash": "0x4eb90299" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x38b8220482633a0113a6aa6463c4d92aecea6142", + "sigHash": "0x4eb90299" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "sigHash": "0xa9a23409" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x6dcdd525084aef7ba3819ba819b3fbba0bf9af2e", + "sigHash": "0x" + } + ], + "timestamp": 1719856822, + "baseFeePerGas": 251, + "transactionFee": "10808741280729600759465578025", + "contextActions": [ + "INTERACTED_WITH", + "HEURISTIC.INTERACTED_WITH" + ], + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x", + "logIndex": 0, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_7d5248bf", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 4653, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000044ed38981a000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000416dcfced521e49c29d218d9710dc9e368ec63c61f8e6f1e4b8fa29ffa8bf33a8857be43cb7d115bf141992bb5b544a37d9b0d9109fa602d9e16c0cbb5cafac72e1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000128000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a6220000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 1, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_f90aca92", + "decoded": null, + "chainId": 4653, + "topic0": "0x66753cd2356569ee081232e3be8909b950e0a76c1f8460c3a5e3c2be32b11bed" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x0000000000000000000000000000000000000000000000000000000000000101", + "logIndex": 2, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_1a2ac437", + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x402533d5240a0c51e02d3714c0d0a057384d4872" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "257" + } + ] + }, + "chainId": 4653, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872" + }, + { + "address": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "logIndex": 3, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_8a914fe1", + "decoded": null, + "chainId": 4653, + "topic0": "0x32e35ee54f728c6ab26c641bc3e9660695fa4c4bc83c0cc135770c35561fb35b", + "topic1": "0x07acfe1750b3e75dd44709cc7a40cb780dc33f59345fe77cb053f61fb7b41bee", + "topic2": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000101" + }, + { + "address": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000f", + "logIndex": 4, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_3a7efe3e", + "decoded": null, + "chainId": 4653, + "topic0": "0x2c319d4cc9f75e1621750b186560d82ad742f2ff069c2ad5fe6dc78611055670", + "topic1": "0x000000000000000000000000402533d5240a0c51e02d3714c0d0a057384d4872", + "topic2": "0x000000000000000000000000000000000000000000000000000000000000004e", + "topic3": "0x000000000000000000000000000000000000000000000000000000000000000f" + }, + { + "address": "0x402533d5240a0c51e02d3714c0d0a057384d4872", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0xa5855f0ec28208bbc3830ac6745ca9f0fbf284778160c317ae5f9a5e957790970000000000000000000000000000000000000000000000000000000000000000", + "logIndex": 5, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_c74831e8", + "decoded": { + "signature": "ExecutionSuccess(bytes32,uint256)", + "signature_with_arg_names": "ExecutionSuccess(bytes32 txHash,uint256 payment)", + "name": "ExecutionSuccess", + "decoded": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "txHash", + "type": "bytes32", + "decoded": "0xa5855f0ec28208bbc3830ac6745ca9f0fbf284778160c317ae5f9a5e95779097" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "payment", + "type": "uint256", + "decoded": "0" + } + ] + }, + "chainId": 4653, + "topic0": "0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e" + }, + { + "address": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x", + "logIndex": 6, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_af108e4c", + "decoded": { + "signature": "GasBalanceDeducted(address,uint256)", + "signature_with_arg_names": "GasBalanceDeducted(address indexed _paymasterId,uint256 indexed _charge)", + "name": "GasBalanceDeducted", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "_paymasterId", + "type": "address", + "decoded": "0x38369853c72295737b457fb98cbdcf61d224aa0d" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "_charge", + "type": "uint256", + "decoded": "906342434865" + } + ] + }, + "chainId": 4653, + "topic0": "0x5dc1c754041954fe976773fa441397a7928c7127a1c83904214a7d2563399007", + "topic1": "0x00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", + "topic2": "0x000000000000000000000000000000000000000000000000000000d306380831" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xaaaa01d2e98aecea68bd753cd137c5a00ba3e9b608b4992875007acf44ee25ff", + "blockNumber": 11218997, + "data": "0x00000000000000000000000000000000000000000000000000000000000001280000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000d276f3f56000000000000000000000000000000000000000000000000000000000000dca20", + "logIndex": 7, + "removed": false, + "transactionHash": "0x9436cd46e57bf3ad24c6679c9d5e8bd6fefd450bcebc290801c860da552cb659", + "transactionIndex": 1, + "id": "log_f0735ca0", + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x6745c911852c9b5028dd8ad1e8cb33a6322a5f5090bb37b4d3d3d0a0849edcd7" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x00000f79b7faf42eebadba19acc07cd08af44789" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "296" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "903938831712" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "903712" + } + ] + }, + "chainId": 4653, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x6745c911852c9b5028dd8ad1e8cb33a6322a5f5090bb37b4d3d3d0a0849edcd7", + "topic2": "0x000000000000000000000000d5b1e415e8a7cd71e0eff003caa07a3bdad0a622", + "topic3": "0x00000000000000000000000000000f79b7faf42eebadba19acc07cd08af44789" + } + ], + "netAssetTransfers": { + "0x0000000000000000000000000000000000000000": { + "received": [], + "sent": [ + { + "contract": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "type": "erc20", + "value": "257" + } + ] + }, + "0x402533d5240a0c51e02d3714c0d0a057384d4872": { + "received": [ + { + "contract": "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321", + "type": "erc20", + "value": "257" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "903938831712" + } + ] + }, + "0x6dcdd525084aef7ba3819ba819b3fbba0bf9af2e": { + "received": [ + { + "type": "eth", + "value": "903938831712" + } + ], + "sent": [] + } + }, + "pseudotransactions": [], + "contractsCreated": [], + "enrichedParties": { + "0x6dcdd525084aef7ba3819ba819b3fbba0bf9af2e": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xd5b1e415e8a7cd71e0eff003caa07a3bdad0a622": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000002512019dafb59528b82cb92d3c5d2423ac": [ + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x000000824dc138db84fd9109fc154bdad332aa8e": [ + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000000000000000000000000000000000000001": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x00000f79b7faf42eebadba19acc07cd08af44789": [ + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x402533d5240a0c51e02d3714c0d0a057384d4872": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xfb1bffc9d739b8d520daf37df666da4c687191ea": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xb45805566a842efb6329c11e092158f3e0eddaa2": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x588ac84db09fe2cdcde602502be3791475733ed2": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x9f53fde530411f5ea31e8c952422a81acc4567ab": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x02fe344708d804958aa355954df481be45c01b0d": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xee1f3a233e2197463598f6f5d332a6447aaff4b8": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x01f6f0c59ed955c24808b18444bd65d696531a09": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8": [ + { + "chainId": 4653, + "label": { + "public": "Sky Plot" + }, + "isContract": true, + "tokenStandard": "erc721", + "imgUrl": "", + "decimals": "", + "symbol": "zPLOT", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x84bcb8f621f6385dcdecda2ad6519016d59e0855": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xccda49df62f14dca9a4cf5e24e129792b5c8c2ba": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x1310d5a06b1caaea25af09197288f7c2d2c40eed": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x7858176524906a49be14f50f6c6150b45f0224ab": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xecdee3f86dde93e77a692870d469498735305a41": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x9c82ca3332898bea9c9fa5f9642ba4a4628e1321": [ + { + "chainId": 4653, + "label": { + "public": "Crop: Galaxybloom" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": 0, + "symbol": "zGALAXYBLOOM", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x38b8220482633a0113a6aa6463c4d92aecea6142": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000000000000000000000000000000000000000": [ + { + "chainId": 11155111, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x38369853c72295737b457fb98cbdcf61d224aa0d": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": "cropxyz.eth", + "avatar": "https://assets.airstack.xyz/image/nft/nNBFvZ6wvuIHqDzTFi5pM/pM0Q1IAUgJRNTJrw7f4s39637TbeaxKQdxkyaNPl5SeuxN6/faPhHOVjEgBJkD4nzjtqxboqlHMJ2wa/bdN9q8CZ4Ce+0O0ANOlyWXcQcSr7MPyVNiWyAlOhedEBLXHsIdRO/GpV6e22mUhQzlsCw=/medium.png" + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ] + }, + "assetsEnriched": {} +} \ No newline at end of file diff --git a/src/contextualizers/test/transactions/cropXyzPlotAction-0x9bb5a737.json b/src/contextualizers/test/transactions/cropXyzPlotAction-0x9bb5a737.json new file mode 100644 index 00000000..09e60317 --- /dev/null +++ b/src/contextualizers/test/transactions/cropXyzPlotAction-0x9bb5a737.json @@ -0,0 +1,3226 @@ +{ + "accessList": [], + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "chainId": 4653, + "from": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "gas": 998751, + "gasPrice": "1000251", + "hash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "input": "0x1fad948c000000000000000000000000000000000000000000000000000000000000004000000000000000000000000080213f829c8543eda6b1f0f303e94b8e504b53d800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a569660297db16f39cd2d33ede143d8cf2b16e8a000000000000000000000000000000000000000000000000000000000000008b000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000048f0400000000000000000000000000000000000000000000000000000000000141a8000000000000000000000000000000000000000000000000000000000001f7c900000000000000000000000000000000000000000000000000000000000f433b00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e40000189a000000000000000000000000f1fbb7b98d1fd2037e80ac41486d761ccf7735e70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002446a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044f9b9193f000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ab3fa5ec157cf4ee8ccfbee8cde9482b5a361fc3b2f36a372fa70cfe53f98e2971406990026058411abdff80330176641b9518971de9e99c922bb1df891421481c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011400000f79b7faf42eebadba19acc07cd08af4478900000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d000000000000000000000000000000000000000000000000000000006682f724000000000000000000000000000000000000000000000000000000006682f01c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004128e1b5338fd569638dade1cabd6901f3778d3f7914ab54c0adf65648cb7852c560c23813c6142cafedb22855fc9f635229db44c3015b40e38d643763b76593dd1c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000824dc138db84fd9109fc154bdad332aa8e00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c1b5cdf976d0f47feb1ab3cf1297f07db5f8c6215a33cf891a6d23c528f24200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004169b24aa869145da5dd466cca18ec98d0dfa28c09967e7298664dbb444a1562ed2f080ce8ac4d89ead45651f27768183f373a9d35b3845f05e65f3bd23b070ab51b00000000000000000000000000000000000000000000000000000000000000", + "maxFeePerGas": "1000251", + "maxPriorityFeePerGas": "1000000", + "nonce": 10849, + "r": "0xc17450d50db7b89fbce9cc3bf65b086cfe9053b99cc6d63db409c1c3eaacd7e4", + "s": "0x183a1ae404787020ccf262521887d81d081f154a6bef1b0ee971c84772fd68d9", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": 1, + "type": 2, + "v": "0x0", + "value": "0", + "yParity": "0x0", + "receipt": { + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "contractAddress": null, + "cumulativeGasUsed": 408630, + "effectiveGasPrice": 1000251, + "from": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "gasUsed": 356165, + "l1Fee": "0x2b901f7e0", + "l1FeeScalar": "0.0684", + "l1GasPrice": "0xa7651f", + "l1GasUsed": "0x3ce0", + "logsBloom": "0x00000000440000000000000100000008000000000000000000000000040000000009000000000000000200010040000000100000040000000020020000000000000010000000000000000000000080000000040020000000000010000000000000000080080001001000000000000008000000400800000000000000000800000000080000000000010000020000001000000800000000000000000000000000000000000400000000400000000004000000000000000000000002080000000000000000020008000001000008020000004008048000000000000001000000000000000000000000000000000000008000020008080000000000000000000020", + "status": true, + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "type": "0x2", + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x", + "logIndex": 0, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_8fe840e4", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 4653, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000044f9b9193f000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ab3fa5ec157cf4ee8ccfbee8cde9482b5a361fc3b2f36a372fa70cfe53f98e2971406990026058411abdff80330176641b9518971de9e99c922bb1df891421481c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008b000000000000000000000000a569660297db16f39cd2d33ede143d8cf2b16e8a0000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 1, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_16c6aa32", + "decoded": null, + "chainId": 4653, + "topic0": "0x66753cd2356569ee081232e3be8909b950e0a76c1f8460c3a5e3c2be32b11bed" + }, + { + "address": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 2, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_0fb20f18", + "decoded": null, + "chainId": 4653, + "topic0": "0xe04c05bb3bd78099cc281284e98a88143e94e45cfd8e62fd7767bfb9a730b690", + "topic1": "0x000000000000000000000000f1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "topic2": "0x000000000000000000000000000000000000000000000000000000000000000a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000005" + }, + { + "address": "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x894c599b3e6306f79b0af4196a70cd9e82309f16e21bf9e033aa3c32ccbfae320000000000000000000000000000000000000000000000000000000000000000", + "logIndex": 3, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_4b70c769", + "decoded": { + "signature": "ExecutionSuccess(bytes32,uint256)", + "signature_with_arg_names": "ExecutionSuccess(bytes32 txHash,uint256 payment)", + "name": "ExecutionSuccess", + "decoded": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "txHash", + "type": "bytes32", + "decoded": "0x894c599b3e6306f79b0af4196a70cd9e82309f16e21bf9e033aa3c32ccbfae32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "payment", + "type": "uint256", + "decoded": "0" + } + ] + }, + "chainId": 4653, + "topic0": "0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e" + }, + { + "address": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x", + "logIndex": 4, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_70afeee3", + "decoded": { + "signature": "GasBalanceDeducted(address,uint256)", + "signature_with_arg_names": "GasBalanceDeducted(address indexed _paymasterId,uint256 indexed _charge)", + "name": "GasBalanceDeducted", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "_paymasterId", + "type": "address", + "decoded": "0x38369853c72295737b457fb98cbdcf61d224aa0d" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "_charge", + "type": "uint256", + "decoded": "452685595572" + } + ] + }, + "chainId": 4653, + "topic0": "0x5dc1c754041954fe976773fa441397a7928c7127a1c83904214a7d2563399007", + "topic1": "0x00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", + "topic2": "0x00000000000000000000000000000000000000000000000000000069662a03b4" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x000000000000000000000000000000000000000000000000000000000000008b000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000068d6e5f0e3000000000000000000000000000000000000000000000000000000000006de79", + "logIndex": 5, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_e7ddae04", + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0xdc83e941c6cf35e4012e746aad9717caed9988f40e6f39dd7b5fd20f57071870" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x00000f79b7faf42eebadba19acc07cd08af44789" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "139" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "450281992419" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "450169" + } + ] + }, + "chainId": 4653, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0xdc83e941c6cf35e4012e746aad9717caed9988f40e6f39dd7b5fd20f57071870", + "topic2": "0x000000000000000000000000a569660297db16f39cd2d33ede143d8cf2b16e8a", + "topic3": "0x00000000000000000000000000000f79b7faf42eebadba19acc07cd08af44789" + } + ] + }, + "decoded": null, + "pseudoTransactions": [], + "assetTransfers": [ + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "type": "eth", + "value": "450281992419" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a", + "gas": "0x128dc", + "input": "0x3a871cdd0000000000000000000000000000000000000000000000000000000000000060dc83e941c6cf35e4012e746aad9717caed9988f40e6f39dd7b5fd20f570718700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a569660297db16f39cd2d33ede143d8cf2b16e8a000000000000000000000000000000000000000000000000000000000000008b000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000048f0400000000000000000000000000000000000000000000000000000000000141a8000000000000000000000000000000000000000000000000000000000001f7c900000000000000000000000000000000000000000000000000000000000f433b00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e40000189a000000000000000000000000f1fbb7b98d1fd2037e80ac41486d761ccf7735e70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002446a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044f9b9193f000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ab3fa5ec157cf4ee8ccfbee8cde9482b5a361fc3b2f36a372fa70cfe53f98e2971406990026058411abdff80330176641b9518971de9e99c922bb1df891421481c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011400000f79b7faf42eebadba19acc07cd08af4478900000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d000000000000000000000000000000000000000000000000000000006682f724000000000000000000000000000000000000000000000000000000006682f01c0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004128e1b5338fd569638dade1cabd6901f3778d3f7914ab54c0adf65648cb7852c560c23813c6142cafedb22855fc9f635229db44c3015b40e38d643763b76593dd1c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000824dc138db84fd9109fc154bdad332aa8e00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c1b5cdf976d0f47feb1ab3cf1297f07db5f8c6215a33cf891a6d23c528f24200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004169b24aa869145da5dd466cca18ec98d0dfa28c09967e7298664dbb444a1562ed2f080ce8ac4d89ead45651f27768183f373a9d35b3845f05e65f3bd23b070ab51b00000000000000000000000000000000000000000000000000000000000000", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x4284", + "output": "0x000000000000ffffffffffff0000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a", + "gas": "0x47b4a", + "input": "0x0000189a000000000000000000000000f1fbb7b98d1fd2037e80ac41486d761ccf7735e70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002446a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044f9b9193f000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ab3fa5ec157cf4ee8ccfbee8cde9482b5a361fc3b2f36a372fa70cfe53f98e2971406990026058411abdff80330176641b9518971de9e99c922bb1df891421481c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x3d7c3", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "gas": "0x4378f", + "input": "0x6a761202000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000044f9b9193f000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ab3fa5ec157cf4ee8ccfbee8cde9482b5a361fc3b2f36a372fa70cfe53f98e2971406990026058411abdff80330176641b9518971de9e99c922bb1df891421481c00000000000000000000000000000000000000000000000000000000000000", + "to": "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x3b680", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "gas": "0x393b1", + "input": "0xf9b9193f000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x3291d", + "output": "0x0" + }, + "subtraces": 18, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x33cf5", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x30ffb", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000f1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x177e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x2ecbf", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x2c00e", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x9db", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 3, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x2b235", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 4, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "gas": "0x28614", + "input": "0x82afd23b000000000000000000000000000000000000000000000000000000000000000a", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0xbefe", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x265ba", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 0, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x239bd", + "input": "0x59a7715a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x9b6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000864" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 1, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x22c0c", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 2, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x22213", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000000a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x612b", + "output": "0x000000000000000000000000000000000000000000000000000000000000000a205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa346800000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000006682ea910000000000000000000000000000000000000000000000000000000000001194000000000000000000000000000000000000000000000000000000000002b4940000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 5, + 0, + 3, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1c8b7", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 6, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x1beec", + "input": "0x6352211e000000000000000000000000000000000000000000000000000000000000000a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0xab9", + "output": "0x000000000000000000000000f1fbb7b98d1fd2037e80ac41486d761ccf7735e7" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 7, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1aeda", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 8, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x1a4df", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000000a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000000a205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa346800000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000006682ea910000000000000000000000000000000000000000000000000000000000001194000000000000000000000000000000000000000000000000000000000002b4940000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 9, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x17b94", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 10, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x17196", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000000a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000000a205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa346800000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000006682ea910000000000000000000000000000000000000000000000000000000000001194000000000000000000000000000000000000000000000000000000000002b4940000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 11, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x14905", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 12, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x13f04", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000000a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000000a205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa346800000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000006682ea910000000000000000000000000000000000000000000000000000000000001194000000000000000000000000000000000000000000000000000000000002b4940000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 13, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1166b", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 14, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x10c67", + "input": "0x2d72225b000000000000000000000000000000000000000000000000000000000000000a", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x1adb", + "output": "0x000000000000000000000000000000000000000000000000000000000000000a205826862a05ef67f76f11da7da0f850bd7418a251470e0d150d046ba4fa346800000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000006682ea910000000000000000000000000000000000000000000000000000000000001194000000000000000000000000000000000000000000000000000000000002b4940000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 15, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xe18c", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 16, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0xd5cd", + "input": "0xe35a4591000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0x6615", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xab3d", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ce2530f026ba2746d685b33f4f08aed74d7ab945c5ccda6cf0c480b6cfb03212", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa2" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 17, + 0, + 0, + 0 + ], + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionPosition": 1, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0xa569660297db16f39cd2d33ede143d8cf2b16e8a", + "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "0x000000824dc138db84fd9109fc154bdad332aa8e", + "0x0000000000000000000000000000000000000001", + "0x00000f79b7faf42eebadba19acc07cd08af44789", + "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4", + "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "0x588ac84db09fe2cdcde602502be3791475733ed2", + "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "0x02fe344708d804958aa355954df481be45c01b0d", + "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "0x38369853c72295737b457fb98cbdcf61d224aa0d" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a", + "sigHash": "0x3a871cdd" + }, + { + "from": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "sigHash": "0x3a871cdd" + }, + { + "from": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a", + "to": "0x000000824dc138db84fd9109fc154bdad332aa8e", + "sigHash": "0xfff35b72" + }, + { + "from": "0x000000824dc138db84fd9109fc154bdad332aa8e", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0x5520d658" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "sigHash": "0xf465c77e" + }, + { + "from": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xfe985091" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a", + "sigHash": "0x0000189a" + }, + { + "from": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a", + "to": "0x0000002512019dafb59528b82cb92d3c5d2423ac", + "sigHash": "0x0000189a" + }, + { + "from": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a", + "to": "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "sigHash": "0x6a761202" + }, + { + "from": "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "to": "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "sigHash": "0x6a761202" + }, + { + "from": "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0x894c599b" + }, + { + "from": "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "to": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "sigHash": "0xf9b9193f" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4", + "sigHash": "0xf9b9193f" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "sigHash": "0x82afd23b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "sigHash": "0x82afd23b" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x59a7715a" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x59a7715a" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x6352211e" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x6352211e" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x2d72225b" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x2d72225b" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0xe35a4591" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0xe35a4591" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "sigHash": "0xa9a23409" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x80213f829c8543eda6b1f0f303e94b8e504b53d8", + "sigHash": "0x" + } + ], + "timestamp": 1719857212, + "baseFeePerGas": 251, + "transactionFee": "11693848544294401356254397415", + "contextActions": [ + "INTERACTED_WITH", + "HEURISTIC.INTERACTED_WITH" + ], + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x", + "logIndex": 0, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_8fe840e4", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 4653, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x000000000000000000000000b45805566a842efb6329c11e092158f3e0eddaa20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000044f9b9193f000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041ab3fa5ec157cf4ee8ccfbee8cde9482b5a361fc3b2f36a372fa70cfe53f98e2971406990026058411abdff80330176641b9518971de9e99c922bb1df891421481c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008b000000000000000000000000a569660297db16f39cd2d33ede143d8cf2b16e8a0000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 1, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_16c6aa32", + "decoded": null, + "chainId": 4653, + "topic0": "0x66753cd2356569ee081232e3be8909b950e0a76c1f8460c3a5e3c2be32b11bed" + }, + { + "address": "0xb45805566a842efb6329c11e092158f3e0eddaa2", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 2, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_0fb20f18", + "decoded": null, + "chainId": 4653, + "topic0": "0xe04c05bb3bd78099cc281284e98a88143e94e45cfd8e62fd7767bfb9a730b690", + "topic1": "0x000000000000000000000000f1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "topic2": "0x000000000000000000000000000000000000000000000000000000000000000a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000005" + }, + { + "address": "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x894c599b3e6306f79b0af4196a70cd9e82309f16e21bf9e033aa3c32ccbfae320000000000000000000000000000000000000000000000000000000000000000", + "logIndex": 3, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_4b70c769", + "decoded": { + "signature": "ExecutionSuccess(bytes32,uint256)", + "signature_with_arg_names": "ExecutionSuccess(bytes32 txHash,uint256 payment)", + "name": "ExecutionSuccess", + "decoded": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "txHash", + "type": "bytes32", + "decoded": "0x894c599b3e6306f79b0af4196a70cd9e82309f16e21bf9e033aa3c32ccbfae32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "payment", + "type": "uint256", + "decoded": "0" + } + ] + }, + "chainId": 4653, + "topic0": "0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e" + }, + { + "address": "0x00000f79b7faf42eebadba19acc07cd08af44789", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x", + "logIndex": 4, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_70afeee3", + "decoded": { + "signature": "GasBalanceDeducted(address,uint256)", + "signature_with_arg_names": "GasBalanceDeducted(address indexed _paymasterId,uint256 indexed _charge)", + "name": "GasBalanceDeducted", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "_paymasterId", + "type": "address", + "decoded": "0x38369853c72295737b457fb98cbdcf61d224aa0d" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "_charge", + "type": "uint256", + "decoded": "452685595572" + } + ] + }, + "chainId": 4653, + "topic0": "0x5dc1c754041954fe976773fa441397a7928c7127a1c83904214a7d2563399007", + "topic1": "0x00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", + "topic2": "0x00000000000000000000000000000000000000000000000000000069662a03b4" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xf8ba8b5f8f26eb49c75ddd6b734cdef0e72040feb904c8a8c065172a30e8839a", + "blockNumber": 11219387, + "data": "0x000000000000000000000000000000000000000000000000000000000000008b000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000068d6e5f0e3000000000000000000000000000000000000000000000000000000000006de79", + "logIndex": 5, + "removed": false, + "transactionHash": "0x9bb530713a96be51ba2b16dffe7b2aae0c7683d72b99f689df0712915506a737", + "transactionIndex": 1, + "id": "log_e7ddae04", + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0xdc83e941c6cf35e4012e746aad9717caed9988f40e6f39dd7b5fd20f57071870" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xa569660297db16f39cd2d33ede143d8cf2b16e8a" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x00000f79b7faf42eebadba19acc07cd08af44789" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "139" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "450281992419" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "450169" + } + ] + }, + "chainId": 4653, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0xdc83e941c6cf35e4012e746aad9717caed9988f40e6f39dd7b5fd20f57071870", + "topic2": "0x000000000000000000000000a569660297db16f39cd2d33ede143d8cf2b16e8a", + "topic3": "0x00000000000000000000000000000f79b7faf42eebadba19acc07cd08af44789" + } + ], + "netAssetTransfers": { + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "450281992419" + } + ] + }, + "0x80213f829c8543eda6b1f0f303e94b8e504b53d8": { + "received": [ + { + "type": "eth", + "value": "450281992419" + } + ], + "sent": [] + } + }, + "pseudotransactions": [], + "contractsCreated": [], + "enrichedParties": { + "0x80213f829c8543eda6b1f0f303e94b8e504b53d8": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xa569660297db16f39cd2d33ede143d8cf2b16e8a": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000002512019dafb59528b82cb92d3c5d2423ac": [ + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x000000824dc138db84fd9109fc154bdad332aa8e": [ + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000000000000000000000000000000000000001": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x00000f79b7faf42eebadba19acc07cd08af44789": [ + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xf1fbb7b98d1fd2037e80ac41486d761ccf7735e7": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xfb1bffc9d739b8d520daf37df666da4c687191ea": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xb45805566a842efb6329c11e092158f3e0eddaa2": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0a4aaed6df366158ad7645807350c80d2a3b7fc4": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x588ac84db09fe2cdcde602502be3791475733ed2": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x9f53fde530411f5ea31e8c952422a81acc4567ab": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x02fe344708d804958aa355954df481be45c01b0d": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xee1f3a233e2197463598f6f5d332a6447aaff4b8": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x01f6f0c59ed955c24808b18444bd65d696531a09": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8": [ + { + "chainId": 4653, + "label": { + "public": "Sky Plot" + }, + "isContract": true, + "tokenStandard": "erc721", + "imgUrl": "", + "decimals": "", + "symbol": "zPLOT", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x38369853c72295737b457fb98cbdcf61d224aa0d": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": "cropxyz.eth", + "avatar": "https://assets.airstack.xyz/image/nft/nNBFvZ6wvuIHqDzTFi5pM/pM0Q1IAUgJRNTJrw7f4s39637TbeaxKQdxkyaNPl5SeuxN6/faPhHOVjEgBJkD4nzjtqxboqlHMJ2wa/bdN9q8CZ4Ce+0O0ANOlyWXcQcSr7MPyVNiWyAlOhedEBLXHsIdRO/GpV6e22mUhQzlsCw=/medium.png" + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ] + }, + "assetsEnriched": {} +} \ No newline at end of file diff --git a/src/contextualizers/test/transactions/goldDestination-0x469f8c9c.json b/src/contextualizers/test/transactions/goldDestination-0x2b1c6528.json similarity index 61% rename from src/contextualizers/test/transactions/goldDestination-0x469f8c9c.json rename to src/contextualizers/test/transactions/goldDestination-0x2b1c6528.json index ae2c618b..f04f2bde 100644 --- a/src/contextualizers/test/transactions/goldDestination-0x469f8c9c.json +++ b/src/contextualizers/test/transactions/goldDestination-0x2b1c6528.json @@ -1,55 +1,163 @@ { - "_id": "6633fa90d0e05f534265c00e", "accessList": [], - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "chainId": 4653, "from": "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", - "gas": 1370895, + "gas": 2212525, "gasPrice": "252", - "hash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", - "input": "0xce6298e70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000026000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b7a45415254484d454c4f4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000473796e3337363936616332656262383561366238393930393538636331386234333461", + "hash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "input": "0x0945e92b0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e000000000000000000000000000000000000000000000000000000000000000000000000000000000000087a564f4944504f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000073796e3961373936626463663165333532303839333830356331393932336635353437", "maxFeePerGas": "10000", "maxPriorityFeePerGas": "1", - "nonce": 0, - "r": "0x8d476d2ed375285d732eea2664b235395261f53ee7b804854afef565476369e", - "s": "0x729afdb166525eb57480c88d4178473b7562e42c752f574256c7041bdfcb0265", + "nonce": 1, + "r": "0x9153587055498c157cda41a28a807ab37cf2434ed36c0afaaa4abba06a9bcc69", + "s": "0x4c26e6613a5a754de28c3539d42ce5016c9f73e5a1fdeb48b7e772b1ebb3afee", "to": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", "transactionIndex": 1, "type": 2, - "v": "0x1", + "v": "0x0", "value": "0", - "yParity": "0x1", + "yParity": "0x0", "receipt": { - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "contractAddress": null, - "cumulativeGasUsed": 1383640, + "cumulativeGasUsed": 2013313, "effectiveGasPrice": 252, "from": "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", - "gasUsed": 1333175, - "l1Fee": "0x938386e7f", + "gasUsed": 1960860, + "l1Fee": "0x4e0f9f6b", "l1FeeScalar": "0.0684", - "l1GasPrice": "0x5888b7a", - "l1GasUsed": "0x185c", - "logsBloom": "0x04000800000000000000000020000000000000000000000000000000000000000000000000000000000001000000000000000000020000000800000000200000000000000008000010000008000000020810000040000000000004000000000000840000020000000000000000100800040000000000000000000010010000000400000000000100020000000000000000005000000000000000000010000000000000000000000002000100002000000000000000800000000000000000400000000002000000000088000000000000000000000200000000000000000060000000000000040000000010010400000000000000008000000000080200800000", + "l1GasPrice": "0x2d00b8", + "l1GasUsed": "0x195c", + "logsBloom": "0x00080800004000005000000008000000002000040000000000000008000000000000000000000040000000000000000000000000020200020802000000201000004810002000100000000008000000020010000040000008000004000000100008800000020000000500008000000880040000000000000808000010010000000400040000000000020000000840001000001800000000000000000010000000000100000000000002000000000000000000000000a00080002000000000400000000002000802002000000000000000000000008000001200000100000060000000080000000000000010000400000020000000000008040000000000800001", "status": true, "to": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, "type": "0x2", "logs": [ { - "_id": "6633fa90d0e05f534265bffc", + "address": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", + "logIndex": 0, + "removed": false, + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionIndex": 1, + "id": "log_cad2bd4a", + "decoded": { + "signature": "SafeSetup(address,address[],uint256,address,address)", + "signature_with_arg_names": "SafeSetup(address indexed initiator,address[] owners,uint256 threshold,address initializer,address fallbackHandler)", + "name": "SafeSetup", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "initiator", + "type": "address", + "decoded": "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "owners", + "type": "address[]", + "decoded": [ + "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f", + "0x38369853c72295737b457fb98cbdcf61d224aa0d" + ] + }, + { + "indexed": false, + "internalType": "uint256", + "name": "threshold", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "address", + "name": "initializer", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "address", + "name": "fallbackHandler", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + } + ] + }, + "chainId": 4653, + "topic0": "0x141df868a6331af528e38c83b7aa03edc19be66e37ae67f9285bf4f8e3c6a1a8", + "topic1": "0x000000000000000000000000c22834581ebc8527d974f8a1c97e1bea4ef910bc" + }, + { + "address": "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca000000000000000000000000fb1bffc9d739b8d520daf37df666da4c687191ea", + "logIndex": 1, + "removed": false, + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionIndex": 1, + "id": "log_b3ff3c72", + "decoded": { + "signature": "ProxyCreation(address,address)", + "signature_with_arg_names": "ProxyCreation(address proxy,address singleton)", + "name": "ProxyCreation", + "decoded": [ + { + "indexed": false, + "internalType": "contract GnosisSafeProxy", + "name": "proxy", + "type": "address", + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" + }, + { + "indexed": false, + "internalType": "address", + "name": "singleton", + "type": "address", + "decoded": "0xfb1bffc9d739b8d520daf37df666da4c687191ea" + } + ] + }, + "chainId": 4653, + "topic0": "0x4f51faf6c4561ff95f067657e43439f0f856d97c04d9ec9070a6199ad418e235" + }, + { + "address": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "logIndex": 2, + "removed": false, + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionIndex": 1, + "id": "log_21816b91", + "decoded": null, + "chainId": 4653, + "topic0": "0x6608fdd094c7876cc62fbdc5efffdbbef75028c17d3d1c66e210910909459759", + "topic1": "0xe6f31614040a3338064b8aa41db1fe56c2a4351289ef429700dab7a0a5173bc1", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" + }, + { "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "data": "0x", - "logIndex": 0, + "logIndex": 3, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_b24c7425", + "id": "log_dedb9680", "decoded": { "signature": "Transfer(address,address,uint256)", "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", @@ -67,7 +175,7 @@ "internalType": "address", "name": "to", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { "indexed": false, @@ -77,39 +185,39 @@ } ] }, + "chainId": 4653, "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000002" + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000004" }, { - "_id": "6633fa90d0e05f534265bffd", "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", - "logIndex": 1, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", + "logIndex": 4, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_4a56fa0b", + "id": "log_8ea35017", "decoded": null, + "chainId": 4653, "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", - "topic3": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000004", + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "topic3": "0x5a1f28e85ef99084a3a2b64bf940e3e2974ebcdb8544dddefa371fc5e1349e4e" }, { - "_id": "6633fa90d0e05f534265bffe", "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "data": "0x", - "logIndex": 2, + "logIndex": 5, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_57926132", + "id": "log_fc7ab2b4", "decoded": { "signature": "Transfer(address,address,uint256)", "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", @@ -127,7 +235,7 @@ "internalType": "address", "name": "to", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { "indexed": false, @@ -137,39 +245,39 @@ } ] }, + "chainId": 4653, "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000003" + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000005" }, { - "_id": "6633fa90d0e05f534265bfff", "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", - "logIndex": 3, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", + "logIndex": 6, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_ac5b2862", + "id": "log_b53adf7f", "decoded": null, + "chainId": 4653, "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000003", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", - "topic3": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000005", + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "topic3": "0x5a1f28e85ef99084a3a2b64bf940e3e2974ebcdb8544dddefa371fc5e1349e4e" }, { - "_id": "6633fa90d0e05f534265c000", "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "data": "0x0000000000000000000000000000000000000000000000000000000000031840", - "logIndex": 4, + "logIndex": 7, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_726cb7d4", + "id": "log_66781603", "decoded": { "signature": "Transfer(address,address,uint256)", "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", @@ -187,7 +295,7 @@ "internalType": "address", "name": "to", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { "indexed": false, @@ -198,38 +306,38 @@ } ] }, + "chainId": 4653, "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { - "_id": "6633fa90d0e05f534265c001", "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x", - "logIndex": 5, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "logIndex": 8, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_07e426a6", + "id": "log_6fdf50c7", "decoded": null, - "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", - "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "chainId": 4653, + "topic0": "0x32e35ee54f728c6ab26c641bc3e9660695fa4c4bc83c0cc135770c35561fb35b", + "topic1": "0xbf7dfd9fe7717994ef8f25bfa21157b1e548e37205effc1f4eaa919e4f394774", + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", "topic3": "0x0000000000000000000000000000000000000000000000000000000000031840" }, { - "_id": "6633fa90d0e05f534265c002", - "address": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "address": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "data": "0x0000000000000000000000000000000000000000000000000000000000000009", - "logIndex": 6, + "logIndex": 9, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_e4b8f4ad", + "id": "log_3784aa9f", "decoded": { "signature": "Transfer(address,address,uint256)", "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", @@ -247,7 +355,7 @@ "internalType": "address", "name": "to", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { "indexed": false, @@ -258,42 +366,44 @@ } ] }, + "chainId": 4653, "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { - "_id": "6633fa90d0e05f534265c003", - "address": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x", - "logIndex": 7, + "address": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "logIndex": 10, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_e20b58e7", + "id": "log_7935a6ef", "decoded": null, - "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", - "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "chainId": 4653, + "topic0": "0x32e35ee54f728c6ab26c641bc3e9660695fa4c4bc83c0cc135770c35561fb35b", + "topic1": "0x8eae690622b7ee20f1bcf678ea85a0e2ef764b725431cfd5e99b8d3f9637b124", + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", "topic3": "0x0000000000000000000000000000000000000000000000000000000000000009" }, { - "_id": "6633fa90d0e05f534265c004", "address": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000bf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003", - "logIndex": 8, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000bf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005", + "logIndex": 11, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_efa46d18", + "id": "log_2cca968c", "decoded": null, - "topic0": "0x0844c483fc1fbd7229fc8b9e35bf4997a55ae54096d77f8aa4a94370ece4b758", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + "chainId": 4653, + "topic0": "0x0b0dc7eb94a24c05addadfbd3823f0799cd97e3aabb9d17a766506b88affb698", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000003", + "topic2": "0xe6f31614040a3338064b8aa41db1fe56c2a4351289ef429700dab7a0a5173bc1", + "topic3": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" } ] }, @@ -303,28 +413,28 @@ { "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", "from": "0x0000000000000000000000000000000000000000", - "to": "0x18f33cef45817c428d98c4e188a770191fdd4b79", - "tokenId": "2", + "to": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "tokenId": "4", "type": "erc721" }, { "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", "from": "0x0000000000000000000000000000000000000000", - "to": "0x18f33cef45817c428d98c4e188a770191fdd4b79", - "tokenId": "3", + "to": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "tokenId": "5", "type": "erc721" }, { "contract": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", "from": "0x0000000000000000000000000000000000000000", - "to": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "to": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", "value": "202816", "type": "erc20" }, { - "contract": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "contract": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "from": "0x0000000000000000000000000000000000000000", - "to": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "to": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", "value": "9", "type": "erc20" } @@ -334,22 +444,22 @@ "action": { "callType": "delegatecall", "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "gas": "0x1422ee", - "input": "0xce6298e70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000026000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b7a45415254484d454c4f4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000473796e3337363936616332656262383561366238393930393538636331386234333461", - "to": "0xafd6be86f5f03ab2e6ea35fbd95fbb97502d3af6", + "gas": "0x20c626", + "input": "0x0945e92b0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e000000000000000000000000000000000000000000000000000000000000000000000000000000000000087a564f4944504f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000073796e3961373936626463663165333532303839333830356331393932336635353437", + "to": "0x88a929aab8942c5e25b79ced7f30b2bca38ed5e8", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x1417f3", + "gasUsed": "0x1db5bc", "output": "0x0" }, - "subtraces": 14, + "subtraces": 21, "traceAddress": [ 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -357,13 +467,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x133ca5", + "gas": "0x1f79af", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0xe8f", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -374,7 +484,7 @@ 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -382,13 +492,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x130fcb", + "gas": "0x1f4cd4", "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1228ecd58c13c172fc863bc6abb25af6d4caf2968db2e4505bcd6ed59b2a2e2c672000000000000000000000000bf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x17af", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" @@ -399,7 +509,7 @@ 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -407,16 +517,16 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1184f0", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "gas": "0x1efc6f", + "input": "0xe95a7151afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fc02f97f2d1782a2b34f45877402111f6fad739786d586ea2c015f72f89568bf26", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0xe8f", - "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + "output": "0x000000000000000000000000928447ea35d57ca6d7d901c20258043902936dc9" }, "subtraces": 0, "traceAddress": [ @@ -424,32 +534,32 @@ 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "gas": "0x11109d", - "input": "0x04dc0318000000000000000000000000000000000000000000000000000000000000010000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", - "to": "0x06f168509241041afca15f0d88f5cfbd81463956", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "gas": "0x1ed04f", + "input": "0xae868e88e6f31614040a3338064b8aa41db1fe56c2a4351289ef429700dab7a0a5173bc1", + "to": "0x5d29380764f586bf7a748f3e72dd5ba3bf72d31b", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x5ddb3", - "output": "0x00000000000000000000000000000000000000000000000000000000000000027c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + "gasUsed": "0x923b", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, - "subtraces": 9, + "subtraces": 4, "traceAddress": [ 0, 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -457,16 +567,16 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x10635f", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1221d094024bb7b9ba00ec54fa8a80c97069fbfe9c17d3db096166f95898fdd8557", + "gas": "0x1dcebf", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0xe8f", - "output": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db" + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" }, "subtraces": 0, "traceAddress": [ @@ -476,7 +586,34 @@ 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x1dc3d9", + "input": "0x3d5da9e2afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fc0403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x177e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 1, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -484,53 +621,53 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x104e07", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", + "gas": "0x1da843", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0xe8f", - "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" }, "subtraces": 0, "traceAddress": [ 0, 3, 0, - 1, + 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "gas": "0x101f71", - "input": "0x3cb58e0000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", - "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x1d7b91", + "input": "0xadd88400afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fc", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0xd90b", - "output": "0x0" + "gasUsed": "0x9db", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, - "subtraces": 2, + "subtraces": 0, "traceAddress": [ 0, 3, 0, - 2, + 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -538,57 +675,74 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xf8eaa", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", + "gas": "0x1e39c5", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122e00253406b4e3b30aaf440b3511c5fb0cec2553cfb291913b7ed27d06433f2a9", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0xe8f", - "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" + "output": "0x00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d" }, "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 2, - 0, - 0, + 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "gas": "0xf6196", - "input": "0xffd968fa00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1e261c", + "input": "0xe95a7151afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fc02f97f2d1782a2b34f45877402111f6fad739786d586ea2c015f72f89568bf26", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x9830", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000928447ea35d57ca6d7d901c20258043902936dc9" }, - "subtraces": 4, + "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 2, + 5, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "gas": "0x1e1a49", + "input": "0xbc3936dae6f31614040a3338064b8aa41db1fe56c2a4351289ef429700dab7a0a5173bc1000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", + "to": "0x5d29380764f586bf7a748f3e72dd5ba3bf72d31b", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x76bc2", + "output": "0x0" + }, + "subtraces": 5, + "traceAddress": [ 0, - 1, + 6, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -596,13 +750,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xed9f0", + "gas": "0x1d120c", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -610,16 +764,12 @@ "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 2, - 0, - 1, + 6, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -627,30 +777,26 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0xecf07", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8", + "gas": "0x1d0747", + "input": "0xcb545a77afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fcb9a12c86c7c14d9fdc1af2267b783b96f505270670882e6fd78bdace2458abc800000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x177e", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + "gasUsed": "0x17af", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 2, - 0, - 1, + 6, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -658,61 +804,81 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xeaba8", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "gas": "0x1baa20", + "input": "0xe95a7151afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fc5c5a44ba024fe8a040bfba3526c59f39c6a68613df61455f77046c10eb01d59e", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0xe8f", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + "output": "0x000000000000000000000000c22834581ebc8527d974f8a1c97e1bea4ef910bc" }, "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 2, - 0, - 1, + 6, 0, 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0xe7ef7", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1b96f4", + "input": "0xe95a7151afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fc805f525118eab400e6a523eee35db1021d487f1925aa8b280b2599768d393fac", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x9db", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000fb1bffc9d739b8d520daf37df666da4c687191ea" }, "subtraces": 0, "traceAddress": [ + 0, + 6, 0, 3, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "gas": "0x19a0b6", + "input": "0xb63e800d0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d0000000000000000000000000000000000000000000000000000000000000000", + "to": "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x22054", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ 0, - 2, + 6, 0, + 4, 1, - 0, - 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -720,53 +886,49 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xeedca", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", + "gas": "0x16e5d9", + "input": "0xe95a7151afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fc02f97f2d1782a2b34f45877402111f6fad739786d586ea2c015f72f89568bf26", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" + "output": "0x000000000000000000000000928447ea35d57ca6d7d901c20258043902936dc9" }, "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 3, + 7, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "gas": "0xee2e8", - "input": "0xb6119a7e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "gas": "0x16dc10", + "input": "0xae868e88e6f31614040a3338064b8aa41db1fe56c2a4351289ef429700dab7a0a5173bc1", + "to": "0x5d29380764f586bf7a748f3e72dd5ba3bf72d31b", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x669b", - "output": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + "gasUsed": "0x31ec", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020e6f31614040a3338064b8aa41db1fe56c2a4351289ef429700dab7a0a5173bc1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, "subtraces": 4, "traceAddress": [ 0, - 3, - 0, - 4, + 8, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -774,13 +936,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xe66d6", + "gas": "0x162135", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -788,14 +950,12 @@ "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 4, + 8, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -803,28 +963,26 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0xe5bed", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x16164f", + "input": "0x3d5da9e2afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fc0403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0xfae", + "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 4, + 8, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -832,13 +990,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xe47b2", + "gas": "0x1609dd", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -846,14 +1004,12 @@ "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 4, + 8, 0, 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -861,13 +1017,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0xe3d57", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "gas": "0x15ff81", + "input": "0xadd88400afa7b68f8648927fffed4db09f2a241d6d5813cd75f1532b5bd8db7fd4c5b9fc", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -875,122 +1031,12 @@ "subtraces": 0, "traceAddress": [ 0, - 3, - 0, - 4, - 0, - 3, - 0 - ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xd1fa2", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 5, - 0 - ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0xd14be", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "result": { - "gasUsed": "0xfae", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 6, - 0 - ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xcf8ce", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 7, - 0 - ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0xcee72", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ + 8, 0, 3, - 0, - 8, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -998,24 +1044,24 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xb5384", + "gas": "0x146882", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x6bf", + "gasUsed": "0xe8f", "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" }, "subtraces": 0, "traceAddress": [ 0, - 4, + 9, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1023,24 +1069,24 @@ "action": { "callType": "delegatecall", "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "gas": "0xb3e11", - "input": "0x04dc0318000000000000000000000000000000000000000000000000000000000000010000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b7900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", - "to": "0x06f168509241041afca15f0d88f5cfbd81463956", + "gas": "0x13f428", + "input": "0x04dc031800000000000000000000000000000000000000000000000000000000000001000000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x4d797", - "output": "0x00000000000000000000000000000000000000000000000000000000000000037c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + "gasUsed": "0x5b30b", + "output": "0x00000000000000000000000000000000000000000000000000000000000000045a1f28e85ef99084a3a2b64bf940e3e2974ebcdb8544dddefa371fc5e1349e4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 9, "traceAddress": [ 0, - 5, + 10, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1048,26 +1094,26 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xace2e", + "gas": "0x132ffc", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1221d094024bb7b9ba00ec54fa8a80c97069fbfe9c17d3db096166f95898fdd8557", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x6bf", + "gasUsed": "0xe8f", "output": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db" }, "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1075,26 +1121,26 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xac068", + "gas": "0x131aa3", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x6bf", + "gasUsed": "0xe8f", "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" }, "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1102,26 +1148,26 @@ "action": { "callType": "delegatecall", "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "gas": "0xab428", - "input": "0x3cb58e0000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "gas": "0x12ec0e", + "input": "0x3cb58e0000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x5c0b", + "gasUsed": "0xb705", "output": "0x0" }, "subtraces": 2, "traceAddress": [ 0, - 5, + 10, 0, 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1129,28 +1175,28 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xa55f7", + "gas": "0x12450f", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x6bf", + "gasUsed": "0xe8f", "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" }, "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 2, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1158,28 +1204,28 @@ "action": { "callType": "delegatecall", "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "gas": "0xa4b39", - "input": "0xffd968fa00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "gas": "0x1217fb", + "input": "0xffd968fa00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x4628", + "gasUsed": "0x762a", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 4, "traceAddress": [ 0, - 5, + 10, 0, 2, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1187,13 +1233,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x9f387", + "gas": "0x117acd", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -1201,7 +1247,7 @@ "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 2, 0, @@ -1210,7 +1256,7 @@ 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1218,21 +1264,21 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x9e89e", + "gas": "0x116fe5", "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x7de", + "gasUsed": "0x177e", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 2, 0, @@ -1241,7 +1287,7 @@ 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1249,13 +1295,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x9dbf4", + "gas": "0x114c85", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -1263,7 +1309,7 @@ "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 2, 0, @@ -1272,7 +1318,7 @@ 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1280,21 +1326,21 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x9d19a", + "gas": "0x11422a", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x20b", + "gasUsed": "0x9db", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 2, 0, @@ -1303,7 +1349,7 @@ 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1311,13 +1357,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xa02ed", + "gas": "0x11db5e", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" @@ -1325,12 +1371,12 @@ "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1338,26 +1384,26 @@ "action": { "callType": "delegatecall", "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "gas": "0x9f80c", - "input": "0xb6119a7e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "gas": "0x11d07d", + "input": "0xb6119a7e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x5ecb", - "output": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + "gasUsed": "0x68df", + "output": "0x5a1f28e85ef99084a3a2b64bf940e3e2974ebcdb8544dddefa371fc5e1349e4e" }, "subtraces": 4, "traceAddress": [ 0, - 5, + 10, 0, 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1365,13 +1411,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x9a302", + "gas": "0x113d2d", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -1379,14 +1425,14 @@ "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 4, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1394,28 +1440,28 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x99819", + "gas": "0x113244", "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x7de", + "gasUsed": "0xfae", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 4, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1423,13 +1469,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x98b70", + "gas": "0x111e09", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -1437,14 +1483,14 @@ "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 4, 0, 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1452,13 +1498,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x98115", + "gas": "0x1113ae", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -1466,14 +1512,14 @@ "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 4, 0, 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1481,13 +1527,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x846f1", + "gas": "0x100b4f", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -1495,12 +1541,12 @@ "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 5, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1508,26 +1554,26 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x83c0d", + "gas": "0x10006f", "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x7de", + "gasUsed": "0xfae", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 6, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1535,13 +1581,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x82f41", + "gas": "0xfe47e", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -1549,12 +1595,12 @@ "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 7, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1562,13 +1608,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x824e5", + "gas": "0xfda23", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -1576,12 +1622,12 @@ "subtraces": 0, "traceAddress": [ 0, - 5, + 10, 0, 8, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1589,74 +1635,76 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x58990", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "gas": "0xe605e", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0xe8f", - "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" }, "subtraces": 0, "traceAddress": [ 0, - 6, + 11, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x576db", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0xe4aeb", + "input": "0x04dc031800000000000000000000000000000000000000000000000000000000000001000000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0xe8f", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + "gasUsed": "0x4d9db", + "output": "0x00000000000000000000000000000000000000000000000000000000000000055a1f28e85ef99084a3a2b64bf940e3e2974ebcdb8544dddefa371fc5e1349e4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" }, - "subtraces": 0, + "subtraces": 9, "traceAddress": [ 0, - 7, + 12, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x54a91", - "input": "0xa958544b000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000057a474f4c44000000000000000000000000000000000000000000000000000000", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xdc2d3", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1221d094024bb7b9ba00ec54fa8a80c97069fbfe9c17d3db096166f95898fdd8557", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x7670", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + "gasUsed": "0x6bf", + "output": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db" }, - "subtraces": 8, + "subtraces": 0, "traceAddress": [ 0, - 8, + 12, + 0, + 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1664,53 +1712,53 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x512be", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "gas": "0xdb50d", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" }, "subtraces": 0, "traceAddress": [ 0, - 8, - 0, + 12, 0, + 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x507d5", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "gas": "0xda8cb", + "input": "0x3cb58e0000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + "gasUsed": "0x5d2d", + "output": "0x0" }, - "subtraces": 0, + "subtraces": 2, "traceAddress": [ 0, - 8, + 12, 0, - 1, + 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1718,53 +1766,57 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x4f37e", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "gas": "0xd3324", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" }, "subtraces": 0, "traceAddress": [ 0, - 8, + 12, 0, 2, + 0, + 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x4e922", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "gas": "0xd2866", + "input": "0xffd968fa00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + "gasUsed": "0x474a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, - "subtraces": 0, + "subtraces": 4, "traceAddress": [ 0, - 8, + 12, 0, - 3, + 2, + 0, + 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1772,13 +1824,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x4dcc2", + "gas": "0xcb9f8", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -1786,12 +1838,16 @@ "subtraces": 0, "traceAddress": [ 0, - 8, + 12, + 0, + 2, + 0, + 1, + 0, 0, - 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1799,13 +1855,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x4d1db", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "gas": "0xcaf0f", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -1813,12 +1869,16 @@ "subtraces": 0, "traceAddress": [ 0, - 8, + 12, 0, - 5, + 2, + 0, + 1, + 0, + 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1826,13 +1886,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x4c513", + "gas": "0xca266", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -1840,12 +1900,16 @@ "subtraces": 0, "traceAddress": [ 0, - 8, + 12, 0, - 6, + 2, + 0, + 1, + 0, + 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1853,13 +1917,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x4bab8", + "gas": "0xc980b", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -1867,37 +1931,70 @@ "subtraces": 0, "traceAddress": [ 0, - 8, + 12, 0, - 7, + 2, + 0, + 1, + 0, + 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "gas": "0x4a926", - "input": "0x87db2cd900000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b7900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000031840", - "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xcf678", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x22cc6", - "output": "0x0" + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" }, - "subtraces": 11, + "subtraces": 0, "traceAddress": [ 0, - 9, + 12, + 0, + 3, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "gas": "0xceb97", + "input": "0xb6119a7e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x610f", + "output": "0x5a1f28e85ef99084a3a2b64bf940e3e2974ebcdb8544dddefa371fc5e1349e4e" + }, + "subtraces": 4, + "traceAddress": [ + 0, + 12, + 0, + 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1905,13 +2002,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x4644d", + "gas": "0xc7f20", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -1919,12 +2016,14 @@ "subtraces": 0, "traceAddress": [ 0, - 9, + 12, + 0, + 4, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1932,13 +2031,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x45964", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "gas": "0xc7437", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -1946,12 +2045,14 @@ "subtraces": 0, "traceAddress": [ 0, - 9, + 12, + 0, + 4, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1959,13 +2060,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x44528", + "gas": "0xc678e", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -1973,12 +2074,14 @@ "subtraces": 0, "traceAddress": [ 0, - 9, + 12, + 0, + 4, 0, 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -1986,13 +2089,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x43ace", + "gas": "0xc5d33", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2000,12 +2103,14 @@ "subtraces": 0, "traceAddress": [ 0, - 9, + 12, + 0, + 4, 0, 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2013,13 +2118,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x4347c", + "gas": "0xb3895", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -2027,12 +2132,12 @@ "subtraces": 0, "traceAddress": [ 0, - 9, + 12, 0, - 4, + 5, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2040,26 +2145,26 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x429b7", - "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee6100000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "gas": "0xb2db4", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x17af", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 9, + 12, 0, - 5, + 6, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2067,53 +2172,53 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x40e78", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "gas": "0xb20e8", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" }, "subtraces": 0, "traceAddress": [ 0, - 9, + 12, 0, - 6, + 7, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x404ae", - "input": "0xe29ab0760000000000000000000000000000000000000000000000000000000000000001", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0xb168c", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x45a0", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, - "subtraces": 4, + "subtraces": 0, "traceAddress": [ 0, - 9, + 12, 0, - 7, + 8, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2121,57 +2226,74 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x3e060", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "gas": "0x8939e", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" }, "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 7, - 0, - 0, + 13, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x3d577", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x880e9", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0xfae", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" }, "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 7, + 14, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x8549e", + "input": "0xa958544b000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000057a474f4c44000000000000000000000000000000000000000000000000000000", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x7670", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 8, + "traceAddress": [ 0, - 1, + 15, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2179,57 +2301,53 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x3c120", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "gas": "0x804ab", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" }, "subtraces": 0, "traceAddress": [ 0, - 9, + 15, 0, - 7, 0, - 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x3b6c5", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x7f9c2", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x20b", + "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 7, + 15, 0, - 3, + 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2237,53 +2355,53 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x3bcdd", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "gas": "0x7e56a", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" }, "subtraces": 0, "traceAddress": [ 0, - 9, + 15, 0, - 8, + 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x3b313", - "input": "0x4e4719130000000000000000000000000000000000000000000000000000000000000001", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x7db10", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x4a39", - "output": "0x000000000000000000000000387d73bd8682dceb3327b940213d5de50ee2bba2" + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, - "subtraces": 5, + "subtraces": 0, "traceAddress": [ 0, - 9, + 15, 0, - 9, + 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2291,13 +2409,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x39120", + "gas": "0x7ceaf", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -2305,14 +2423,12 @@ "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 9, - 0, + 15, 0, + 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2320,13 +2436,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x38636", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x7c3c8", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2334,14 +2450,12 @@ "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 9, + 15, 0, - 1, + 5, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2349,13 +2463,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x37971", + "gas": "0x7b700", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -2363,14 +2477,12 @@ "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 9, + 15, 0, - 2, + 6, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2378,13 +2490,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x36f16", + "gas": "0x7aca5", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2392,70 +2504,37 @@ "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 9, - 0, - 3, - 0 - ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x35d56", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122a7aca4651592361767f31a71cc625eaebaaac01cdbb6d87ab68fbd52bab3fe72", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "result": { - "gasUsed": "0xe8f", - "output": "0x000000000000000000000000387d73bd8682dceb3327b940213d5de50ee2bba2" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 9, + 15, 0, - 4, + 7, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "gas": "0x34c89", - "input": "0x4eb9029900000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000031840", - "to": "0x241c960dcd2ffb04a7061adce57167179f65a79f", + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x7b332", + "input": "0x87db2cd90000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000031840", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0xea7d", + "gasUsed": "0x23a33", "output": "0x0" }, - "subtraces": 9, + "subtraces": 11, "traceAddress": [ 0, - 9, - 0, - 10, + 16, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2463,13 +2542,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x325d8", + "gas": "0x75639", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -2477,14 +2556,12 @@ "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 10, + 16, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2492,13 +2569,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x31aef", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x74b51", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2506,14 +2583,12 @@ "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 10, + 16, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2521,13 +2596,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x306b4", + "gas": "0x73715", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -2535,14 +2610,12 @@ "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 10, + 16, 0, 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2550,13 +2623,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x2fc5a", + "gas": "0x72cba", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2564,14 +2637,12 @@ "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 10, + 16, 0, 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2579,86 +2650,107 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x2f5ef", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "gas": "0x72669", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" }, "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 10, + 16, 0, 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x2ea8b", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x71ba2", + "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee6100000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + "gasUsed": "0x17af", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 10, + 16, 0, 5, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x2dfa1", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x70064", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" }, "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 10, + 16, 0, 6, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x6f69a", + "input": "0xe29ab0760000000000000000000000000000000000000000000000000000000000000001", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x45a0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 0, + 16, + 0, + 7, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2666,57 +2758,57 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x2d2f8", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "gas": "0x6baec", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" }, "subtraces": 0, "traceAddress": [ 0, - 9, - 0, - 10, + 16, 0, 7, + 0, + 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x2c89a", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x6b004", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x20b", + "gasUsed": "0xfae", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 9, + 16, 0, - 10, + 7, 0, - 8, + 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2724,24 +2816,57 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x28a4a", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "gas": "0x69bac", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" }, "subtraces": 0, "traceAddress": [ 0, - 10, + 16, + 0, + 7, + 0, + 2, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x69150", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 16, + 0, + 7, + 0, + 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2749,13 +2874,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x27f26", + "gas": "0x6aeca", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" @@ -2763,10 +2888,12 @@ "subtraces": 0, "traceAddress": [ 0, - 11, + 16, + 0, + 8, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2774,24 +2901,26 @@ "action": { "callType": "delegatecall", "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x2743f", - "input": "0xa958544b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000b7a45415254484d454c4f4e000000000000000000000000000000000000000000", + "gas": "0x6a500", + "input": "0x4e4719130000000000000000000000000000000000000000000000000000000000000001", "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x6d9c", - "output": "0x0000000000000000000000000000000000000000000000000000000000000015" + "gasUsed": "0x4a39", + "output": "0x000000000000000000000000387d73bd8682dceb3327b940213d5de50ee2bba2" }, - "subtraces": 8, + "subtraces": 5, "traceAddress": [ 0, - 12, + 16, + 0, + 9, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2799,13 +2928,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x25a83", + "gas": "0x66bac", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -2813,12 +2942,14 @@ "subtraces": 0, "traceAddress": [ 0, - 12, + 16, + 0, + 9, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2826,13 +2957,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x24f9b", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "gas": "0x660c4", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2840,12 +2971,14 @@ "subtraces": 0, "traceAddress": [ 0, - 12, + 16, + 0, + 9, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2853,13 +2986,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x242d4", + "gas": "0x653ff", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -2867,12 +3000,14 @@ "subtraces": 0, "traceAddress": [ 0, - 12, + 16, + 0, + 9, 0, 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2880,13 +3015,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x2387a", + "gas": "0x649a3", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2894,12 +3029,70 @@ "subtraces": 0, "traceAddress": [ 0, - 12, + 16, + 0, + 9, 0, 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x637e4", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122a7aca4651592361767f31a71cc625eaebaaac01cdbb6d87ab68fbd52bab3fe72", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000387d73bd8682dceb3327b940213d5de50ee2bba2" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 16, + 0, + 9, + 0, + 4, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "gas": "0x63e75", + "input": "0x4eb902990000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca0000000000000000000000000000000000000000000000000000000000031840", + "to": "0x2e74402b23c8d0378a1d4c1a5d81ef37824c1ef5", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0xf7ea", + "output": "0x0" + }, + "subtraces": 9, + "traceAddress": [ + 0, + 16, + 0, + 10, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2907,13 +3100,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x22583", + "gas": "0x60064", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -2921,12 +3114,14 @@ "subtraces": 0, "traceAddress": [ 0, - 12, + 16, + 0, + 10, + 0, 0, - 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2934,13 +3129,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x21a9c", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "gas": "0x5f57c", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2948,12 +3143,14 @@ "subtraces": 0, "traceAddress": [ 0, - 12, + 16, 0, - 5, + 10, + 0, + 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2961,13 +3158,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x20dd4", + "gas": "0x5e140", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -2975,12 +3172,14 @@ "subtraces": 0, "traceAddress": [ 0, - 12, + 16, 0, - 6, + 10, + 0, + 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -2988,13 +3187,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x20379", + "gas": "0x5d6e5", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3002,37 +3201,43 @@ "subtraces": 0, "traceAddress": [ 0, - 12, + 16, 0, - 7, + 10, + 0, + 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "gas": "0x205a9", - "input": "0x87db2cd900000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b7900000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000009", - "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x5d07a", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x1f600", - "output": "0x0" + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" }, - "subtraces": 11, + "subtraces": 0, "traceAddress": [ 0, - 13, + 16, + 0, + 10, + 0, + 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3040,13 +3245,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1e4e5", + "gas": "0x5c516", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -3054,12 +3259,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 16, 0, + 10, 0, + 5, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3067,13 +3274,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x1d9fc", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "gas": "0x5ba2d", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3081,12 +3288,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 16, 0, - 1, + 10, + 0, + 6, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3094,13 +3303,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1cd54", + "gas": "0x5ad84", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -3108,12 +3317,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 16, 0, - 2, + 10, + 0, + 7, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3121,13 +3332,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x1c2f8", + "gas": "0x5a326", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3135,12 +3346,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 16, 0, - 3, + 10, + 0, + 8, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3148,53 +3361,74 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1bca7", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "gas": "0x58753", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" }, "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 4, + 17, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x1b1e1", - "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee6100000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x57c30", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x80f", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, "subtraces": 0, "traceAddress": [ 0, - 13, + 18, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x57147", + "input": "0xa958544b000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000087a564f4944504f50000000000000000000000000000000000000000000000000", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x6a36", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 8, + "traceAddress": [ 0, - 5, + 19, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3202,53 +3436,53 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1a5c7", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "gas": "0x53fd3", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" }, "subtraces": 0, "traceAddress": [ 0, - 13, + 19, + 0, 0, - 6, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x19bfc", - "input": "0xe29ab0760000000000000000000000000000000000000000000000000000000000000015", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x534ea", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x3600", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, - "subtraces": 4, + "subtraces": 0, "traceAddress": [ 0, - 13, + 19, 0, - 7, + 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3256,57 +3490,53 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x18acd", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "gas": "0x52824", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" }, "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 7, - 0, + 19, 0, + 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x17fe5", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x51dc9", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x7de", + "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 7, + 19, 0, - 1, + 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3314,57 +3544,53 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1731f", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "gas": "0x50e1e", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" }, "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 7, + 19, 0, - 2, + 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x168c5", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x50337", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x20b", + "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 7, + 19, 0, - 3, + 5, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3372,53 +3598,78 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x16350", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "gas": "0x4f66f", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" }, "subtraces": 0, "traceAddress": [ 0, - 13, + 19, 0, - 8, + 6, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x15986", - "input": "0x4e4719130000000000000000000000000000000000000000000000000000000000000015", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x4ec13", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0x4a39", - "output": "0x00000000000000000000000056d66d7637f5b6235ad212043d35cc5e035dac68" + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, - "subtraces": 5, + "subtraces": 0, "traceAddress": [ 0, - 13, + 19, 0, - 9, + 7, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x505fc", + "input": "0x87db2cd90000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000009", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x20383", + "output": "0x0" + }, + "subtraces": 11, + "traceAddress": [ + 0, + 20, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3426,13 +3677,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x14a3a", + "gas": "0x4cd66", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -3440,14 +3691,12 @@ "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 9, + 20, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3455,13 +3704,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x13f51", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x4c27d", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3469,14 +3718,12 @@ "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 9, + 20, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3484,13 +3731,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1328b", + "gas": "0x4b5d4", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -3498,14 +3745,12 @@ "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 9, + 20, 0, 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3513,13 +3758,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x12830", + "gas": "0x4ab79", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3527,14 +3772,12 @@ "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 9, + 20, 0, 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3542,55 +3785,107 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x11670", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122076a59ffba53edeba9edc9405e87142a6e05a132ef9aef59ca0a177fc86b39c4", + "gas": "0x4a527", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0xe8f", - "output": "0x00000000000000000000000056d66d7637f5b6235ad212043d35cc5e035dac68" + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" }, "subtraces": 0, "traceAddress": [ 0, - 13, - 0, - 9, + 20, 0, 4, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, { "action": { "callType": "delegatecall", - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", - "gas": "0xf2fb", - "input": "0x4eb9029900000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000009", - "to": "0x0eb23cbcf8d66bd4fab85acf1d405cf77f04ebb9", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x49a61", + "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee6100000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { - "gasUsed": "0xea67", - "output": "0x0" + "gasUsed": "0x80f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, - "subtraces": 9, + "subtraces": 0, "traceAddress": [ 0, - 13, + 20, 0, - 10, + 5, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x48e46", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 6, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x4847d", + "input": "0xe29ab0760000000000000000000000000000000000000000000000000000000000000002", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x3600", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 0, + 20, + 0, + 7, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3598,13 +3893,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xdf06", + "gas": "0x45c39", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -3612,14 +3907,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 20, 0, - 10, + 7, 0, 0, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3627,13 +3922,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0xd41e", + "gas": "0x45150", "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3641,14 +3936,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 20, 0, - 10, + 7, 0, 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3656,13 +3951,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xbfe3", + "gas": "0x4448b", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -3670,14 +3965,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 20, 0, - 10, + 7, 0, 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3685,13 +3980,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0xb588", + "gas": "0x43a30", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3699,14 +3994,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 20, 0, - 10, + 7, 0, 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3714,28 +4009,53 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xaf1d", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "gas": "0x44bd0", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", - "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" }, "subtraces": 0, "traceAddress": [ 0, - 13, + 20, 0, - 10, + 8, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x44206", + "input": "0x4e4719130000000000000000000000000000000000000000000000000000000000000002", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x4a39", + "output": "0x000000000000000000000000f4a785a80d91cadc149f778ee17d35cd008203f7" + }, + "subtraces": 5, + "traceAddress": [ 0, - 4, + 20, + 0, + 9, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3743,13 +4063,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xa3b9", + "gas": "0x41ba4", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" @@ -3757,14 +4077,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 20, + 0, + 9, 0, - 10, 0, - 5, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3772,13 +4092,13 @@ "action": { "callType": "delegatecall", "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x98d0", + "gas": "0x410bb", "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x7de", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3786,14 +4106,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 20, 0, - 10, + 9, 0, - 6, + 1, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3801,13 +4121,13 @@ "action": { "callType": "delegatecall", "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x8c26", + "gas": "0x403f5", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x6bf", "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" @@ -3815,14 +4135,14 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 20, 0, - 10, + 9, 0, - 7, + 2, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" }, @@ -3830,13 +4150,13 @@ "action": { "callType": "delegatecall", "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x81c8", + "gas": "0x3f99a", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x02fe344708d804958aa355954df481be45c01b0d", "value": "0x0" }, - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "result": { "gasUsed": "0x20b", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3844,113 +4164,384 @@ "subtraces": 0, "traceAddress": [ 0, - 13, + 20, 0, - 10, + 9, 0, - 8, + 3, 0 ], - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionPosition": 1, "type": "call" - } - ], - "errors": [], - "parties": [ - "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", - "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "0xafd6be86f5f03ab2e6ea35fbd95fbb97502d3af6", - "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "0x588ac84db09fe2cdcde602502be3791475733ed2", - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "0x06f168509241041afca15f0d88f5cfbd81463956", - "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "0x01f6f0c59ed955c24808b18444bd65d696531a09", - "0x7858176524906a49be14f50f6c6150b45f0224ab", - "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "0x02fe344708d804958aa355954df481be45c01b0d", - "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "0xecdee3f86dde93e77a692870d469498735305a41", - "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "0x241c960dcd2ffb04a7061adce57167179f65a79f", - "0x56d66d7637f5b6235ad212043d35cc5e035dac68", - "0x0eb23cbcf8d66bd4fab85acf1d405cf77f04ebb9", - "0x0000000000000000000000000000000000000000", - "0x18f33cef45817c428d98c4e188a770191fdd4b79", - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-2", - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-3" - ], - "sigHash": "0xce6298e7", - "internalSigHashes": [ - { - "from": "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", - "to": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "sigHash": "0xce6298e7" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0xafd6be86f5f03ab2e6ea35fbd95fbb97502d3af6", - "sigHash": "0xce6298e7" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" }, { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3e7db", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12266ba08f7df4b550bda1a0b5ef2e08f62543c38c6ddabbce22dde12572286ed5f", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000f4a785a80d91cadc149f778ee17d35cd008203f7" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 9, + 0, + 4, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" }, { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0xcb545a77" + "action": { + "callType": "delegatecall", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", + "gas": "0x3db7c", + "input": "0x4eb902990000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca0000000000000000000000000000000000000000000000000000000000000009", + "to": "0xe3454a59e38f1ccb7de9749664e4bc55232971b4", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0xf7ea", + "output": "0x0" + }, + "subtraces": 9, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" }, { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0xcb545a77" + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3b05d", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0, + 0, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" }, { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x3a573", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0, + 1, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" }, { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x39139", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0, + 2, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" }, { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "sigHash": "0x04dc0318" + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x386de", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0, + 3, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x06f168509241041afca15f0d88f5cfbd81463956", - "sigHash": "0x04dc0318" + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x38073", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0, + 4, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3750f", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0, + 5, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" }, { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x36a25", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0, + 6, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x35d7d", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0, + 7, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x3531f", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 20, + 0, + 10, + 0, + 8, + 0 + ], + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionPosition": 1, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", + "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "0x88a929aab8942c5e25b79ced7f30b2bca38ed5e8", + "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "0x588ac84db09fe2cdcde602502be3791475733ed2", + "0x928447ea35d57ca6d7d901c20258043902936dc9", + "0x5d29380764f586bf7a748f3e72dd5ba3bf72d31b", + "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "0x02fe344708d804958aa355954df481be45c01b0d", + "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc", + "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "0x7858176524906a49be14f50f6c6150b45f0224ab", + "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "0xecdee3f86dde93e77a692870d469498735305a41", + "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "0x2e74402b23c8d0378a1d4c1a5d81ef37824c1ef5", + "0xf4a785a80d91cadc149f778ee17d35cd008203f7", + "0xe3454a59e38f1ccb7de9749664e4bc55232971b4", + "0x0000000000000000000000000000000000000000", + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-4", + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-5" + ], + "sigHash": "0x0945e92b", + "internalSigHashes": [ + { + "from": "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", + "to": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "sigHash": "0x0945e92b" + }, + { + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x88a929aab8942c5e25b79ced7f30b2bca38ed5e8", + "sigHash": "0x0945e92b" + }, + { + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, { @@ -3959,17 +4550,17 @@ "sigHash": "0xe95a7151" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "sigHash": "0x3cb58e00" + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0xcb545a77" }, { - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", - "sigHash": "0x3cb58e00" + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0xcb545a77" }, { - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -3979,17 +4570,17 @@ "sigHash": "0xe95a7151" }, { - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "sigHash": "0xffd968fa" + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "sigHash": "0xae868e88" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "sigHash": "0xffd968fa" + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "to": "0x5d29380764f586bf7a748f3e72dd5ba3bf72d31b", + "sigHash": "0xae868e88" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -3999,7 +4590,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", "sigHash": "0x3d5da9e2" }, @@ -4009,7 +4600,7 @@ "sigHash": "0x3d5da9e2" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4019,7 +4610,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", "sigHash": "0xadd88400" }, @@ -4029,7 +4620,7 @@ "sigHash": "0xadd88400" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4039,17 +4630,27 @@ "sigHash": "0xe95a7151" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "sigHash": "0xb6119a7e" + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "sigHash": "0xb6119a7e" + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "sigHash": "0xbc3936da" + }, + { + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "to": "0x5d29380764f586bf7a748f3e72dd5ba3bf72d31b", + "sigHash": "0xbc3936da" + }, + { + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4059,17 +4660,17 @@ "sigHash": "0xe95a7151" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" + "sigHash": "0xcb545a77" }, { "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" + "sigHash": "0xcb545a77" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4079,17 +4680,36 @@ "sigHash": "0xe95a7151" }, { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" }, { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "to": "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc", + "sigHash": "0x1688f0b9" + }, + { + "from": "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc", + "sigHash": "undefined" + }, + { + "from": "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc", + "to": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "sigHash": "0xb63e800d" + }, + { + "from": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "to": "0xfb1bffc9d739b8d520daf37df666da4c687191ea", + "sigHash": "0xb63e800d" + }, + { + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4099,7 +4719,27 @@ "sigHash": "0xe95a7151" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "sigHash": "0xae868e88" + }, + { + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "to": "0x5d29380764f586bf7a748f3e72dd5ba3bf72d31b", + "sigHash": "0xae868e88" + }, + { + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", "sigHash": "0x3d5da9e2" }, @@ -4109,7 +4749,7 @@ "sigHash": "0x3d5da9e2" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4119,7 +4759,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "from": "0x928447ea35d57ca6d7d901c20258043902936dc9", "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", "sigHash": "0xadd88400" }, @@ -4145,7 +4785,7 @@ }, { "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x06f168509241041afca15f0d88f5cfbd81463956", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", "sigHash": "0x04dc0318" }, { @@ -4350,6 +4990,16 @@ }, { "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "sigHash": "0x04dc0318" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd", + "sigHash": "0x04dc0318" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4359,17 +5009,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "sigHash": "0xa958544b" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "sigHash": "0xa958544b" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4379,17 +5019,17 @@ "sigHash": "0xe95a7151" }, { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "sigHash": "0x3cb58e00" }, { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "sigHash": "0x3cb58e00" }, { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4399,17 +5039,17 @@ "sigHash": "0xe95a7151" }, { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "sigHash": "0xffd968fa" }, { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "sigHash": "0xffd968fa" }, { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4419,7 +5059,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", "sigHash": "0x3d5da9e2" }, @@ -4429,7 +5069,7 @@ "sigHash": "0x3d5da9e2" }, { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4439,7 +5079,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", "sigHash": "0xadd88400" }, @@ -4449,17 +5089,27 @@ "sigHash": "0xadd88400" }, { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "sigHash": "0x87db2cd9" + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" }, { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0xecdee3f86dde93e77a692870d469498735305a41", - "sigHash": "0x87db2cd9" + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" }, { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "sigHash": "0xb6119a7e" + }, + { + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "sigHash": "0xb6119a7e" + }, + { + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4469,7 +5119,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", "sigHash": "0x3d5da9e2" }, @@ -4479,7 +5129,7 @@ "sigHash": "0x3d5da9e2" }, { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4489,7 +5139,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", "sigHash": "0xadd88400" }, @@ -4499,7 +5149,207 @@ "sigHash": "0xadd88400" }, { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "sigHash": "0xa958544b" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "sigHash": "0xa958544b" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "sigHash": "0x87db2cd9" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "sigHash": "0x87db2cd9" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -4655,7 +5505,7 @@ }, { "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x241c960dcd2ffb04a7061adce57167179f65a79f", + "to": "0x2e74402b23c8d0378a1d4c1a5d81ef37824c1ef5", "sigHash": "0x4eb90299" }, { @@ -5060,16 +5910,16 @@ }, { "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "sigHash": "0x4eb90299" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", - "to": "0x0eb23cbcf8d66bd4fab85acf1d405cf77f04ebb9", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", + "to": "0xe3454a59e38f1ccb7de9749664e4bc55232971b4", "sigHash": "0x4eb90299" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -5079,7 +5929,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", "sigHash": "0x3d5da9e2" }, @@ -5089,7 +5939,7 @@ "sigHash": "0x3d5da9e2" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -5099,7 +5949,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", "sigHash": "0xadd88400" }, @@ -5109,7 +5959,7 @@ "sigHash": "0xadd88400" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -5119,7 +5969,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -5129,7 +5979,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", "sigHash": "0x3d5da9e2" }, @@ -5139,7 +5989,7 @@ "sigHash": "0x3d5da9e2" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", "sigHash": "0xe95a7151" }, @@ -5149,7 +5999,7 @@ "sigHash": "0xe95a7151" }, { - "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", "sigHash": "0xadd88400" }, @@ -5159,81 +6009,130 @@ "sigHash": "0xadd88400" } ], - "timestamp": 1714682510, + "timestamp": 1718153436, "baseFeePerGas": 251, - "transactionFee": "39597928063516800000335960100", + "transactionFee": "1309646699251200000494136720", "logs": [ { - "_id": "6633fa90d0e05f534265bffc", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x", + "address": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f00000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", "logIndex": 0, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_b24c7425", + "id": "log_cad2bd4a", "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", + "signature": "SafeSetup(address,address[],uint256,address,address)", + "signature_with_arg_names": "SafeSetup(address indexed initiator,address[] owners,uint256 threshold,address initializer,address fallbackHandler)", + "name": "SafeSetup", "decoded": [ { "indexed": true, "internalType": "address", - "name": "from", + "name": "initiator", "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" + "decoded": "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc" }, { - "indexed": true, + "indexed": false, + "internalType": "address[]", + "name": "owners", + "type": "address[]", + "decoded": [ + "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f", + "0x38369853c72295737b457fb98cbdcf61d224aa0d" + ] + }, + { + "indexed": false, + "internalType": "uint256", + "name": "threshold", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, "internalType": "address", - "name": "to", + "name": "initializer", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x0000000000000000000000000000000000000000" }, { "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" + "internalType": "address", + "name": "fallbackHandler", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" } ] }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000002" + "chainId": 4653, + "topic0": "0x141df868a6331af528e38c83b7aa03edc19be66e37ae67f9285bf4f8e3c6a1a8", + "topic1": "0x000000000000000000000000c22834581ebc8527d974f8a1c97e1bea4ef910bc" }, { - "_id": "6633fa90d0e05f534265bffd", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "address": "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca000000000000000000000000fb1bffc9d739b8d520daf37df666da4c687191ea", "logIndex": 1, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionIndex": 1, + "id": "log_b3ff3c72", + "decoded": { + "signature": "ProxyCreation(address,address)", + "signature_with_arg_names": "ProxyCreation(address proxy,address singleton)", + "name": "ProxyCreation", + "decoded": [ + { + "indexed": false, + "internalType": "contract GnosisSafeProxy", + "name": "proxy", + "type": "address", + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" + }, + { + "indexed": false, + "internalType": "address", + "name": "singleton", + "type": "address", + "decoded": "0xfb1bffc9d739b8d520daf37df666da4c687191ea" + } + ] + }, + "chainId": 4653, + "topic0": "0x4f51faf6c4561ff95f067657e43439f0f856d97c04d9ec9070a6199ad418e235" + }, + { + "address": "0x928447ea35d57ca6d7d901c20258043902936dc9", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "logIndex": 2, + "removed": false, + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_4a56fa0b", + "id": "log_21816b91", "decoded": null, - "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", - "topic3": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + "chainId": 4653, + "topic0": "0x6608fdd094c7876cc62fbdc5efffdbbef75028c17d3d1c66e210910909459759", + "topic1": "0xe6f31614040a3338064b8aa41db1fe56c2a4351289ef429700dab7a0a5173bc1", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { - "_id": "6633fa90d0e05f534265bffe", "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "data": "0x", - "logIndex": 2, + "logIndex": 3, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_57926132", + "id": "log_dedb9680", "decoded": { "signature": "Transfer(address,address,uint256)", "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", @@ -5251,7 +6150,7 @@ "internalType": "address", "name": "to", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { "indexed": false, @@ -5261,39 +6160,39 @@ } ] }, + "chainId": 4653, "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000003" + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000004" }, { - "_id": "6633fa90d0e05f534265bfff", "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", - "logIndex": 3, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", + "logIndex": 4, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_ac5b2862", + "id": "log_8ea35017", "decoded": null, + "chainId": 4653, "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000003", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", - "topic3": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000004", + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "topic3": "0x5a1f28e85ef99084a3a2b64bf940e3e2974ebcdb8544dddefa371fc5e1349e4e" }, { - "_id": "6633fa90d0e05f534265c000", - "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x0000000000000000000000000000000000000000000000000000000000031840", - "logIndex": 4, + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x", + "logIndex": 5, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_726cb7d4", + "id": "log_fc7ab2b4", "decoded": { "signature": "Transfer(address,address,uint256)", "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", @@ -5311,7 +6210,67 @@ "internalType": "address", "name": "to", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ] + }, + "chainId": 4653, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000005" + }, + { + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e4245414e5f47415244454e0000000000000000000000", + "logIndex": 6, + "removed": false, + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionIndex": 1, + "id": "log_b53adf7f", + "decoded": null, + "chainId": 4653, + "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000005", + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "topic3": "0x5a1f28e85ef99084a3a2b64bf940e3e2974ebcdb8544dddefa371fc5e1349e4e" + }, + { + "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x0000000000000000000000000000000000000000000000000000000000031840", + "logIndex": 7, + "removed": false, + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "transactionIndex": 1, + "id": "log_66781603", + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { "indexed": false, @@ -5322,38 +6281,38 @@ } ] }, + "chainId": 4653, "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { - "_id": "6633fa90d0e05f534265c001", "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x", - "logIndex": 5, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "logIndex": 8, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_07e426a6", + "id": "log_6fdf50c7", "decoded": null, - "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", - "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "chainId": 4653, + "topic0": "0x32e35ee54f728c6ab26c641bc3e9660695fa4c4bc83c0cc135770c35561fb35b", + "topic1": "0xbf7dfd9fe7717994ef8f25bfa21157b1e548e37205effc1f4eaa919e4f394774", + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", "topic3": "0x0000000000000000000000000000000000000000000000000000000000031840" }, { - "_id": "6633fa90d0e05f534265c002", - "address": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, + "address": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, "data": "0x0000000000000000000000000000000000000000000000000000000000000009", - "logIndex": 6, + "logIndex": 9, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_e4b8f4ad", + "id": "log_3784aa9f", "decoded": { "signature": "Transfer(address,address,uint256)", "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", @@ -5371,7 +6330,7 @@ "internalType": "address", "name": "to", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { "indexed": false, @@ -5382,42 +6341,44 @@ } ] }, + "chainId": 4653, "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" }, { - "_id": "6633fa90d0e05f534265c003", - "address": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x", - "logIndex": 7, + "address": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "logIndex": 10, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_e20b58e7", + "id": "log_7935a6ef", "decoded": null, - "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", - "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "chainId": 4653, + "topic0": "0x32e35ee54f728c6ab26c641bc3e9660695fa4c4bc83c0cc135770c35561fb35b", + "topic1": "0x8eae690622b7ee20f1bcf678ea85a0e2ef764b725431cfd5e99b8d3f9637b124", + "topic2": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", "topic3": "0x0000000000000000000000000000000000000000000000000000000000000009" }, { - "_id": "6633fa90d0e05f534265c004", "address": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", - "blockNumber": 6044685, - "data": "0x00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000bf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003", - "logIndex": 8, + "blockHash": "0x7f087277e88f4006e9058e117ad5f9fc72e0705dfdf6e963445e27ae55d58800", + "blockNumber": 9515611, + "data": "0x000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000bf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005", + "logIndex": 11, "removed": false, - "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", "transactionIndex": 1, - "id": "log_efa46d18", + "id": "log_2cca968c", "decoded": null, - "topic0": "0x0844c483fc1fbd7229fc8b9e35bf4997a55ae54096d77f8aa4a94370ece4b758", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", - "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + "chainId": 4653, + "topic0": "0x0b0dc7eb94a24c05addadfbd3823f0799cd97e3aabb9d17a766506b88affb698", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000003", + "topic2": "0xe6f31614040a3338064b8aa41db1fe56c2a4351289ef429700dab7a0a5173bc1", + "topic3": "0x0000000000000000000000004e2d01978d5b4dc5f160d5c10581e9f798d8e6ca" } ], "netAssetTransfers": { @@ -5426,12 +6387,12 @@ "sent": [ { "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "2", + "tokenId": "4", "type": "erc721" }, { "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "3", + "tokenId": "5", "type": "erc721" }, { @@ -5439,48 +6400,511 @@ "type": "erc20", "value": "202816" }, - { - "contract": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", - "type": "erc20", - "value": "9" + { + "contract": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", + "type": "erc20", + "value": "9" + } + ] + }, + "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca": { + "received": [ + { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "tokenId": "4", + "type": "erc721", + "imageUrl": "" + }, + { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "tokenId": "5", + "type": "erc721", + "imageUrl": "" + }, + { + "contract": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "type": "erc20", + "value": "202816" + }, + { + "contract": "0xf4a785a80d91cadc149f778ee17d35cd008203f7", + "type": "erc20", + "value": "9" + } + ], + "sent": [] + } + }, + "pseudotransactions": [], + "contractsCreated": [ + { + "chainId": 4653, + "address": "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca", + "deployer": "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", + "directDeployer": "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc", + "bytecode": "0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033", + "fingerprint": "0xb89c1b3bdf2cf8827818646bce9a8f6e372885f8c55e5c07acbd307cb133b000", + "gas": "0x1aee8f", + "gasUsed": "0xdd21", + "transactionHash": "0x2b1ce540c24bb42345ca79e2eb06307d91cadd0033b4ce510053bfdf92ff6528", + "type": "create", + "traceIndex": 33, + "timestamp": 1718153436 + } + ], + "enrichedParties": { + "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x21170f8bd35d0afa8ad55719ce29d6489a8585db": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + }, + "label": { + "public": "Pack Activation Destination" + } + } + ], + "0x88a929aab8942c5e25b79ced7f30b2bca38ed5e8": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x588ac84db09fe2cdcde602502be3791475733ed2": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x928447ea35d57ca6d7d901c20258043902936dc9": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x5d29380764f586bf7a748f3e72dd5ba3bf72d31b": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x9f53fde530411f5ea31e8c952422a81acc4567ab": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x02fe344708d804958aa355954df481be45c01b0d": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xc22834581ebc8527d974f8a1c97e1bea4ef910bc": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null } - ] - }, - "0x18f33cef45817c428d98c4e188a770191fdd4b79": { - "received": [ - { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "2", - "type": "erc721", - "imageUrl": "" + }, + { + "chainId": 11155420, + "label": { + "public": "" }, - { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "3", - "type": "erc721", - "imageUrl": "" + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null }, - { - "contract": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "type": "erc20", - "value": "202816" + "bns": { + "handle": null, + "avatar": null }, - { - "contract": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", - "type": "erc20", - "value": "9" + "farcaster": { + "handle": null, + "avatar": null, + "fid": null } - ], - "sent": [] - } - }, - "pseudotransactions": [], - "contractsCreated": [], - "enrichedParties": { - "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb": [ + }, { - "chainId": 0, - "isContract": false, + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", "ensNew": { "handle": null, "avatar": null @@ -5496,7 +6920,7 @@ } } ], - "0x21170f8bd35d0afa8ad55719ce29d6489a8585db": [ + "0x4e2d01978d5b4dc5f160d5c10581e9f798d8e6ca": [ { "chainId": 0, "isContract": false, @@ -5515,10 +6939,16 @@ } } ], - "0xafd6be86f5f03ab2e6ea35fbd95fbb97502d3af6": [ + "0xfb1bffc9d739b8d520daf37df666da4c687191ea": [ { - "chainId": 0, - "isContract": false, + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", "ensNew": { "handle": null, "avatar": null @@ -5532,12 +6962,16 @@ "avatar": null, "fid": null } - } - ], - "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68": [ + }, { - "chainId": 0, - "isContract": false, + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", "ensNew": { "handle": null, "avatar": null @@ -5551,12 +6985,16 @@ "avatar": null, "fid": null } - } - ], - "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086": [ + }, { - "chainId": 0, - "isContract": false, + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", "ensNew": { "handle": null, "avatar": null @@ -5570,12 +7008,16 @@ "avatar": null, "fid": null } - } - ], - "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079": [ + }, { - "chainId": 0, - "isContract": false, + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", "ensNew": { "handle": null, "avatar": null @@ -5589,12 +7031,16 @@ "avatar": null, "fid": null } - } - ], - "0x588ac84db09fe2cdcde602502be3791475733ed2": [ + }, { - "chainId": 0, - "isContract": false, + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", "ensNew": { "handle": null, "avatar": null @@ -5608,19 +7054,16 @@ "avatar": null, "fid": null } - } - ], - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8": [ + }, { - "chainId": 4653, + "chainId": 5, "label": { - "public": "Sky Plot" + "public": "" }, "isContract": true, - "tokenStandard": "erc721", "imgUrl": "", - "decimals": "", - "symbol": "zPLOT", + "decimals": 0, + "symbol": "", "ensNew": { "handle": null, "avatar": null @@ -5634,12 +7077,108 @@ "avatar": null, "fid": null } - } - ], - "0x06f168509241041afca15f0d88f5cfbd81463956": [ + }, { - "chainId": 0, - "isContract": false, + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", "ensNew": { "handle": null, "avatar": null @@ -5655,10 +7194,17 @@ } } ], - "0xee1f3a233e2197463598f6f5d332a6447aaff4b8": [ + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8": [ { - "chainId": 0, - "isContract": false, + "chainId": 4653, + "label": { + "public": "Sky Plot" + }, + "isContract": true, + "tokenStandard": "erc721", + "imgUrl": "", + "decimals": "", + "symbol": "zPLOT", "ensNew": { "handle": null, "avatar": null @@ -5674,7 +7220,7 @@ } } ], - "0x01f6f0c59ed955c24808b18444bd65d696531a09": [ + "0xf5f7e8b2debb773e75aa60f38b16e4359e8461fd": [ { "chainId": 0, "isContract": false, @@ -5693,7 +7239,7 @@ } } ], - "0x7858176524906a49be14f50f6c6150b45f0224ab": [ + "0xee1f3a233e2197463598f6f5d332a6447aaff4b8": [ { "chainId": 0, "isContract": false, @@ -5712,7 +7258,7 @@ } } ], - "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c": [ + "0x01f6f0c59ed955c24808b18444bd65d696531a09": [ { "chainId": 0, "isContract": false, @@ -5731,7 +7277,7 @@ } } ], - "0x9f53fde530411f5ea31e8c952422a81acc4567ab": [ + "0x7858176524906a49be14f50f6c6150b45f0224ab": [ { "chainId": 0, "isContract": false, @@ -5750,7 +7296,7 @@ } } ], - "0x02fe344708d804958aa355954df481be45c01b0d": [ + "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c": [ { "chainId": 0, "isContract": false, @@ -5871,7 +7417,7 @@ } } ], - "0x241c960dcd2ffb04a7061adce57167179f65a79f": [ + "0x2e74402b23c8d0378a1d4c1a5d81ef37824c1ef5": [ { "chainId": 0, "isContract": false, @@ -5890,17 +7436,17 @@ } } ], - "0x56d66d7637f5b6235ad212043d35cc5e035dac68": [ + "0xf4a785a80d91cadc149f778ee17d35cd008203f7": [ { "chainId": 4653, "label": { - "public": "Crop: Earthmelon" + "public": "Crop: Voidpop" }, "isContract": true, "tokenStandard": "erc20", "imgUrl": "", - "decimals": "", - "symbol": "zEARTHMELON", + "decimals": 0, + "symbol": "zVOIDPOP", "ensNew": { "handle": null, "avatar": null @@ -5916,7 +7462,7 @@ } } ], - "0x0eb23cbcf8d66bd4fab85acf1d405cf77f04ebb9": [ + "0xe3454a59e38f1ccb7de9749664e4bc55232971b4": [ { "chainId": 0, "isContract": false, @@ -5943,7 +7489,7 @@ }, "isContract": true, "imgUrl": "", - "decimals": "", + "decimals": 0, "symbol": "", "ensNew": { "handle": null, @@ -5966,7 +7512,7 @@ }, "isContract": true, "imgUrl": "", - "decimals": "", + "decimals": 0, "symbol": "", "ensNew": { "handle": null, @@ -5989,7 +7535,7 @@ }, "isContract": true, "imgUrl": "", - "decimals": "", + "decimals": 0, "symbol": "", "ensNew": { "handle": null, @@ -6012,7 +7558,7 @@ }, "isContract": true, "imgUrl": "", - "decimals": "", + "decimals": 0, "symbol": "", "ensNew": { "handle": null, @@ -6028,37 +7574,18 @@ "fid": null } } - ], - "0x18f33cef45817c428d98c4e188a770191fdd4b79": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": "calebguy.eth", - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": "calebguy", - "avatar": "https://i.seadn.io/gcs/files/2ff994b1b3a9333d342a0422f35c2556.jpg?w=500&auto=format", - "fid": 18470 - } - } ] }, "assetsEnriched": { - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-2": { + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-4": { "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "2", + "tokenId": "4", "type": "erc721", "imageUrl": "" }, - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-3": { + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-5": { "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "3", + "tokenId": "5", "type": "erc721", "imageUrl": "" } diff --git a/src/contextualizers/test/transactions/goldDestination-0x85058886.json b/src/contextualizers/test/transactions/goldDestination-0x85058886.json deleted file mode 100644 index 0b680b7c..00000000 --- a/src/contextualizers/test/transactions/goldDestination-0x85058886.json +++ /dev/null @@ -1,6066 +0,0 @@ -{ - "_id": "663197091e0eab21d49632c2", - "accessList": [], - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "chainId": 4653, - "from": "0x38369853c72295737b457fb98cbdcf61d224aa0d", - "gas": 1322816, - "gasPrice": "1000251", - "hash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "input": "0xce6298e70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000000000000000000000000000000000000000000000000000000000000000000a7a4d4f4f4e475241535300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", - "maxFeePerGas": "1000317", - "maxPriorityFeePerGas": "1000000", - "nonce": 800, - "r": "0xac7ddd3b6729c87ff72d00a9b8d9f9605e9e1af66c8801f39587b0929f2a1d42", - "s": "0x4f4b212e5598eabc1d24918fb041e2d14390204c7dc54c2540a6b0c0569c1386", - "to": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "transactionIndex": 1, - "type": 2, - "v": "0x0", - "value": "0", - "yParity": "0x0", - "receipt": { - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "contractAddress": null, - "cumulativeGasUsed": 1338324, - "effectiveGasPrice": 1000251, - "from": "0x38369853c72295737b457fb98cbdcf61d224aa0d", - "gasUsed": 1285847, - "l1Fee": "0x5889b64c2", - "l1FeeScalar": "0.0684", - "l1GasPrice": "0x39a64e0", - "l1GasUsed": "0x1674", - "logsBloom": "0x00000900000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000800000800000000040000000000000000000010080008000000020800000000040000000004000000000000000000020002000000000000500800140000000008000010000010010000000400000000000000020000000000000000004000000040000000000010000000000080000000004022000000000000000000400000000000000000004000000000000002000000000000000000000000000000000200040000000000000060000000000000040000000010000400000000000000000000000000080200000000", - "status": true, - "to": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "type": "0x2", - "logs": [ - { - "_id": "663197091e0eab21d49632b0", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x", - "logIndex": 0, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_09e5443e", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "_id": "663197091e0eab21d49632b1", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "logIndex": 1, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_2a5bdc81", - "decoded": null, - "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0xfcf8aa9e84e0840b11b78f716063b0fc23c1c0f37a7e9b4ec1fcd67dc3de2be6" - }, - { - "_id": "663197091e0eab21d49632b2", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x", - "logIndex": 2, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_7783e5cd", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - { - "_id": "663197091e0eab21d49632b3", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "logIndex": 3, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_5272a8f6", - "decoded": null, - "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000001", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0xfcf8aa9e84e0840b11b78f716063b0fc23c1c0f37a7e9b4ec1fcd67dc3de2be6" - }, - { - "_id": "663197091e0eab21d49632b4", - "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x00000000000000000000000000000000000000000000000000000000000ded1e", - "logIndex": 4, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_04048308", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256", - "decoded": "912670" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "_id": "663197091e0eab21d49632b5", - "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x", - "logIndex": 5, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_dd896177", - "decoded": null, - "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", - "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0x00000000000000000000000000000000000000000000000000000000000ded1e" - }, - { - "_id": "663197091e0eab21d49632b6", - "address": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x0000000000000000000000000000000000000000000000000000000000000051", - "logIndex": 6, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_74459b79", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256", - "decoded": "81" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "_id": "663197091e0eab21d49632b7", - "address": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x", - "logIndex": 7, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_13de7495", - "decoded": null, - "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", - "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000051" - }, - { - "_id": "663197091e0eab21d49632b8", - "address": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", - "logIndex": 8, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_83e101b0", - "decoded": null, - "topic0": "0x0844c483fc1fbd7229fc8b9e35bf4997a55ae54096d77f8aa4a94370ece4b758", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000001", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7" - } - ] - }, - "decoded": null, - "pseudoTransactions": [], - "assetTransfers": [ - { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "from": "0x0000000000000000000000000000000000000000", - "to": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "tokenId": "0", - "type": "erc721" - }, - { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "from": "0x0000000000000000000000000000000000000000", - "to": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "tokenId": "1", - "type": "erc721" - }, - { - "contract": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "from": "0x0000000000000000000000000000000000000000", - "to": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "value": "912670", - "type": "erc20" - }, - { - "contract": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "from": "0x0000000000000000000000000000000000000000", - "to": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "value": "81", - "type": "erc20" - } - ], - "delegateCalls": [ - { - "action": { - "callType": "delegatecall", - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "gas": "0x136c48", - "input": "0xce6298e70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000000000000000000000000000000000000000000000000000000000000000000a7a4d4f4f4e475241535300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", - "to": "0xafd6be86f5f03ab2e6ea35fbd95fbb97502d3af6", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x136155", - "output": "0x0" - }, - "subtraces": 14, - "traceAddress": [ - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x128ba8", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x125ecf", - "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1228ecd58c13c172fc863bc6abb25af6d4caf2968db2e4505bcd6ed59b2a2e2c67200000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x17af", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x10933a", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "gas": "0x101ee7", - "input": "0x04dc03180000000000000000000000000000000000000000000000000000000000000100000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "to": "0x06f168509241041afca15f0d88f5cfbd81463956", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x52fc1", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000fcf8aa9e84e0840b11b78f716063b0fc23c1c0f37a7e9b4ec1fcd67dc3de2be6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 9, - "traceAddress": [ - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xf7927", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1221d094024bb7b9ba00ec54fa8a80c97069fbfe9c17d3db096166f95898fdd8557", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xf63cf", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "gas": "0xf3539", - "input": "0x3cb58e0000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xda2d", - "output": "0x0" - }, - "subtraces": 2, - "traceAddress": [ - 0, - 3, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xeabb5", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 2, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "gas": "0xe7ea1", - "input": "0xffd968fa00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x9952", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - "subtraces": 4, - "traceAddress": [ - 0, - 3, - 0, - 2, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xdfe04", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 2, - 0, - 1, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0xdf31b", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x177e", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 2, - 0, - 1, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xdcfbc", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 2, - 0, - 1, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0xda30b", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x9db", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 2, - 0, - 1, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xe4dcc", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "gas": "0xe42eb", - "input": "0xb6119a7e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x68df", - "output": "0xfcf8aa9e84e0840b11b78f716063b0fc23c1c0f37a7e9b4ec1fcd67dc3de2be6" - }, - "subtraces": 4, - "traceAddress": [ - 0, - 3, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xdcbcf", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 4, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0xdc0e6", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xfae", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 4, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xdacab", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 4, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0xda250", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 4, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xc3cb9", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 5, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0xc31d5", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xfae", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 6, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xc15e4", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 7, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0xc0b89", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0, - 8, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xb0a5c", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "gas": "0xaf4e9", - "input": "0x04dc03180000000000000000000000000000000000000000000000000000000000000100000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "to": "0x06f168509241041afca15f0d88f5cfbd81463956", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x4dafd", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001fcf8aa9e84e0840b11b78f716063b0fc23c1c0f37a7e9b4ec1fcd67dc3de2be6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 9, - "traceAddress": [ - 0, - 5, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xa874b", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1221d094024bb7b9ba00ec54fa8a80c97069fbfe9c17d3db096166f95898fdd8557", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xa7985", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "gas": "0xa6d44", - "input": "0x3cb58e0000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x5d2d", - "output": "0x0" - }, - "subtraces": 2, - "traceAddress": [ - 0, - 5, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xa1146", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 2, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "gas": "0xa0687", - "input": "0xffd968fa00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x474a", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - "subtraces": 4, - "traceAddress": [ - 0, - 5, - 0, - 2, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x9b0f5", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 2, - 0, - 1, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x9a60c", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 2, - 0, - 1, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x99964", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 2, - 0, - 1, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x98f09", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 2, - 0, - 1, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x9baf1", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "gas": "0x9b010", - "input": "0xb6119a7e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x610f", - "output": "0xfcf8aa9e84e0840b11b78f716063b0fc23c1c0f37a7e9b4ec1fcd67dc3de2be6" - }, - "subtraces": 4, - "traceAddress": [ - 0, - 5, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x95d41", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 4, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x95259", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 4, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x945af", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 4, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x93b54", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 4, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x7fcc3", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 5, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x7f1df", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 6, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x7e513", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 7, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x7dab7", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 5, - 0, - 8, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x58870", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 6, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x575bb", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 7, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x54970", - "input": "0xa958544b000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000057a474f4c44000000000000000000000000000000000000000000000000000000", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7670", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - "subtraces": 8, - "traceAddress": [ - 0, - 8, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x511a6", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 8, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x506bd", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 8, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x4f266", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 8, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x4e80b", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 8, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x4dbaa", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 8, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x4d0c3", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 8, - 0, - 5, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x4c3fb", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 8, - 0, - 6, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x4b9a0", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 8, - 0, - 7, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "gas": "0x4a806", - "input": "0x87db2cd9000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000ded1e", - "to": "0xecdee3f86dde93e77a692870d469498735305a41", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x22cc6", - "output": "0x0" - }, - "subtraces": 11, - "traceAddress": [ - 0, - 9, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x46335", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x4584d", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x44412", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x439b7", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x43366", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x4289f", - "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee6100000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x17af", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 5, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x40d61", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 6, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x40397", - "input": "0xe29ab0760000000000000000000000000000000000000000000000000000000000000001", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x45a0", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - "subtraces": 4, - "traceAddress": [ - 0, - 9, - 0, - 7, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x3df52", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 7, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x3d46a", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xfae", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 7, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x3c012", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 7, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x3b5b7", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 7, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x3bbc6", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 8, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x3b1fc", - "input": "0x4e4719130000000000000000000000000000000000000000000000000000000000000001", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x4a39", - "output": "0x000000000000000000000000387d73bd8682dceb3327b940213d5de50ee2bba2" - }, - "subtraces": 5, - "traceAddress": [ - 0, - 9, - 0, - 9, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x39011", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 9, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x38529", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 9, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x37864", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 9, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x36e08", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 9, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x35c49", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122a7aca4651592361767f31a71cc625eaebaaac01cdbb6d87ab68fbd52bab3fe72", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x000000000000000000000000387d73bd8682dceb3327b940213d5de50ee2bba2" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 9, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "gas": "0x34b72", - "input": "0x4eb90299000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d700000000000000000000000000000000000000000000000000000000000ded1e", - "to": "0x241c960dcd2ffb04a7061adce57167179f65a79f", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xea7d", - "output": "0x0" - }, - "subtraces": 9, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x324ca", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x319e2", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x305a6", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x2fb4b", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x2f4e0", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x2e97d", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0, - 5, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x2de93", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0, - 6, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x2d1ea", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0, - 7, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x2c78c", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 9, - 0, - 10, - 0, - 8, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x2892a", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 10, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x27e06", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 11, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x2731e", - "input": "0xa958544b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a7a4d4f4f4e475241535300000000000000000000000000000000000000000000", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6c7a", - "output": "0x0000000000000000000000000000000000000000000000000000000000000019" - }, - "subtraces": 8, - "traceAddress": [ - 0, - 12, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x2596b", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 12, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x24e82", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 12, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x241bd", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 12, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x23762", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 12, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x22584", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 12, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x21a9d", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 12, - 0, - 5, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x20dd5", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 12, - 0, - 6, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x2037a", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 12, - 0, - 7, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "gas": "0x205a1", - "input": "0x87db2cd9000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d700000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000051", - "to": "0xecdee3f86dde93e77a692870d469498735305a41", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x1f600", - "output": "0x0" - }, - "subtraces": 11, - "traceAddress": [ - 0, - 13, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1e4dd", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x1d9f5", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1cd4c", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x1c2f0", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1bc9f", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x1b1da", - "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee6100000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x80f", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 5, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1a5bf", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 6, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x19bf5", - "input": "0xe29ab0760000000000000000000000000000000000000000000000000000000000000019", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x3600", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - "subtraces": 4, - "traceAddress": [ - 0, - 13, - 0, - 7, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x18ac6", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 7, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x17fde", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 7, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x17319", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 7, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x168be", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 7, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x16348", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 8, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "gas": "0x1597f", - "input": "0x4e4719130000000000000000000000000000000000000000000000000000000000000019", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x4a39", - "output": "0x00000000000000000000000012647ceec053d386a7343b7739a1e1fddadef796" - }, - "subtraces": 5, - "traceAddress": [ - 0, - 13, - 0, - 9, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x14a33", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 9, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x13f4a", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 9, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x13285", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 9, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x12829", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 9, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x1166a", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229376cca368730d2bf0db57f282f44d6225c79e8f7bf15b341f8822e6a267886e", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xe8f", - "output": "0x00000000000000000000000012647ceec053d386a7343b7739a1e1fddadef796" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 9, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "gas": "0xf2f4", - "input": "0x4eb90299000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d70000000000000000000000000000000000000000000000000000000000000051", - "to": "0x6b4a84ed4db05eef44993974a088597ac6c73eb3", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0xea67", - "output": "0x0" - }, - "subtraces": 9, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xdeff", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0, - 0, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0xd417", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0, - 1, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xbfdc", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0, - 2, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0xb581", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0, - 3, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xaf16", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0, - 4, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0xa3b2", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0, - 5, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "gas": "0x98c9", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x7de", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0, - 6, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "gas": "0x8c1f", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x6bf", - "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0, - 7, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "gas": "0x81c1", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "value": "0x0" - }, - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "result": { - "gasUsed": "0x20b", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 13, - 0, - 10, - 0, - 8, - 0 - ], - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionPosition": 1, - "type": "call" - } - ], - "errors": [], - "parties": [ - "0x38369853c72295737b457fb98cbdcf61d224aa0d", - "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "0xafd6be86f5f03ab2e6ea35fbd95fbb97502d3af6", - "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "0x588ac84db09fe2cdcde602502be3791475733ed2", - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "0x06f168509241041afca15f0d88f5cfbd81463956", - "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "0x01f6f0c59ed955c24808b18444bd65d696531a09", - "0x7858176524906a49be14f50f6c6150b45f0224ab", - "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "0x02fe344708d804958aa355954df481be45c01b0d", - "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "0xecdee3f86dde93e77a692870d469498735305a41", - "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "0x241c960dcd2ffb04a7061adce57167179f65a79f", - "0x12647ceec053d386a7343b7739a1e1fddadef796", - "0x6b4a84ed4db05eef44993974a088597ac6c73eb3", - "0x0000000000000000000000000000000000000000", - "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-0", - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-1" - ], - "sigHash": "0xce6298e7", - "internalSigHashes": [ - { - "from": "0x38369853c72295737b457fb98cbdcf61d224aa0d", - "to": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "sigHash": "0xce6298e7" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0xafd6be86f5f03ab2e6ea35fbd95fbb97502d3af6", - "sigHash": "0xce6298e7" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0xcb545a77" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0xcb545a77" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "sigHash": "0x04dc0318" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x06f168509241041afca15f0d88f5cfbd81463956", - "sigHash": "0x04dc0318" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "sigHash": "0x3cb58e00" - }, - { - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", - "sigHash": "0x3cb58e00" - }, - { - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "sigHash": "0xffd968fa" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "sigHash": "0xffd968fa" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "sigHash": "0xb6119a7e" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "sigHash": "0xb6119a7e" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "sigHash": "0x04dc0318" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x06f168509241041afca15f0d88f5cfbd81463956", - "sigHash": "0x04dc0318" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "sigHash": "0x3cb58e00" - }, - { - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", - "sigHash": "0x3cb58e00" - }, - { - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", - "to": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "sigHash": "0xffd968fa" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "sigHash": "0xffd968fa" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "sigHash": "0xb6119a7e" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", - "sigHash": "0xb6119a7e" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "sigHash": "0xa958544b" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "sigHash": "0xa958544b" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "sigHash": "0x87db2cd9" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0xecdee3f86dde93e77a692870d469498735305a41", - "sigHash": "0x87db2cd9" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0xcb545a77" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0xcb545a77" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "sigHash": "0xe29ab076" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "sigHash": "0xe29ab076" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "sigHash": "0x4e471913" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "sigHash": "0x4e471913" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "sigHash": "0x4eb90299" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x241c960dcd2ffb04a7061adce57167179f65a79f", - "sigHash": "0x4eb90299" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "sigHash": "0xa958544b" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "sigHash": "0xa958544b" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "to": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "sigHash": "0x87db2cd9" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0xecdee3f86dde93e77a692870d469498735305a41", - "sigHash": "0x87db2cd9" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0xcb545a77" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0xcb545a77" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "sigHash": "0xe29ab076" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "sigHash": "0xe29ab076" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "sigHash": "0x4e471913" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", - "sigHash": "0x4e471913" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "to": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "sigHash": "0x4eb90299" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x6b4a84ed4db05eef44993974a088597ac6c73eb3", - "sigHash": "0x4eb90299" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", - "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "sigHash": "0xe95a7151" - }, - { - "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", - "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", - "sigHash": "0xe95a7151" - }, - { - "from": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "sigHash": "0xadd88400" - }, - { - "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", - "to": "0x02fe344708d804958aa355954df481be45c01b0d", - "sigHash": "0xadd88400" - } - ], - "timestamp": 1714525959, - "baseFeePerGas": 251, - "transactionFee": "23766721730611203286169747597", - "logs": [ - { - "_id": "663197091e0eab21d49632b0", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x", - "logIndex": 0, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_09e5443e", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "_id": "663197091e0eab21d49632b1", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "logIndex": 1, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_2a5bdc81", - "decoded": null, - "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0xfcf8aa9e84e0840b11b78f716063b0fc23c1c0f37a7e9b4ec1fcd67dc3de2be6" - }, - { - "_id": "663197091e0eab21d49632b2", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x", - "logIndex": 2, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_7783e5cd", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" - }, - { - "_id": "663197091e0eab21d49632b3", - "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000015706c6f745f747970652e475241494e5f4649454c440000000000000000000000", - "logIndex": 3, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_5272a8f6", - "decoded": null, - "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000001", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0xfcf8aa9e84e0840b11b78f716063b0fc23c1c0f37a7e9b4ec1fcd67dc3de2be6" - }, - { - "_id": "663197091e0eab21d49632b4", - "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x00000000000000000000000000000000000000000000000000000000000ded1e", - "logIndex": 4, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_04048308", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256", - "decoded": "912670" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "_id": "663197091e0eab21d49632b5", - "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x", - "logIndex": 5, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_dd896177", - "decoded": null, - "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", - "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0x00000000000000000000000000000000000000000000000000000000000ded1e" - }, - { - "_id": "663197091e0eab21d49632b6", - "address": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x0000000000000000000000000000000000000000000000000000000000000051", - "logIndex": 6, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_74459b79", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256", - "decoded": "81" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "_id": "663197091e0eab21d49632b7", - "address": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x", - "logIndex": 7, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_13de7495", - "decoded": null, - "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", - "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic3": "0x0000000000000000000000000000000000000000000000000000000000000051" - }, - { - "_id": "663197091e0eab21d49632b8", - "address": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", - "blockHash": "0xc16eb0fc5f092d60d0084d2a8a9c65e81ee1a0ec45283dfffb25e3051ef7c1df", - "blockNumber": 5888134, - "data": "0x00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000038369853c72295737b457fb98cbdcf61d224aa0d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", - "logIndex": 8, - "removed": false, - "transactionHash": "0x850590e998cb239fccbf2529db05f935aef39f9335316fedfa00958c00cd8886", - "transactionIndex": 1, - "id": "log_83e101b0", - "decoded": null, - "topic0": "0x0844c483fc1fbd7229fc8b9e35bf4997a55ae54096d77f8aa4a94370ece4b758", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000001", - "topic2": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7" - } - ], - "netAssetTransfers": { - "0x0000000000000000000000000000000000000000": { - "received": [], - "sent": [ - { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "0", - "type": "erc721" - }, - { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "1", - "type": "erc721" - }, - { - "contract": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "type": "erc20", - "value": "912670" - }, - { - "contract": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "type": "erc20", - "value": "81" - } - ] - }, - "0xb374fdd2951a65e827dab88f692a6819dc43c6d7": { - "received": [ - { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "0", - "type": "erc721", - "imageUrl": "" - }, - { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "1", - "type": "erc721", - "imageUrl": "" - }, - { - "contract": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", - "type": "erc20", - "value": "912670" - }, - { - "contract": "0x12647ceec053d386a7343b7739a1e1fddadef796", - "type": "erc20", - "value": "81" - } - ], - "sent": [] - } - }, - "pseudotransactions": [], - "contractsCreated": [], - "enrichedParties": { - "0x38369853c72295737b457fb98cbdcf61d224aa0d": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": "cropxyz.eth", - "avatar": "https://assets.airstack.xyz/image/nft/nNBFvZ6wvuIHqDzTFi5pM/pM0Q1IAUgJRNTJrw7f4s39637TbeaxKQdxkyaNPl5SeuxN6/faPhHOVjEgBJkD4nzjtqxboqlHMJ2wa/bdN9q8CZ4Ce+0O0ANOlyWXcQcSr7MPyVNiWyAlOhedEBLXHsIdRO/GpV6e22mUhQzlsCw=/medium.png" - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x21170f8bd35d0afa8ad55719ce29d6489a8585db": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0xafd6be86f5f03ab2e6ea35fbd95fbb97502d3af6": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x588ac84db09fe2cdcde602502be3791475733ed2": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8": [ - { - "chainId": 4653, - "label": { - "public": "Sky Plot" - }, - "isContract": true, - "tokenStandard": "erc721", - "imgUrl": "", - "decimals": "", - "symbol": "zPLOT", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x06f168509241041afca15f0d88f5cfbd81463956": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0xee1f3a233e2197463598f6f5d332a6447aaff4b8": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x01f6f0c59ed955c24808b18444bd65d696531a09": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x7858176524906a49be14f50f6c6150b45f0224ab": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x9f53fde530411f5ea31e8c952422a81acc4567ab": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x02fe344708d804958aa355954df481be45c01b0d": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x1310d5a06b1caaea25af09197288f7c2d2c40eed": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0xecdee3f86dde93e77a692870d469498735305a41": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x387d73bd8682dceb3327b940213d5de50ee2bba2": [ - { - "chainId": 4653, - "label": { - "public": "Sky Gold" - }, - "isContract": true, - "tokenStandard": "erc20", - "imgUrl": "", - "decimals": 2, - "symbol": "zGOLD", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x241c960dcd2ffb04a7061adce57167179f65a79f": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x12647ceec053d386a7343b7739a1e1fddadef796": [ - { - "chainId": 4653, - "label": { - "public": "Crop: Moongrass" - }, - "isContract": true, - "tokenStandard": "erc20", - "imgUrl": "", - "decimals": "", - "symbol": "zMOONGRASS", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x6b4a84ed4db05eef44993974a088597ac6c73eb3": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x0000000000000000000000000000000000000000": [ - { - "chainId": 11155111, - "label": { - "public": "Null: 0x000…000" - }, - "isContract": true, - "imgUrl": "", - "decimals": "", - "symbol": "", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - }, - { - "chainId": 5, - "label": { - "public": "Null: 0x000…000" - }, - "isContract": true, - "imgUrl": "", - "decimals": "", - "symbol": "", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - }, - { - "chainId": 10, - "label": { - "public": "Null: 0x000…000" - }, - "isContract": true, - "imgUrl": "", - "decimals": "", - "symbol": "", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - }, - { - "chainId": 8453, - "label": { - "public": "Null: 0x000…000" - }, - "isContract": true, - "imgUrl": "", - "decimals": "", - "symbol": "", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0xb374fdd2951a65e827dab88f692a6819dc43c6d7": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ] - }, - "assetsEnriched": { - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-0": { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "0", - "type": "erc721", - "imageUrl": "" - }, - "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-1": { - "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", - "tokenId": "1", - "type": "erc721", - "imageUrl": "" - } - } -} \ No newline at end of file diff --git a/src/contextualizers/test/transactions/goldSource-0xef715998.json b/src/contextualizers/test/transactions/goldSource-0x31893393.json similarity index 69% rename from src/contextualizers/test/transactions/goldSource-0xef715998.json rename to src/contextualizers/test/transactions/goldSource-0x31893393.json index fa784c43..118bbb10 100644 --- a/src/contextualizers/test/transactions/goldSource-0xef715998.json +++ b/src/contextualizers/test/transactions/goldSource-0x31893393.json @@ -1,54 +1,52 @@ { - "_id": "6633fa805a8173211c1ff836", - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, - "from": "0x18f33cef45817c428d98c4e188a770191fdd4b79", - "gas": 506244, - "gasPrice": "3092748173", - "maxFeePerGas": "3185802328", - "maxPriorityFeePerGas": "3000000000", - "hash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "input": "0xbadf7efa", - "nonce": 29, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, + "from": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f", + "gas": 555020, + "gasPrice": "3255901", + "maxFeePerGas": "6206080", + "maxPriorityFeePerGas": "309168", + "hash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "input": "0x9f9bd78b00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000", + "nonce": 6, "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "transactionIndex": 1, + "transactionIndex": 59, "value": "0", "type": 2, "accessList": [], "chainId": 8453, - "v": "0x1", - "r": "0xbb18feda06895bcce265a3bf279f6c068cbce5557043aaa4fa2a67263936e0c6", - "s": "0xa829ea894363f280a7966fbf2c8bb3129bc6186ecd178609e8130439ad02b59", - "yParity": "0x1", + "v": "0x0", + "r": "0x247df7be7f1940006cd2ef715064f7c729e4133ceabe23c1a82fccb89f9bae43", + "s": "0x3acbc0c42c11a71415ab9c102fe65e744b19ce877f7efa92777ba7c44d5dca4c", + "yParity": "0x0", "receipt": { - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "contractAddress": null, - "cumulativeGasUsed": 482707, - "effectiveGasPrice": 3092748173, - "from": "0x18f33cef45817c428d98c4e188a770191fdd4b79", - "gasUsed": 438868, - "l1Fee": "0x2b1f0d79c", - "l1GasPrice": "0x153d4daa7", - "l1GasUsed": "0x734", - "logsBloom": "0x04000000000000000000000100000020000000000000010100000000000000000001000000000040000000000000000000000000000000000000000000000000000000000008000000000008000000000000000000000000000000000000000002040200220000000000000000000800000000000400000000000010000000000000000000000100000000000000000010000000040000000000000000000000000000000000020000000100000000000000004000000000000000000000000000000002000000080000000000000000800000000000000000000000000020000000200800000000000000000000000000000000008000000000000000000000", + "cumulativeGasUsed": 13907501, + "effectiveGasPrice": 3255901, + "from": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f", + "gasUsed": 486144, + "l1Fee": "0x36e2f7510", + "l1GasPrice": "0x17c8be003", + "l1GasUsed": "0x830", + "logsBloom": "0x0000000000000000000000000000002000000000000001010000000000a000000000000000000040000001000000000000000000020000000000000000900000000000000000000000000008000000008000000000000000000000000000000002000000020000000200000000000800000000000400000000000010000000000000000000000000000000000000000000000000040000000000000000000000002000000000000000000000000004000000004000900000000000000000400000000002000000080000000000000000800000200000000000000000000020000000200800080000000000000000000000000000000000000000000000000000", "status": true, "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionIndex": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionIndex": 59, "type": "0x2", "logs": [ { - "_id": "6633fa805a8173211c1ff696", "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", "data": "0x0000000000000000000000000000000000000000000000000000000000000001", - "blockNumber": 13946572, - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionIndex": 1, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "logIndex": 0, + "blockNumber": 15682042, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionIndex": 59, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "logIndex": 173, "removed": false, - "id": "log_4b9db986", + "id": "log_ab3983cf", "decoded": { "signature": "ApprovalForAll(address,address,bool)", "signature_with_arg_names": "ApprovalForAll(address indexed owner,address indexed operator,bool approved)", @@ -59,7 +57,7 @@ "internalType": "address", "name": "owner", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f" }, { "indexed": true, @@ -77,21 +75,21 @@ } ] }, + "chainId": 8453, "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", - "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic1": "0x0000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f", "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" }, { - "_id": "6633fa805a8173211c1ff697", "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", "data": "0x", - "blockNumber": 13946572, - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionIndex": 1, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "logIndex": 1, + "blockNumber": 15682042, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionIndex": 59, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "logIndex": 174, "removed": false, - "id": "log_26433176", + "id": "log_96fa802d", "decoded": { "signature": "Transfer(address,address,uint256)", "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", @@ -102,7 +100,7 @@ "internalType": "address", "name": "from", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f" }, { "indexed": true, @@ -119,39 +117,39 @@ } ] }, + "chainId": 8453, "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic1": "0x0000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f", "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic3": "0x000000000000000000000000000000000000000000000000000000000000128b" + "topic3": "0x000000000000000000000000000000000000000000000000000000000000128e" }, { - "_id": "6633fa805a8173211c1ff698", "address": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4cecc000000000000000000000000000000000000000000000000000000000000054f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d5854387179766a6a4b6d69666f66513759675a59394a59454b76625255314b6b4a7432464d5257383256716e2f3133353900000000000000000000000000", - "blockNumber": 13946572, - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionIndex": 1, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "logIndex": 2, + "data": "0x00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ef49fa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000010000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d5854387179766a6a4b6d69666f66513759675a59394a59454b76625255314b6b4a7432464d5257383256716e2f3133363200000000000000000000000000", + "blockNumber": 15682042, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionIndex": 59, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "logIndex": 175, "removed": false, - "id": "log_029260e6", + "id": "log_fe527add", "decoded": null, - "topic0": "0x5f7d77046e4af46c54fb3bd8fac5b805df108067d24d344cd755a89e2bdf9358", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", - "topic2": "0x000000000000000000000000000000000000000000000000000000000000128b", - "topic3": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + "chainId": 8453, + "topic0": "0x79dcc9be552b6d3318d2e69e09a883f6fbeea276ef3510b92720bf38969f9cfa", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000003", + "topic2": "0x000000000000000000000000000000000000000000000000000000000000128e", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000552" }, { - "_id": "6633fa805a8173211c1ff699", "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "blockNumber": 13946572, - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionIndex": 1, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "logIndex": 3, + "blockNumber": 15682042, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionIndex": 59, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "logIndex": 176, "removed": false, - "id": "log_77533d21", + "id": "log_4a445bc7", "decoded": { "signature": "ApprovalForAll(address,address,bool)", "signature_with_arg_names": "ApprovalForAll(address indexed owner,address indexed operator,bool approved)", @@ -162,7 +160,7 @@ "internalType": "address", "name": "owner", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f" }, { "indexed": true, @@ -180,8 +178,9 @@ } ] }, + "chainId": 8453, "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", - "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic1": "0x0000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f", "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" } ] @@ -191,9 +190,9 @@ "assetTransfers": [ { "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "from": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "from": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f", "to": "0x0000000000000000000000000000000000000000", - "tokenId": "4747", + "tokenId": "4750", "type": "erc721" } ], @@ -202,36 +201,36 @@ "action": { "callType": "delegatecall", "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0x736fa", - "input": "0xbadf7efa", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "gas": "0x7f17a", + "input": "0x9f9bd78b00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000", + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { - "gasUsed": "0x70e51", + "gasUsed": "0x7c5eb", "output": "0x0" }, "subtraces": 4, "traceAddress": [ 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x6c3a4", + "gas": "0x7762e", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122d4424a141eb144cc6f057b2ea0a99f5f3b8a0fd99be4c43b1948e5a48f863d2f", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0xe8f", "output": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" @@ -242,21 +241,21 @@ 0, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x624a0", + "gas": "0x6d593", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122d4424a141eb144cc6f057b2ea0a99f5f3b8a0fd99be4c43b1948e5a48f863d2f", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0x6bf", "output": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" @@ -267,23 +266,23 @@ 1, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "gas": "0x5fe6f", - "input": "0x80cb4fa3000000000000000000000000000000000000000000000000000000000000004000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000128b", - "to": "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424", + "gas": "0x6aea7", + "input": "0x32a8eb400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000128e", + "to": "0x099ca01b43b5bf1c310e6e6264c03876ca7ab3f0", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { - "gasUsed": "0x5f1bd", + "gasUsed": "0x6a4a3", "output": "0x0" }, "subtraces": 13, @@ -292,21 +291,21 @@ 2, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x5ad09", + "gas": "0x65625", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0xe8f", "output": "0x000000000000000000000000561a807e1d8732fe5313d4a3dc406d74e7b9d7eb" @@ -319,21 +318,21 @@ 0, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x561a807e1d8732fe5313d4a3dc406d74e7b9d7eb", - "gas": "0x57fca", + "gas": "0x628e6", "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08", "to": "0x7f2877aebe7a375960d3f253189b8c9c3431df52", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0x177e", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -346,21 +345,21 @@ 1, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x55c8e", + "gas": "0x605aa", "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0xe8f", "output": "0x000000000000000000000000ee8aa4f8da7f81be015c7715c7f0229d6711032a" @@ -373,21 +372,21 @@ 2, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0xee8aa4f8da7f81be015c7715c7f0229d6711032a", - "gas": "0x52fdd", + "gas": "0x5d8f9", "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", "to": "0x2ed3e686ac564e3470ce710c3a13143d7c59f180", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0x9db", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -400,21 +399,21 @@ 3, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x52207", + "gas": "0x5cb23", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0xe8f", "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" @@ -427,21 +426,21 @@ 4, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x4fb6f", + "gas": "0x5a456", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0x6bf", "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" @@ -454,24 +453,24 @@ 5, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0x4f1a5", - "input": "0x6352211e000000000000000000000000000000000000000000000000000000000000128b", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "gas": "0x59a8c", + "input": "0x6352211e000000000000000000000000000000000000000000000000000000000000128e", + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { - "gasUsed": "0x2e9", - "output": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + "gasUsed": "0x2ff", + "output": "0x0000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f" }, "subtraces": 0, "traceAddress": [ @@ -481,21 +480,21 @@ 6, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x4e99a", + "gas": "0x5926c", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0x6bf", "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" @@ -508,24 +507,24 @@ 7, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0x4dfd0", - "input": "0xc87b56dd000000000000000000000000000000000000000000000000000000000000128b", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "gas": "0x588a2", + "input": "0xc87b56dd000000000000000000000000000000000000000000000000000000000000128e", + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { - "gasUsed": "0xa3c9", - "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d5854387179766a6a4b6d69666f66513759675a59394a59454b76625255314b6b4a7432464d5257383256716e2f3133353900000000000000000000000000" + "gasUsed": "0xa3ab", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d5854387179766a6a4b6d69666f66513759675a59394a59454b76625255314b6b4a7432464d5257383256716e2f3133363200000000000000000000000000" }, "subtraces": 0, "traceAddress": [ @@ -535,21 +534,21 @@ 8, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0xde96", + "gas": "0xdee4", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0x6bf", "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" @@ -562,24 +561,24 @@ 9, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0xd4bd", - "input": "0x908be19c000000000000000000000000000000000000000000000000000000000000128b", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "gas": "0xd50b", + "input": "0x908be19c000000000000000000000000000000000000000000000000000000000000128e", + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { - "gasUsed": "0xed1", - "output": "0x000000000000000000000000000000000000000000000000000000000000128b000000000000000000000000000000000000000000000000000000000000054f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001" + "gasUsed": "0xee7", + "output": "0x000000000000000000000000000000000000000000000000000000000000128e00000000000000000000000000000000000000000000000000000000000005520000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ @@ -589,21 +588,21 @@ 10, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0xc0c5", + "gas": "0xc0fe", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0x6bf", "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" @@ -616,23 +615,23 @@ 11, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0xb67d", - "input": "0x42966c68000000000000000000000000000000000000000000000000000000000000128b", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "gas": "0xb6b6", + "input": "0x42966c68000000000000000000000000000000000000000000000000000000000000128e", + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { - "gasUsed": "0x97e5", + "gasUsed": "0x97fb", "output": "0x0" }, "subtraces": 0, @@ -643,21 +642,21 @@ 12, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" }, { "action": { "callType": "delegatecall", "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x3866", + "gas": "0x3b39", "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122d4424a141eb144cc6f057b2ea0a99f5f3b8a0fd99be4c43b1948e5a48f863d2f", "to": "0x11431300f25d88332d6ca50279fcb82220793379", "value": "0x0" }, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "blockNumber": 13946572, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "blockNumber": 15682042, "result": { "gasUsed": "0x6bf", "output": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" @@ -668,42 +667,42 @@ 3, 0 ], - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionPosition": 1, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionPosition": 59, "type": "call" } ], "neighbor": { - "address": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "address": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f", "neighbor": "0x0000000000000000000000000000000000000000" }, "errors": [], "parties": [ - "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f", "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "0xaccc7fd86604f62f16013eb8921704bab3c16841", "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", "0x11431300f25d88332d6ca50279fcb82220793379", "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424", + "0x099ca01b43b5bf1c310e6e6264c03876ca7ab3f0", "0x561a807e1d8732fe5313d4a3dc406d74e7b9d7eb", "0x7f2877aebe7a375960d3f253189b8c9c3431df52", "0xee8aa4f8da7f81be015c7715c7f0229d6711032a", "0x2ed3e686ac564e3470ce710c3a13143d7c59f180", "0x0000000000000000000000000000000000000000", - "0x12f885808f616b8056a37be00fdd029e1c59ab08-4747" + "0x12f885808f616b8056a37be00fdd029e1c59ab08-4750" ], - "sigHash": "0xbadf7efa", + "sigHash": "0x9f9bd78b", "internalSigHashes": [ { - "from": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "from": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f", "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "sigHash": "0xbadf7efa" + "sigHash": "0x9f9bd78b" }, { "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "sigHash": "0xbadf7efa" + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", + "sigHash": "0x9f9bd78b" }, { "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", @@ -728,12 +727,12 @@ { "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", "to": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "sigHash": "0x80cb4fa3" + "sigHash": "0x32a8eb40" }, { "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424", - "sigHash": "0x80cb4fa3" + "to": "0x099ca01b43b5bf1c310e6e6264c03876ca7ab3f0", + "sigHash": "0x32a8eb40" }, { "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", @@ -802,7 +801,7 @@ }, { "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", "sigHash": "0x6352211e" }, { @@ -822,7 +821,7 @@ }, { "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", "sigHash": "0xc87b56dd" }, { @@ -842,7 +841,7 @@ }, { "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", "sigHash": "0x908be19c" }, { @@ -862,7 +861,7 @@ }, { "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "to": "0xaccc7fd86604f62f16013eb8921704bab3c16841", "sigHash": "0x42966c68" }, { @@ -876,21 +875,20 @@ "sigHash": "0xe95a7151" } ], - "timestamp": 1714682491, - "baseFeePerGas": 92748173, - "transactionFee": "1357308205188164", + "timestamp": 1718153431, + "baseFeePerGas": 2946733, + "transactionFee": "1582836735744", "logs": [ { - "_id": "6633fa805a8173211c1ff696", "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", "data": "0x0000000000000000000000000000000000000000000000000000000000000001", - "blockNumber": 13946572, - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionIndex": 1, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "logIndex": 0, + "blockNumber": 15682042, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionIndex": 59, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "logIndex": 173, "removed": false, - "id": "log_4b9db986", + "id": "log_ab3983cf", "decoded": { "signature": "ApprovalForAll(address,address,bool)", "signature_with_arg_names": "ApprovalForAll(address indexed owner,address indexed operator,bool approved)", @@ -901,7 +899,7 @@ "internalType": "address", "name": "owner", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f" }, { "indexed": true, @@ -919,21 +917,21 @@ } ] }, + "chainId": 8453, "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", - "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic1": "0x0000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f", "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" }, { - "_id": "6633fa805a8173211c1ff697", "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", "data": "0x", - "blockNumber": 13946572, - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionIndex": 1, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "logIndex": 1, + "blockNumber": 15682042, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionIndex": 59, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "logIndex": 174, "removed": false, - "id": "log_26433176", + "id": "log_96fa802d", "decoded": { "signature": "Transfer(address,address,uint256)", "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", @@ -944,7 +942,7 @@ "internalType": "address", "name": "from", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f" }, { "indexed": true, @@ -961,39 +959,39 @@ } ] }, + "chainId": 8453, "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic1": "0x0000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f", "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic3": "0x000000000000000000000000000000000000000000000000000000000000128b" + "topic3": "0x000000000000000000000000000000000000000000000000000000000000128e" }, { - "_id": "6633fa805a8173211c1ff698", "address": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4cecc000000000000000000000000000000000000000000000000000000000000054f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d5854387179766a6a4b6d69666f66513759675a59394a59454b76625255314b6b4a7432464d5257383256716e2f3133353900000000000000000000000000", - "blockNumber": 13946572, - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionIndex": 1, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "logIndex": 2, + "data": "0x00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ef49fa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000010000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d5854387179766a6a4b6d69666f66513759675a59394a59454b76625255314b6b4a7432464d5257383256716e2f3133363200000000000000000000000000", + "blockNumber": 15682042, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionIndex": 59, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "logIndex": 175, "removed": false, - "id": "log_029260e6", + "id": "log_fe527add", "decoded": null, - "topic0": "0x5f7d77046e4af46c54fb3bd8fac5b805df108067d24d344cd755a89e2bdf9358", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", - "topic2": "0x000000000000000000000000000000000000000000000000000000000000128b", - "topic3": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + "chainId": 8453, + "topic0": "0x79dcc9be552b6d3318d2e69e09a883f6fbeea276ef3510b92720bf38969f9cfa", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000003", + "topic2": "0x000000000000000000000000000000000000000000000000000000000000128e", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000552" }, { - "_id": "6633fa805a8173211c1ff699", "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "blockNumber": 13946572, - "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", - "transactionIndex": 1, - "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", - "logIndex": 3, + "blockNumber": 15682042, + "transactionHash": "0x318914d63159ffb3e888310d75cc7b02cde1bf75ea83f45bd1b6dc12ee3a3393", + "transactionIndex": 59, + "blockHash": "0x21cd1b84856ad23e7f24bd6571df8e2c5249f07eb125814584085b05355fe570", + "logIndex": 176, "removed": false, - "id": "log_77533d21", + "id": "log_4a445bc7", "decoded": { "signature": "ApprovalForAll(address,address,bool)", "signature_with_arg_names": "ApprovalForAll(address indexed owner,address indexed operator,bool approved)", @@ -1004,7 +1002,7 @@ "internalType": "address", "name": "owner", "type": "address", - "decoded": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + "decoded": "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f" }, { "indexed": true, @@ -1022,18 +1020,19 @@ } ] }, + "chainId": 8453, "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", - "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic1": "0x0000000000000000000000009a37e57d177c5ff8817b55da36f2a2b3532cde3f", "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" } ], "netAssetTransfers": { - "0x18f33cef45817c428d98c4e188a770191fdd4b79": { + "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f": { "received": [], "sent": [ { "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "tokenId": "4747", + "tokenId": "4750", "type": "erc721" } ] @@ -1042,9 +1041,9 @@ "received": [ { "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "tokenId": "4747", + "tokenId": "4750", "type": "erc721", - "imageUrl": "https://api-base.reservoir.tools/redirect/tokens/0x12f885808f616b8056a37be00fdd029e1c59ab08:4747/image/v1?imageSize=small" + "imageUrl": "https://api-base.reservoir.tools/redirect/tokens/0x12f885808f616b8056a37be00fdd029e1c59ab08:4750/image/v1?imageSize=small" } ], "sent": [] @@ -1053,12 +1052,12 @@ "pseudotransactions": [], "contractsCreated": [], "enrichedParties": { - "0x18f33cef45817c428d98c4e188a770191fdd4b79": [ + "0x9a37e57d177c5ff8817b55da36f2a2b3532cde3f": [ { "chainId": 0, "isContract": false, "ensNew": { - "handle": "calebguy.eth", + "handle": null, "avatar": null }, "bns": { @@ -1066,9 +1065,9 @@ "avatar": null }, "farcaster": { - "handle": "calebguy", - "avatar": "https://i.seadn.io/gcs/files/2ff994b1b3a9333d342a0422f35c2556.jpg?w=500&auto=format", - "fid": 18470 + "handle": null, + "avatar": null, + "fid": null } } ], @@ -1081,7 +1080,7 @@ "isContract": true, "tokenStandard": "erc721", "imgUrl": "", - "decimals": "", + "decimals": 0, "symbol": "CXYZSP", "ensNew": { "handle": null, @@ -1098,7 +1097,7 @@ } } ], - "0x1b4bc6e81923de47258c91856d47cc9879735b3a": [ + "0xaccc7fd86604f62f16013eb8921704bab3c16841": [ { "chainId": 0, "isContract": false, @@ -1171,10 +1170,13 @@ "handle": null, "avatar": null, "fid": null + }, + "label": { + "public": "Pack Activation Source" } } ], - "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424": [ + "0x099ca01b43b5bf1c310e6e6264c03876ca7ab3f0": [ { "chainId": 0, "isContract": false, @@ -1277,7 +1279,7 @@ }, "isContract": true, "imgUrl": "", - "decimals": "", + "decimals": 0, "symbol": "", "ensNew": { "handle": null, @@ -1300,7 +1302,7 @@ }, "isContract": true, "imgUrl": "", - "decimals": "", + "decimals": 0, "symbol": "", "ensNew": { "handle": null, @@ -1323,7 +1325,7 @@ }, "isContract": true, "imgUrl": "", - "decimals": "", + "decimals": 0, "symbol": "", "ensNew": { "handle": null, @@ -1346,7 +1348,7 @@ }, "isContract": true, "imgUrl": "", - "decimals": "", + "decimals": 0, "symbol": "", "ensNew": { "handle": null, @@ -1365,11 +1367,11 @@ ] }, "assetsEnriched": { - "0x12f885808f616b8056a37be00fdd029e1c59ab08-4747": { + "0x12f885808f616b8056a37be00fdd029e1c59ab08-4750": { "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "tokenId": "4747", + "tokenId": "4750", "type": "erc721", - "imageUrl": "https://api-base.reservoir.tools/redirect/tokens/0x12f885808f616b8056a37be00fdd029e1c59ab08:4747/image/v1?imageSize=small" + "imageUrl": "https://api-base.reservoir.tools/redirect/tokens/0x12f885808f616b8056a37be00fdd029e1c59ab08:4750/image/v1?imageSize=small" } } } \ No newline at end of file diff --git a/src/contextualizers/test/transactions/goldSource-0x3374f5f4.json b/src/contextualizers/test/transactions/goldSource-0x3374f5f4.json deleted file mode 100644 index 813d07f9..00000000 --- a/src/contextualizers/test/transactions/goldSource-0x3374f5f4.json +++ /dev/null @@ -1,1375 +0,0 @@ -{ - "_id": "6633140be8d0d1bb9954e371", - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "from": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "gas": 551562, - "gasPrice": "23809925", - "maxFeePerGas": "28985512", - "maxPriorityFeePerGas": "1000000", - "hash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "input": "0xbadf7efa", - "nonce": 0, - "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "transactionIndex": 31, - "value": "0", - "type": 2, - "accessList": [], - "chainId": 8453, - "v": "0x0", - "r": "0xc0198ced7bd332d5230a781f9281c2215709f5ecc97b6b9ca739c51ebc510bd8", - "s": "0x7563fcc4773edc86466a8e7d10b44ac48de2a0bc5ec5c8cd07f0e5c9bd035dfb", - "yParity": "0x0", - "receipt": { - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "contractAddress": null, - "cumulativeGasUsed": 3969556, - "effectiveGasPrice": 23809925, - "from": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "gasUsed": 482792, - "l1Fee": "0x22de8b28d", - "l1GasPrice": "0x11365781c", - "l1GasUsed": "0x730", - "logsBloom": "0x00000000000000000000020000000020000000000000010100000000000000000001000000000040000000000000000000000000000800000000000000040000000000000000000000000008000000000000000000040000000000000000000002000200020000000000000000000800000000000400000010000010000000000000000000000000000000000000000000000000040000000000000000000000000000000000024000000000000000000000004000000000000000000000000000000002000000080000000000800000800000000000000000000000001060000000200800000000000000000000000000000000000000000000000000000000", - "status": true, - "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionIndex": 31, - "type": "0x2", - "logs": [ - { - "_id": "6633140be8d0d1bb9954e26b", - "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "data": "0x0000000000000000000000000000000000000000000000000000000000000001", - "blockNumber": 13917073, - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionIndex": 31, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "logIndex": 84, - "removed": false, - "id": "log_ab7ce7e2", - "decoded": { - "signature": "ApprovalForAll(address,address,bool)", - "signature_with_arg_names": "ApprovalForAll(address indexed owner,address indexed operator,bool approved)", - "name": "ApprovalForAll", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "owner", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": true, - "internalType": "address", - "name": "operator", - "type": "address", - "decoded": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91" - }, - { - "indexed": false, - "internalType": "bool", - "name": "approved", - "type": "bool", - "decoded": true - } - ] - }, - "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", - "topic1": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" - }, - { - "_id": "6633140be8d0d1bb9954e26c", - "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "data": "0x", - "blockNumber": 13917073, - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionIndex": 31, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "logIndex": 85, - "removed": false, - "id": "log_97b9959f", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic3": "0x000000000000000000000000000000000000000000000000000000000000128a" - }, - { - "_id": "6633140be8d0d1bb9954e26d", - "address": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d45b9100000000000000000000000000000000000000000000000000000000000003ab0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d53686a6863786f76684a474169673859676e633263764c744e7446583274687a6b77586755596873756d4b592f3933390000000000000000000000000000", - "blockNumber": 13917073, - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionIndex": 31, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "logIndex": 86, - "removed": false, - "id": "log_d9f36aa7", - "decoded": null, - "topic0": "0x5f7d77046e4af46c54fb3bd8fac5b805df108067d24d344cd755a89e2bdf9358", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000001", - "topic2": "0x000000000000000000000000000000000000000000000000000000000000128a", - "topic3": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "_id": "6633140be8d0d1bb9954e26e", - "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "blockNumber": 13917073, - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionIndex": 31, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "logIndex": 87, - "removed": false, - "id": "log_dc509b9a", - "decoded": { - "signature": "ApprovalForAll(address,address,bool)", - "signature_with_arg_names": "ApprovalForAll(address indexed owner,address indexed operator,bool approved)", - "name": "ApprovalForAll", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "owner", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": true, - "internalType": "address", - "name": "operator", - "type": "address", - "decoded": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91" - }, - { - "indexed": false, - "internalType": "bool", - "name": "approved", - "type": "bool", - "decoded": false - } - ] - }, - "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", - "topic1": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" - } - ] - }, - "decoded": null, - "pseudoTransactions": [], - "assetTransfers": [ - { - "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "from": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "to": "0x0000000000000000000000000000000000000000", - "tokenId": "4746", - "type": "erc721" - } - ], - "delegateCalls": [ - { - "action": { - "callType": "delegatecall", - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0x7e53c", - "input": "0xbadf7efa", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x7b9e5", - "output": "0x0" - }, - "subtraces": 4, - "traceAddress": [ - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x76c7f", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122d4424a141eb144cc6f057b2ea0a99f5f3b8a0fd99be4c43b1948e5a48f863d2f", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0xe8f", - "output": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 0, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x6cd7b", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122d4424a141eb144cc6f057b2ea0a99f5f3b8a0fd99be4c43b1948e5a48f863d2f", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x6bf", - "output": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 1, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "gas": "0x6a74a", - "input": "0x80cb4fa30000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000128a", - "to": "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x69d51", - "output": "0x0" - }, - "subtraces": 13, - "traceAddress": [ - 0, - 2, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x650a7", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0xe8f", - "output": "0x000000000000000000000000561a807e1d8732fe5313d4a3dc406d74e7b9d7eb" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 0, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x561a807e1d8732fe5313d4a3dc406d74e7b9d7eb", - "gas": "0x62369", - "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x7f2877aebe7a375960d3f253189b8c9c3431df52", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x177e", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 1, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x6002d", - "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0xe8f", - "output": "0x000000000000000000000000ee8aa4f8da7f81be015c7715c7f0229d6711032a" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 2, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0xee8aa4f8da7f81be015c7715c7f0229d6711032a", - "gas": "0x5d37c", - "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", - "to": "0x2ed3e686ac564e3470ce710c3a13143d7c59f180", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x9db", - "output": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 3, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x5c5a5", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0xe8f", - "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 4, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x55e54", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x6bf", - "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 5, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0x5548a", - "input": "0x6352211e000000000000000000000000000000000000000000000000000000000000128a", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x2e9", - "output": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 6, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x54c7e", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x6bf", - "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 7, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0x542b5", - "input": "0xc87b56dd000000000000000000000000000000000000000000000000000000000000128a", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0xa37d", - "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d53686a6863786f76684a474169673859676e633263764c744e7446583274687a6b77586755596873756d4b592f3933390000000000000000000000000000" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 8, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x1010b", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x6bf", - "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 9, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0xf732", - "input": "0x908be19c000000000000000000000000000000000000000000000000000000000000128a", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0xed1", - "output": "0x000000000000000000000000000000000000000000000000000000000000128a00000000000000000000000000000000000000000000000000000000000003ab0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 10, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0xe33a", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x6bf", - "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 11, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "gas": "0xd8f1", - "input": "0x42966c68000000000000000000000000000000000000000000000000000000000000128a", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0xbe2d", - "output": "0x0" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 2, - 0, - 12, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - }, - { - "action": { - "callType": "delegatecall", - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "gas": "0x3aff", - "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122d4424a141eb144cc6f057b2ea0a99f5f3b8a0fd99be4c43b1948e5a48f863d2f", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "value": "0x0" - }, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "blockNumber": 13917073, - "result": { - "gasUsed": "0x6bf", - "output": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" - }, - "subtraces": 0, - "traceAddress": [ - 0, - 3, - 0 - ], - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionPosition": 31, - "type": "call" - } - ], - "neighbor": { - "address": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "neighbor": "0x0000000000000000000000000000000000000000" - }, - "errors": [], - "parties": [ - "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "0x11431300f25d88332d6ca50279fcb82220793379", - "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424", - "0x561a807e1d8732fe5313d4a3dc406d74e7b9d7eb", - "0x7f2877aebe7a375960d3f253189b8c9c3431df52", - "0xee8aa4f8da7f81be015c7715c7f0229d6711032a", - "0x2ed3e686ac564e3470ce710c3a13143d7c59f180", - "0x0000000000000000000000000000000000000000", - "0x12f885808f616b8056a37be00fdd029e1c59ab08-4746" - ], - "sigHash": "0xbadf7efa", - "internalSigHashes": [ - { - "from": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7", - "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "sigHash": "0xbadf7efa" - }, - { - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "sigHash": "0xbadf7efa" - }, - { - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - }, - { - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - }, - { - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "sigHash": "0x80cb4fa3" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424", - "sigHash": "0x80cb4fa3" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x561a807e1d8732fe5313d4a3dc406d74e7b9d7eb", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0x561a807e1d8732fe5313d4a3dc406d74e7b9d7eb", - "to": "0x7f2877aebe7a375960d3f253189b8c9c3431df52", - "sigHash": "0x3d5da9e2" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0xee8aa4f8da7f81be015c7715c7f0229d6711032a", - "sigHash": "0xadd88400" - }, - { - "from": "0xee8aa4f8da7f81be015c7715c7f0229d6711032a", - "to": "0x2ed3e686ac564e3470ce710c3a13143d7c59f180", - "sigHash": "0xadd88400" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "sigHash": "0x6352211e" - }, - { - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "sigHash": "0x6352211e" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "sigHash": "0xc87b56dd" - }, - { - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "sigHash": "0xc87b56dd" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "sigHash": "0x908be19c" - }, - { - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "sigHash": "0x908be19c" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - }, - { - "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "sigHash": "0x42966c68" - }, - { - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", - "sigHash": "0x42966c68" - }, - { - "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "to": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "sigHash": "0xe95a7151" - }, - { - "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", - "to": "0x11431300f25d88332d6ca50279fcb82220793379", - "sigHash": "0xe95a7151" - } - ], - "timestamp": 1714623493, - "baseFeePerGas": 22809925, - "transactionFee": "11495241310600", - "logs": [ - { - "_id": "6633140be8d0d1bb9954e26b", - "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "data": "0x0000000000000000000000000000000000000000000000000000000000000001", - "blockNumber": 13917073, - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionIndex": 31, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "logIndex": 84, - "removed": false, - "id": "log_ab7ce7e2", - "decoded": { - "signature": "ApprovalForAll(address,address,bool)", - "signature_with_arg_names": "ApprovalForAll(address indexed owner,address indexed operator,bool approved)", - "name": "ApprovalForAll", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "owner", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": true, - "internalType": "address", - "name": "operator", - "type": "address", - "decoded": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91" - }, - { - "indexed": false, - "internalType": "bool", - "name": "approved", - "type": "bool", - "decoded": true - } - ] - }, - "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", - "topic1": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" - }, - { - "_id": "6633140be8d0d1bb9954e26c", - "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "data": "0x", - "blockNumber": 13917073, - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionIndex": 31, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "logIndex": 85, - "removed": false, - "id": "log_97b9959f", - "decoded": { - "signature": "Transfer(address,address,uint256)", - "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", - "name": "Transfer", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address", - "decoded": "0x0000000000000000000000000000000000000000" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "value", - "type": "uint256" - } - ] - }, - "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "topic1": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", - "topic3": "0x000000000000000000000000000000000000000000000000000000000000128a" - }, - { - "_id": "6633140be8d0d1bb9954e26d", - "address": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", - "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d45b9100000000000000000000000000000000000000000000000000000000000003ab0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d53686a6863786f76684a474169673859676e633263764c744e7446583274687a6b77586755596873756d4b592f3933390000000000000000000000000000", - "blockNumber": 13917073, - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionIndex": 31, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "logIndex": 86, - "removed": false, - "id": "log_d9f36aa7", - "decoded": null, - "topic0": "0x5f7d77046e4af46c54fb3bd8fac5b805df108067d24d344cd755a89e2bdf9358", - "topic1": "0x0000000000000000000000000000000000000000000000000000000000000001", - "topic2": "0x000000000000000000000000000000000000000000000000000000000000128a", - "topic3": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "_id": "6633140be8d0d1bb9954e26e", - "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "data": "0x0000000000000000000000000000000000000000000000000000000000000000", - "blockNumber": 13917073, - "transactionHash": "0x3374d894306c96c4ee9ce4aebaf01938cd15a90b3fe34467b9a84cb8b208f5f4", - "transactionIndex": 31, - "blockHash": "0x720cd5082acf7a1bcf69e40ec5b1aa82e843ba71a69669fd8c1fff0a74a55685", - "logIndex": 87, - "removed": false, - "id": "log_dc509b9a", - "decoded": { - "signature": "ApprovalForAll(address,address,bool)", - "signature_with_arg_names": "ApprovalForAll(address indexed owner,address indexed operator,bool approved)", - "name": "ApprovalForAll", - "decoded": [ - { - "indexed": true, - "internalType": "address", - "name": "owner", - "type": "address", - "decoded": "0xb374fdd2951a65e827dab88f692a6819dc43c6d7" - }, - { - "indexed": true, - "internalType": "address", - "name": "operator", - "type": "address", - "decoded": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91" - }, - { - "indexed": false, - "internalType": "bool", - "name": "approved", - "type": "bool", - "decoded": false - } - ] - }, - "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", - "topic1": "0x000000000000000000000000b374fdd2951a65e827dab88f692a6819dc43c6d7", - "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" - } - ], - "netAssetTransfers": { - "0xb374fdd2951a65e827dab88f692a6819dc43c6d7": { - "received": [], - "sent": [ - { - "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "tokenId": "4746", - "type": "erc721" - } - ] - }, - "0x0000000000000000000000000000000000000000": { - "received": [ - { - "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "tokenId": "4746", - "type": "erc721", - "imageUrl": "https://api-base.reservoir.tools/redirect/tokens/0x12f885808f616b8056a37be00fdd029e1c59ab08:4746/image/v1?imageSize=small" - } - ], - "sent": [] - } - }, - "pseudotransactions": [], - "contractsCreated": [], - "enrichedParties": { - "0xb374fdd2951a65e827dab88f692a6819dc43c6d7": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x12f885808f616b8056a37be00fdd029e1c59ab08": [ - { - "chainId": 8453, - "label": { - "public": "CropXYZ Starter Packs" - }, - "isContract": true, - "tokenStandard": "erc721", - "imgUrl": "", - "decimals": "", - "symbol": "CXYZSP", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x1b4bc6e81923de47258c91856d47cc9879735b3a": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x11431300f25d88332d6ca50279fcb82220793379": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0xde1bc6e9164af5a48c45111b811c61f11ce58d91": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x561a807e1d8732fe5313d4a3dc406d74e7b9d7eb": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x7f2877aebe7a375960d3f253189b8c9c3431df52": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0xee8aa4f8da7f81be015c7715c7f0229d6711032a": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x2ed3e686ac564e3470ce710c3a13143d7c59f180": [ - { - "chainId": 0, - "isContract": false, - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ], - "0x0000000000000000000000000000000000000000": [ - { - "chainId": 11155111, - "label": { - "public": "Null: 0x000…000" - }, - "isContract": true, - "imgUrl": "", - "decimals": "", - "symbol": "", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - }, - { - "chainId": 5, - "label": { - "public": "Null: 0x000…000" - }, - "isContract": true, - "imgUrl": "", - "decimals": "", - "symbol": "", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - }, - { - "chainId": 10, - "label": { - "public": "Null: 0x000…000" - }, - "isContract": true, - "imgUrl": "", - "decimals": "", - "symbol": "", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - }, - { - "chainId": 8453, - "label": { - "public": "Null: 0x000…000" - }, - "isContract": true, - "imgUrl": "", - "decimals": "", - "symbol": "", - "ensNew": { - "handle": null, - "avatar": null - }, - "bns": { - "handle": null, - "avatar": null - }, - "farcaster": { - "handle": null, - "avatar": null, - "fid": null - } - } - ] - }, - "assetsEnriched": { - "0x12f885808f616b8056a37be00fdd029e1c59ab08-4746": { - "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", - "tokenId": "4746", - "type": "erc721", - "imageUrl": "https://api-base.reservoir.tools/redirect/tokens/0x12f885808f616b8056a37be00fdd029e1c59ab08:4746/image/v1?imageSize=small" - } - } -} \ No newline at end of file diff --git a/src/types/contextAction/protocolContextAction.ts b/src/types/contextAction/protocolContextAction.ts index 7a9e17ac..908b878e 100644 --- a/src/types/contextAction/protocolContextAction.ts +++ b/src/types/contextAction/protocolContextAction.ts @@ -227,14 +227,20 @@ export type BoomboxContextAction = | BoomboxContextActionEnum.SIGNED | BoomboxContextActionEnum.DISTRIBUTED; -export enum GoldContextActionEnum { +export enum CropXyzContextActionEnum { ACTIVATED_A_STARTER_PACK = 'ACTIVATED_A_STARTER_PACK', RECEIVED = 'RECEIVED', + HARVESTED_PLOT = 'HARVESTED_PLOT', + CLEARED_HARVEST = 'CLEARED_HARVEST', + STAKED_CROP = 'STAKED_CROP', } -export type GoldContextAction = - | GoldContextActionEnum.ACTIVATED_A_STARTER_PACK - | GoldContextActionEnum.RECEIVED; +export type CropXyzContextAction = + | CropXyzContextActionEnum.ACTIVATED_A_STARTER_PACK + | CropXyzContextActionEnum.RECEIVED + | CropXyzContextActionEnum.HARVESTED_PLOT + | CropXyzContextActionEnum.CLEARED_HARVEST + | CropXyzContextActionEnum.STAKED_CROP; export enum Protocols { WETH = 'WETH', @@ -273,4 +279,4 @@ export type ProtocolContextAction = | DisperseAction | BNSContextAction | BoomboxContextAction - | GoldContextAction; + | CropXyzContextAction;