From dee906215b03e62140594e348732a21d04095d9e Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 6 May 2024 10:48:10 -0700 Subject: [PATCH 01/10] feat: add gold source contextualizer --- src/contextualizers/protocol/gold/README.md | 5 + .../gold/abis/PackActivationDestination.ts | 231 ++++++++++++++++++ .../gold/abis/PackActivationSource.ts | 65 +++++ .../protocol/gold/constants.ts | 10 + .../protocol/gold/destination.spec.ts | 60 +++++ .../protocol/gold/destination.ts | 110 +++++++++ src/contextualizers/protocol/gold/index.ts | 11 + .../protocol/gold/source.spec.ts | 45 ++++ src/contextualizers/protocol/gold/source.ts | 108 ++++++++ src/helpers/constants.ts | 1 + .../contextAction/protocolContextAction.ts | 10 +- 11 files changed, 655 insertions(+), 1 deletion(-) create mode 100644 src/contextualizers/protocol/gold/README.md create mode 100644 src/contextualizers/protocol/gold/abis/PackActivationDestination.ts create mode 100644 src/contextualizers/protocol/gold/abis/PackActivationSource.ts create mode 100644 src/contextualizers/protocol/gold/constants.ts create mode 100644 src/contextualizers/protocol/gold/destination.spec.ts create mode 100644 src/contextualizers/protocol/gold/destination.ts create mode 100644 src/contextualizers/protocol/gold/index.ts create mode 100644 src/contextualizers/protocol/gold/source.spec.ts create mode 100644 src/contextualizers/protocol/gold/source.ts diff --git a/src/contextualizers/protocol/gold/README.md b/src/contextualizers/protocol/gold/README.md new file mode 100644 index 00000000..ee947cb9 --- /dev/null +++ b/src/contextualizers/protocol/gold/README.md @@ -0,0 +1,5 @@ +### Reservoir contract + +| Contract | Address | Chain ID | +| --------- | ------------------------------------------------------------------------------------------------------------------- | -------- | +| Reservoir | [0xf70da97812cb96acdf810712aa562db8dfa3dbef](https://www.onceupon.xyz/0xf70da97812cb96acdf810712aa562db8dfa3dbef:0) | Multiple | diff --git a/src/contextualizers/protocol/gold/abis/PackActivationDestination.ts b/src/contextualizers/protocol/gold/abis/PackActivationDestination.ts new file mode 100644 index 00000000..02590ea2 --- /dev/null +++ b/src/contextualizers/protocol/gold/abis/PackActivationDestination.ts @@ -0,0 +1,231 @@ +const abi = [ + { + inputs: [ + { + internalType: 'uint256', + name: 'activationSourceNonce', + type: 'uint256', + }, + { + internalType: 'string', + name: 'plotTypeNameEntered', + type: 'string', + }, + { + internalType: 'string', + name: 'cropName', + type: 'string', + }, + { + internalType: 'uint8[]', + name: 'randomListingGrowthRate', + type: 'uint8[]', + }, + { + internalType: 'uint8[]', + name: 'randomListingYield', + type: 'uint8[]', + }, + { + internalType: 'address', + name: 'activator', + type: 'address', + }, + { + internalType: 'uint8', + name: 'season', + type: 'uint8', + }, + { + internalType: 'uint8', + name: 'size', + type: 'uint8', + }, + { + internalType: 'uint8', + name: 'tileArea', + type: 'uint8', + }, + { + internalType: 'uint8', + name: 'fertilizer', + type: 'uint8', + }, + { + internalType: 'uint8', + name: 'growthRateIndex', + type: 'uint8', + }, + { + internalType: 'uint8', + name: 'yieldIndex', + type: 'uint8', + }, + ], + name: 'activateDestination', + outputs: [], + stateMutability: 'nonpayable', + type: 'function', + }, + { + anonymous: false, + inputs: [ + { + indexed: false, + internalType: 'uint256[]', + name: 'plotIds', + type: 'uint256[]', + }, + { + indexed: true, + internalType: 'uint256', + name: 'activationSourceNonce', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint256', + name: 'activationDestinationNonce', + type: 'uint256', + }, + { + indexed: false, + internalType: 'address', + name: 'admin', + type: 'address', + }, + { + indexed: true, + internalType: 'address', + name: 'activator', + type: 'address', + }, + { + indexed: false, + internalType: 'uint8', + name: 'season', + type: 'uint8', + }, + { + indexed: false, + internalType: 'uint8', + name: 'size', + type: 'uint8', + }, + { + indexed: false, + internalType: 'uint8', + name: 'tileArea', + type: 'uint8', + }, + { + indexed: false, + internalType: 'uint8', + name: 'fertilizer', + type: 'uint8', + }, + ], + name: 'ActivatedStarterPackOnDestination', + type: 'event', + }, + { + anonymous: false, + inputs: [ + { + indexed: false, + internalType: 'address', + name: 'minter', + type: 'address', + }, + { + indexed: true, + internalType: 'uint256', + name: 'id', + type: 'uint256', + }, + { + indexed: true, + internalType: 'address', + name: 'to', + type: 'address', + }, + { + indexed: false, + internalType: 'uint8', + name: 'season', + type: 'uint8', + }, + { + indexed: false, + internalType: 'string', + name: 'plotTypeName', + type: 'string', + }, + { + indexed: true, + internalType: 'uint256', + name: 'plotTypeId', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint8', + name: 'width', + type: 'uint8', + }, + { + indexed: false, + internalType: 'uint8', + name: 'height', + type: 'uint8', + }, + { + indexed: false, + internalType: 'uint8', + name: 'tileArea', + type: 'uint8', + }, + { + indexed: false, + internalType: 'uint8', + name: 'baseGrowthSpeed', + type: 'uint8', + }, + { + indexed: false, + internalType: 'uint8', + name: 'baseYield', + type: 'uint8', + }, + ], + name: 'MintedPlotPackActivate', + type: 'event', + }, + { + anonymous: false, + inputs: [ + { + indexed: true, + internalType: 'address', + name: 'gameAddress', + type: 'address', + }, + { + indexed: true, + internalType: 'address', + name: 'account', + type: 'address', + }, + { + indexed: true, + internalType: 'uint256', + name: 'amount', + type: 'uint256', + }, + ], + name: 'GameMintedToken', + type: 'event', + }, +] as const; + +export default abi; diff --git a/src/contextualizers/protocol/gold/abis/PackActivationSource.ts b/src/contextualizers/protocol/gold/abis/PackActivationSource.ts new file mode 100644 index 00000000..3b93270c --- /dev/null +++ b/src/contextualizers/protocol/gold/abis/PackActivationSource.ts @@ -0,0 +1,65 @@ +const abi = [ + { + anonymous: false, + inputs: [ + { + indexed: false, + internalType: 'bytes32', + name: 'blockHash', + type: 'bytes32', + }, + { + indexed: false, + internalType: 'uint256', + name: 'blockNumber', + type: 'uint256', + }, + { + indexed: true, + internalType: 'uint256', + name: 'activationSourceNonce', + type: 'uint256', + }, + { + indexed: true, + internalType: 'uint256', + name: 'tokenId', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint256', + name: 'sizeSpecificTokenId', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint256', + name: 'width', + type: 'uint256', + }, + { + indexed: false, + internalType: 'uint256', + name: 'height', + type: 'uint256', + }, + { + indexed: false, + internalType: 'string', + name: 'tokenURI', + type: 'string', + }, + { + indexed: true, + internalType: 'address', + name: 'activator', + type: 'address', + }, + ], + name: 'ActivatedStarterPackOnSource', + type: 'event', + }, +] as const; + +export default abi; diff --git a/src/contextualizers/protocol/gold/constants.ts b/src/contextualizers/protocol/gold/constants.ts new file mode 100644 index 00000000..76c393e7 --- /dev/null +++ b/src/contextualizers/protocol/gold/constants.ts @@ -0,0 +1,10 @@ +import packActivationDestinationAbi from './abis/PackActivationDestination'; +import packActivationSourceAbi from './abis/PackActivationSource'; + +export const PACK_ACTIVATION_DESTINATION_CONTRACT = + '0xf70da97812cb96acdf810712aa562db8dfa3dbef'; +export const PACK_ACTIVATION_SOURCE_CONTRACT = + '0xde1bc6e9164af5a48c45111b811c61f11ce58d91'; + +export const PACK_ACTIVATION_SOURCE_ABI = packActivationSourceAbi; +export const PACK_ACTIVATION_DESTINATION_ABI = packActivationDestinationAbi; diff --git a/src/contextualizers/protocol/gold/destination.spec.ts b/src/contextualizers/protocol/gold/destination.spec.ts new file mode 100644 index 00000000..41a6d781 --- /dev/null +++ b/src/contextualizers/protocol/gold/destination.spec.ts @@ -0,0 +1,60 @@ +import { Transaction } from '../../../types'; +import { detect, generate } from './destination'; +import { containsBigInt, contextSummary } from '../../../helpers/utils'; +import bridgeZoraEnergyDestination0x7e7843df from '../../test/transactions/bridgeZoraEnergyDestination-0x7e7843df.json'; +import bridgeZoraEnergyDestination0x1edd564e from '../../test/transactions/bridgeZoraEnergyDestination-0x1edd564e.json'; +import bridgeZoraEnergyDestination0xf178e44b from '../../test/transactions/bridgeZoraEnergyDestination-0xf178e44b.json'; +import hopDestination0x0902ccb6 from '../../test/transactions/hop-destination-0x0902ccb6.json'; + +describe('Bridge Zora Energy Destination', () => { + it('Should detect transaction', () => { + const isBridgeZoraEnergyDestination1 = detect( + bridgeZoraEnergyDestination0x7e7843df as unknown as Transaction, + ); + expect(isBridgeZoraEnergyDestination1).toBe(true); + + const isBridgeZoraEnergyDestination2 = detect( + hopDestination0x0902ccb6 as unknown as Transaction, + ); + expect(isBridgeZoraEnergyDestination2).toBe(false); + + const isBridgeZoraEnergyDestination3 = detect( + bridgeZoraEnergyDestination0x1edd564e as unknown as Transaction, + ); + expect(isBridgeZoraEnergyDestination3).toBe(true); + + const isBridgeZoraEnergyDestination4 = detect( + bridgeZoraEnergyDestination0xf178e44b as unknown as Transaction, + ); + expect(isBridgeZoraEnergyDestination4).toBe(true); + }); + + it('Should generate context', () => { + const transaction1 = generate( + bridgeZoraEnergyDestination0x7e7843df as unknown as Transaction, + ); + expect(transaction1.context?.summaries?.en.title).toBe('Bridge'); + expect(contextSummary(transaction1.context)).toBe( + '0x74b78e98093f5b522a7ebdac3b994641ca7c2b20 COMPLETED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef and 0.02 ETH was transferred', + ); + expect(containsBigInt(transaction1.context)).toBe(false); + + const transaction2 = generate( + bridgeZoraEnergyDestination0x1edd564e as unknown as Transaction, + ); + expect(transaction2.context?.summaries?.en.title).toBe('Bridge'); + expect(contextSummary(transaction2.context)).toBe( + '0xc761b876e04afa1a67c76bfd8c2c7aa5a5e8e35f COMPLETED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef and 0.26754098684670663 ETH was transferred', + ); + expect(containsBigInt(transaction2.context)).toBe(false); + + const transaction3 = generate( + bridgeZoraEnergyDestination0xf178e44b as unknown as Transaction, + ); + expect(transaction3.context?.summaries?.en.title).toBe('Bridge'); + expect(contextSummary(transaction3.context)).toBe( + '0x74b78e98093f5b522a7ebdac3b994641ca7c2b20 COMPLETED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef and 19692312680620439907443 0x4ed4e862860bed51a9570b96d89af5e1b0efefed was transferred', + ); + expect(containsBigInt(transaction3.context)).toBe(false); + }); +}); diff --git a/src/contextualizers/protocol/gold/destination.ts b/src/contextualizers/protocol/gold/destination.ts new file mode 100644 index 00000000..98404282 --- /dev/null +++ b/src/contextualizers/protocol/gold/destination.ts @@ -0,0 +1,110 @@ +import { + Transaction, + AssetType, + BridgeContextActionEnum, + ContextSummaryVariableType, + ContextETHType, + ContextERC20Type, + ContextERC721Type, + ContextERC1155Type, + AssetTransfer, +} from '../../../types'; +import { BRIDGE_ZORA_ENERGY } from './constants'; + +export function contextualize(transaction: Transaction): Transaction { + const isBridgeZoraEnergy = detect(transaction); + if (!isBridgeZoraEnergy) return transaction; + + const result = generate(transaction); + return result; +} + +// Always chain id 1 through the Zora bridge UI +export function detect(transaction: Transaction): boolean { + if (transaction.from !== BRIDGE_ZORA_ENERGY || !transaction.to) { + return false; + } + + const assetSent = + transaction.assetTransfers?.filter( + (asset) => asset.from === transaction.from, + ) ?? []; + if (!assetSent.length) { + return false; + } + + return true; +} + +export function generate(transaction: Transaction): Transaction { + if (!transaction.to) return transaction; + + const assetSent = + transaction.assetTransfers?.filter( + (asset) => asset.from === transaction.from, + ) ?? []; + if (!assetSent?.length) { + return transaction; + } + const assetTransfer: AssetTransfer = assetSent[0]; + let asset: ContextSummaryVariableType; + switch (assetTransfer.type) { + case AssetType.ETH: + asset = { + type: AssetType.ETH, + value: assetTransfer.value, + unit: 'wei', + } as ContextETHType; + break; + case AssetType.ERC20: + asset = { + type: AssetType.ERC20, + token: assetTransfer.contract, + value: assetTransfer.value, + } as ContextERC20Type; + break; + case AssetType.ERC721: + asset = { + type: AssetType.ERC721, + token: assetTransfer.contract, + tokenId: assetTransfer.tokenId, + } as ContextERC721Type; + break; + case AssetType.ERC1155: + asset = { + type: AssetType.ERC1155, + token: assetTransfer.contract, + tokenId: assetTransfer.tokenId, + value: assetTransfer.value, + } as ContextERC1155Type; + break; + } + + transaction.context = { + summaries: { + category: 'MULTICHAIN', + en: { + title: `Bridge`, + default: + '[[person]][[completedACrossChainInteraction]]via[[address]]and[[asset]]was transferred', + }, + }, + variables: { + person: { + type: 'address', + value: assetTransfer.to, + }, + address: { + type: 'address', + value: transaction.from, + }, + asset, + completedACrossChainInteraction: { + type: 'contextAction', + value: BridgeContextActionEnum.COMPLETED_A_CROSS_CHAIN_INTERACTION, + }, + }, + }; + + return transaction; +} diff --git a/src/contextualizers/protocol/gold/index.ts b/src/contextualizers/protocol/gold/index.ts new file mode 100644 index 00000000..26f685f1 --- /dev/null +++ b/src/contextualizers/protocol/gold/index.ts @@ -0,0 +1,11 @@ +import { makeContextualize } from '../../../helpers/utils'; +import { contextualize as source } from './source'; +import { contextualize as destination } from './destination'; + +const children = { source, destination }; + +const contextualize = makeContextualize(children); + +export const reservoirContextualizer = { + contextualize, +}; diff --git a/src/contextualizers/protocol/gold/source.spec.ts b/src/contextualizers/protocol/gold/source.spec.ts new file mode 100644 index 00000000..8837d158 --- /dev/null +++ b/src/contextualizers/protocol/gold/source.spec.ts @@ -0,0 +1,45 @@ +import { Transaction } from '../../../types'; +import { detect, generate } from './source'; +import { containsBigInt, contextSummary } from '../../../helpers/utils'; +import bridgeZoraEnergySource0x72084c64 from '../../test/transactions/bridgeZoraEnergySource-0x72084c64.json'; +import zoraSource0xf2e656b3 from '../../test/transactions/zoraSource-0xf2e656b3.json'; +import hopSource0x8603ffab from '../../test/transactions/hop-source-0x8603ffab.json'; + +describe('Bridge Zora Energy Source', () => { + it('Should detect transaction', () => { + const isBridgeZoraEnergySource1 = detect( + bridgeZoraEnergySource0x72084c64 as unknown as Transaction, + ); + expect(isBridgeZoraEnergySource1).toBe(true); + + const isBridgeZoraEnergySource2 = detect( + hopSource0x8603ffab as unknown as Transaction, + ); + expect(isBridgeZoraEnergySource2).toBe(false); + + const isBridgeZoraEnergySource3 = detect( + zoraSource0xf2e656b3 as unknown as Transaction, + ); + expect(isBridgeZoraEnergySource3).toBe(true); + }); + + it('Should generate context', () => { + const transaction1 = generate( + bridgeZoraEnergySource0x72084c64 as unknown as Transaction, + ); + expect(transaction1.context?.summaries?.en.title).toBe('Bridge'); + expect(contextSummary(transaction1.context)).toBe( + '0x74b78e98093f5b522a7ebdac3b994641ca7c2b20 INITIATED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef', + ); + expect(containsBigInt(transaction1.context)).toBe(false); + + const transaction2 = generate( + zoraSource0xf2e656b3 as unknown as Transaction, + ); + expect(transaction2.context?.summaries?.en.title).toBe('Bridge'); + expect(contextSummary(transaction2.context)).toBe( + '0x17cd072cbd45031efc21da538c783e0ed3b25dcc INITIATED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef', + ); + expect(containsBigInt(transaction2.context)).toBe(false); + }); +}); diff --git a/src/contextualizers/protocol/gold/source.ts b/src/contextualizers/protocol/gold/source.ts new file mode 100644 index 00000000..a862f729 --- /dev/null +++ b/src/contextualizers/protocol/gold/source.ts @@ -0,0 +1,108 @@ +import { CHAIN_IDS } from '../../../helpers/constants'; +import { + Transaction, + EventLogTopics, + GoldContextActionEnum, +} from '../../../types'; +import { + PACK_ACTIVATION_SOURCE_CONTRACT, + PACK_ACTIVATION_SOURCE_ABI, +} from './constants'; +import { decodeLog } from '../../../helpers/utils'; + +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 + */ + if ( + transaction.to !== PACK_ACTIVATION_SOURCE_CONTRACT || + transaction.chainId !== CHAIN_IDS.gold + ) + return false; + + // check logs + if (!transaction.logs) return false; + const activatedStarterPackOnSourceEvent = transaction.logs.find((log) => { + const decoded = decodeLog(PACK_ACTIVATION_SOURCE_ABI, log.data, [ + log.topic0, + log.topic1, + log.topic2, + log.topic3, + ] as EventLogTopics); + + if (decoded && decoded.eventName === 'ActivatedStarterPackOnSource') { + return true; + } + + return false; + }); + + if (activatedStarterPackOnSourceEvent) return true; + + return false; +} + +export function generate(transaction: Transaction): Transaction { + if ( + transaction.to !== PACK_ACTIVATION_SOURCE_CONTRACT || + !transaction.logs || + !transaction.chainId + ) + return transaction; + + // decode ActivatedStarterPackOnSource event + let decoded; + for (const log of transaction.logs) { + decoded = decodeLog(PACK_ACTIVATION_SOURCE_ABI, log.data, [ + log.topic0, + log.topic1, + log.topic2, + log.topic3, + ] as EventLogTopics); + + if (decoded && decoded.eventName === 'ActivatedStarterPackOnSource') { + break; + } + } + if (!decoded) return transaction; + + // grab variables from decoded event + const activator = decoded.args['activator']; + + transaction.context = { + summaries: { + category: 'MULTICHAIN', + en: { + title: `Bridge`, + default: '[[activator]][[activated]]on[[chainID]]', + }, + }, + variables: { + activator: { + type: 'address', + value: activator, + }, + chainID: { + type: 'chainID', + value: transaction.chainId, + }, + activated: { + type: 'contextAction', + value: GoldContextActionEnum.ACTIVATED_A_STARTER_PACK, + }, + }, + }; + + return transaction; +} diff --git a/src/helpers/constants.ts b/src/helpers/constants.ts index b471634f..4c5c164e 100644 --- a/src/helpers/constants.ts +++ b/src/helpers/constants.ts @@ -36,6 +36,7 @@ export const CHAIN_IDS = { zora_goerli: 999, zora_sepolia: 999999999, stack: 78225, + gold: 4653, }; export const FORKS = { diff --git a/src/types/contextAction/protocolContextAction.ts b/src/types/contextAction/protocolContextAction.ts index 8200f981..37d45734 100644 --- a/src/types/contextAction/protocolContextAction.ts +++ b/src/types/contextAction/protocolContextAction.ts @@ -227,6 +227,12 @@ export type BoomboxContextAction = | BoomboxContextActionEnum.SIGNED | BoomboxContextActionEnum.DISTRIBUTED; +export enum GoldContextActionEnum { + ACTIVATED_A_STARTER_PACK = 'ACTIVATED_A_STARTER_PACK', +} + +export type GoldContextAction = GoldContextActionEnum.ACTIVATED_A_STARTER_PACK; + export enum Protocols { WETH = 'WETH', ENS = 'ENS', @@ -244,6 +250,7 @@ export enum Protocols { DISPERSE = 'DISPERSE', BNS = 'BNS', BOOMBOX = 'BOOMBOX', + GOLD = 'GOLD', } export type ProtocolContextAction = @@ -262,4 +269,5 @@ export type ProtocolContextAction = | BasepaintAction | DisperseAction | BNSContextAction - | BoomboxContextAction; + | BoomboxContextAction + | GoldContextAction; From 9f4fd8d39b266ca3edc2989af3023a06b8690087 Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 6 May 2024 11:31:31 -0700 Subject: [PATCH 02/10] feat: add gold destination contextualizer --- .../protocol/gold/destination.ts | 182 +++++++++++------- src/contextualizers/protocol/gold/source.ts | 11 +- .../contextAction/protocolContextAction.ts | 5 +- 3 files changed, 120 insertions(+), 78 deletions(-) diff --git a/src/contextualizers/protocol/gold/destination.ts b/src/contextualizers/protocol/gold/destination.ts index 98404282..05fa4e28 100644 --- a/src/contextualizers/protocol/gold/destination.ts +++ b/src/contextualizers/protocol/gold/destination.ts @@ -1,19 +1,18 @@ +import { decodeLog, decodeTransactionInput } from '../../../helpers/utils'; +import { CHAIN_IDS } from '../../../helpers/constants'; import { Transaction, - AssetType, - BridgeContextActionEnum, - ContextSummaryVariableType, - ContextETHType, - ContextERC20Type, - ContextERC721Type, - ContextERC1155Type, - AssetTransfer, + EventLogTopics, + GoldContextActionEnum, } from '../../../types'; -import { BRIDGE_ZORA_ENERGY } from './constants'; +import { + PACK_ACTIVATION_DESTINATION_ABI, + PACK_ACTIVATION_DESTINATION_CONTRACT, +} from './constants'; export function contextualize(transaction: Transaction): Transaction { - const isBridgeZoraEnergy = detect(transaction); - if (!isBridgeZoraEnergy) return transaction; + const isPackActivationDestination = detect(transaction); + if (!isPackActivationDestination) return transaction; const result = generate(transaction); return result; @@ -21,87 +20,132 @@ export function contextualize(transaction: Transaction): Transaction { // Always chain id 1 through the Zora bridge UI export function detect(transaction: Transaction): boolean { - if (transaction.from !== BRIDGE_ZORA_ENERGY || !transaction.to) { + if ( + transaction.from !== PACK_ACTIVATION_DESTINATION_CONTRACT || + transaction.chainId !== CHAIN_IDS.gold + ) { return false; } + // check logs + if (!transaction.logs) return false; + const activatedStarterPackOnDestinationEvent = transaction.logs.find( + (log) => { + const decoded = decodeLog(PACK_ACTIVATION_DESTINATION_ABI, log.data, [ + log.topic0, + log.topic1, + log.topic2, + log.topic3, + ] as EventLogTopics); - const assetSent = - transaction.assetTransfers?.filter( - (asset) => asset.from === transaction.from, - ) ?? []; - if (!assetSent.length) { - return false; - } + if ( + decoded && + decoded.eventName === 'ActivatedStarterPackOnDestination' + ) { + return true; + } - return true; + return false; + }, + ); + + if (activatedStarterPackOnDestinationEvent) return true; + + return false; } export function generate(transaction: Transaction): Transaction { - if (!transaction.to) return transaction; + if ( + transaction.to !== PACK_ACTIVATION_DESTINATION_CONTRACT || + !transaction.logs || + transaction.chainId !== CHAIN_IDS.gold + ) + return transaction; - const assetSent = - transaction.assetTransfers?.filter( - (asset) => asset.from === transaction.from, - ) ?? []; - if (!assetSent?.length) { + // decode input + const decodedInput = decodeTransactionInput( + transaction.input, + PACK_ACTIVATION_DESTINATION_ABI, + ); + if (!decodedInput || decodedInput.functionName == 'activateDestination') { return transaction; } - const assetTransfer: AssetTransfer = assetSent[0]; - let asset: ContextSummaryVariableType; - switch (assetTransfer.type) { - case AssetType.ETH: - asset = { - type: AssetType.ETH, - value: assetTransfer.value, - unit: 'wei', - } as ContextETHType; - break; - case AssetType.ERC20: - asset = { - type: AssetType.ERC20, - token: assetTransfer.contract, - value: assetTransfer.value, - } as ContextERC20Type; - break; - case AssetType.ERC721: - asset = { - type: AssetType.ERC721, - token: assetTransfer.contract, - tokenId: assetTransfer.tokenId, - } as ContextERC721Type; - break; - case AssetType.ERC1155: - asset = { - type: AssetType.ERC1155, - token: assetTransfer.contract, - tokenId: assetTransfer.tokenId, - value: assetTransfer.value, - } as ContextERC1155Type; - break; + // decode ActivatedStarterPackOnDestination event + let activatedStarterPackOnDestinationDecoded, mintedPlotPackActivateDecoded; + const gameMintedTokenDecoded: any[] = []; + for (const log of transaction.logs) { + const decoded = decodeLog(PACK_ACTIVATION_DESTINATION_ABI, log.data, [ + log.topic0, + log.topic1, + log.topic2, + log.topic3, + ] as EventLogTopics); + if (!decoded) continue; + + switch (decoded.eventName) { + case 'ActivatedStarterPackOnDestination': + activatedStarterPackOnDestinationDecoded = decoded; + break; + case 'MintedPlotPackActivate': + mintedPlotPackActivateDecoded = decoded; + break; + case 'GameMintedToken': + gameMintedTokenDecoded.push(decoded); + break; + default: + break; + } } + if ( + !activatedStarterPackOnDestinationDecoded || + !mintedPlotPackActivateDecoded || + gameMintedTokenDecoded.length !== 2 + ) + return transaction; + + // grab variables from decoded event + const cropName = decodedInput.args[2]; + const plots = activatedStarterPackOnDestinationDecoded.args['plots']; + const zGoldAmount = BigInt( + mintedPlotPackActivateDecoded[0].args['amount'], + ).toString(); + const cropAmount = BigInt( + mintedPlotPackActivateDecoded[1].args['amount'], + ).toString(); + const activator = activatedStarterPackOnDestinationDecoded.args['activator']; transaction.context = { summaries: { - category: 'MULTICHAIN', + category: 'PROTOCOL_1', en: { - title: `Bridge`, + title: `Gold`, default: - '[[person]][[completedACrossChainInteraction]]via[[address]]and[[asset]]was transferred', + '[[activator]][[received]]plots[[plots]][[cropAmount]]amount of[[cropName]]and[[zGoldAmount]]amount of Sky Gold', }, }, variables: { - person: { + activator: { type: 'address', - value: assetTransfer.to, + value: activator, }, - address: { - type: 'address', - value: transaction.from, + plots: { + type: 'array', + value: plots, + }, + cropName: { + type: 'string', + value: cropName, + }, + cropAmount: { + type: 'string', + value: cropAmount, + }, + zGoldAmount: { + type: 'string', + value: zGoldAmount, }, - asset, - completedACrossChainInteraction: { + received: { type: 'contextAction', - value: BridgeContextActionEnum.COMPLETED_A_CROSS_CHAIN_INTERACTION, + value: GoldContextActionEnum.RECEIVED, }, }, }; diff --git a/src/contextualizers/protocol/gold/source.ts b/src/contextualizers/protocol/gold/source.ts index a862f729..2797dcd1 100644 --- a/src/contextualizers/protocol/gold/source.ts +++ b/src/contextualizers/protocol/gold/source.ts @@ -1,4 +1,3 @@ -import { CHAIN_IDS } from '../../../helpers/constants'; import { Transaction, EventLogTopics, @@ -25,11 +24,7 @@ export function detect(transaction: Transaction): boolean { * established patterns in our other modules. This consistency is beneficial, * and it also serves to decouple the logic, thereby simplifying the testing process */ - if ( - transaction.to !== PACK_ACTIVATION_SOURCE_CONTRACT || - transaction.chainId !== CHAIN_IDS.gold - ) - return false; + if (transaction.to !== PACK_ACTIVATION_SOURCE_CONTRACT) return false; // check logs if (!transaction.logs) return false; @@ -82,9 +77,9 @@ export function generate(transaction: Transaction): Transaction { transaction.context = { summaries: { - category: 'MULTICHAIN', + category: 'PROTOCOL_1', en: { - title: `Bridge`, + title: `Gold`, default: '[[activator]][[activated]]on[[chainID]]', }, }, diff --git a/src/types/contextAction/protocolContextAction.ts b/src/types/contextAction/protocolContextAction.ts index 37d45734..7a9e17ac 100644 --- a/src/types/contextAction/protocolContextAction.ts +++ b/src/types/contextAction/protocolContextAction.ts @@ -229,9 +229,12 @@ export type BoomboxContextAction = export enum GoldContextActionEnum { ACTIVATED_A_STARTER_PACK = 'ACTIVATED_A_STARTER_PACK', + RECEIVED = 'RECEIVED', } -export type GoldContextAction = GoldContextActionEnum.ACTIVATED_A_STARTER_PACK; +export type GoldContextAction = + | GoldContextActionEnum.ACTIVATED_A_STARTER_PACK + | GoldContextActionEnum.RECEIVED; export enum Protocols { WETH = 'WETH', From 4b1650880bd307538b0cbf5b8dbf97fef12039a5 Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 6 May 2024 11:40:17 -0700 Subject: [PATCH 03/10] feat: add unit test for gold source --- .../protocol/gold/source.spec.ts | 36 +- src/contextualizers/protocol/gold/source.ts | 22 +- .../transactions/goldSource-0x3374f5f4.json | 1375 +++++++++++++++++ .../transactions/goldSource-0xef715998.json | 1375 +++++++++++++++++ 4 files changed, 2773 insertions(+), 35 deletions(-) create mode 100644 src/contextualizers/test/transactions/goldSource-0x3374f5f4.json create mode 100644 src/contextualizers/test/transactions/goldSource-0xef715998.json diff --git a/src/contextualizers/protocol/gold/source.spec.ts b/src/contextualizers/protocol/gold/source.spec.ts index 8837d158..3c969358 100644 --- a/src/contextualizers/protocol/gold/source.spec.ts +++ b/src/contextualizers/protocol/gold/source.spec.ts @@ -1,44 +1,38 @@ import { Transaction } from '../../../types'; import { detect, generate } from './source'; import { containsBigInt, contextSummary } from '../../../helpers/utils'; -import bridgeZoraEnergySource0x72084c64 from '../../test/transactions/bridgeZoraEnergySource-0x72084c64.json'; -import zoraSource0xf2e656b3 from '../../test/transactions/zoraSource-0xf2e656b3.json'; -import hopSource0x8603ffab from '../../test/transactions/hop-source-0x8603ffab.json'; +import goldSource0x3374f5f4 from '../../test/transactions/goldSource-0x3374f5f4.json'; +import goldSource0xef715998 from '../../test/transactions/goldSource-0xef715998.json'; -describe('Bridge Zora Energy Source', () => { +describe('Gold Source', () => { it('Should detect transaction', () => { - const isBridgeZoraEnergySource1 = detect( - bridgeZoraEnergySource0x72084c64 as unknown as Transaction, + const isGoldSource1 = detect( + goldSource0x3374f5f4 as unknown as Transaction, ); - expect(isBridgeZoraEnergySource1).toBe(true); + expect(isGoldSource1).toBe(true); - const isBridgeZoraEnergySource2 = detect( - hopSource0x8603ffab as unknown as Transaction, + const isGoldSource2 = detect( + goldSource0xef715998 as unknown as Transaction, ); - expect(isBridgeZoraEnergySource2).toBe(false); - - const isBridgeZoraEnergySource3 = detect( - zoraSource0xf2e656b3 as unknown as Transaction, - ); - expect(isBridgeZoraEnergySource3).toBe(true); + expect(isGoldSource2).toBe(true); }); it('Should generate context', () => { const transaction1 = generate( - bridgeZoraEnergySource0x72084c64 as unknown as Transaction, + goldSource0x3374f5f4 as unknown as Transaction, ); - expect(transaction1.context?.summaries?.en.title).toBe('Bridge'); + expect(transaction1.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction1.context)).toBe( - '0x74b78e98093f5b522a7ebdac3b994641ca7c2b20 INITIATED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef', + '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 ACTIVATED_A_STARTER_PACK on 8453', ); expect(containsBigInt(transaction1.context)).toBe(false); const transaction2 = generate( - zoraSource0xf2e656b3 as unknown as Transaction, + goldSource0xef715998 as unknown as Transaction, ); - expect(transaction2.context?.summaries?.en.title).toBe('Bridge'); + expect(transaction2.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction2.context)).toBe( - '0x17cd072cbd45031efc21da538c783e0ed3b25dcc INITIATED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef', + '0x18F33CEf45817C428d98C4E188A770191fDD4B79 ACTIVATED_A_STARTER_PACK on 8453', ); expect(containsBigInt(transaction2.context)).toBe(false); }); diff --git a/src/contextualizers/protocol/gold/source.ts b/src/contextualizers/protocol/gold/source.ts index 2797dcd1..da1cae7b 100644 --- a/src/contextualizers/protocol/gold/source.ts +++ b/src/contextualizers/protocol/gold/source.ts @@ -24,11 +24,12 @@ export function detect(transaction: Transaction): boolean { * established patterns in our other modules. This consistency is beneficial, * and it also serves to decouple the logic, thereby simplifying the testing process */ - if (transaction.to !== PACK_ACTIVATION_SOURCE_CONTRACT) return false; - // check logs if (!transaction.logs) return false; - const activatedStarterPackOnSourceEvent = transaction.logs.find((log) => { + + for (const log of transaction.logs) { + if (log.address !== PACK_ACTIVATION_SOURCE_CONTRACT) continue; + const decoded = decodeLog(PACK_ACTIVATION_SOURCE_ABI, log.data, [ log.topic0, log.topic1, @@ -39,26 +40,19 @@ export function detect(transaction: Transaction): boolean { if (decoded && decoded.eventName === 'ActivatedStarterPackOnSource') { return true; } - - return false; - }); - - if (activatedStarterPackOnSourceEvent) return true; + } return false; } export function generate(transaction: Transaction): Transaction { - if ( - transaction.to !== PACK_ACTIVATION_SOURCE_CONTRACT || - !transaction.logs || - !transaction.chainId - ) - return transaction; + if (!transaction.logs || !transaction.chainId) return transaction; // decode ActivatedStarterPackOnSource event let decoded; for (const log of transaction.logs) { + if (log.address !== PACK_ACTIVATION_SOURCE_CONTRACT) continue; + decoded = decodeLog(PACK_ACTIVATION_SOURCE_ABI, log.data, [ log.topic0, log.topic1, diff --git a/src/contextualizers/test/transactions/goldSource-0x3374f5f4.json b/src/contextualizers/test/transactions/goldSource-0x3374f5f4.json new file mode 100644 index 00000000..813d07f9 --- /dev/null +++ b/src/contextualizers/test/transactions/goldSource-0x3374f5f4.json @@ -0,0 +1,1375 @@ +{ + "_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/contextualizers/test/transactions/goldSource-0xef715998.json b/src/contextualizers/test/transactions/goldSource-0xef715998.json new file mode 100644 index 00000000..fa784c43 --- /dev/null +++ b/src/contextualizers/test/transactions/goldSource-0xef715998.json @@ -0,0 +1,1375 @@ +{ + "_id": "6633fa805a8173211c1ff836", + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "from": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "gas": 506244, + "gasPrice": "3092748173", + "maxFeePerGas": "3185802328", + "maxPriorityFeePerGas": "3000000000", + "hash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "input": "0xbadf7efa", + "nonce": 29, + "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "transactionIndex": 1, + "value": "0", + "type": 2, + "accessList": [], + "chainId": 8453, + "v": "0x1", + "r": "0xbb18feda06895bcce265a3bf279f6c068cbce5557043aaa4fa2a67263936e0c6", + "s": "0xa829ea894363f280a7966fbf2c8bb3129bc6186ecd178609e8130439ad02b59", + "yParity": "0x1", + "receipt": { + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "contractAddress": null, + "cumulativeGasUsed": 482707, + "effectiveGasPrice": 3092748173, + "from": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "gasUsed": 438868, + "l1Fee": "0x2b1f0d79c", + "l1GasPrice": "0x153d4daa7", + "l1GasUsed": "0x734", + "logsBloom": "0x04000000000000000000000100000020000000000000010100000000000000000001000000000040000000000000000000000000000000000000000000000000000000000008000000000008000000000000000000000000000000000000000002040200220000000000000000000800000000000400000000000010000000000000000000000100000000000000000010000000040000000000000000000000000000000000020000000100000000000000004000000000000000000000000000000002000000080000000000000000800000000000000000000000000020000000200800000000000000000000000000000000008000000000000000000000", + "status": true, + "to": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionIndex": 1, + "type": "0x2", + "logs": [ + { + "_id": "6633fa805a8173211c1ff696", + "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "data": "0x0000000000000000000000000000000000000000000000000000000000000001", + "blockNumber": 13946572, + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionIndex": 1, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "logIndex": 0, + "removed": false, + "id": "log_4b9db986", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91" + }, + { + "indexed": false, + "internalType": "bool", + "name": "approved", + "type": "bool", + "decoded": true + } + ] + }, + "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", + "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" + }, + { + "_id": "6633fa805a8173211c1ff697", + "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "data": "0x", + "blockNumber": 13946572, + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionIndex": 1, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "logIndex": 1, + "removed": false, + "id": "log_26433176", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x000000000000000000000000000000000000000000000000000000000000128b" + }, + { + "_id": "6633fa805a8173211c1ff698", + "address": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4cecc000000000000000000000000000000000000000000000000000000000000054f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d5854387179766a6a4b6d69666f66513759675a59394a59454b76625255314b6b4a7432464d5257383256716e2f3133353900000000000000000000000000", + "blockNumber": 13946572, + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionIndex": 1, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "logIndex": 2, + "removed": false, + "id": "log_029260e6", + "decoded": null, + "topic0": "0x5f7d77046e4af46c54fb3bd8fac5b805df108067d24d344cd755a89e2bdf9358", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", + "topic2": "0x000000000000000000000000000000000000000000000000000000000000128b", + "topic3": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "_id": "6633fa805a8173211c1ff699", + "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 13946572, + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionIndex": 1, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "logIndex": 3, + "removed": false, + "id": "log_77533d21", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91" + }, + { + "indexed": false, + "internalType": "bool", + "name": "approved", + "type": "bool", + "decoded": false + } + ] + }, + "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", + "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" + } + ] + }, + "decoded": null, + "pseudoTransactions": [], + "assetTransfers": [ + { + "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "from": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "4747", + "type": "erc721" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "gas": "0x736fa", + "input": "0xbadf7efa", + "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x70e51", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0x6c3a4", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122d4424a141eb144cc6f057b2ea0a99f5f3b8a0fd99be4c43b1948e5a48f863d2f", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 0, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0x624a0", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122d4424a141eb144cc6f057b2ea0a99f5f3b8a0fd99be4c43b1948e5a48f863d2f", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 1, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", + "gas": "0x5fe6f", + "input": "0x80cb4fa3000000000000000000000000000000000000000000000000000000000000004000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000128b", + "to": "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x5f1bd", + "output": "0x0" + }, + "subtraces": 13, + "traceAddress": [ + 0, + 2, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0x5ad09", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000561a807e1d8732fe5313d4a3dc406d74e7b9d7eb" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 0, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x561a807e1d8732fe5313d4a3dc406d74e7b9d7eb", + "gas": "0x57fca", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08", + "to": "0x7f2877aebe7a375960d3f253189b8c9c3431df52", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x177e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 1, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0x55c8e", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000ee8aa4f8da7f81be015c7715c7f0229d6711032a" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 2, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xee8aa4f8da7f81be015c7715c7f0229d6711032a", + "gas": "0x52fdd", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x2ed3e686ac564e3470ce710c3a13143d7c59f180", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x9db", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 3, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0x52207", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0xe8f", + "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 4, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0x4fb6f", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x6bf", + "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 5, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "gas": "0x4f1a5", + "input": "0x6352211e000000000000000000000000000000000000000000000000000000000000128b", + "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x2e9", + "output": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 6, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0x4e99a", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x6bf", + "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 7, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "gas": "0x4dfd0", + "input": "0xc87b56dd000000000000000000000000000000000000000000000000000000000000128b", + "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0xa3c9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d5854387179766a6a4b6d69666f66513759675a59394a59454b76625255314b6b4a7432464d5257383256716e2f3133353900000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 8, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0xde96", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x6bf", + "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 9, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "gas": "0xd4bd", + "input": "0x908be19c000000000000000000000000000000000000000000000000000000000000128b", + "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0xed1", + "output": "0x000000000000000000000000000000000000000000000000000000000000128b000000000000000000000000000000000000000000000000000000000000054f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 10, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0xc0c5", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122ca5c83a18dd0f3443e4c771d19c8aa400809f3e426472e2c7b22042c5b34d79f", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x6bf", + "output": "0x00000000000000000000000012f885808f616b8056a37be00fdd029e1c59ab08" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 11, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "gas": "0xb67d", + "input": "0x42966c68000000000000000000000000000000000000000000000000000000000000128b", + "to": "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x97e5", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0, + 12, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "gas": "0x3866", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122d4424a141eb144cc6f057b2ea0a99f5f3b8a0fd99be4c43b1948e5a48f863d2f", + "to": "0x11431300f25d88332d6ca50279fcb82220793379", + "value": "0x0" + }, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "blockNumber": 13946572, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0 + ], + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionPosition": 1, + "type": "call" + } + ], + "neighbor": { + "address": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "neighbor": "0x0000000000000000000000000000000000000000" + }, + "errors": [], + "parties": [ + "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "0x1b4bc6e81923de47258c91856d47cc9879735b3a", + "0x9b7b92e9ebed787b0e8c66566d1670cc2487044e", + "0x11431300f25d88332d6ca50279fcb82220793379", + "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", + "0x1bae2671b68733b3b72ae1cf3f9282b81ed77424", + "0x561a807e1d8732fe5313d4a3dc406d74e7b9d7eb", + "0x7f2877aebe7a375960d3f253189b8c9c3431df52", + "0xee8aa4f8da7f81be015c7715c7f0229d6711032a", + "0x2ed3e686ac564e3470ce710c3a13143d7c59f180", + "0x0000000000000000000000000000000000000000", + "0x12f885808f616b8056a37be00fdd029e1c59ab08-4747" + ], + "sigHash": "0xbadf7efa", + "internalSigHashes": [ + { + "from": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "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": 1714682491, + "baseFeePerGas": 92748173, + "transactionFee": "1357308205188164", + "logs": [ + { + "_id": "6633fa805a8173211c1ff696", + "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "data": "0x0000000000000000000000000000000000000000000000000000000000000001", + "blockNumber": 13946572, + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionIndex": 1, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "logIndex": 0, + "removed": false, + "id": "log_4b9db986", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91" + }, + { + "indexed": false, + "internalType": "bool", + "name": "approved", + "type": "bool", + "decoded": true + } + ] + }, + "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", + "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" + }, + { + "_id": "6633fa805a8173211c1ff697", + "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "data": "0x", + "blockNumber": 13946572, + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionIndex": 1, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "logIndex": 1, + "removed": false, + "id": "log_26433176", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x000000000000000000000000000000000000000000000000000000000000128b" + }, + { + "_id": "6633fa805a8173211c1ff698", + "address": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91", + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4cecc000000000000000000000000000000000000000000000000000000000000054f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f70696e6174612e63726f7078797a2e636f6d2f697066732f516d5854387179766a6a4b6d69666f66513759675a59394a59454b76625255314b6b4a7432464d5257383256716e2f3133353900000000000000000000000000", + "blockNumber": 13946572, + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionIndex": 1, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "logIndex": 2, + "removed": false, + "id": "log_029260e6", + "decoded": null, + "topic0": "0x5f7d77046e4af46c54fb3bd8fac5b805df108067d24d344cd755a89e2bdf9358", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", + "topic2": "0x000000000000000000000000000000000000000000000000000000000000128b", + "topic3": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "_id": "6633fa805a8173211c1ff699", + "address": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 13946572, + "transactionHash": "0xef71cd28a40e500eed091b0847828d57b7258963196dd30878278d8eac855998", + "transactionIndex": 1, + "blockHash": "0x875ef87dddd404c19f4abc6c0ee85c5951d0b14d4944c4bd3264f1ddb4d14373", + "logIndex": 3, + "removed": false, + "id": "log_77533d21", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0xde1bc6e9164af5a48c45111b811c61f11ce58d91" + }, + { + "indexed": false, + "internalType": "bool", + "name": "approved", + "type": "bool", + "decoded": false + } + ] + }, + "topic0": "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", + "topic1": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic2": "0x000000000000000000000000de1bc6e9164af5a48c45111b811c61f11ce58d91" + } + ], + "netAssetTransfers": { + "0x18f33cef45817c428d98c4e188a770191fdd4b79": { + "received": [], + "sent": [ + { + "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "tokenId": "4747", + "type": "erc721" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "tokenId": "4747", + "type": "erc721", + "imageUrl": "https://api-base.reservoir.tools/redirect/tokens/0x12f885808f616b8056a37be00fdd029e1c59ab08:4747/image/v1?imageSize=small" + } + ], + "sent": [] + } + }, + "pseudotransactions": [], + "contractsCreated": [], + "enrichedParties": { + "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 + } + } + ], + "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-4747": { + "contract": "0x12f885808f616b8056a37be00fdd029e1c59ab08", + "tokenId": "4747", + "type": "erc721", + "imageUrl": "https://api-base.reservoir.tools/redirect/tokens/0x12f885808f616b8056a37be00fdd029e1c59ab08:4747/image/v1?imageSize=small" + } + } +} \ No newline at end of file From 20aa3636a54e286e1f48685fc7c9a242496be8f7 Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 6 May 2024 11:56:40 -0700 Subject: [PATCH 04/10] feat: add unit test for gold destination --- .../protocol/gold/constants.ts | 2 +- .../protocol/gold/destination.spec.ts | 51 +- .../protocol/gold/destination.ts | 58 +- src/contextualizers/protocol/gold/index.ts | 2 +- .../goldDestination-0x469f8c9c.json | 6066 +++++++++++++++++ .../goldDestination-0x85058886.json | 6066 +++++++++++++++++ 6 files changed, 12173 insertions(+), 72 deletions(-) create mode 100644 src/contextualizers/test/transactions/goldDestination-0x469f8c9c.json create mode 100644 src/contextualizers/test/transactions/goldDestination-0x85058886.json diff --git a/src/contextualizers/protocol/gold/constants.ts b/src/contextualizers/protocol/gold/constants.ts index 76c393e7..86ffdc44 100644 --- a/src/contextualizers/protocol/gold/constants.ts +++ b/src/contextualizers/protocol/gold/constants.ts @@ -2,7 +2,7 @@ import packActivationDestinationAbi from './abis/PackActivationDestination'; import packActivationSourceAbi from './abis/PackActivationSource'; export const PACK_ACTIVATION_DESTINATION_CONTRACT = - '0xf70da97812cb96acdf810712aa562db8dfa3dbef'; + '0x21170f8bd35d0afa8ad55719ce29d6489a8585db'; export const PACK_ACTIVATION_SOURCE_CONTRACT = '0xde1bc6e9164af5a48c45111b811c61f11ce58d91'; diff --git a/src/contextualizers/protocol/gold/destination.spec.ts b/src/contextualizers/protocol/gold/destination.spec.ts index 41a6d781..4067f87a 100644 --- a/src/contextualizers/protocol/gold/destination.spec.ts +++ b/src/contextualizers/protocol/gold/destination.spec.ts @@ -1,60 +1,39 @@ import { Transaction } from '../../../types'; import { detect, generate } from './destination'; import { containsBigInt, contextSummary } from '../../../helpers/utils'; -import bridgeZoraEnergyDestination0x7e7843df from '../../test/transactions/bridgeZoraEnergyDestination-0x7e7843df.json'; -import bridgeZoraEnergyDestination0x1edd564e from '../../test/transactions/bridgeZoraEnergyDestination-0x1edd564e.json'; -import bridgeZoraEnergyDestination0xf178e44b from '../../test/transactions/bridgeZoraEnergyDestination-0xf178e44b.json'; -import hopDestination0x0902ccb6 from '../../test/transactions/hop-destination-0x0902ccb6.json'; +import goldDestination0x85058886 from '../../test/transactions/goldDestination-0x85058886.json'; +import goldDestination0x469f8c9c from '../../test/transactions/goldDestination-0x469f8c9c.json'; -describe('Bridge Zora Energy Destination', () => { +describe('Gold Destination', () => { it('Should detect transaction', () => { - const isBridgeZoraEnergyDestination1 = detect( - bridgeZoraEnergyDestination0x7e7843df as unknown as Transaction, + const isGoldDestination1 = detect( + goldDestination0x85058886 as unknown as Transaction, ); - expect(isBridgeZoraEnergyDestination1).toBe(true); + expect(isGoldDestination1).toBe(true); - const isBridgeZoraEnergyDestination2 = detect( - hopDestination0x0902ccb6 as unknown as Transaction, + const isGoldDestination2 = detect( + goldDestination0x469f8c9c as unknown as Transaction, ); - expect(isBridgeZoraEnergyDestination2).toBe(false); - - const isBridgeZoraEnergyDestination3 = detect( - bridgeZoraEnergyDestination0x1edd564e as unknown as Transaction, - ); - expect(isBridgeZoraEnergyDestination3).toBe(true); - - const isBridgeZoraEnergyDestination4 = detect( - bridgeZoraEnergyDestination0xf178e44b as unknown as Transaction, - ); - expect(isBridgeZoraEnergyDestination4).toBe(true); + expect(isGoldDestination2).toBe(true); }); it('Should generate context', () => { const transaction1 = generate( - bridgeZoraEnergyDestination0x7e7843df as unknown as Transaction, + goldDestination0x85058886 as unknown as Transaction, ); - expect(transaction1.context?.summaries?.en.title).toBe('Bridge'); + expect(transaction1.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction1.context)).toBe( - '0x74b78e98093f5b522a7ebdac3b994641ca7c2b20 COMPLETED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef and 0.02 ETH was transferred', + '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 RECEIVED plots #0,#1 , 81 amount of zMOONGRASS and 912670 amount of Sky Gold', ); expect(containsBigInt(transaction1.context)).toBe(false); const transaction2 = generate( - bridgeZoraEnergyDestination0x1edd564e as unknown as Transaction, + goldDestination0x469f8c9c as unknown as Transaction, ); - expect(transaction2.context?.summaries?.en.title).toBe('Bridge'); + expect(transaction2.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction2.context)).toBe( - '0xc761b876e04afa1a67c76bfd8c2c7aa5a5e8e35f COMPLETED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef and 0.26754098684670663 ETH was transferred', + '0x18F33CEf45817C428d98C4E188A770191fDD4B79 RECEIVED plots #2,#3 , 9 amount of zEARTHMELON and 202816 amount of Sky Gold', ); expect(containsBigInt(transaction2.context)).toBe(false); - - const transaction3 = generate( - bridgeZoraEnergyDestination0xf178e44b as unknown as Transaction, - ); - expect(transaction3.context?.summaries?.en.title).toBe('Bridge'); - expect(contextSummary(transaction3.context)).toBe( - '0x74b78e98093f5b522a7ebdac3b994641ca7c2b20 COMPLETED_A_CROSS_CHAIN_INTERACTION via 0xf70da97812cb96acdf810712aa562db8dfa3dbef and 19692312680620439907443 0x4ed4e862860bed51a9570b96d89af5e1b0efefed was transferred', - ); - expect(containsBigInt(transaction3.context)).toBe(false); }); }); diff --git a/src/contextualizers/protocol/gold/destination.ts b/src/contextualizers/protocol/gold/destination.ts index 05fa4e28..bd87fea8 100644 --- a/src/contextualizers/protocol/gold/destination.ts +++ b/src/contextualizers/protocol/gold/destination.ts @@ -20,45 +20,32 @@ export function contextualize(transaction: Transaction): Transaction { // Always chain id 1 through the Zora bridge UI export function detect(transaction: Transaction): boolean { - if ( - transaction.from !== PACK_ACTIVATION_DESTINATION_CONTRACT || - transaction.chainId !== CHAIN_IDS.gold - ) { + if (transaction.chainId !== CHAIN_IDS.gold) { return false; } // check logs if (!transaction.logs) return false; - const activatedStarterPackOnDestinationEvent = transaction.logs.find( - (log) => { - const decoded = decodeLog(PACK_ACTIVATION_DESTINATION_ABI, log.data, [ - log.topic0, - log.topic1, - log.topic2, - log.topic3, - ] as EventLogTopics); - if ( - decoded && - decoded.eventName === 'ActivatedStarterPackOnDestination' - ) { - return true; - } + for (const log of transaction.logs) { + if (log.address !== PACK_ACTIVATION_DESTINATION_CONTRACT) continue; - return false; - }, - ); + const decoded = decodeLog(PACK_ACTIVATION_DESTINATION_ABI, log.data, [ + log.topic0, + log.topic1, + log.topic2, + log.topic3, + ] as EventLogTopics); - if (activatedStarterPackOnDestinationEvent) return true; + if (decoded && decoded.eventName === 'ActivatedStarterPackOnDestination') { + return true; + } + } return false; } export function generate(transaction: Transaction): Transaction { - if ( - transaction.to !== PACK_ACTIVATION_DESTINATION_CONTRACT || - !transaction.logs || - transaction.chainId !== CHAIN_IDS.gold - ) + if (!transaction.logs || transaction.chainId !== CHAIN_IDS.gold) return transaction; // decode input @@ -66,7 +53,7 @@ export function generate(transaction: Transaction): Transaction { transaction.input, PACK_ACTIVATION_DESTINATION_ABI, ); - if (!decodedInput || decodedInput.functionName == 'activateDestination') { + if (!decodedInput || decodedInput.functionName != 'activateDestination') { return transaction; } // decode ActivatedStarterPackOnDestination event @@ -104,12 +91,12 @@ export function generate(transaction: Transaction): Transaction { // grab variables from decoded event const cropName = decodedInput.args[2]; - const plots = activatedStarterPackOnDestinationDecoded.args['plots']; + const plotIds = activatedStarterPackOnDestinationDecoded.args['plotIds']; const zGoldAmount = BigInt( - mintedPlotPackActivateDecoded[0].args['amount'], + gameMintedTokenDecoded[0].args['amount'], ).toString(); const cropAmount = BigInt( - mintedPlotPackActivateDecoded[1].args['amount'], + gameMintedTokenDecoded[1].args['amount'], ).toString(); const activator = activatedStarterPackOnDestinationDecoded.args['activator']; @@ -119,7 +106,7 @@ export function generate(transaction: Transaction): Transaction { en: { title: `Gold`, default: - '[[activator]][[received]]plots[[plots]][[cropAmount]]amount of[[cropName]]and[[zGoldAmount]]amount of Sky Gold', + '[[activator]][[received]]plots[[plotIds]],[[cropAmount]]amount of[[cropName]]and[[zGoldAmount]]amount of Sky Gold', }, }, variables: { @@ -127,9 +114,12 @@ export function generate(transaction: Transaction): Transaction { type: 'address', value: activator, }, - plots: { + plotIds: { type: 'array', - value: plots, + value: + plotIds.length > 0 + ? plotIds.map((c: bigint) => '#' + c.toString()) + : [], }, cropName: { type: 'string', diff --git a/src/contextualizers/protocol/gold/index.ts b/src/contextualizers/protocol/gold/index.ts index 26f685f1..9d560386 100644 --- a/src/contextualizers/protocol/gold/index.ts +++ b/src/contextualizers/protocol/gold/index.ts @@ -6,6 +6,6 @@ const children = { source, destination }; const contextualize = makeContextualize(children); -export const reservoirContextualizer = { +export const goldContextualizer = { contextualize, }; diff --git a/src/contextualizers/test/transactions/goldDestination-0x469f8c9c.json b/src/contextualizers/test/transactions/goldDestination-0x469f8c9c.json new file mode 100644 index 00000000..ae2c618b --- /dev/null +++ b/src/contextualizers/test/transactions/goldDestination-0x469f8c9c.json @@ -0,0 +1,6066 @@ +{ + "_id": "6633fa90d0e05f534265c00e", + "accessList": [], + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "chainId": 4653, + "from": "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", + "gas": 1370895, + "gasPrice": "252", + "hash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "input": "0xce6298e70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000026000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b7a45415254484d454c4f4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000473796e3337363936616332656262383561366238393930393538636331386234333461", + "maxFeePerGas": "10000", + "maxPriorityFeePerGas": "1", + "nonce": 0, + "r": "0x8d476d2ed375285d732eea2664b235395261f53ee7b804854afef565476369e", + "s": "0x729afdb166525eb57480c88d4178473b7562e42c752f574256c7041bdfcb0265", + "to": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "transactionIndex": 1, + "type": 2, + "v": "0x1", + "value": "0", + "yParity": "0x1", + "receipt": { + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "contractAddress": null, + "cumulativeGasUsed": 1383640, + "effectiveGasPrice": 252, + "from": "0xbf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", + "gasUsed": 1333175, + "l1Fee": "0x938386e7f", + "l1FeeScalar": "0.0684", + "l1GasPrice": "0x5888b7a", + "l1GasUsed": "0x185c", + "logsBloom": "0x04000800000000000000000020000000000000000000000000000000000000000000000000000000000001000000000000000000020000000800000000200000000000000008000010000008000000020810000040000000000004000000000000840000020000000000000000100800040000000000000000000010010000000400000000000100020000000000000000005000000000000000000010000000000000000000000002000100002000000000000000800000000000000000400000000002000000000088000000000000000000000200000000000000000060000000000000040000000010010400000000000000008000000000080200800000", + "status": true, + "to": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "type": "0x2", + "logs": [ + { + "_id": "6633fa90d0e05f534265bffc", + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x", + "logIndex": 0, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_b24c7425", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + { + "_id": "6633fa90d0e05f534265bffd", + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "logIndex": 1, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_4a56fa0b", + "decoded": null, + "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + }, + { + "_id": "6633fa90d0e05f534265bffe", + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x", + "logIndex": 2, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_57926132", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000003" + }, + { + "_id": "6633fa90d0e05f534265bfff", + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "logIndex": 3, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_ac5b2862", + "decoded": null, + "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000003", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + }, + { + "_id": "6633fa90d0e05f534265c000", + "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x0000000000000000000000000000000000000000000000000000000000031840", + "logIndex": 4, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_726cb7d4", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "202816" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "_id": "6633fa90d0e05f534265c001", + "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x", + "logIndex": 5, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_07e426a6", + "decoded": null, + "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", + "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000031840" + }, + { + "_id": "6633fa90d0e05f534265c002", + "address": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x0000000000000000000000000000000000000000000000000000000000000009", + "logIndex": 6, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_e4b8f4ad", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "9" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "_id": "6633fa90d0e05f534265c003", + "address": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x", + "logIndex": 7, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_e20b58e7", + "decoded": null, + "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", + "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000009" + }, + { + "_id": "6633fa90d0e05f534265c004", + "address": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000bf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003", + "logIndex": 8, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_efa46d18", + "decoded": null, + "topic0": "0x0844c483fc1fbd7229fc8b9e35bf4997a55ae54096d77f8aa4a94370ece4b758", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + } + ] + }, + "decoded": null, + "pseudoTransactions": [], + "assetTransfers": [ + { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "tokenId": "2", + "type": "erc721" + }, + { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "tokenId": "3", + "type": "erc721" + }, + { + "contract": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "value": "202816", + "type": "erc20" + }, + { + "contract": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x18f33cef45817c428d98c4e188a770191fdd4b79", + "value": "9", + "type": "erc20" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "gas": "0x1422ee", + "input": "0xce6298e70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000026000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b7a45415254484d454c4f4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000473796e3337363936616332656262383561366238393930393538636331386234333461", + "to": "0xafd6be86f5f03ab2e6ea35fbd95fbb97502d3af6", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x1417f3", + "output": "0x0" + }, + "subtraces": 14, + "traceAddress": [ + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x133ca5", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x130fcb", + "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1228ecd58c13c172fc863bc6abb25af6d4caf2968db2e4505bcd6ed59b2a2e2c672000000000000000000000000bf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x17af", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1184f0", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0x11109d", + "input": "0x04dc0318000000000000000000000000000000000000000000000000000000000000010000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "to": "0x06f168509241041afca15f0d88f5cfbd81463956", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x5ddb3", + "output": "0x00000000000000000000000000000000000000000000000000000000000000027c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 9, + "traceAddress": [ + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x10635f", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1221d094024bb7b9ba00ec54fa8a80c97069fbfe9c17d3db096166f95898fdd8557", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xe8f", + "output": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x104e07", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "gas": "0x101f71", + "input": "0x3cb58e0000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xd90b", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 0, + 3, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xf8eaa", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 2, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "gas": "0xf6196", + "input": "0xffd968fa00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x9830", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 0, + 3, + 0, + 2, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xed9f0", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 2, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0xecf07", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x177e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 2, + 0, + 1, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xeaba8", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 2, + 0, + 1, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0xe7ef7", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x9db", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 2, + 0, + 1, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xeedca", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "gas": "0xee2e8", + "input": "0xb6119a7e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x669b", + "output": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + }, + "subtraces": 4, + "traceAddress": [ + 0, + 3, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xe66d6", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 4, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0xe5bed", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xfae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 4, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xe47b2", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 3, + 0, + 4, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0xe3d57", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "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": [ + 0, + 3, + 0, + 8, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xb5384", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122cb6ecb803f0a20864f99103969cda8d5efe615a5e555ad08ee57adb15f196038", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "gas": "0xb3e11", + "input": "0x04dc0318000000000000000000000000000000000000000000000000000000000000010000000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b7900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "to": "0x06f168509241041afca15f0d88f5cfbd81463956", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x4d797", + "output": "0x00000000000000000000000000000000000000000000000000000000000000037c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 9, + "traceAddress": [ + 0, + 5, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xace2e", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1221d094024bb7b9ba00ec54fa8a80c97069fbfe9c17d3db096166f95898fdd8557", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xac068", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1229c55f31c6bbea3e79f7789a0c670c48e8e55030b10fedb4b1eaf4a6452e47870", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xee1f3a233e2197463598f6f5d332a6447aaff4b8", + "gas": "0xab428", + "input": "0x3cb58e0000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "to": "0x01f6f0c59ed955c24808b18444bd65d696531a09", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x5c0b", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 0, + 5, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xa55f7", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 2, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "gas": "0xa4b39", + "input": "0xffd968fa00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x4628", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 0, + 5, + 0, + 2, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x9f387", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 2, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x9e89e", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000ee1f3a233e2197463598f6f5d332a6447aaff4b8", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 2, + 0, + 1, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x9dbf4", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 2, + 0, + 1, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x9d19a", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 2, + 0, + 1, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xa02ed", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12243c3de2c453f149c70dff690274e0a8934fe3e067ca1109d7825c0c3ef13d73f", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000007858176524906a49be14f50f6c6150b45f0224ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x7858176524906a49be14f50f6c6150b45f0224ab", + "gas": "0x9f80c", + "input": "0xb6119a7e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "to": "0x6ab9954c5d7f99eff0b2e21cd73aded497c7c25c", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x5ecb", + "output": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + }, + "subtraces": 4, + "traceAddress": [ + 0, + 5, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x9a302", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 4, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x99819", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000e2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 4, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x98b70", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 4, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x98115", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 4, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x846f1", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 5, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x83c0d", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 6, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x82f41", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 7, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x824e5", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 5, + 0, + 8, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x58990", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xe8f", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 6, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x576db", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xe8f", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 7, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x54a91", + "input": "0xa958544b000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000057a474f4c44000000000000000000000000000000000000000000000000000000", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7670", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 8, + "traceAddress": [ + 0, + 8, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x512be", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 8, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x507d5", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 8, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x4f37e", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 8, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x4e922", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 8, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x4dcc2", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 8, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x4d1db", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 8, + 0, + 5, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x4c513", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 8, + 0, + 6, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x4bab8", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 8, + 0, + 7, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x4a926", + "input": "0x87db2cd900000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b7900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000031840", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x22cc6", + "output": "0x0" + }, + "subtraces": 11, + "traceAddress": [ + 0, + 9, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x4644d", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x45964", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x44528", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x43ace", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x4347c", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x429b7", + "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee6100000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x17af", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 5, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x40e78", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 6, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x404ae", + "input": "0xe29ab0760000000000000000000000000000000000000000000000000000000000000001", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x45a0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 0, + 9, + 0, + 7, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3e060", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 7, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x3d577", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xfae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 7, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3c120", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 7, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x3b6c5", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 7, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x3bcdd", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 8, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x3b313", + "input": "0x4e4719130000000000000000000000000000000000000000000000000000000000000001", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x4a39", + "output": "0x000000000000000000000000387d73bd8682dceb3327b940213d5de50ee2bba2" + }, + "subtraces": 5, + "traceAddress": [ + 0, + 9, + 0, + 9, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x39120", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 9, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x38636", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 9, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x37971", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 9, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x36f16", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "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, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "gas": "0x34c89", + "input": "0x4eb9029900000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000031840", + "to": "0x241c960dcd2ffb04a7061adce57167179f65a79f", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xea7d", + "output": "0x0" + }, + "subtraces": 9, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x325d8", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x31aef", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x306b4", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x2fc5a", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x2f5ef", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x2ea8b", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0, + 5, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x2dfa1", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0, + 6, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x2d2f8", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0, + 7, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x2c89a", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 9, + 0, + 10, + 0, + 8, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x28a4a", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 10, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x27f26", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 11, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x2743f", + "input": "0xa958544b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000b7a45415254484d454c4f4e000000000000000000000000000000000000000000", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6d9c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000015" + }, + "subtraces": 8, + "traceAddress": [ + 0, + 12, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x25a83", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 12, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x24f9b", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 12, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x242d4", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 12, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x2387a", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 12, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x22583", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 12, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x21a9c", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 12, + 0, + 5, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x20dd4", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 12, + 0, + 6, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x20379", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 12, + 0, + 7, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "gas": "0x205a9", + "input": "0x87db2cd900000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b7900000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000009", + "to": "0xecdee3f86dde93e77a692870d469498735305a41", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x1f600", + "output": "0x0" + }, + "subtraces": 11, + "traceAddress": [ + 0, + 13, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1e4e5", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x1d9fc", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1cd54", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x1c2f8", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1bca7", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x1b1e1", + "input": "0xcb545a777bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1227a6090da7188680f85bcce082a9a37ae7f4605e38fee091a6e040a637069ee6100000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x80f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 5, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1a5c7", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 6, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x19bfc", + "input": "0xe29ab0760000000000000000000000000000000000000000000000000000000000000015", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x3600", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [ + 0, + 13, + 0, + 7, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x18acd", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 7, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x17fe5", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 7, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1731f", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 7, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x168c5", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 7, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x16350", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12250306bcf0ff321da57e83ede13a85d2494de0f7573bb365b1802e43867cefa21", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000001310d5a06b1caaea25af09197288f7c2d2c40eed" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 8, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1310d5a06b1caaea25af09197288f7c2d2c40eed", + "gas": "0x15986", + "input": "0x4e4719130000000000000000000000000000000000000000000000000000000000000015", + "to": "0x6f9d77c69f0323978ab347d7f2d47cabbb096ae0", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x4a39", + "output": "0x00000000000000000000000056d66d7637f5b6235ad212043d35cc5e035dac68" + }, + "subtraces": 5, + "traceAddress": [ + 0, + 13, + 0, + 9, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x14a3a", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 9, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x13f51", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 9, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x1328b", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 9, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x12830", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 9, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x11670", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122076a59ffba53edeba9edc9405e87142a6e05a132ef9aef59ca0a177fc86b39c4", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xe8f", + "output": "0x00000000000000000000000056d66d7637f5b6235ad212043d35cc5e035dac68" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 9, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "gas": "0xf2fb", + "input": "0x4eb9029900000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b790000000000000000000000000000000000000000000000000000000000000009", + "to": "0x0eb23cbcf8d66bd4fab85acf1d405cf77f04ebb9", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0xea67", + "output": "0x0" + }, + "subtraces": 9, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xdf06", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0, + 0, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0xd41e", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0, + 1, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xbfe3", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0, + 2, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0xb588", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0, + 3, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xaf1d", + "input": "0xe95a71517bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d12240e123a9efd8255fcaef27f696908de73d39c69f5cfe7900583ebed90437b554", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0, + 4, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0xa3b9", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bdc7f00d300ebcaeb15968dc5801affe30cf451ce2505e695ddde2c86c7d3dbb47", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000008bd0ef35c4d77e96cbef757bcd9d297eadd10079" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0, + 5, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "gas": "0x98d0", + "input": "0x3d5da9e27bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d1220403eb530cc894d293f6a0fad9c9c753b3cd6fd5d05936662be3f20e8bb09b4a000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x7de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0, + 6, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "gas": "0x8c26", + "input": "0xe95a715107ed6f409dd713d69e5d58fd414a2ec584e311794a621fee977f4faac6d224bd8e77a4321c1afc3c3c1d4c1a7d4fd2b3258a2af016bf498d8d970059b2061641", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x6bf", + "output": "0x0000000000000000000000009f53fde530411f5ea31e8c952422a81acc4567ab" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0, + 7, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "gas": "0x81c8", + "input": "0xadd884007bde5ed3dc311eccd804bc307b2aa0311da8cc0f05c4f552a2f2516fcd49d122", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "value": "0x0" + }, + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "result": { + "gasUsed": "0x20b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 13, + 0, + 10, + 0, + 8, + 0 + ], + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "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" + }, + { + "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": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "sigHash": "0x4eb90299" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x0eb23cbcf8d66bd4fab85acf1d405cf77f04ebb9", + "sigHash": "0x4eb90299" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x8bd0ef35c4d77e96cbef757bcd9d297eadd10079", + "to": "0x588ac84db09fe2cdcde602502be3791475733ed2", + "sigHash": "0x3d5da9e2" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "sigHash": "0xe95a7151" + }, + { + "from": "0x75944a4b121e2c0e919ca1dfabc2f4eda9cfac68", + "to": "0x74dbbfe0c1eff0ef2674f8a9134de5fe8d8f5086", + "sigHash": "0xe95a7151" + }, + { + "from": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "to": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "sigHash": "0xadd88400" + }, + { + "from": "0x9f53fde530411f5ea31e8c952422a81acc4567ab", + "to": "0x02fe344708d804958aa355954df481be45c01b0d", + "sigHash": "0xadd88400" + } + ], + "timestamp": 1714682510, + "baseFeePerGas": 251, + "transactionFee": "39597928063516800000335960100", + "logs": [ + { + "_id": "6633fa90d0e05f534265bffc", + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x", + "logIndex": 0, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_b24c7425", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + { + "_id": "6633fa90d0e05f534265bffd", + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "logIndex": 1, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_4a56fa0b", + "decoded": null, + "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + }, + { + "_id": "6633fa90d0e05f534265bffe", + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x", + "logIndex": 2, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_57926132", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000003" + }, + { + "_id": "6633fa90d0e05f534265bfff", + "address": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x00000000000000000000000021170f8bd35d0afa8ad55719ce29d6489a8585db000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014706c6f745f747970652e46525549545f56494e45000000000000000000000000", + "logIndex": 3, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_ac5b2862", + "decoded": null, + "topic0": "0x3f486ac6a8b9b226dfec2a870e1e30034d267fb562f77ba608a3bed8176b97e6", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000003", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x7c9c04e23cfbcef95f65854bbcab58df208a77a5776054f7f52502a461a655d3" + }, + { + "_id": "6633fa90d0e05f534265c000", + "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x0000000000000000000000000000000000000000000000000000000000031840", + "logIndex": 4, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_726cb7d4", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "202816" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "_id": "6633fa90d0e05f534265c001", + "address": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x", + "logIndex": 5, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_07e426a6", + "decoded": null, + "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", + "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000031840" + }, + { + "_id": "6633fa90d0e05f534265c002", + "address": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x0000000000000000000000000000000000000000000000000000000000000009", + "logIndex": 6, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_e4b8f4ad", + "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": "0x18f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "9" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + }, + { + "_id": "6633fa90d0e05f534265c003", + "address": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x", + "logIndex": 7, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_e20b58e7", + "decoded": null, + "topic0": "0xed2b3c8ef55dbfb4107a2ed9fe3732c0a79f91d1c59f8590918b40003e77076c", + "topic1": "0x000000000000000000000000c1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000009" + }, + { + "_id": "6633fa90d0e05f534265c004", + "address": "0x21170f8bd35d0afa8ad55719ce29d6489a8585db", + "blockHash": "0x31265fd3bf4a4c7fe4e9344a62dc931f25cd80c897350fa5838d85f2ffb52036", + "blockNumber": 6044685, + "data": "0x00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000bf827f0cb27ae0f0ec08aa113fa6cdc2bee22deb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003", + "logIndex": 8, + "removed": false, + "transactionHash": "0x469fbd71f70a0af5783cc381dbcbb8d7acfa74bd60a31df4583ed5deaec08c9c", + "transactionIndex": 1, + "id": "log_efa46d18", + "decoded": null, + "topic0": "0x0844c483fc1fbd7229fc8b9e35bf4997a55ae54096d77f8aa4a94370ece4b758", + "topic1": "0x0000000000000000000000000000000000000000000000000000000000000002", + "topic2": "0x00000000000000000000000018f33cef45817c428d98c4e188a770191fdd4b79" + } + ], + "netAssetTransfers": { + "0x0000000000000000000000000000000000000000": { + "received": [], + "sent": [ + { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "tokenId": "2", + "type": "erc721" + }, + { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "tokenId": "3", + "type": "erc721" + }, + { + "contract": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "type": "erc20", + "value": "202816" + }, + { + "contract": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "type": "erc20", + "value": "9" + } + ] + }, + "0x18f33cef45817c428d98c4e188a770191fdd4b79": { + "received": [ + { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "tokenId": "2", + "type": "erc721", + "imageUrl": "" + }, + { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "tokenId": "3", + "type": "erc721", + "imageUrl": "" + }, + { + "contract": "0x387d73bd8682dceb3327b940213d5de50ee2bba2", + "type": "erc20", + "value": "202816" + }, + { + "contract": "0x56d66d7637f5b6235ad212043d35cc5e035dac68", + "type": "erc20", + "value": "9" + } + ], + "sent": [] + } + }, + "pseudotransactions": [], + "contractsCreated": [], + "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 + } + } + ], + "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 + } + } + ], + "0x56d66d7637f5b6235ad212043d35cc5e035dac68": [ + { + "chainId": 4653, + "label": { + "public": "Crop: Earthmelon" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": "", + "symbol": "zEARTHMELON", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0eb23cbcf8d66bd4fab85acf1d405cf77f04ebb9": [ + { + "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 + } + } + ], + "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": { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "tokenId": "2", + "type": "erc721", + "imageUrl": "" + }, + "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8-3": { + "contract": "0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8", + "tokenId": "3", + "type": "erc721", + "imageUrl": "" + } + } +} \ No newline at end of file diff --git a/src/contextualizers/test/transactions/goldDestination-0x85058886.json b/src/contextualizers/test/transactions/goldDestination-0x85058886.json new file mode 100644 index 00000000..0b680b7c --- /dev/null +++ b/src/contextualizers/test/transactions/goldDestination-0x85058886.json @@ -0,0 +1,6066 @@ +{ + "_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 From 90e211ef10cda72f6749d488050dd830c401017e Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 6 May 2024 11:58:59 -0700 Subject: [PATCH 05/10] feat: update gold readme --- src/contextualizers/protocol/gold/README.md | 9 +++++---- src/contextualizers/protocol/index.ts | 2 ++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/contextualizers/protocol/gold/README.md b/src/contextualizers/protocol/gold/README.md index ee947cb9..e54ac5c7 100644 --- a/src/contextualizers/protocol/gold/README.md +++ b/src/contextualizers/protocol/gold/README.md @@ -1,5 +1,6 @@ -### Reservoir contract +### Gold contract -| Contract | Address | Chain ID | -| --------- | ------------------------------------------------------------------------------------------------------------------- | -------- | -| Reservoir | [0xf70da97812cb96acdf810712aa562db8dfa3dbef](https://www.onceupon.xyz/0xf70da97812cb96acdf810712aa562db8dfa3dbef:0) | Multiple | +| Contract | Address | Chain ID | +| ------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -------- | +| PackActivationSource | [0xde1bc6e9164af5a48c45111b811c61f11ce58d91](https://www.onceupon.xyz/0xde1bc6e9164af5a48c45111b811c61f11ce58d91:8453) | Base | +| PackActivationDestination | [0x21170f8bd35d0afa8ad55719ce29d6489a8585db](https://www.onceupon.xyz/0x21170f8bd35d0afa8ad55719ce29d6489a8585db:4653) | Gold | diff --git a/src/contextualizers/protocol/index.ts b/src/contextualizers/protocol/index.ts index 97ac9ec7..b9ebb533 100644 --- a/src/contextualizers/protocol/index.ts +++ b/src/contextualizers/protocol/index.ts @@ -20,6 +20,7 @@ import { bnsContextualizer } from './bns'; import { highlightContextualizer } from './highlight'; import { warpcastContextualizer } from './warpcast'; import { boomboxContextualizer } from './boombox'; +import { goldContextualizer } from './gold'; const children = { wethContextualizer, @@ -43,6 +44,7 @@ const children = { highlightContextualizer, warpcastContextualizer, boomboxContextualizer, + goldContextualizer, }; const protocolContextualizers = Object.fromEntries( From 93ec3f73e64929d7e91f8118b9cc7d68641035ca Mon Sep 17 00:00:00 2001 From: Paul Cowgill Date: Mon, 6 May 2024 16:11:59 -0500 Subject: [PATCH 06/10] Update the variable types --- .../protocol/gold/constants.ts | 2 + .../protocol/gold/destination.spec.ts | 4 +- .../protocol/gold/destination.ts | 58 +++++++++++++------ .../protocol/gold/source.spec.ts | 4 +- src/contextualizers/protocol/gold/source.ts | 6 +- 5 files changed, 48 insertions(+), 26 deletions(-) diff --git a/src/contextualizers/protocol/gold/constants.ts b/src/contextualizers/protocol/gold/constants.ts index 86ffdc44..aba6585a 100644 --- a/src/contextualizers/protocol/gold/constants.ts +++ b/src/contextualizers/protocol/gold/constants.ts @@ -5,6 +5,8 @@ export const PACK_ACTIVATION_DESTINATION_CONTRACT = '0x21170f8bd35d0afa8ad55719ce29d6489a8585db'; export const PACK_ACTIVATION_SOURCE_CONTRACT = '0xde1bc6e9164af5a48c45111b811c61f11ce58d91'; +export const PLOT_ERC721_CONTRACT = + '0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8'; export const PACK_ACTIVATION_SOURCE_ABI = packActivationSourceAbi; export const PACK_ACTIVATION_DESTINATION_ABI = packActivationDestinationAbi; diff --git a/src/contextualizers/protocol/gold/destination.spec.ts b/src/contextualizers/protocol/gold/destination.spec.ts index 4067f87a..d55634ec 100644 --- a/src/contextualizers/protocol/gold/destination.spec.ts +++ b/src/contextualizers/protocol/gold/destination.spec.ts @@ -23,7 +23,7 @@ describe('Gold Destination', () => { ); expect(transaction1.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction1.context)).toBe( - '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 RECEIVED plots #0,#1 , 81 amount of zMOONGRASS and 912670 amount of Sky Gold', + '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 RECEIVED plots 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #0 and 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #1 and 81 0xc1E5e0dc7E94F9167CCF983bA26F7C21c83e0a33 and 912670 0xc1E5e0dc7E94F9167CCF983bA26F7C21c83e0a33', ); expect(containsBigInt(transaction1.context)).toBe(false); @@ -32,7 +32,7 @@ describe('Gold Destination', () => { ); expect(transaction2.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction2.context)).toBe( - '0x18F33CEf45817C428d98C4E188A770191fDD4B79 RECEIVED plots #2,#3 , 9 amount of zEARTHMELON and 202816 amount of Sky Gold', + '0x18F33CEf45817C428d98C4E188A770191fDD4B79 RECEIVED plots #2 and #3 and 9 zEARTHMELON and 202816 Sky Gold', ); expect(containsBigInt(transaction2.context)).toBe(false); }); diff --git a/src/contextualizers/protocol/gold/destination.ts b/src/contextualizers/protocol/gold/destination.ts index bd87fea8..0cc1a8fb 100644 --- a/src/contextualizers/protocol/gold/destination.ts +++ b/src/contextualizers/protocol/gold/destination.ts @@ -4,10 +4,13 @@ import { Transaction, EventLogTopics, GoldContextActionEnum, + AssetType, + ContextNumberType, } from '../../../types'; import { PACK_ACTIVATION_DESTINATION_ABI, PACK_ACTIVATION_DESTINATION_CONTRACT, + PLOT_ERC721_CONTRACT, } from './constants'; export function contextualize(transaction: Transaction): Transaction { @@ -90,7 +93,7 @@ export function generate(transaction: Transaction): Transaction { return transaction; // grab variables from decoded event - const cropName = decodedInput.args[2]; + // const cropName = decodedInput.args[2]; const plotIds = activatedStarterPackOnDestinationDecoded.args['plotIds']; const zGoldAmount = BigInt( gameMintedTokenDecoded[0].args['amount'], @@ -98,15 +101,36 @@ export function generate(transaction: Transaction): Transaction { 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 erc721PlotArray = + plotIds.length > 0 + ? plotIds.map((c: bigint) => { + return { + type: AssetType.ERC721, + token: PLOT_ERC721_CONTRACT, // Future improvement: Get the address of the contract that emitted the mintedPlotPackActivateDecoded event + tokenId: c.toString(), + }; + }) + : []; + + const erc721ManyPlotsVariable: ContextNumberType = { + type: 'number', + unit: plotIds.length > 1 ? 'plots' : 'plot', + value: plotIds.length, + }; + transaction.context = { summaries: { category: 'PROTOCOL_1', en: { title: `Gold`, default: - '[[activator]][[received]]plots[[plotIds]],[[cropAmount]]amount of[[cropName]]and[[zGoldAmount]]amount of Sky Gold', + plotIds?.length === 2 + ? '[[activator]][[received]]plots[[plotId0]]and[[plotId1]]and[[crop]]and[[zGold]]' + : '[[activator]][[received]][[plots]]and[[crop]]and[[zGold]]', }, }, variables: { @@ -114,23 +138,14 @@ export function generate(transaction: Transaction): Transaction { type: 'address', value: activator, }, - plotIds: { - type: 'array', - value: - plotIds.length > 0 - ? plotIds.map((c: bigint) => '#' + c.toString()) - : [], - }, - cropName: { - type: 'string', - value: cropName, - }, - cropAmount: { - type: 'string', + crop: { + type: AssetType.ERC20, + token: cropGameAddress, value: cropAmount, }, - zGoldAmount: { - type: 'string', + zGold: { + type: AssetType.ERC20, + token: zGoldGameAddress, value: zGoldAmount, }, received: { @@ -140,5 +155,14 @@ export function generate(transaction: Transaction): Transaction { }, }; + if (transaction && transaction.context && transaction.context.variables) { + if (erc721PlotArray?.length === 2) { + transaction.context.variables.plotId0 = erc721PlotArray[0]; + transaction.context.variables.plotId1 = erc721PlotArray[1]; + } else { + transaction.context.variables.plots = erc721ManyPlotsVariable; + } + } + return transaction; } diff --git a/src/contextualizers/protocol/gold/source.spec.ts b/src/contextualizers/protocol/gold/source.spec.ts index 3c969358..8779a649 100644 --- a/src/contextualizers/protocol/gold/source.spec.ts +++ b/src/contextualizers/protocol/gold/source.spec.ts @@ -23,7 +23,7 @@ describe('Gold Source', () => { ); expect(transaction1.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction1.context)).toBe( - '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 ACTIVATED_A_STARTER_PACK on 8453', + '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 ACTIVATED_A_STARTER_PACK', ); expect(containsBigInt(transaction1.context)).toBe(false); @@ -32,7 +32,7 @@ describe('Gold Source', () => { ); expect(transaction2.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction2.context)).toBe( - '0x18F33CEf45817C428d98C4E188A770191fDD4B79 ACTIVATED_A_STARTER_PACK on 8453', + '0x18F33CEf45817C428d98C4E188A770191fDD4B79 ACTIVATED_A_STARTER_PACK', ); expect(containsBigInt(transaction2.context)).toBe(false); }); diff --git a/src/contextualizers/protocol/gold/source.ts b/src/contextualizers/protocol/gold/source.ts index da1cae7b..a4125822 100644 --- a/src/contextualizers/protocol/gold/source.ts +++ b/src/contextualizers/protocol/gold/source.ts @@ -74,7 +74,7 @@ export function generate(transaction: Transaction): Transaction { category: 'PROTOCOL_1', en: { title: `Gold`, - default: '[[activator]][[activated]]on[[chainID]]', + default: '[[activator]][[activated]]', }, }, variables: { @@ -82,10 +82,6 @@ export function generate(transaction: Transaction): Transaction { type: 'address', value: activator, }, - chainID: { - type: 'chainID', - value: transaction.chainId, - }, activated: { type: 'contextAction', value: GoldContextActionEnum.ACTIVATED_A_STARTER_PACK, From ba85a85d26ddd1c6c56c1ece9ce3d422bab8e942 Mon Sep 17 00:00:00 2001 From: Paul Cowgill Date: Mon, 6 May 2024 16:19:42 -0500 Subject: [PATCH 07/10] Fix casing --- .../protocol/gold/constants.ts | 2 + .../protocol/gold/destination.spec.ts | 39 ++++++++++--------- .../protocol/gold/destination.ts | 5 ++- 3 files changed, 26 insertions(+), 20 deletions(-) diff --git a/src/contextualizers/protocol/gold/constants.ts b/src/contextualizers/protocol/gold/constants.ts index aba6585a..f803d55d 100644 --- a/src/contextualizers/protocol/gold/constants.ts +++ b/src/contextualizers/protocol/gold/constants.ts @@ -7,6 +7,8 @@ export const PACK_ACTIVATION_SOURCE_CONTRACT = '0xde1bc6e9164af5a48c45111b811c61f11ce58d91'; export const PLOT_ERC721_CONTRACT = '0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8'; +export const Z_GOLD_CONTRACT_ADDRESS = + '0x387d73bd8682dceb3327b940213d5de50ee2bba2'; export const PACK_ACTIVATION_SOURCE_ABI = packActivationSourceAbi; export const PACK_ACTIVATION_DESTINATION_ABI = packActivationDestinationAbi; diff --git a/src/contextualizers/protocol/gold/destination.spec.ts b/src/contextualizers/protocol/gold/destination.spec.ts index d55634ec..3850c9e2 100644 --- a/src/contextualizers/protocol/gold/destination.spec.ts +++ b/src/contextualizers/protocol/gold/destination.spec.ts @@ -17,23 +17,26 @@ describe('Gold Destination', () => { expect(isGoldDestination2).toBe(true); }); - it('Should generate context', () => { - 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 0xc1E5e0dc7E94F9167CCF983bA26F7C21c83e0a33 and 912670 0xc1E5e0dc7E94F9167CCF983bA26F7C21c83e0a33', - ); - expect(containsBigInt(transaction1.context)).toBe(false); - - const transaction2 = generate( - goldDestination0x469f8c9c as unknown as Transaction, - ); - expect(transaction2.context?.summaries?.en.title).toBe('Gold'); - expect(contextSummary(transaction2.context)).toBe( - '0x18F33CEf45817C428d98C4E188A770191fDD4B79 RECEIVED plots #2 and #3 and 9 zEARTHMELON and 202816 Sky Gold', - ); - expect(containsBigInt(transaction2.context)).toBe(false); + 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 0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33 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 0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33 and 202816 0x387d73bd8682dceb3327b940213d5de50ee2bba2', + ); + expect(containsBigInt(transaction2.context)).toBe(false); + }); }); }); diff --git a/src/contextualizers/protocol/gold/destination.ts b/src/contextualizers/protocol/gold/destination.ts index 0cc1a8fb..a0f18609 100644 --- a/src/contextualizers/protocol/gold/destination.ts +++ b/src/contextualizers/protocol/gold/destination.ts @@ -11,6 +11,7 @@ import { PACK_ACTIVATION_DESTINATION_ABI, PACK_ACTIVATION_DESTINATION_CONTRACT, PLOT_ERC721_CONTRACT, + Z_GOLD_CONTRACT_ADDRESS, } from './constants'; export function contextualize(transaction: Transaction): Transaction { @@ -140,12 +141,12 @@ export function generate(transaction: Transaction): Transaction { }, crop: { type: AssetType.ERC20, - token: cropGameAddress, + token: cropGameAddress.toLowerCase(), value: cropAmount, }, zGold: { type: AssetType.ERC20, - token: zGoldGameAddress, + token: Z_GOLD_CONTRACT_ADDRESS, value: zGoldAmount, }, received: { From 05a98ebe49dc279bb8c02b28ba88b67728087984 Mon Sep 17 00:00:00 2001 From: Paul Cowgill Date: Mon, 6 May 2024 16:26:10 -0500 Subject: [PATCH 08/10] Add TODO comment --- src/contextualizers/protocol/gold/destination.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contextualizers/protocol/gold/destination.ts b/src/contextualizers/protocol/gold/destination.ts index a0f18609..263309b2 100644 --- a/src/contextualizers/protocol/gold/destination.ts +++ b/src/contextualizers/protocol/gold/destination.ts @@ -146,7 +146,7 @@ export function generate(transaction: Transaction): Transaction { }, zGold: { type: AssetType.ERC20, - token: Z_GOLD_CONTRACT_ADDRESS, + token: Z_GOLD_CONTRACT_ADDRESS, // TODO: Find a way to get this programmatically value: zGoldAmount, }, received: { From 7d8be973464ec911a9874c49a5ba184ba4bce3eb Mon Sep 17 00:00:00 2001 From: Paul Cowgill Date: Tue, 7 May 2024 16:01:53 -0500 Subject: [PATCH 09/10] Use asset transfers helper for ERC20s --- .../protocol/gold/destination.ts | 35 +++++++++++++++---- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/src/contextualizers/protocol/gold/destination.ts b/src/contextualizers/protocol/gold/destination.ts index 263309b2..2f75b8ec 100644 --- a/src/contextualizers/protocol/gold/destination.ts +++ b/src/contextualizers/protocol/gold/destination.ts @@ -1,4 +1,8 @@ -import { decodeLog, decodeTransactionInput } from '../../../helpers/utils'; +import { + decodeLog, + decodeTransactionInput, + processAssetTransfers, +} from '../../../helpers/utils'; import { CHAIN_IDS } from '../../../helpers/constants'; import { Transaction, @@ -24,7 +28,11 @@ export function contextualize(transaction: Transaction): Transaction { // Always chain id 1 through the Zora bridge UI export function detect(transaction: Transaction): boolean { - if (transaction.chainId !== CHAIN_IDS.gold) { + if ( + transaction.chainId !== CHAIN_IDS.gold || + !transaction.assetTransfers || + !transaction.netAssetTransfers + ) { return false; } // check logs @@ -49,7 +57,12 @@ export function detect(transaction: Transaction): boolean { } export function generate(transaction: Transaction): Transaction { - if (!transaction.logs || transaction.chainId !== CHAIN_IDS.gold) + if ( + !transaction.logs || + transaction.chainId !== CHAIN_IDS.gold || + !transaction.assetTransfers || + !transaction.netAssetTransfers + ) return transaction; // decode input @@ -60,6 +73,14 @@ export function generate(transaction: Transaction): Transaction { if (!decodedInput || decodedInput.functionName != 'activateDestination') { return transaction; } + + const { erc20Payments } = processAssetTransfers( + transaction.netAssetTransfers, + transaction.assetTransfers, + ); + + console.log('erc20Payments', erc20Payments); + // decode ActivatedStarterPackOnDestination event let activatedStarterPackOnDestinationDecoded, mintedPlotPackActivateDecoded; const gameMintedTokenDecoded: any[] = []; @@ -141,13 +162,13 @@ export function generate(transaction: Transaction): Transaction { }, crop: { type: AssetType.ERC20, - token: cropGameAddress.toLowerCase(), - value: cropAmount, + token: erc20Payments[1].contract, + value: erc20Payments[1].value, }, zGold: { type: AssetType.ERC20, - token: Z_GOLD_CONTRACT_ADDRESS, // TODO: Find a way to get this programmatically - value: zGoldAmount, + token: erc20Payments[0].contract, + value: erc20Payments[0].value, }, received: { type: 'contextAction', From 38a9e7c3be51d1c928fa1abf342aa46587253a95 Mon Sep 17 00:00:00 2001 From: Paul Cowgill Date: Tue, 7 May 2024 16:04:25 -0500 Subject: [PATCH 10/10] Fix tests --- src/contextualizers/protocol/gold/destination.spec.ts | 4 ++-- src/contextualizers/protocol/gold/destination.ts | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/contextualizers/protocol/gold/destination.spec.ts b/src/contextualizers/protocol/gold/destination.spec.ts index 3850c9e2..04264036 100644 --- a/src/contextualizers/protocol/gold/destination.spec.ts +++ b/src/contextualizers/protocol/gold/destination.spec.ts @@ -24,7 +24,7 @@ describe('Gold Destination', () => { ); expect(transaction1.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction1.context)).toBe( - '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 RECEIVED plots 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #0 and 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #1 and 81 0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33 and 912670 0x387d73bd8682dceb3327b940213d5de50ee2bba2', + '0xB374FDD2951A65e827Dab88f692a6819dc43c6D7 RECEIVED plots 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #0 and 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #1 and 81 0x12647ceec053d386a7343b7739a1e1fddadef796 and 912670 0x387d73bd8682dceb3327b940213d5de50ee2bba2', ); expect(containsBigInt(transaction1.context)).toBe(false); }); @@ -34,7 +34,7 @@ describe('Gold Destination', () => { ); expect(transaction2.context?.summaries?.en.title).toBe('Gold'); expect(contextSummary(transaction2.context)).toBe( - '0x18F33CEf45817C428d98C4E188A770191fDD4B79 RECEIVED plots 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #2 and 0xe2f275b2a5c376fd10006b67a9be0cc3bd5488e8 #3 and 9 0xc1e5e0dc7e94f9167ccf983ba26f7c21c83e0a33 and 202816 0x387d73bd8682dceb3327b940213d5de50ee2bba2', + '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/destination.ts b/src/contextualizers/protocol/gold/destination.ts index 2f75b8ec..4c5cd3a2 100644 --- a/src/contextualizers/protocol/gold/destination.ts +++ b/src/contextualizers/protocol/gold/destination.ts @@ -79,8 +79,6 @@ export function generate(transaction: Transaction): Transaction { transaction.assetTransfers, ); - console.log('erc20Payments', erc20Payments); - // decode ActivatedStarterPackOnDestination event let activatedStarterPackOnDestinationDecoded, mintedPlotPackActivateDecoded; const gameMintedTokenDecoded: any[] = [];